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.