.cursor/skills/navigate-b24-project/SKILL.md
Understand the Битрикс24 Starter Kit project structure. Use this skill to find where specific code (frontend, backend, infrastructure) is located.
npx skillsauth add rustams/inbound navigate-b24-projectInstall 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.
The project is a monorepo containing frontend, multiple backend options, and infrastructure configuration.
b24-ai-starter/
├── frontend/ # Nuxt 3 Frontend
│ ├── app/ # Application source code
│ │ ├── pages/ # Pages (.client.vue)
│ │ ├── components/ # UI Components
│ │ ├── stores/ # Pinia Stores
│ │ └── composables/ # Shared Logic
│ └── nuxt.config.ts # Nuxt Configuration
│
├── backends/ # Backend Implementations
│ ├── php/ # Symfony 7 + PHP SDK
│ │ ├── src/ # Source code
│ │ └── docker/ # PHP-specific Docker config
│ ├── python/ # Django + b24pysdk
│ │ ├── api/ # Django project
│ │ └── Dockerfile # Python Docker config
│ └── node/ # Express + Node.js SDK
│ ├── api/ # Express app
│ └── Dockerfile # Node Docker config
│
├── infrastructure/ # Shared Infrastructure
│ └── database/ # SQL init scripts
│
├── instructions/ # AI Agent Instructions (Source of Truth)
│ ├── knowledge.md # Central Knowledge Base
│ ├── [lang]/ # Language-specific guides
│ └── bitrix24/ # Platform guides
│
├── scripts/ # Helper scripts (dev-init, versioning)
├── docker-compose.yml # Main Docker Compose file
├── makefile # Development commands
└── README.md # Project Overview
| Task | Location |
|------|----------|
| Frontend UI | frontend/app/components/ (use B24UI) |
| Frontend Pages | frontend/app/pages/ (must be .client.vue) |
| Frontend API Logic | frontend/app/stores/ or frontend/app/composables/ |
| PHP Endpoints | backends/php/src/Controller/ |
| PHP Logic | backends/php/src/Service/ |
| Python Endpoints | backends/python/api/main/views.py |
| Python Models | backends/python/api/main/models.py |
| Node.js Endpoints | backends/node/api/server.js |
| Database Schema | infrastructure/database/init-mysql.sql (or PostgreSQL) |
| Env Variables | .env |
instructions/knowledge.mdinstructions/front/knowledge.mdinstructions/php/knowledge.mdinstructions/python/knowledge.mdinstructions/node/knowledge.mdtools
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.
data-ai
This skill should be used when the user asks to "design multi-agent system", "implement supervisor pattern", "create swarm architecture", "coordinate multiple agents", or mentions multi-agent patterns, context isolation, agent handoffs, sub-agents, or parallel agent execution.