# Send Bitrix24 Skill to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bitrix24-apiskill",
    "name": "Bitrix24 Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/vrtalex/bitrix24-apiskill",
    "canonicalUrl": "https://clawhub.ai/vrtalex/bitrix24-apiskill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/bitrix24-apiskill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bitrix24-apiskill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/bitrix24_client.py",
      "scripts/offline_sync_worker.py",
      "agents/openai.yaml",
      "references/chains-commerce.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "bitrix24-apiskill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T14:01:57.527Z",
      "expiresAt": "2026-05-07T14:01:57.527Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bitrix24-apiskill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bitrix24-apiskill",
        "contentDisposition": "attachment; filename=\"bitrix24-apiskill-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "bitrix24-apiskill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/bitrix24-apiskill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bitrix24-apiskill",
    "downloadUrl": "https://openagent3.xyz/downloads/bitrix24-apiskill",
    "agentUrl": "https://openagent3.xyz/skills/bitrix24-apiskill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bitrix24-apiskill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bitrix24-apiskill/agent.md"
  }
}
```
## Documentation

### Bitrix24 Agent (Lean + Reliable)

Use this skill to deliver correct Bitrix24 integrations with minimal token usage.

### Default Mode: Lean

Apply these limits unless the user asks for deep detail:

Load at most 2 reference files before first actionable step.
Start from references/packs.md.
Then open only one target file: references/catalog-<pack>.md.
Open references/chains-<pack>.md only if user asks for workflow/chain.
Open references/bitrix24.md only for auth architecture, limits, events reliability, or unknown errors.

Response format limits:

Use concise output (goal + next action + one command).
Do not retell documentation.
Do not dump large JSON unless explicitly requested.
Avoid repeating already provided guidance; return only delta.

### Routing Workflow

Determine intent:

method call,
troubleshooting,
architecture decision,
event/reliability setup.

Term normalization (product vocabulary):

"collabs", "workgroups", "projects", "social network groups" -> collab (and boards for scrum).
"Copilot", "CoPilot", "BitrixGPT", "AI prompts" -> platform (ai.*).
"open lines", "contact center connectors", "line connectors" -> comms (imopenlines.*, imconnector.*).
"feed", "live feed", "news feed" -> collab (log.*).
"sites", "landing pages", "landing" -> sites (landing.*).
"booking", "calendar", "work time", "time tracking" -> services (booking.*, calendar.*, timeman.*).
"orders", "payments", "catalog", "products" -> commerce (sale.*, catalog.*).
"consents", "consent", "e-signature", "sign" -> compliance (userconsent.*, sign.*).

Choose auth quickly:

one portal/internal: incoming webhook.
app/multi-portal/lifecycle features: OAuth.

Select minimal packs:

default core.
add only required packs: comms, automation, collab, content, boards, commerce, services, platform, sites, compliance, diagnostics.

Execute with guardrails:

prefer scripts/bitrix24_client.py and scripts/offline_sync_worker.py,
enforce allowlist + --confirm-write / --confirm-destructive,
keep writes idempotent when possible.

Escalate to deep reference only on trigger:

WRONG_AUTH_TYPE, insufficient_scope, QUERY_LIMIT_EXCEEDED, expired_token,
offline event loss concerns,
OAuth refresh race or tenant isolation issues.

### Quality Guardrails

Never expose webhook/OAuth secrets.
Scope and permissions must be least-privilege.
No nested batch.
Online events are not guaranteed delivery; use offline flow for no-loss processing.
Prefer REST 3.0 where compatible; fallback to v2 where needed.

### Reference Loading Map

references/packs.md for pack and loading strategy.
references/catalog-<pack>.md for method shortlist.
references/chains-<pack>.md for implementation chains.
references/bitrix24.md only when deeper protocol detail is required.

Useful search shortcuts:

rg -n "^# Catalog|^# Chains" references/catalog-*.md references/chains-*.md
rg -n "WRONG_AUTH_TYPE|insufficient_scope|QUERY_LIMIT_EXCEEDED|expired_token" references/bitrix24.md
rg -n "offline|event\\\\.bind|event\\\\.offline|application_token" references/bitrix24.md

### Scripts

scripts/bitrix24_client.py: method calls, packs, allowlist, confirmations, audit.
scripts/offline_sync_worker.py: offline queue processing with retries and DLQ.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: vrtalex
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T14:01:57.527Z
- Expires at: 2026-05-07T14:01:57.527Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bitrix24-apiskill)
- [Send to Agent page](https://openagent3.xyz/skills/bitrix24-apiskill/agent)
- [JSON manifest](https://openagent3.xyz/skills/bitrix24-apiskill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bitrix24-apiskill/agent.md)
- [Download page](https://openagent3.xyz/downloads/bitrix24-apiskill)