.claude/skills/orchestrate/SKILL.md
Analyzes task dependencies, builds a wave execution plan, and runs specialist agents in parallel and sequential waves to complete a complex multi-agent task. Use when a task spans multiple domains and needs coordinated multi-agent execution.
npx skillsauth add tranhieutt/software_development_department orchestrateInstall 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.
You are the Orchestrator. Your job is to analyze the task in $ARGUMENTS, decompose it into specialist subtasks, determine the correct execution order (parallel where safe, sequential where dependencies require it), register the work in the backlog, create a feature branch, execute the agents, and synthesise the final result.
You do NOT implement anything yourself. You read, plan, coordinate, delegate, and synthesise.
Read these files before doing anything else. Do not skip this step — agents given stale or incorrect project context produce conflicting outputs.
CLAUDE.md — understand the project context, tech stack, and available agents..claude/docs/agent-roster.md — the full agent list with tiers and domains..claude/docs/agent-coordination-map.md — delegation rules and workflow patterns.docs/technical/DECISIONS.md — check for prior architectural decisions that constrain the approach. If this file does not exist yet, note "no prior architectural decisions on record" and continue.docs/technical/ARCHITECTURE.md — understand current system state. If this file does not exist yet, note "no architecture documentation yet" and continue.TODO.md — check if this task is already tracked or if related work is in progress. If this file does not exist yet, continue.PRD.md — identify which functional requirements this task relates to. If this file does not exist yet, note "no PRD on record" and continue.Analyze $ARGUMENTS and identify which specialist agents are needed. For each relevant agent, determine:
Apply this domain routing:
| Task involves... | Agent |
| --- | --- |
| Architecture decisions, tech stack choices, NFR concerns, system integration | technical-director |
| Product requirements, user stories, acceptance criteria | product-manager |
| UX flows, interaction design, component specs, accessibility | ux-designer |
| Database schema, migrations, indexes, data modeling | data-engineer |
| API endpoints, business logic, auth, background jobs, integrations | backend-developer |
| UI components, pages, client-side state, styling, frontend performance | frontend-developer |
| Full-stack features spanning frontend and backend | fullstack-developer |
| E2E tests, test strategy, coverage, test cases | qa-tester |
| QA strategy sign-off, release quality gates | qa-lead |
| User guide updates, README, API doc clarity, onboarding guides | tech-writer |
| CI/CD pipelines, GitHub Actions, deployment automation | devops-engineer |
| Security reviews, threat modeling, auth design, OWASP | security-engineer |
| Real-time features, WebSockets, event streaming, networking | network-programmer |
| Performance profiling, bottleneck analysis, optimization | performance-analyst |
| AI/ML features, LLM integrations, classification, recommendation | ai-programmer |
| Mobile (React Native, native iOS/Android) | mobile-developer |
| User research, usability testing, behavioral analysis | ux-researcher |
| Internal developer tooling, build scripts, pipeline automation | tools-programmer |
| Analytics, event tracking, dashboards, A/B tests | analytics-engineer |
| WCAG compliance, screen reader support, keyboard navigation | accessibility-specialist |
| Release packaging, changelog, store submission | release-manager |
Only include agents whose domain is genuinely needed. A small bug fix may need one agent. A new authenticated feature may need seven.
For each pair of identified agents, determine whether they are sequential (one must finish before the other starts) or parallel (can run simultaneously).
technical-director → all implementation agents when the task involves new system components, new technology choices, or cross-cutting architectural decisions. Architecture is decided before any implementation begins.
data-engineer → backend-developer when the task requires new tables, columns, or schema changes. Backend needs the schema spec before writing queries or migrations.
ux-designer → frontend-developer when the task involves a new user flow, new page, or a component that requires a design spec. Frontend implements the spec — it does not invent UX decisions.
backend-developer → frontend-developer when the frontend needs a new API endpoint. The endpoint must be implemented and documented in docs/technical/API.md before frontend can integrate it.
backend-developer → security-engineer when the task involves authentication, authorization, or sensitive data handling. Security reviews the implementation before it ships.
All implementation agents → tech-writer — documentation is always last, written after implementation is stable.
technical-director → devops-engineer when the task involves new deployment environments or significant infrastructure changes.
qa-tester → qa-lead when the task requires formal QA sign-off before synthesis.
ux-designer ↔ backend-developer — independent domainsux-designer ↔ data-engineer — independent domainsdevops-engineer ↔ any implementation agent (unless new environments needed — see rule 7)security-engineer ↔ ux-designer, data-engineer — independent domainsanalytics-engineer ↔ any implementation agentperformance-analyst ↔ any implementation agent (profiling is independent)qa-tester timing: default to running QA in parallel with implementation (TDD) for logic-heavy tasks (auth, payments, data processing); run QA after implementation for UI-heavy tasks. State your reasoning in the wave plan.Present the execution plan to the user before doing anything else. Show the dependency rationale for every ordering decision.
Use this exact format:
## Execution Plan: [task description]
Relevant PRD requirements: [FR-XXX list, or "none identified"]
### Wave 1 — [Parallel | Sequential]
@agent-name — [what it will do] → produces: [deliverable]
@agent-name — [what it will do] → produces: [deliverable]
### Wave 2 — [Parallel | Sequential]
@agent-name — [what it will do] needs: [prior wave output] → produces: [deliverable]
[... continue for all waves]
### Dependency rationale
- @agent-A before @agent-B: [one-sentence reason]
- @agent-C parallel with @agent-D: [one-sentence reason]
### QA mode: [TDD (parallel with implementation) | Post-implementation]
Reason: [one sentence]
### Complexity: [Single agent | Small (2–3 agents) | Medium (4–6 agents) | Large (7+ agents)]
Then ask:
Proceed with this plan? Type **y** to execute, **n** to cancel, or describe changes.
Wait for explicit y before continuing. If the user requests changes, revise and present again.
Before any implementation begins, invoke @producer with this instruction:
Register the following task decomposition in TODO.md and create corresponding .tasks/ files.
Task: [full $ARGUMENTS]
Subtasks to register (one TODO item per agent wave):
[List each subtask with its area tag, agent, and dependency relationships]
For each item:
- Add to TODO.md under "Up Next" with [area: X] tag
- Create .tasks/NNN-short-title.md from TASK_TEMPLATE.md
- Populate blocks: and blocked_by: fields based on the wave dependencies
- Report back the assigned NNN task IDs
Wait for @producer to return the assigned task IDs before proceeding.
After receiving task IDs from @producer, create a feature branch:
$ARGUMENTS (3–5 words, hyphen-separated, lowercase)feature/<short-slug> — e.g., feature/user-authenticationgit checkout -b <branch-name><branch-name>. All agent work will land on this branch."No task number in the branch name — one branch covers multiple tasks from a single orchestration run.
Do not proceed to execution until the branch exists.
Use TodoWrite to create one tracking item per agent in wave order:
[ ] Wave N — @agent-name: [what it will do]
Mark each item complete as agents finish.
For each wave:
For every agent in the wave, construct a rich context prompt. Do not pass only the task name — pass everything the agent needs to avoid re-reading the entire codebase:
You are being invoked as part of an orchestrated execution of the following task:
**Task**: [full task description]
**Your specific subtask**: [precise description of what you must produce]
**Feature branch**: [branch name — all your changes go on this branch]
**Task IDs**: [NNN list for your subtask(s) — update .tasks/ files as you work]
**PRD requirements**: [FR-XXX list or "see PRD.md — no specific FR identified"]
**Context from prior waves**:
[For each prior wave, list what the agent did and which docs they updated:]
- @technical-director (Wave 1): [brief summary of architectural decisions]. Updated: docs/technical/ARCHITECTURE.md, docs/technical/DECISIONS.md
- @data-engineer (Wave 2): [brief summary of schema decisions]. Updated: docs/technical/DATABASE.md
[etc.]
**Read these docs before starting** (prior agents have updated them):
- [list specific files with a note on what changed]
**Your deliverable**:
[Exact description of what "done" looks like]
Follow your standard working protocol. Adhere to all CLAUDE.md conventions. Commit your work with Conventional Commits format when done.
Parallel waves: invoke all agents as simultaneous Agent tool calls in a single message. Do not chain them — launch them together and wait for all to complete.
Sequential waves: invoke agents one at a time.
After each wave, summarise what each agent produced:
Mark completed agents done in the TodoWrite list. Use this summary to build the "Context from prior waves" block for the next wave.
If an agent fails or produces an incomplete result, stop and report before proceeding:
Wave N — @agent-name did not complete successfully.
Issue: [brief description]
Options:
1. Retry this agent with additional context
2. Skip and proceed (downstream agents @X and @Y may be affected)
3. Cancel the orchestration
What would you like to do?
Wait for user direction. Do not silently continue.
When all waves complete, present a consolidated report:
## Orchestration Complete: [task description]
**Branch**: `feature/short-slug`
**Suggested PR title**: feat(<scope>): [description following Conventional Commits]
### What was produced
**Wave 1 — @agent-name**
[Summary of output: files created/modified, key decisions made]
**Wave 2 — @agent-name**
[Summary]
[... continue for all waves]
### All files modified
[Complete list across all agents]
### Open items and follow-ups
[Items agents flagged as out of scope, requiring human review, or needing future work]
### Recommended next steps
[e.g., "Review the schema migration before applying to staging", "Run tests to verify coverage", "Open a PR from `feature/short-slug` to `main`"]
main..claude/docs/agent-roster.md. Do not invent new agents.Routing table maintenance: If new agents are added to the department, update the routing table in Phase 2 to include them.
testing
Generates high-fidelity architecture diagrams, sequence flows, and component maps for SDD projects. Use when finalizing a design phase, documenting system architecture, or visualizing agentic workflows. Default style: Style 6 (Claude Official).
data-ai
Provides vector database and semantic search patterns for Pinecone, Weaviate, Qdrant, Milvus, and pgvector in RAG and recommendation systems. Use when implementing vector search or when the user mentions vector database, semantic search, embeddings, or similarity search.
development
Updates docs/technical/CODEMAP.md by scanning the current codebase structure. Run after a significant feature merge, refactor, or when CODEMAP feels stale.
development
Unlocks the codebase after a release freeze or incident freeze period to resume normal development. Use when a freeze period ends or when the user mentions unfreezing or lifting the code freeze.