sdd-verify

Verify SDD change implementations by executing tests and validating spec compliance.

Updated May 24, 2026
One-click install
npx skills add https://github.com/etrigan16/v0-cipher-ar --skill sdd-verify-etrigan16
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: sdd-verify
Source: https://github.com/etrigan16/v0-cipher-ar/tree/main/.opencode/skills/sdd-verify
Command: npx skills add https://github.com/etrigan16/v0-cipher-ar --skill sdd-verify-etrigan16

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? It closes the gap between claimed implementation and proven implementation in spec-driven development by requiring real test execution evidence before a change can be marked complete. ## Core Features & Use Cases - Runtime Verification: Executes test, build, and coverage commands and records exit codes and output hashes as evidence. - Spec Compliance Matrix: Maps every spec requirement and scenario to a covering test with COMPLIANT, FAILING, UNTESTED, or PARTIAL status. - Strict TDD Auditing: Optionally validates TDD cycle evidence, test layer distribution, changed-file coverage, and assertion quality when Strict TDD mode is active. - Use Case: After an apply phase finishes a change, the orchestrator delegates to this skill to run the test suite, compare results against specs and design, and produce a PASS, PASS WITH WARNINGS, or FAIL verdict report. ## Quick Start Ask the orchestrator to run the SDD verification phase for the current change and return the verification report with its final verdict.

Frequently Asked Questions about sdd-verify

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

FAQPage Schema
How do I verify an SDD change implementation against its specs?▼

Run the verification phase after all tasks are complete. The skill reads the proposal, specs, design, and tasks, executes the test and build commands, maps each spec scenario to a covering test, and returns a compliance matrix with a final verdict.

What does the sdd-verify skill check during verification?▼

It checks task completeness, spec scenario compliance via passing tests, design coherence against changed code, and build/test execution results. In Strict TDD mode it also audits TDD cycle evidence, test layers, changed-file coverage, and assertion quality.

Can verification run if some tasks are still incomplete?▼

No. If any task is unchecked, verification returns blocked without running the full suite. Incomplete core tasks are flagged CRITICAL and incomplete cleanup tasks are flagged WARNING once partial checks run.

Does sdd-verify fix the issues it finds?▼

No. It only reports issues grouped as CRITICAL, WARNING, or SUGGESTION. Fixes are the responsibility of the orchestrator or user; the skill acts strictly as an independent quality gate.

What happens when only a tasks artifact exists without specs?▼

Verification degrades gracefully: it checks objective task completion only, skips spec correctness and design coherence, and records the skipped dimensions. The verdict may be PASS WITH WARNINGS for task completion only.