Aiwg orchestrate-project
Plan iterations, delegate to SDLC agents, and compile iteration status
install
source · Clone the upstream repo
git clone https://github.com/jmagly/aiwg
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jmagly/aiwg "$T" && mkdir -p ~/.claude/skills && cp -r "$T/agentic/code/frameworks/sdlc-complete/skills/orchestrate-project" ~/.claude/skills/jmagly-aiwg-orchestrate-project-6e3042 && rm -rf "$T"
manifest:
agentic/code/frameworks/sdlc-complete/skills/orchestrate-project/SKILL.mdsource content
Orchestrator Command (SDLC)
Task
Coordinate lifecycle work for the current phase/iteration:
- Read the latest phase/iteration plan and key artifacts
- Select SDLC agents to work in parallel (requirements, architecture, build, test)
- Synthesize results into a status summary with risks and next actions
Inputs
- Phase/iteration plan + RACI (if present)
- Security/reliability gate expectations
Outputs
with gates, risks, and next iteration goalsstatus-assessment.md
Notes
- Escalate blockers; log decisions and owners
References
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/subagent-scoping.md — Each subagent gets ONE focused task; decompose complex work into parallel subagents
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/parallel-then-synthesize.md — Launch independent agents in parallel; synthesize into a single status summary
- @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/human-authorization.md — Escalate blockers to human; do not autonomously resolve gate failures
- @$AIWG_ROOT/agentic/code/frameworks/sdlc-complete/rules/sdlc-orchestration.md — Phase orchestration patterns this skill implements
- @$AIWG_ROOT/agentic/code/frameworks/sdlc-complete/skills/project-status/SKILL.md — Use for phase detection before dispatching agents