.claude/skills/implement-b24-features/SKILL.md
Implement advanced Битрикс24 features like Widgets (Embeds), Robots (Automation), Events, and Queues. Use this skill when you need to integrate deeply with Битрикс24 UI or automation processes.
npx skillsauth add rustams/inbound implement-b24-featuresInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Widgets allow embedding your application into Битрикс24 UI (e.g., CRM tabs, menus).
Use placement.bind method (usually during app installation).
await $b24.callMethod('placement.bind', {
PLACEMENT: 'CRM_DEAL_DETAIL_TAB',
HANDLER: 'https://your-domain.com/widget-handler', // Must be public URL
TITLE: 'My Widget',
DESCRIPTION: 'Widget description'
});
pages/handler/my-widget.client.vue) that renders the widget content.PLACEMENT_OPTIONS (e.g., ID of the deal) in the POST request.Robots are custom automation actions in Битрикс24.
Use bizproc.robot.add method.
await $b24.callMethod('bizproc.robot.add', {
CODE: 'my_robot',
HANDLER: 'https://your-domain.com/api/robot-handler', // Backend endpoint
NAME: 'My Robot',
PROPERTIES: {
my_param: { Name: 'Parameter', Type: 'string' }
}
});
/api/robot-handler) that receives the robot execution request.USE_SUBSCRIPTION is 'Y', call bizproc.event.send to return data to the workflow.Handle Битрикс24 events (e.g., ONCRMDEALADD).
Use event.bind method.
await $b24.callMethod('event.bind', {
event: 'ONCRMDEALADD',
handler: 'https://your-domain.com/api/events' // Backend endpoint
});
/api/events) to receive event data.auth tokens).Use queues for background processing (long-running tasks).
ENABLE_RABBITMQ=1 in .env.instructions/queues/php.md).instructions/queues/python.md).amqplib (instructions/queues/node.md).tools
This skill should be used when the user asks to "design agent tools", "create tool descriptions", "reduce tool complexity", "implement MCP tools", or mentions tool consolidation, architectural reduction, tool naming conventions, or agent-tool interfaces.
development
This skill should be used when the user asks to "start an LLM project", "design batch pipeline", "evaluate task-model fit", "structure agent project", or mentions pipeline architecture, agent-assisted development, cost estimation, or choosing between LLM and traditional approaches.
development
PM skill for Claude Code, Codex, Cursor, and Windsurf. Diagnoses SaaS metrics, critiques PRDs, plans roadmaps, runs discovery, coaches PM career transitions, and pressure-tests AI product decisions. Six knowledge domains, 12 templates, 30+ frameworks, and an opinionated interaction style that labels assumptions and names tradeoffs.
development
Understand the Битрикс24 Starter Kit project structure. Use this skill to find where specific code (frontend, backend, infrastructure) is located.