name: ai-orchestrator description: Orchestrate task execution in a Claude-only setup using three context levels (minimal/standard/full), with project-aware routing, gates, and handoff artifacts. Use when planning or coordinating end-to-end task delivery.
AI Orchestrator
Shared Runtime Contract
Apply the booster-wide contract from booster-runtime-contract.md.
Operating Modes
- Orchestration mode:
standardby default.paranoidfor release, risky deploy, schema or data changes, auth/security-sensitive work, external side effects, or when the user explicitly asks for maximum skepticism.
- Execution posture:
report-onlyunless the user explicitly asks for execution planning that should immediately drive agent work.
Workflow
- Declare the orchestration mode (
standardorparanoid) and keep execution posture explicit. - Parse the request into objective, risk level, and affected projects.
- Select work contour and task type using references/operating-model.md.
- Route subtasks by context level:
minimal→ executor-lite, formatting skillsstandard→ spec-writer, change-plan-architect, tech-spec-composerfull→ ceo-review, eng-review, review-gate, architect-system-analyst
- For feature planning, redesign, or high-ambiguity product work, insert:
product-reviewwhen user value, acceptance, or scope justification must be pressure-tested;eng-reviewwhen implementation boundaries, trust boundaries, rollback, or validation strategy must be pressure-tested. Legacy note:- if an older workflow explicitly names
ceo-review, treat it asproduct-reviewaliasing rather than a separate planning branch.
- In
paranoidmode:
- bias risky review, gate, and cutover decisions toward Tier M/H;
- insert
qa-reportbefore final gate for release, user-facing, operator-facing, or regression-sensitive changes; - insert
release-prepbefore release or risky deployment decisions; - require
techlead-code-reviewerinparanoidmode before finalreview-gate; - require
review-gateinparanoidmode for integration, release, or risky deployment decisions; - treat missing validation evidence, docs/config/runtime drift, and unresolved contract ambiguity as blockers, not follow-up notes.
- Build a stage plan with explicit handoffs and artifacts per stage.
- For product-review stages, require these handoff artifacts where relevant:
Review ModeExecution PostureProblem and User Value AssessmentScope AssessmentAcceptance Path AssessmentOperator Burden AssessmentTradeoff AssessmentRequired ChangesGo/No-GoRecommended Next Step
- For eng-review stages, require these handoff artifacts where relevant:
Review ModeExecution PostureCurrent-State AssessmentArchitecture AssessmentTrust Boundary AssessmentFailure Mode AssessmentTest Strategy AssessmentRollback and Compatibility AssessmentRequired ChangesGo/No-GoRecommended Next Step
- For UX, bugfix, release, or regression-sensitive work, include a
qa-reportstage when behavior confidence matters more than code inspection alone. - For QA stages, require these handoff artifacts where relevant:
QA ModeExecution PostureScopeEnvironmentCurrent-State AssessmentBlocking IssuesUntested or Blocked AreasEvidenceRecommended Next Step
- If remediation is explicitly requested after QA or QA finds blocking issues that are safe to fix, route to
qa-fixbefore final gate. - For QA fix stages, require these handoff artifacts where relevant:
QA Fix ModeSeverity ScopeExecution PostureConsumed QA ArtifactsCurrent-State AssessmentFixed IssuesValidation ResultsResidual RisksRecommended Next Step
- For release-prep stages, require these handoff artifacts where relevant:
Release ModeExecution PostureRelease ScopePreflight AssessmentValidation AssessmentBlocked or Untested Critical PathsDocs/Config/Runtime Drift AssessmentRollback AssessmentOperator Readiness AssessmentPost-Release Follow-UpsGo/No-GoRecommended Next Step
- For review and gate stages, require these handoff artifacts where relevant:
Review ModeorGate ModeExecution PostureCurrent-State AssessmentBlocking FindingsorBlocking IssuesDocs/Config/Runtime Drift AssessmentRequired Validation CommandsResidual Risks
- Apply mandatory gates (
spec-gate,execution-gate,review-gate,merge/commit-gate). - Define escalation and fallback conditions.
- Return an execution card with owners, commands, and exit criteria.
Project Context
Read references/project-context.md and include project-specific constraints in the orchestration plan.
Input Contract
Orchestration Mode(standardorparanoid, optional)ObjectiveProject(s)Task Type(feature, bugfix, db-change, pipeline, ux)Risk Notes(optional)Deadline(optional)
Output Contract
Orchestration ModeExecution PostureExecution TopologyContext Level RoutingStage PlanHandoffs and ArtifactsQuality GatesEscalation RulesGo/No-Go
Quality Rules
- Keep routing decisions explicit and justified.
- Never skip review-gate for integration to main/master.
- Prefer smallest viable stage with measurable completion criteria.
- Flag contract ambiguity as blocker instead of guessing.
- In
paranoidmode, prefer a stronger gate over a faster stage.