Set up lightweight multi-agent orchestration with git-native task tracking for Claude Code.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versioncreate-beads-orchestrationExecute the skills CLI command in your project's root directory to begin installation:
Fetches create-beads-orchestration from avivk5498/the-claude-protocol and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate create-beads-orchestration. Access via /create-beads-orchestration in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
2
total installs
2
this week
160
GitHub stars
0
upvotes
Run in your terminal
2
installs
2
this week
160
stars
Set up lightweight multi-agent orchestration with git-native task tracking for Claude Code.
This skill bootstraps a complete multi-agent workflow where:
Each task gets its own worktree at .worktrees/bd-{BEAD_ID}/, keeping main clean and enabling parallel work.
The setup will auto-detect Beads Kanban UI and configure accordingly. If not found, you'll be offered to install it.
Check for bootstrap artifacts:
ls .claude/agents/scout.md 2>/dev/null && echo "BOOTSTRAP_COMPLETE" || echo "FRESH_SETUP"
If BOOTSTRAP_COMPLETE:
If FRESH_SETUP:
The setup is NOT complete until Step 4 (discovery) has run.
Ask the user or auto-detect from package.json/pyproject.toml.
which bead-kanban 2>/dev/null && echo "KANBAN_FOUND" || echo "KANBAN_NOT_FOUND"
If KANBAN_FOUND → Use --with-kanban-ui flag. Tell the user:
Detected Beads Kanban UI. Configuring worktree management via API.
If KANBAN_NOT_FOUND → Ask:
AskUserQuestion(
questions=[
{
"question": "Beads Kanban UI not detected. It adds a visual kanban board with dependency graphs and API-driven worktree management. Install it?",
"header": "Kanban UI",
"options": [
{"label": "Yes, install it (Recommended)", "description": "Runs: npm install -g beads-kanban-ui"},
{"label": "Skip", "description": "Use git worktrees directly. You can install later."}
],
"multiSelect": false
}
]
)
npm install -g beads-kanban-ui, then use --with-kanban-ui flag--with-kanban-ui flag# With Kanban UI:
npx beads-orchestration@latest bootstrap \
--project-name "{{PROJECT_NAME}}" \
--project-dir "{{PROJECT_DIR}}" \
--with-kanban-ui
# Without Kanban UI (git worktrees only):
npx beads-orchestration@latest bootstrap \
--project-name "{{PROJECT_NAME}}" \
--project-dir "{{PROJECT_DIR}}"
The bootstrap script will:
.beads/ directory.claude/agents/.claude/hooks/.claude/settings.jsonCLAUDE.md with orchestrator instructions.gitignoreVerify bootstrap completed successfully before proceeding.
Tell the user:
Setup phase complete. You MUST restart Claude Code now.
The new hooks and MCP configuration will only load after restart.
After restarting:
- Open this same project directory
- Tell me "Continue orchestration setup" or run
/create-beads-orchestrationagain- I will run the discovery agent to complete setup
Do not skip this restart - the orchestration will not work without it.
DO NOT proceed to Step 4 in this session. The restart is mandatory.
.claude/agents/scout.md) - already done in Step 0Task(
subagent_type="discovery",
prompt="Detect tech stack and create supervisors for this project"
)
Discovery will:
.claude/agents/Orchestration setup complete!
Created supervisors: [list what discovery created]
You can now use the orchestration workflow:
- Create tasks with
bd create "Task name" -d "Description"- The orchestrator will delegate to appropriate supervisors
- All work requires code review before completion
.worktrees/bd-{BEAD_ID}/With --with-kanban-ui:
Without --with-kanban-ui:
For features requiring multiple supervisors (e.g., DB + API + Frontend), use the epic workflow:
| Task Type | Workflow |
|---|---|
| Single-domain (one supervisor) | Standalone bead |
| Cross-domain (multiple supervisors) | Epic with children |
bd create "Feature name" -d "Description" --type epic.designs/{EPIC_ID}.mdbd update {EPIC_ID} --design ".designs/{EPIC_ID}.md"bd create "DB schema" -d "..." --parent {EPIC_ID} # BD-001.1
bd create "API endpoints" -d "..." --parent {EPIC_ID} --deps BD-001.1 # BD-001.2
bd create "Frontend" -d "..." --parent {EPIC_ID} --deps BD-001.2 # BD-001.3
bd ready to find unblocked tasks (each child gets own worktree)bd close {EPIC_ID} after all children mergedDesign docs ensure consistency across epic children:
Key rule: Orchestrator dispatches architect to create design docs. Orchestrator never writes design docs directly.
See the full documentation: https://github.com/AvivK5498/The-Claude-Protocol
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
We added create-beads-orchestration from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
create-beads-orchestration fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
create-beads-orchestration is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: create-beads-orchestration is the kind of skill you can hand to a new teammate without a long onboarding doc.
Registry listing for create-beads-orchestration matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: create-beads-orchestration is the kind of skill you can hand to a new teammate without a long onboarding doc.
create-beads-orchestration is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend create-beads-orchestration for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in create-beads-orchestration — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
create-beads-orchestration has been reliable in day-to-day use. Documentation quality is above average for community skills.
showing 1-10 of 39