What problem does it solve?
Validate that implementation work satisfies the requirements, acceptance criteria, and guardrails defined in the Strategic PRD. Use this skill whenever you need to check compliance after a task or batch is implemented, during code review, or as a pre-merge gate. Trigger when the user says things like "validate this against the PRD", "check if this meets the requirements", "run a compliance check", "is this ready to ship", "does this satisfy the acceptance criteria", or "pre-merge check". The validator is adversarial by design: it executes typechecks, builds, and tests rather than trusting self-reports, and treats a dishonest fallback as a hard failure. It never builds or modifies code — it only checks.
Core Features & Use Cases
- Validates that implementation work adheres to the Strategic PRD, including requirements, acceptance criteria, and guardrails.
- Executes typechecks, builds, linting, and tests to verify compliance, then reports with exact citations.
- Provides a structured gate for code reviews and pre-merge checks to prevent non-compliant changes.
Quick Start
Run the validator against the touched scope to execute typecheck, build, lint, and tests and produce a validation report.