# Список общих плагинов

#### **moment**

&#x20;           Подключается только через *require()*

```
let moment = require('moment');
```

#### **moment-with-locales**

&#x20;           Подключается только через *require()*

```
let moment = require('moment-with-locales');
```

Это OpenSource библиотека для работы с датами, <https://momentjs.com/>

Версия библиотеки moment.js: 2.29.3

#### &#x20;**Common.Bot.Commands**

&#x20;            Подключается через *requre()* или через snippet()

```
require('Common.Bot.Commands');
// или
snippet('Common.Bot.Commands');
```

Если для вашей ситуации доступно подключение через *require()* – то это более предпочтительный с точки зрения производительности вариант, используйте именно его. Если подключение с помощью *require()* недоступно или не приемлемо, то используйте подключение через *snippet()*.

{% hint style="warning" %}
**На данный момент подключение собственных библиотек бизнеса доступно только через&#x20;*****snippet()*****.**
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://metabot.gitbook.io/documentation/plaginy-metabot24/spisok-obshikh-plaginov.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
