一键导入
workflow
Meta-orchestrator — shows project state across all 3 stages, suggests next step, and routes to stage orchestrators or individual skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Meta-orchestrator — shows project state across all 3 stages, suggests next step, and routes to stage orchestrators or individual skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Enforces staged execution discipline on large tasks: a written stage plan, parallel delegation where the runtime supports it, a failable verification check at each stage, and a skeptical self-review before delivery. Trigger when the user explicitly asks ("do this thoroughly", "be systematic", "deep work mode") OR when the task objectively spans multiple files, multiple sources, or multiple sessions. Do NOT trigger on ordinary multi-step requests that a direct attempt handles fine.
Bootstrap project orchestration with beads task tracking.
Core engineering principles for implementation tasks
Create beads from a spec (full decomposition) or from user input (ad-hoc issues). Single entry point for all bead creation.
Dispatch the implementation supervisor for a bead task. Resolves the correct supervisor from the assignee field, checks branch state, and dispatches with full context.
QA finalization gate — validates spec conformity, runs tests/build/lint, produces a structured QA report. Auto-dispatches the supervisor for rework on FAIL. Last gate before human merge.
| name | workflow |
| description | Meta-orchestrator — shows project state across all 3 stages, suggests next step, and routes to stage orchestrators or individual skills. |
| user_invocable | true |
Interactive pipeline guide. Shows current project state, suggests the next step, and routes to the correct stage orchestrator or skill.
| Artifact | Detection Pattern |
|---|---|
| Manifesto | docs/MANIFESTO.md |
| PRD | docs/PRD.md or docs/prd/*.md — check for Status: APPROVED |
| Architecture | docs/*architecture*.md or docs/ARCHITECTURE.md — check for Status: APPROVED |
| Plan | docs/plans/NN-plan-*.md — check for Status: APPROVED |
| Research | docs/research/NN-research-*.md — match NN to phase number |
| Spec | docs/specs/NN-spec-*.md — check for Status: APPROVED |
| Beads | bd list --status=open --json 2>/dev/null — check for epic matching the phase |
Phase grouping: Files sharing the same NN prefix belong to the same phase.
Stage 1 — Product Discovery → /product
{check} Manifesto {path or "not found"}
{check} PRD {path} ({status})
{check} Architecture {path} ({status})
Stage 2 — Specification → /specification {NN}
Phase {NN} ({name from plan title}):
{check} Plan {path} ({status})
{check} Research {count} doc(s) in docs/research/{NN}-*
{check} Spec {path} ({status})
{check} Beads {epic_id} ({completed}/{total} complete)
Stage 3 — Implementation → /implementation {NN}
Phase {NN}:
{progress} {completed}/{total} tasks complete
Ready: {list of ready task IDs}
In progress: {list of in-progress task IDs}
Blocked: {count}
Where {check} is:
[done] — artifact exists and is APPROVED/complete[exists] — artifact exists but not yet APPROVED[missing] — not found[warning] — missing but a later step was already done (skipped step)
/product or /requirements/product or /architecture/specification {NN} or /plan/specification {NN} or /research/specification {NN} or /spec/specification {NN} or /tasks/implementation {NN} or /investigate with ready tasksWhen suggesting, present both the orchestrator (guided flow) and the direct skill (quick jump):
Next step: Research (Phase 01)
Guided: /specification 01 — walks through remaining steps
Direct: /research — jump straight to research
When the user provides a stage name, delegate to the corresponding orchestrator:
product → Skill(skill="product")specification → Skill(skill="specification") — ask for phase number if not providedimplementation → Skill(skill="implementation") — ask for phase number if not provided
Prerequisite map:
| Skill | Requires |
|---|---|
| requirements | — |
| architecture | PRD APPROVED |
| plan | PRD APPROVED + Architecture APPROVED |
| research | Plan APPROVED |
| spec | Plan APPROVED + Research (warn if missing) |
| tasks | Spec APPROVED |
| investigate | Beads exist |
| do | Beads exist |
| review | Bead with needs-review label |
| quality | Bead with approved label |
If prerequisites are unmet, warn but do not block:
Warning: You are about to run /spec but the following prerequisites are missing:
- Research: no docs found in docs/research/{NN}-*
Without validated research, the spec will be based on unvalidated assumptions
from the plan. This historically causes task drift during implementation.
Do you want to:
1. Run /research first (recommended)
2. Proceed to /spec anyway
3. Cancel
If user confirms → dispatch: Skill(skill="{skill-name}")
Do NOT dispatch agents directly — always go through the corresponding skill or orchestrator so prerequisites are checked.