Verify that an implementation matches the change artifacts (specs, tasks, design).
Store selection: If the user names a store (a store is a standalone OpenSpec repo registered on this machine) or the work lives in one, run openspec store list --json to discover registered store ids, then pass --store <id> on the commands that read or write specs and changes (new change, status, instructions, list, show, validate, archive, doctor, context, schemas, view). Once selected, treat --store <id> as sticky for the rest of the workflow. Every unscoped example of those commands below is shorthand: before running it, append the flag. For example, run openspec status --change "<name>" --json --store "<id>", not the unscoped form shown below. Other commands do not take the flag. Hints printed by commands already carry the flag; keep it on follow-ups. Without a store, commands act on the nearest local openspec/ root.
Input: Optionally specify a change name. If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.
Steps
Select the change
If a name is provided, use it. Otherwise:
- Infer from conversation context if the user mentioned a change
- Auto-select if only one active change exists
- If ambiguous, run
openspec list --json to get available changes and ask the user to select one
When prompting, show changes that have implementation tasks (tasks artifact exists).
Include the schema used for each change if available.
Mark changes with incomplete tasks as "(In Progress)".
Always announce: "Using change: " and how to override (e.g., /openspec-verify-change <other>).
Check status to understand the schema
openspec status --change "<name>" --json
Parse the JSON to understand:
schemaName: The workflow being used (e.g., "spec-driven")
planningHome, changeRoot, artifactPaths, and actionContext: path and scope context
- Which artifacts exist for this change
Get planning context and load artifacts
openspec instructions apply --change "<name>" --json
This returns the change directory and contextFiles (artifact ID -> array of concrete file paths). Read all available artifacts from contextFiles.
Initialize verification report structure
Create a report structure with three dimensions:
- Completeness: Track tasks and spec coverage
- Correctness: Track requirement implementation and scenario coverage
- Coherence: Track design adherence and pattern consistency
Each dimension can have CRITICAL, WARNING, or SUGGESTION issues.
Verify Completeness
Task Completion:
- If
contextFiles.tasks exists, read every file path in it
- Parse checkboxes:
- [ ] (incomplete) vs - [x] (complete)
- Count complete vs total tasks
- If incomplete tasks exist:
- Add CRITICAL issue for each incomplete task
- Recommendation: "Complete task: " or "Mark as done if already implemented"
Spec Coverage:
- If delta specs exist in
contextFiles.specs:
- Extract all requirements (marked with "### Requirement:")
- For each requirement:
- Search codebase for keywords related to the requirement
- Assess if implementation likely exists
- If requirements appear unimplemented:
- Add CRITICAL issue: "Requirement not found: "
- Recommendation: "Implement requirement X: "
Verify Correctness
Requirement Implementation Mapping:
- For each requirement from delta specs:
- Search codebase for implementation evidence
- If found, note file paths and line ranges
- Assess if implementation matches requirement intent
- If divergence detected:
- Add WARNING: "Implementation may diverge from spec: "
- Recommendation: "Review : against requirement X"
Scenario Coverage:
- For each scenario in delta specs (marked with "#### Scenario:"):
- Check if conditions are handled in code
- Check if tests exist covering the scenario
- If scenario appears uncovered:
- Add WARNING: "Scenario not covered: "
- Recommendation: "Add test or implementation for scenario: "
Verify Coherence
Design Adherence:
- If
contextFiles.design exists:
- Extract key decisions (look for sections like "Decision:", "Approach:", "Architecture:")
- Verify implementation follows those decisions
- If contradiction detected:
- Add WARNING: "Design decision not followed: "
- Recommendation: "Update implementation or revise design.md to match reality"
- If no design.md: Skip design adherence check, note "No design.md to verify against"
Code Pattern Consistency:
- Review new code for consistency with project patterns
- Check file naming, directory structure, coding style
- If significant deviations found:
- Add SUGGESTION: "Code pattern deviation: "
- Recommendation: "Consider following project pattern: "
Generate Verification Report
Summary Scorecard:
## Verification Report: <change-name>
### Summary
| Dimension | Status |
|--------------|------------------|
| Completeness | X/Y tasks, N reqs|
| Correctness | M/N reqs covered |
| Coherence | Followed/Issues |
Issues by Priority:
CRITICAL (Must fix before archive):
- Incomplete tasks
- Missing requirement implementations
- Each with specific, actionable recommendation
WARNING (Should fix):
- Spec/design divergences
- Missing scenario coverage
- Each with specific recommendation
SUGGESTION (Nice to fix):
- Pattern inconsistencies
- Minor improvements
- Each with specific recommendation
Final Assessment:
- If CRITICAL issues: "X critical issue(s) found. Fix before archiving."
- If only warnings: "No critical issues. Y warning(s) to consider. Ready for archive (with noted improvements)."
- If all clear: "All checks passed. Ready for archive."
Verification Heuristics
- Completeness: Focus on objective checklist items (checkboxes, requirements list)
- Correctness: Use keyword search, file path analysis, reasonable inference - don't require perfect certainty
- Coherence: Look for glaring inconsistencies, don't nitpick style
- False Positives: When uncertain, prefer SUGGESTION over WARNING, WARNING over CRITICAL
- Actionability: Every issue must have a specific recommendation with file/line references where applicable
Graceful Degradation
- If only tasks.md exists: verify task completion only, skip spec/design checks
- If tasks + specs exist: verify completeness and correctness, skip design
- If full artifacts: verify all three dimensions
- Always note which checks were skipped and why
Output Format
Use clear markdown with:
- Table for summary scorecard
- Grouped lists for issues (CRITICAL/WARNING/SUGGESTION)
- Code references in format:
file.ts:123
- Specific, actionable recommendations
- No vague suggestions like "consider reviewing"
1---2name: openspec-verify-change3description: Verify implementation matches change artifacts. Use when the user wants to validate that implementation is complete, correct, and coherent before archiving.4license: MIT5---6
7Verify that an implementation matches the change artifacts (specs, tasks, design).
8
9**Store selection:** If the user names a store (a store is a standalone OpenSpec repo registered on this machine) or the work lives in one, run `openspec store list --json` to discover registered store ids, then pass `--store <id>` on the commands that read or write specs and changes (`new change`, `status`, `instructions`, `list`, `show`, `validate`, `archive`, `doctor`, `context`, `schemas`, `view`). Once selected, treat `--store <id>` as sticky for the rest of the workflow. Every unscoped example of those commands below is shorthand: before running it, append the flag. For example, run `openspec status --change "<name>" --json --store "<id>"`, not the unscoped form shown below. Other commands do not take the flag. Hints printed by commands already carry the flag; keep it on follow-ups. Without a store, commands act on the nearest local `openspec/` root.
10
11**Input**: Optionally specify a change name. If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.
12
13**Steps**
14
151. **Select the change**
16
17 If a name is provided, use it. Otherwise:
18 - Infer from conversation context if the user mentioned a change
19 - Auto-select if only one active change exists
20 - If ambiguous, run `openspec list --json` to get available changes and ask the user to select one
21
22 When prompting, show changes that have implementation tasks (tasks artifact exists).
23 Include the schema used for each change if available.
24 Mark changes with incomplete tasks as "(In Progress)".
25
26 Always announce: "Using change: <name>" and how to override (e.g., `/openspec-verify-change <other>`).
27
282. **Check status to understand the schema**
29 ```bash
30 openspec status --change "<name>" --json
31 ```
32 Parse the JSON to understand:
33 - `schemaName`: The workflow being used (e.g., "spec-driven")
34 - `planningHome`, `changeRoot`, `artifactPaths`, and `actionContext`: path and scope context
35 - Which artifacts exist for this change
36
373. **Get planning context and load artifacts**
38
39 ```bash
40 openspec instructions apply --change "<name>" --json
41 ```
42
43 This returns the change directory and `contextFiles` (artifact ID -> array of concrete file paths). Read all available artifacts from `contextFiles`.
44
454. **Initialize verification report structure**
46
47 Create a report structure with three dimensions:
48 - **Completeness**: Track tasks and spec coverage
49 - **Correctness**: Track requirement implementation and scenario coverage
50 - **Coherence**: Track design adherence and pattern consistency
51
52 Each dimension can have CRITICAL, WARNING, or SUGGESTION issues.
53
545. **Verify Completeness**
55
56 **Task Completion**:
57 - If `contextFiles.tasks` exists, read every file path in it
58 - Parse checkboxes: `- [ ]` (incomplete) vs `- [x]` (complete)
59 - Count complete vs total tasks
60 - If incomplete tasks exist:
61 - Add CRITICAL issue for each incomplete task
62 - Recommendation: "Complete task: <description>" or "Mark as done if already implemented"
63
64 **Spec Coverage**:
65 - If delta specs exist in `contextFiles.specs`:
66 - Extract all requirements (marked with "### Requirement:")
67 - For each requirement:
68 - Search codebase for keywords related to the requirement
69 - Assess if implementation likely exists
70 - If requirements appear unimplemented:
71 - Add CRITICAL issue: "Requirement not found: <requirement name>"
72 - Recommendation: "Implement requirement X: <description>"
73
746. **Verify Correctness**
75
76 **Requirement Implementation Mapping**:
77 - For each requirement from delta specs:
78 - Search codebase for implementation evidence
79 - If found, note file paths and line ranges
80 - Assess if implementation matches requirement intent
81 - If divergence detected:
82 - Add WARNING: "Implementation may diverge from spec: <details>"
83 - Recommendation: "Review <file>:<lines> against requirement X"
84
85 **Scenario Coverage**:
86 - For each scenario in delta specs (marked with "#### Scenario:"):
87 - Check if conditions are handled in code
88 - Check if tests exist covering the scenario
89 - If scenario appears uncovered:
90 - Add WARNING: "Scenario not covered: <scenario name>"
91 - Recommendation: "Add test or implementation for scenario: <description>"
92
937. **Verify Coherence**
94
95 **Design Adherence**:
96 - If `contextFiles.design` exists:
97 - Extract key decisions (look for sections like "Decision:", "Approach:", "Architecture:")
98 - Verify implementation follows those decisions
99 - If contradiction detected:
100 - Add WARNING: "Design decision not followed: <decision>"
101 - Recommendation: "Update implementation or revise design.md to match reality"
102 - If no design.md: Skip design adherence check, note "No design.md to verify against"
103
104 **Code Pattern Consistency**:
105 - Review new code for consistency with project patterns
106 - Check file naming, directory structure, coding style
107 - If significant deviations found:
108 - Add SUGGESTION: "Code pattern deviation: <details>"
109 - Recommendation: "Consider following project pattern: <example>"
110
1118. **Generate Verification Report**
112
113 **Summary Scorecard**:
114 ```markdown
115 ## Verification Report: <change-name>
116
117 ### Summary
118 | Dimension | Status |
119 |--------------|------------------|
120 | Completeness | X/Y tasks, N reqs|
121 | Correctness | M/N reqs covered |
122 | Coherence | Followed/Issues |
123 ```
124
125 **Issues by Priority**:
126
127 1. **CRITICAL** (Must fix before archive):
128 - Incomplete tasks
129 - Missing requirement implementations
130 - Each with specific, actionable recommendation
131
132 2. **WARNING** (Should fix):
133 - Spec/design divergences
134 - Missing scenario coverage
135 - Each with specific recommendation
136
137 3. **SUGGESTION** (Nice to fix):
138 - Pattern inconsistencies
139 - Minor improvements
140 - Each with specific recommendation
141
142 **Final Assessment**:
143 - If CRITICAL issues: "X critical issue(s) found. Fix before archiving."
144 - If only warnings: "No critical issues. Y warning(s) to consider. Ready for archive (with noted improvements)."
145 - If all clear: "All checks passed. Ready for archive."
146
147**Verification Heuristics**
148
149- **Completeness**: Focus on objective checklist items (checkboxes, requirements list)
150- **Correctness**: Use keyword search, file path analysis, reasonable inference - don't require perfect certainty
151- **Coherence**: Look for glaring inconsistencies, don't nitpick style
152- **False Positives**: When uncertain, prefer SUGGESTION over WARNING, WARNING over CRITICAL
153- **Actionability**: Every issue must have a specific recommendation with file/line references where applicable
154
155**Graceful Degradation**
156
157- If only tasks.md exists: verify task completion only, skip spec/design checks
158- If tasks + specs exist: verify completeness and correctness, skip design
159- If full artifacts: verify all three dimensions
160- Always note which checks were skipped and why
161
162**Output Format**
163
164Use clear markdown with:
165- Table for summary scorecard
166- Grouped lists for issues (CRITICAL/WARNING/SUGGESTION)
167- Code references in format: `file.ts:123`
168- Specific, actionable recommendations
169- No vague suggestions like "consider reviewing"