Phase Validate
Use this skill when the user asks for /phase-validate, solution validation, architecture validation, adversarial review, or pre-implementation validation of a plan.
Purpose
Find weaknesses in a solution before implementation begins.
Workflow
- Load the latest proposal, PRD, or design artifact.
- Run a security and privacy review of the proposed design.
- Run architecture review for feasibility, scalability, maintainability, and operational risk.
- Apply first-principles audit:
- Is every requirement justified?
- What can be deleted?
- Is the simplest viable version clear?
- Are optimizations happening before simplification?
- Which constraints are assumptions?
- If external review tools are available, run an independent critique through Codex, Gemini, or another configured reviewer.
- Merge findings, revise the proposal, and revalidate up to 3 rounds.
Output
Use this shape:
VALIDATION: PASS | FAIL
Security: PASS | FAIL
Architecture: PASS | FAIL
External Review: PASS | FAIL | SKIPPED
Iterations: N/3
Key Findings:
- ...
End with PHASE_VALIDATE_PASS or PHASE_VALIDATE_FAIL.
1---2name: phase-validate3description: Phase Validate4---56# Phase Validate78Use this skill when the user asks for `/phase-validate`, solution validation, architecture validation, adversarial review, or pre-implementation validation of a plan.910## Purpose1112Find weaknesses in a solution before implementation begins.1314## Workflow15161. Load the latest proposal, PRD, or design artifact.172. Run a security and privacy review of the proposed design.183. Run architecture review for feasibility, scalability, maintainability, and operational risk.194. Apply first-principles audit:20 - Is every requirement justified?21 - What can be deleted?22 - Is the simplest viable version clear?23 - Are optimizations happening before simplification?24 - Which constraints are assumptions?255. If external review tools are available, run an independent critique through Codex, Gemini, or another configured reviewer.266. Merge findings, revise the proposal, and revalidate up to 3 rounds.2728## Output2930Use this shape:3132```text33VALIDATION: PASS | FAIL34Security: PASS | FAIL35Architecture: PASS | FAIL36External Review: PASS | FAIL | SKIPPED37Iterations: N/338Key Findings:39- ...40```4142End with `PHASE_VALIDATE_PASS` or `PHASE_VALIDATE_FAIL`.