Coordinate multiple agents by routing tasks to appropriate specialists. EXCLUSIVE to project-manager agent.
Installation
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
npx agent-skills-cli listSkill Instructions
name: project-orchestration description: Coordinate multiple agents by routing tasks to appropriate specialists. EXCLUSIVE to project-manager agent. allowed-tools: Read, Grep, Glob, Edit, Write
Project Orchestration
Exclusive to: project-manager agent
Instructions
- Analyze the user request to identify domain(s) involved
- Route to appropriate specialist agent(s) using decision tree
- Use handoff protocol when transitioning between agents
- Update documentation when changes are complete
Agent Roster
| Agent | Domain | Triggers |
|---|---|---|
planner | Architecture | "plan", "design" |
fullstack-developer | Implementation | "implement", "build" |
database-admin | Data layer | "migration", "schema" |
ui-ux-designer | Interface | "UI", "component" |
researcher | Research | "research", "compare" |
debugger | Troubleshooting | "bug", "error", "fix" |
reviewer | Quality | "review", "check" |
Routing Decision Tree
Request β Is it a bug/error? β debugger
β Is it a review? β reviewer
β Is it UI/UX? β ui-ux-designer
β Is it database? β database-admin
β Is it research? β researcher
β Is it planning? β planner
β Is it implementation? β fullstack-developer
β Multi-domain? β project-manager
Handoff Protocol
## Handoff: [From] β [To]
- **Completed**: [what was done]
- **Deliverables**: [files]
- **Next**: [what to do]
Task Breakdown Template
| # | Task | Agent | Dependencies |
|---|------|-------|--------------|
| 1 | Design | planner | none |
| 2 | Migration | database-admin | #1 |
| 3 | Implement | fullstack-developer | #2 |
Documentation Sync
| Change Type | Update |
|---|---|
| New feature | docs/codebase-summary.md |
| New model | docs/codebase-summary.md |
| Pattern change | docs/code-standards.md |
Examples
- "Coordinate UI + API + migration work"
- "Break down this feature across agents"
More by mgkyawzayya
View allPlan and implement safe database schema changes including migrations, indexes, and backfills. Use when creating tables, adding columns, optimizing queries, or managing Eloquent relationships. EXCLUSIVE to database-admin agent.
Diagnose errors and failing tests in Laravel + React applications. Use when encountering bugs, exceptions, stack traces, 500 errors, TypeErrors, failing Pest/Vitest tests, or unexpected behavior. EXCLUSIVE to debugger agent.
Create clear, step-by-step implementation plans with acceptance criteria. EXCLUSIVE to planner agent.
Fetch and summarize authoritative external sources into actionable guidance. EXCLUSIVE to researcher agent.
