28 lines
859 B
Markdown
28 lines
859 B
Markdown
---
|
|
description: Show current project phase, entity counts, and pending work
|
|
allowed-tools: Read, Bash
|
|
---
|
|
|
|
# Guardrail Status
|
|
|
|
Display the current guardrail project status.
|
|
|
|
## Steps
|
|
|
|
1. Read `project_manifest.json`
|
|
|
|
2. Display:
|
|
- **Current Phase**: `state.current_phase`
|
|
- **Approval Status**: `state.approval_status.manifest_approved`
|
|
- **Entity Counts**:
|
|
- Pages: count by status (DEFINED/APPROVED/IMPLEMENTED)
|
|
- Components: count by status
|
|
- API Endpoints: count by status
|
|
- Database Tables: count by status
|
|
- **Recent History**: last 5 items from `state.revision_history`
|
|
|
|
3. Show available actions for current phase:
|
|
- DESIGN_PHASE: Can use `/guardrail:design`, then `/guardrail:review`
|
|
- DESIGN_REVIEW: Can use `/guardrail:approve` or `/guardrail:reject`
|
|
- IMPLEMENTATION_PHASE: Can use `/guardrail:implement`
|