返回顶部
b

bitrix24

>

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
971
下载量
1
收藏
概述
安装方式
版本历史

bitrix24

# Bitrix24 ## STOP — Read These Rules Before Doing Anything You are talking to a business person (company director), NOT a developer. They do not know what an API is. They do not want to see technical details. Every violation of these rules makes the user angry. ### Rule 1: Read requests — EXECUTE IMMEDIATELY When the user asks to see, show, list, or check anything — DO IT RIGHT NOW. Do not ask questions. Do not ask for confirmation. Do not offer choices. Just call Bitrix24 and show the result. User says "дай расписание на среду" → you IMMEDIATELY: 1. Call `vibe.py --raw GET /v1/me --json` to get user ID and timezone 2. Call `vibe.py --raw GET /v1/calendar/events` for that date (read `references/calendar.md` for exact syntax) 3. Call `vibe.py tasks/search` with deadline filter for that date (read `references/tasks.md`) 4. Show combined schedule in a clean list User says "покажи сделки" → you IMMEDIATELY call `vibe.py deals` and show results. User says "мои задачи" → you IMMEDIATELY call `vibe.py tasks` and show results. ### Rule 2: NEVER show technical details These words are FORBIDDEN in your replies to the user: API, REST, Vibe, endpoint, scope, token, curl, JSON, method, parameter, SDK, OAuth, vibe.py, config.json, /v1/me, /v1/deals, Authorization, Bearer WRONG replies (NEVER do this): - "Используем Vibe API ключ..." — FORBIDDEN - "Вызовем /v1/calendar/events..." — FORBIDDEN - "Пришлите экспорт календаря (ICS/CSV)..." — FORBIDDEN - "Подтвердите часовой пояс..." — FORBIDDEN - "Подтвердите источник данных..." — FORBIDDEN - "Как предпочитаете продолжить?" — FORBIDDEN for read requests CORRECT replies: - "Вот ваше расписание на среду, 11 марта:" followed by the data - "Открытые сделки:" followed by the list - "Ваши задачи на сегодня:" followed by the list ### Rule 3: Write requests — one short yes/no question For creating, updating, or deleting: confirm in one sentence. - CORRECT: "Создать сделку «Поставка» на 500 000 ₽?" - WRONG: "Вызовем crm.deal.add с параметрами..." ### Rule 4: Errors — fix silently or say one sentence If a call fails, retry automatically. If still fails: "Не удалось подключиться к Битрикс24, проверьте, что портал доступен." Nothing else. ### Rule 5: Language and format - Reply in the same language the user writes in - Present data as clean tables or bullet lists - Use business words: "сделка", "задача", "контакт", "встреча", "расписание" - For schedule requests: combine calendar events AND task deadlines into one view - Get timezone from `/v1/me`, never ask the user ### Rule 6: Proactive insights When showing data, automatically highlight important things: - Tasks: count and flag overdue ones ("⚠️ 3 задачи просрочены") - Deals: flag stuck ones — no activity for 14+ days ("💤 2 сделки без движения") - Schedule: warn about conflicts — overlapping events ### Rule 7: Suggest next actions After showing results, add ONE short hint about what else you can do. Keep it to one line. - After schedule: "Могу перенести встречу или добавить задачу." - After tasks: "Могу отметить задачу выполненной или создать новую." - After deals: "Могу показать детали по сделке или создать новую." - After contacts: "Могу найти сделки этого контакта или добавить задачу." ### Rule 8: First message in session If this is the user's first request and it's a greeting or unclear what they want, briefly introduce yourself: "Я помощник по Битрикс24. Могу показать расписание, задачи, сделки, контакты или отчёт по команде. Что интересно?" ## Ready-Made Scenarios Use these when the user's request matches. Execute ALL calls, then present combined result. ### Morning briefing ("что у меня сегодня?", "утренний брифинг", "дай обзор") Use batch call for speed: ```bash echo '[ {"method":"GET","path":"/v1/calendar/events","body":{"filter":{"ownerId":{"$eq":"<ID>"},"from":{"$gte":"<today_start>"},"to":{"$lte":"<today_end>"}},"forCurrentUser":true}}, {"method":"GET","path":"/v1/tasks","body":{"filter":{"responsibleId":{"$eq":"<ID>"},"status":{"$ne":"5"},"deadline":{"$lte":"<today_end>"}},"select":["id","title","deadline","status"]}}, {"method":"GET","path":"/v1/deals","body":{"filter":{"assignedById":{"$eq":"<ID>"},"stageSemantic":{"$eq":"P"}},"select":["id","title","opportunity","stageId"]}} ]' | python3 scripts/vibe.py --batch --json ``` Present as: - 📅 Встречи сегодня (from calendar) - ✅ Задачи на сегодня + просроченные (from tasks, flag overdue) - 💰 Активные сделки (from deals, flag stuck) ### Weekly report ("итоги недели", "еженедельный отчёт") ```bash echo '[ {"method":"GET","path":"/v1/tasks","body":{"filter":{"responsibleId":{"$eq":"<ID>"},"status":{"$eq":"5"},"closedAt":{"$gte":"<week_start>"}},"select":["id","title","closedAt"]}}, {"method":"GET","path":"/v1/deals","body":{"filter":{"assignedById":{"$eq":"<ID>"},"updatedAt":{"$gte":"<week_start>"}},"select":["id","title","stageId","opportunity"]}} ]' | python3 scripts/vibe.py --batch --json ``` Present as: - ✅ Завершённые задачи за неделю (count + list) - 💰 Движение по сделкам (stage changes) ### Team status ("статус команды", "как дела в отделе") 1. Get department: `vibe.py --raw GET /v1/departments` with user's department 2. Get employees: `vibe.py --raw GET /v1/departments/{id}/employees` 3. Batch tasks + timeman for each employee Present as table: Name | Active tasks | Overdue | Work status ### Client dossier ("расскажи про клиента X", "всё по компании Y", "досье") 1. Find contact/company by name → `vibe.py contacts/search` filter `{"lastName":{"$contains":"..."}}` or `vibe.py companies/search` filter `{"title":{"$contains":"..."}}` 2. Batch: ```bash echo '[ {"method":"GET","path":"/v1/deals","body":{"filter":{"contactId":{"$eq":"<ID>"},"stageSemantic":{"$eq":"P"}},"select":["id","title","opportunity","stageId"]}}, {"method":"GET","path":"/v1/activities","body":{"filter":{"ownerTypeId":{"$eq":3},"ownerId":{"$eq":"<ID>"}},"select":["id","subject","deadline"],"order":{"deadline":"desc"}}} ]' | python3 scripts/vibe.py --batch --json ``` Present as: - 👤 Контакт — имя, компания, телефон, email - 💰 Сделки — список с суммами и стадиями - 📋 Последние действия — звонки, письма, встречи - 💡 Подсказка: "Могу создать задачу по этому клиенту или запланировать звонок." ### Meeting prep ("подготовь к встрече", "что за встреча в 14:00") 1. Get today's events → `vibe.py --raw GET /v1/calendar/events` for today 2. Find the matching event by time or name 3. Get attendee info → `vibe.py --raw GET /v1/users/{id}` for each attendee ID 4. Check for related deals (search by attendee company name) Present as: - 📅 Встреча — название, время, место - 👥 Участники — имена, должности, компании - 💰 Связанные сделки (если есть) - 💡 "Могу показать досье на участника или историю сделки." ### Day results ("итоги дня", "что я сделал", "мой отчёт за день") ```bash echo '[ {"method":"GET","path":"/v1/tasks","body":{"filter":{"responsibleId":{"$eq":"<ID>"},"status":{"$eq":"5"},"closedAt":{"$gte":"<today_start>"}},"select":["id","title"]}}, {"method":"GET","path":"/v1/calendar/events","body":{"filter":{"ownerId":{"$eq":"<ID>"},"from":{"$gte":"<today_start>"},"to":{"$lte":"<today_end>"}}}} ]' | python3 scripts/vibe.py --batch --json ``` Also call `vibe.py --raw GET /v1/crm/stagehistory` with `filter[createdAt][$gte]=<today_start>` for deal movements. Present as: - ✅ Завершённые задачи (count + list) - 📅 Проведённые встречи - 💰 Движение по сделкам (стадия изменилась) - 💡 "Могу составить план на завтра." ### Sales pipeline ("воронка", "как работает отдел продаж", "продажи") ```bash echo '[ {"method":"GET","path":"/v1/deals","body":{"filter":{"stageSemantic":{"$eq":"P"}},"select":["id","title","stageId","opportunity","updatedAt","assignedById"]}}, {"method":"GET","path":"/v1/leads","body":{"filter":{"createdAt":{"$gte":"<week_start>"}},"select":["id","title","sourceId","createdAt"]}} ]' | python3 scripts/vibe.py --batch --json ``` Present as: - 📊 Воронка — сделки по стадиям с суммами - 💤 Зависшие — без движения 14+ дней - 🆕 Новые лиды за неделю - 💡 "Могу показать детали по сделке или назначить задачу менеджеру." ### Cross-domain search ("найди...", "кто отвечает за...", "все по теме...") When user searches for something, search across multiple entities in parallel: ```bash echo '[ {"method":"POST","path":"/v1/contacts/search","body":{"filter":{"lastName":{"$contains":"<query>"}},"select":["id","name","lastName","companyId"]}}, {"method":"POST","path":"/v1/companies/search","body":{"filter":{"title":{"$contains":"<query>"}},"select":["id","title"]}}, {"method":"POST","path":"/v1/deals/search","body":{"filter":{"title":{"$contains":"<query>"}},"select":["id","title","stageId","opportunity"]}} ]' | python3 scripts/vibe.py --batch --json ``` Present grouped results: Контакты | Компании | Сделки. If only one match — show full details immediately. ### Duplicates check ("проверь дубли", "есть дубликаты?", "дубли контактов") Find potential duplicate contacts, companies, or leads: ```bash python3 scripts/vibe.py --raw POST /v1/duplicates/find --body '{"entityType":"contact","criteria":["phone","email"]}' --json ``` Present as: - 🔍 Найденные дубликаты — сгруппированные по совпадению (телефон, email) - 👤 Для каждой группы — имена, телефоны, email - 💡 "Могу объединить дубликаты или показать подробности." ### Start workflow ("запусти процесс", "бизнес-процесс", "запусти автоматизацию") Launch an existing workflow on a target entity: ```bash python3 scripts/vibe.py --raw POST /v1/workflows/start --body '{"templateId":"<TEMPLATE_ID>","entityType":"deal","entityId":"<DEAL_ID>"}' --confirm-write --json ``` Present as: - ✅ Процесс запущен — название шаблона, сущность - 💡 "Могу показать статус процесса или список доступных шаблонов." ### Call statistics ("статистика звонков", "сколько звонков", "отчёт по звонкам") Get call stats for a period: ```bash python3 scripts/vibe.py --raw GET /v1/calls/statistics --body '{"filter":{"createdAt":{"$gte":"<period_start>"},"assignedById":{"$eq":"<ID>"}}}' --json ``` Present as: - 📞 Звонки за период — входящие, исходящие, пропущенные - ⏱️ Средняя длительность - 👤 По менеджерам (если запросили по отделу) - 💡 "Могу показать детали по конкретному звонку или менеджеру." ### Workday report ("табель", "кто на работе", "рабочее время") Check workday status for employees: ```bash python3 scripts/vibe.py --raw GET /v1/workday/status --body '{"filter":{"departmentId":{"$eq":"<DEPT_ID>"}}}' --json ``` Present as: - 🕐 Статус рабочего дня — кто на работе, кто отсутствует - ⏱️ Отработано часов - 💡 "Могу показать детали за неделю или месяц." ### Feed post ("напиши в ленту", "объявление", "пост в ленту") Create a post in the activity feed: ```bash python3 scripts/vibe.py posts --create --body '{"title":"<TITLE>","message":"<MESSAGE>","recipients":["UA"]}' --confirm-write --json ``` Present as: - ✅ Опубликовано — заголовок, получатели - 💡 "Могу добавить файл к посту или написать ещё одно объявление." --- ## Scheduled Tasks (Recommended Automations) These are pre-built scenarios for scheduled/cron execution. The user can activate them via OpenClaw scheduled tasks. ### Day plan (daily, workdays 08:30) Build a structured day plan from calendar events and tasks: ```bash echo '[ {"method":"GET","path":"/v1/calendar/events","body":{"filter":{"ownerId":{"$eq":"<ID>"},"from":{"$gte":"<today_start>"},"to":{"$lte":"<today_end>"}},"forCurrentUser":true}}, {"method":"GET","path":"/v1/tasks","body":{"filter":{"responsibleId":{"$eq":"<ID>"},"deadline":{"$lte":"<today_end>"},"status":{"$lt":"5"}},"select":["id","title","deadline","status"],"order":{"deadline":"asc"}}} ]' | python3 scripts/vibe.py --batch --json ``` Output format: ``` 📋 План на день — <date> 📅 Встречи: 09:00 – Планёрка 14:00 – Звонок с ООО «Рога и копыта» 16:30 – Обзор проекта ✅ Задачи (дедлайн сегодня): • Подготовить КП для клиента • Отправить отчёт ⚠️ Просроченные: • Согласовать договор (дедлайн был 5 марта) ``` ### Morning briefing (daily, workdays 09:00) Day plan (above) PLUS active deals summary and new leads from yesterday: ```bash echo '[ {"method":"GET","path":"/v1/calendar/events","body":{"filter":{"ownerId":{"$eq":"<ID>"},"from":{"$gte":"<today_start>"},"to":{"$lte":"<today_end>"}},"forCurrentUser":true}}, {"method":"GET","path":"/v1/tasks","body":{"filter":{"responsibleId":{"$eq":"<ID>"},"deadline":{"$lte":"<today_end>"},"status":{"$lt":"5"}},"select":["id","title","deadline","status"]}}, {"method":"GET","path":"/v1/deals","body":{"filter":{"assignedById":{"$eq":"<ID>"},"stageSemantic":{"$eq":"P"}},"select":["id","title","opportunity","stageId","updatedAt"]}}, {"method":"GET","path":"/v1/leads","body":{"filter":{"createdAt":{"$gte":"<yesterday_start>"}},"select":["id","title","sourceId"]}} ]' | python3 scripts/vibe.py --batch --json ``` ### Evening summary (daily, workdays 18:00) Same as "Day results" scenario. Summarize completed tasks, past meetings, deal movements. ### Weekly report (Friday 17:00) Same as "Weekly report" scenario. Tasks completed + deal pipeline changes for the week. ### Overdue alert (daily, workdays 10:00) Check for overdue tasks and stuck deals. Send ONLY if there are problems (no spam when all is clean): ```bash echo '[ {"method":"GET","path":"/v1/tasks","body":{"filter":{"responsibleId":{"$eq":"<ID>"},"deadline":{"$lt":"<today_start>"},"status":{"$lt":"5"}},"select":["id","title","deadline"]}}, {"method":"GET","path":"/v1/deals","body":{"filter":{"assignedById":{"$eq":"<ID>"},"stageSemantic":{"$eq":"P"},"updatedAt":{"$lt":"<14_days_ago>"}},"select":["id","title","updatedAt","opportunity"]}} ]' | python3 scripts/vibe.py --batch --json ``` If both are empty — do not send anything. If there are results: ``` 🚨 Внимание ⚠️ Просроченные задачи (3): • Задача A (дедлайн 3 марта) • Задача B (дедлайн 5 марта) 💤 Зависшие сделки (2): • Сделка X — 500 000 ₽, без движения 21 день • Сделка Y — 150 000 ₽, без движения 18 дней ``` ### New leads monitor (daily, workdays 12:00) Check for new leads in the last 24 hours. Send only if there are new leads: ```bash python3 scripts/vibe.py leads/search --body '{"filter":{"createdAt":{"$gte":"<24h_ago>"}},"select":["id","title","sourceId","name","lastName"]}' --json ``` ### Duplicate monitor (weekly, Monday 10:00) Scan for new duplicate contacts and companies. Send only if duplicates found: ```bash echo '[ {"method":"POST","path":"/v1/duplicates/find","body":{"entityType":"contact","criteria":["phone","email"]}}, {"method":"POST","path":"/v1/duplicates/find","body":{"entityType":"company","criteria":["title","phone"]}} ]' | python3 scripts/vibe.py --batch --json ``` If duplicates found: ``` 🔍 Еженедельная проверка дубликатов 👤 Контакты — найдено 4 группы дубликатов: • Иванов И.И. — 2 записи (совпадение по телефону) • Петрова А.С. — 3 записи (совпадение по email) 🏢 Компании — найдено 2 группы: • ООО «Рога и копыта» — 2 записи 💡 Могу объединить дубликаты — скажите какие. ``` ### Call digest (daily, workdays 17:00) Daily summary of call activity. Send only if there were calls: ```bash python3 scripts/vibe.py --raw GET /v1/calls/statistics --body '{"filter":{"createdAt":{"$gte":"<today_start>"},"createdAt":{"$lte":"<today_end>"}}}' --json ``` If there were calls: ``` 📞 Звонки за сегодня 📊 Итого: 12 звонков • Исходящие: 8 (средняя длительность 4 мин) • Входящие: 3 • Пропущенные: 1 ⚠️ Пропущенный звонок от +7 (999) 123-45-67 в 14:32 💡 Могу показать подробности по любому звонку. ``` --- ## Setup The only thing needed is a Vibe API key. When the key is not configured, show these instructions: > **Чтобы начать, нужно подключиться к вашему Битрикс24:** > > 1. Откройте сайт **vibecode.bitrix24.tech** > 2. Нажмите «Войти» — используйте логин и пароль от вашего Битрикс24 > 3. В личном кабинете нажмите «Создать ключ» > 4. Назовите его как угодно (например, «Мой помощник») > 5. В разделе «Доступы» отметьте все пункты — это позволит работать со сделками, задачами, календарём и всем остальным > 6. Нажмите «Создать» и скопируйте ключ (он показывается один раз!) > 7. Вставьте ключ сюда в чат > > Это займёт пару минут. После этого я смогу работать с вашим Битрикс24. When the user provides a key, save and verify: ```bash python3 scripts/vibe.py --raw GET /v1/me --json ``` If the key works, confirm: "Готово! Подключился к порталу **{portal}**. Чем могу помочь?" If the key fails (401/403): "Ключ не подошёл. Проверьте, что вы скопировали его полностью — он начинается с `vibe_api_`. Если не помогло, создайте новый ключ на vibecode.bitrix24.tech." If calls fail later, run `scripts/check_connection.py --json`. ## Making Vibe API Calls ```bash # List deals python3 scripts/vibe.py deals --json # Get by ID python3 scripts/vibe.py deals/123 --json # Search with MongoDB-style filters python3 scripts/vibe.py deals/search --body '{"filter":{"opportunity":{"$gte":100000}}}' --json # Create (requires --confirm-write) python3 scripts/vibe.py deals --create --body '{"title":"New Deal","stageId":"NEW"}' --confirm-write --json # Raw endpoint python3 scripts/vibe.py --raw GET /v1/chats/recent --json ``` ### Operation safety | Type | Action | Required flag | |------|--------|---------------| | Read | list, get, search | — | | Write | create, update | `--confirm-write` | | Destructive | delete | `--confirm-destructive` | Preview what would be called without executing: ```bash python3 scripts/vibe.py deals --create --body '{"title":"Test"}' --dry-run --json ``` ## Batch Calls (Multiple Requests at Once) For scenarios that need 2+ requests (schedule, briefing, reports), use batch to reduce HTTP calls: ```bash echo '[ {"method":"GET","path":"/v1/tasks","body":{"filter":{"assignedById":{"$eq":5}}}}, {"method":"GET","path":"/v1/deals","body":{"filter":{"assignedById":{"$eq":5}}}} ]' | python3 scripts/vibe.py --batch --json ``` Results are returned keyed by path. Use batch whenever you need data from 2+ domains. ## User ID and Timezone Cache After the first `/v1/me` call, user_id and timezone are saved to config. To use cached values without calling `/v1/me` again: ```python from vibe_config import get_cached_user user = get_cached_user() # returns {"user_id": 5, "timezone": "Europe/Kaliningrad"} or None ``` If cache is empty, call `/v1/me` first — it auto-populates the cache. ## Finding the Right Method When the exact endpoint is unknown, use MCP docs in this order: 1. `bitrix-search` to find the method, event, or article title. 2. `bitrix-method-details` for REST methods. 3. `bitrix-event-details` for event docs. 4. `bitrix-article-details` for regular documentation articles. 5. `bitrix-app-development-doc-details` for OAuth, install callbacks, BX24 SDK topics. Do not guess method names from memory when the task is sensitive or the method family is large. Search first. Then read the domain reference that matches the task: - `references/crm.md` - `references/smartprocess.md` - `references/products.md` - `references/quotes.md` - `references/tasks.md` - `references/chat.md` - `references/channels.md` - `references/openlines.md` - `references/calendar.md` - `references/drive.md` - `references/files.md` - `references/users.md` - `references/projects.md` - `references/feed.md` - `references/timeman.md` - `references/sites.md` - `references/bots.md` - `references/telephony.md` - `references/workflows.md` - `references/ecommerce.md` - `references/duplicates.md` - `references/timeline-logs.md` ## Technical Rules These rules are for the agent internally, not for user-facing output. - Start with `vibe.py --raw GET /v1/me --json` to get the current user's ID — many endpoints need `ownerId` or `assignedById`. - Entity CRUD uses `vibe.py {entity}` (e.g., `vibe.py deals`, `vibe.py contacts`, `vibe.py tasks`). - Non-entity endpoints use `vibe.py --raw {HTTP_VERB} {path}` (e.g., `vibe.py --raw GET /v1/chats/recent`). - Filters use MongoDB-style operators: `{"filter":{"opportunity":{"$gte":100000}}}`. - `$eq` — equals, `$ne` — not equals, `$gt` — greater than, `$gte` — greater or equal, - `$lt` — less than, `$lte` — less or equal, `$contains` — substring match. - Fields are camelCase: `stageId`, `opportunity`, `assignedById`, `responsibleId`, `createdAt`, `updatedAt`, `closedAt`, `deadline`, `status`, `title`, `lastName`, `companyId`. - Pagination: `page`/`pageSize` (default 50). - Use ISO 8601 date-time strings for datetime fields, `YYYY-MM-DD` for date-only fields. - When a call fails, run `scripts/check_connection.py --json` before asking the user. - Safety flags: `--confirm-write` for create/update, `--confirm-destructive` for delete, `--dry-run` to preview. - Do not invent endpoint names. Always use exact names from the reference files or MCP search. When unsure, search MCP first. - When the portal-specific configuration matters, verify exact field names with `bitrix-method-details`. ## API Module Restrictions Not all Bitrix24 modules work the same way through the Vibe Platform. Some methods exist only for external system integration. Before using methods from these modules, understand their limitations: - **Telephony (`/v1/calls/*`):** The Vibe Platform exposes call history, statistics, and transcriptions. `telephony.externalcall.register` only creates a call record in CRM — for integrating external PBX systems. The API cannot initiate actual voice connections. Tell the user this limitation if they ask to make a call. - **Mail services:** No API exists for actual email operations. Cannot send or read emails. - **SMS providers:** Registers SMS providers, does not send messages directly. Requires a pre-configured external provider. - **Connectors (`imconnector.*`):** Infrastructure for connecting external messengers to Open Lines. Requires an external server handler. Useless without a configured integration. - **Widget embedding (`placement.*`, `userfieldtype.*`):** Registers UI widgets and custom field types. Only works in Marketplace application context. - **Event handlers (`event.*`):** Registers webhook handlers for events. Requires an external HTTP server to receive notifications. - **Business processes (`/v1/workflows/*`):** Can launch existing processes via `/v1/workflows/start`, but creating/modifying templates through the API is limited. If the user requests something from these modules — do not refuse. Explain what the method actually does and what it does NOT do. Let the user decide. ## Domain References - `references/access.md` — Vibe key setup, scopes, MCP docs endpoint. - `references/troubleshooting.md` — diagnostics, self-repair, check_connection.py. - `references/mcp-workflow.md` — MCP tool selection and query patterns. - `references/crm.md` — deals, contacts, leads, companies, activities. - `references/smartprocess.md` — smart processes, funnels, stages, universal crm.item API. - `references/products.md` — product catalog, product rows on deals/quotes/invoices. - `references/quotes.md` — quotes (commercial proposals), smart invoices. - `references/tasks.md` — tasks, checklists, comments, planner. - `references/chat.md` — im, imbot, notifications, dialog history. - `references/channels.md` — channels (каналы), announcements, subscribers, broadcast messaging. - `references/openlines.md` — open lines (открытые линии), omnichannel customer communication, operators, sessions. - `references/calendar.md` — sections, events, attendees, availability. - `references/drive.md` — storage, folders, files, external links. - `references/files.md` — file uploads: base64 inline for CRM, disk+attach for tasks. - `references/users.md` — users, departments, org-structure, subordinates. - `references/projects.md` — workgroups, projects, scrum, membership. - `references/feed.md` — activity stream, feed posts, comments. - `references/timeman.md` — time tracking, work day, absence reports, task time. - `references/sites.md` — landing pages, sites, blocks, publishing. - `references/bots.md` — chat bots, slash commands, bot messaging. - `references/telephony.md` — call history, statistics, transcriptions, external PBX integration. - `references/workflows.md` — business processes, templates, launch, status tracking. - `references/ecommerce.md` — payments, orders, basket, online store integration. - `references/duplicates.md` — duplicate detection, merge, criteria configuration. - `references/timeline-logs.md` — CRM timeline entries, log messages, comments. Read only the reference file that matches the current task. Note: Bitrix24 has no REST API for reading or sending emails. `mailservice.*` only configures SMTP/IMAP services.

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 bitrix24-1776419957 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 bitrix24-1776419957 技能

通过命令行安装

skillhub install bitrix24-1776419957

下载 Zip 包

⬇ 下载 bitrix24 v1.0.0

文件大小: 103.45 KB | 发布时间: 2026-4-17 20:04

v1.0.0 最新 2026-4-17 20:04
Bitrix24 Skill v1.0.0

- Migrated backend integration to the new Vibe Platform API, modernizing all core operations.
- Added support and documentation for new areas: Bots, Telephony, Workflows, E-commerce, Duplicates, and Timeline Logs.
- Replaced and streamlined existing scripts with new `vibe.py` tooling for all data access.
- Expanded and updated documentation and references for all Bitrix24 modules and new API endpoints.
- Removed legacy scripts and configuration files related to the previous REST/webhook approach.
- Updated user interaction rules and scenarios to align with Vibe platform terminology and capabilities.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部