Orchestrate Rust development using agent teams with peer-to-peer communication. Use when: 'create rust team', 'start team development', 'launch agent team', 'team workflow', 'collaborative development'. Requires rust-agents plugin and CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1.
Orchestrates collaborative Rust development using specialized agent teams with peer-to-peer communication.
npx claudepluginhub bug-ops/claude-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/communication-protocol.mdreferences/result-aggregation.mdreferences/team-workflow.mdTeam-based development orchestration for Rust projects using Claude Code agent teams. Coordinates specialist agents from the rust-agents plugin with peer-to-peer communication via SendMessage.
Task: $ARGUMENTS
Before starting, verify:
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 must be set in environment or settings.jsonclaude plugin install rust-agents)main/master, create a feature branch firstCargo.toml must exist/rust-team Implement user authentication with JWT tokens
| Feature | rust-agents:rust-lifecycle | rust-team:rust-team |
|---|---|---|
| Communication | One-way (subagent → parent) | Peer-to-peer (SendMessage) |
| Agent visibility | Isolated contexts | Shared team, can message any peer |
| Task management | Parent manages all | Shared task list, agents self-coordinate |
| Context sharing | Handoff YAML files only | Messages + handoff files |
| Fix-review cycle | Parent relays feedback | Developer <-> reviewer direct DM |
| User interaction | Via parent only | Direct (Shift+Up/Down to any agent) |
| Prerequisite | None | CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 |
TeamCreate
|
Spawn architect → WAIT for architect handoff
|
[Optional] Spawn critic (pass architect handoff) → WAIT for critic handoff
|
Spawn developer (pass accumulated handoffs) → WAIT for developer handoff
|
Spawn tester, perf, security in parallel (pass all accumulated handoffs)
→ WAIT for ALL 3 validator handoffs
|
Spawn reviewer (pass all accumulated handoffs) → WAIT for reviewer handoff
|
If issues: pass reviewer handoff to developer → WAIT for developer handoff
pass developer handoff to reviewer → WAIT for reviewer handoff
repeat until approved
|
Teamlead commits → PR → shutdown → report
| Task | Owner | BlockedBy | Description |
|---|---|---|---|
| plan | architect | - | Architecture design |
| critique | critic | plan | Adversarial critique of architecture (optional) |
| implement | developer | plan / critique | Implementation |
| validate-tests | tester | implement | Test coverage |
| validate-perf | perf | implement | Performance analysis |
| validate-security | security | implement | Security audit |
| review | reviewer | validate-* | Code review |
| fix-issues | developer | review | Fix ALL review issues |
| re-review | reviewer | fix-issues | Verify fixes |
| commit | teamlead | re-review | Commit and PR |
architect → [critic] → developer → parallel(tester, perf, security) → reviewer → fix cycle → commit
debugger → developer → tester → reviewer → commit
architect → developer → parallel(tester, perf) → reviewer → commit
security → developer(fixes) → reviewer → commit
Team development completes when:
completedshutdown_requestTeamDelete.local/team-results/{team-name}-summary.mdActivates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.