Full-stack-skills openspec-verify
Validate that implementation matches change artifacts using `/opsx:verify`, checking completeness, correctness, and coherence. Use when the user says "verify implementation", "check my work", "/opsx:verify", or wants quality validation before archiving.
install
source · Clone the upstream repo
git clone https://github.com/partme-ai/full-stack-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/partme-ai/full-stack-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/openspec-skills/openspec-verify" ~/.claude/skills/partme-ai-full-stack-skills-openspec-verify && rm -rf "$T"
manifest:
skills/openspec-skills/openspec-verify/SKILL.mdsource content
OpenSpec Verify Skill
Use
to validate that the implementation matches the change artifacts. Checks three dimensions — completeness, correctness, and coherence — and reports issues categorized as CRITICAL, WARNING, or SUGGESTION./opsx:verify
When to Use
- After implementing tasks with openspec-apply, before archiving.
- The user says "verify", "check my work", "validate implementation".
- Quality gate before archiving a change.
Prerequisites
- Tasks implemented (via openspec-apply or manual coding).
Workflow
-
Run verification
— verify the current/inferred change./opsx:verify
— verify a specific change./opsx:verify <change-name>
-
Three verification dimensions
Dimension What it validates Completeness All tasks done, all requirements implemented, scenarios covered Correctness Implementation matches spec intent, edge cases handled Coherence Design decisions reflected in code, patterns consistent -
Review the report
- CRITICAL: Must fix before archiving.
- WARNING: Should address; does not block archive.
- SUGGESTION: Optional improvements.
-
Fix issues if needed
- Address critical issues, optionally fix warnings.
- Run
again to confirm./opsx:verify
Outputs
- Verification report with categorized issues (CRITICAL / WARNING / SUGGESTION).
- Summary: ready to archive or not.
Next Steps
- If ready: use openspec-archive to archive the change.
- If issues found: fix code or update artifacts, then re-verify.
Troubleshooting
- Many false positives: Add project context in
to help the agent understand conventions. See openspec-config.openspec/config.yaml