33 lines
951 B
Markdown
33 lines
951 B
Markdown
---
|
|
description: Request design review and transition to DESIGN_REVIEW phase
|
|
allowed-tools: Read, Write, Bash
|
|
---
|
|
|
|
# Request Design Review
|
|
|
|
Transition the project from DESIGN_PHASE to DESIGN_REVIEW.
|
|
|
|
## Steps
|
|
|
|
1. **Validate Manifest**:
|
|
```bash
|
|
python3 "$CLAUDE_PROJECT_DIR/skills/guardrail-orchestrator/scripts/validate_manifest.py" --strict
|
|
```
|
|
|
|
2. **If Valid**, transition phase:
|
|
```bash
|
|
python3 "$CLAUDE_PROJECT_DIR/skills/guardrail-orchestrator/scripts/transition_phase.py" --to DESIGN_REVIEW
|
|
```
|
|
|
|
3. **Show Review Checklist**:
|
|
- [ ] All pages have at least one component
|
|
- [ ] All components have defined props with types
|
|
- [ ] All APIs have request/response schemas
|
|
- [ ] All database tables have primary keys
|
|
- [ ] No orphan components
|
|
- [ ] No circular dependencies
|
|
|
|
4. **Explain Next Steps**:
|
|
- Use `/guardrail:approve` to approve and move to implementation
|
|
- Use `/guardrail:reject <feedback>` to send back for fixes
|