From agent-workflows
Displays PRD build orchestration status from state files: layer progress (landed/active/pending/evicted/failed), pass counts, start time, unit summary, and recent log activity. Use to monitor active builds.
npx claudepluginhub sjarmak/agent-workflowsThis skill is limited to using the following tools:
Read the state file and present a clear status report.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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.