prd-build-status
Show PRD build orchestration status
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Show PRD build orchestration status
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Decompose a PRD into parallel work units and build them with independent agents
Run /prd-build over multiple PRDs with full worktree lifecycle (create, dispatch, FF-merge, cleanup). Single-command dispatch from one session — sequential or parallel.
Evaluate an MCP tool's agentic usability via parallel test scenarios plus a meta-reflection pass, producing a scored improvement report
Cancel or pause a PRD build run
Resume a paused or interrupted PRD build run
Run diverge → converge → premortem pipeline to produce a risk-annotated PRD
| name | prd-build-status |
| description | Show PRD build orchestration status |
| argument-hint | |
| allowed-tools | ["Read"] |
Read the state file and present a clear status report.
if [ -f .claude/prd-build.state.json ]; then
cat .claude/prd-build.state.json
else
echo "NO_STATE_FILE"
fi
If NO_STATE_FILE: tell the user there's no active PRD build run. Suggest /prd-build <prd-path> to start one.
Otherwise, also read .claude/prd-build-artifacts/dag.json with the Read tool to get unit-level detail.
PRD Build Status: <status>
Pass: <current>/<max> | Started: <time>
Progress:
Layer 0: [landed] unit-a, [landed] unit-b
Layer 1: [active] unit-c (implement), [pending] unit-d
Layer 2: [pending] unit-e
Summary: X/Y units landed | Z active | W pending | E evicted
Use status indicators:
landed — merged to integration branchactive — agent currently working (show pipeline stage if available)passed — done, waiting in merge queuepending — not yet startedevicted — merge failed, awaiting retryfailed — permanently failedAlso read and show the last 10 lines of .claude/prd-build.log.md as recent activity.