Agent SkillsAgent Skills
mgkyawzayya

project-orchestration

@mgkyawzayya/project-orchestration
mgkyawzayya
1
0 forks
Updated 4/1/2026
View on GitHub

Coordinate multiple agents by routing tasks to appropriate specialists. EXCLUSIVE to project-manager agent.

Installation

$npx agent-skills-cli install @mgkyawzayya/project-orchestration
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Path.claude/skills/project-orchestration/SKILL.md
Branchmain
Scoped Name@mgkyawzayya/project-orchestration

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

npx agent-skills-cli list

Skill 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

  1. Analyze the user request to identify domain(s) involved
  2. Route to appropriate specialist agent(s) using decision tree
  3. Use handoff protocol when transitioning between agents
  4. Update documentation when changes are complete

Agent Roster

AgentDomainTriggers
plannerArchitecture"plan", "design"
fullstack-developerImplementation"implement", "build"
database-adminData layer"migration", "schema"
ui-ux-designerInterface"UI", "component"
researcherResearch"research", "compare"
debuggerTroubleshooting"bug", "error", "fix"
reviewerQuality"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 TypeUpdate
New featuredocs/codebase-summary.md
New modeldocs/codebase-summary.md
Pattern changedocs/code-standards.md

Examples

  • "Coordinate UI + API + migration work"
  • "Break down this feature across agents"