spec-compliance-review

Validates code implementations against original requirements before quality review.

6|2|Updated Jan 30, 2026
One-click install
npx skills add https://github.com/Jerrylalala/compound-engineering --skill spec-compliance-review-jerrylalala
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: spec-compliance-review
Source: https://github.com/Jerrylalala/compound-engineering/tree/main/plugins/compound-engineering/skills/spec-compliance-review
Command: npx skills add https://github.com/Jerrylalala/compound-engineering --skill spec-compliance-review-jerrylalala

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code that passes quality review but implements the wrong requirements causes costly rework. This Skill adds a first-pass review stage that verifies the implementation matches the specification exactly—nothing missing, nothing extra—before any code quality review begins. ## Core Features & Use Cases - Three-Dimension Verification: Checks for missing requirements, unnecessary extra work, and misunderstood specifications by reading actual code rather than trusting implementer reports. - Independent Validation Protocol: Instructs reviewers to compare implementation line-by-line against requirements instead of accepting completion claims. - Structured Pass/Fail Reports: Produces checklists with file and line references for gaps, over-engineering, or misinterpretations. - Use Case: After a developer finishes a multi-part feature, run this review to confirm every requirement item is implemented and no unrequested features were added, then proceed to code quality review. ## Quick Start Ask the AI to run a spec compliance review comparing the current implementation against the original task requirements before doing a code quality review.

Frequently Asked Questions about spec-compliance-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I verify code matches requirements before review?▼

Run a spec compliance review that compares the actual implementation line-by-line against the original requirements checklist. It checks three dimensions: missing requirements, unnecessary extra work, and misunderstood specifications, reporting findings with file and line references.

What is the difference between spec compliance review and code quality review?▼

Spec compliance review answers whether the code does the right thing (the What), while code quality review answers whether it is written well (the How). Compliance review runs first, since well-written code that implements wrong requirements still needs rework.

When should I skip spec compliance review?▼

Skip it for simple bug fixes, single-line changes, and behavior-preserving refactors. Use it for complex features, requirements with multiple sub-items, important business logic, and when the implementer and reviewer are different people.

Why should reviewers not trust the implementer's completion report?▼

Implementer reports can be incomplete, inaccurate, or overly optimistic, especially when work finished suspiciously fast. The review protocol requires independently reading the actual code and comparing it against requirements rather than accepting claims about completeness.

Does two-stage review slow down the development workflow?▼

It adds 30-50% time per review but reduces rework by roughly 60% by catching requirement errors before quality review. The net effect is faster delivery for complex features, though simple changes can skip the compliance stage.