clavix 4.8.1 → 4.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/commands/analyze.d.ts +14 -0
- package/dist/cli/commands/analyze.js +127 -0
- package/dist/templates/slash-commands/_canonical/archive.md +67 -81
- package/dist/templates/slash-commands/_canonical/deep.md +88 -47
- package/dist/templates/slash-commands/_canonical/execute.md +200 -155
- package/dist/templates/slash-commands/_canonical/fast.md +78 -37
- package/dist/templates/slash-commands/_canonical/implement.md +310 -300
- package/dist/templates/slash-commands/_canonical/plan.md +33 -17
- package/dist/templates/slash-commands/_canonical/prd.md +36 -21
- package/dist/templates/slash-commands/_canonical/start.md +34 -33
- package/dist/templates/slash-commands/_canonical/summarize.md +39 -47
- package/dist/templates/slash-commands/_canonical/verify.md +324 -186
- package/dist/templates/slash-commands/_components/agent-protocols/cli-reference.md +214 -0
- package/dist/templates/slash-commands/_components/agent-protocols/error-handling.md +145 -88
- package/dist/templates/slash-commands/_components/agent-protocols/self-correction.md +20 -1
- package/dist/templates/slash-commands/_components/agent-protocols/supportive-companion.md +216 -0
- package/dist/templates/slash-commands/_components/agent-protocols/task-blocking.md +224 -0
- package/dist/templates/slash-commands/_components/references/quality-dimensions.md +152 -44
- package/dist/templates/slash-commands/_components/sections/conversation-examples.md +302 -0
- package/dist/templates/slash-commands/_components/sections/escalation-factors.md +119 -87
- package/dist/templates/slash-commands/_components/sections/improvement-explanations.md +171 -0
- package/dist/templates/slash-commands/_components/sections/pattern-impact.md +208 -0
- package/dist/templates/slash-commands/_components/sections/prd-examples.md +289 -0
- package/dist/templates/slash-commands/_components/troubleshooting/vibecoder-recovery.md +223 -0
- package/package.json +1 -1
|
@@ -5,288 +5,426 @@ description: Verify implementation against validation checklist from deep/fast m
|
|
|
5
5
|
|
|
6
6
|
# Clavix: Verify Implementation
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
After you build something, I'll check that everything works. Think of this as a quality check before calling the work done.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## What This Does
|
|
13
|
+
|
|
14
|
+
When you run `/clavix:verify`, I:
|
|
15
|
+
1. **Look at what you built** - Find the prompt you implemented
|
|
16
|
+
2. **Check against the checklist** - Make sure everything was covered
|
|
17
|
+
3. **Run automated tests** - If you have tests, I'll run them
|
|
18
|
+
4. **Report what passed and failed** - Clear breakdown of results
|
|
19
|
+
5. **Tell you what needs fixing** - If anything didn't pass
|
|
20
|
+
|
|
21
|
+
**I do NOT:**
|
|
22
|
+
- Write new code
|
|
23
|
+
- Fix issues I find
|
|
24
|
+
- Change your implementation
|
|
25
|
+
|
|
26
|
+
My job is just to check. If something needs fixing, I'll tell you what and you decide what to do.
|
|
9
27
|
|
|
10
28
|
---
|
|
11
29
|
|
|
12
30
|
## CLAVIX MODE: Verification
|
|
13
31
|
|
|
14
|
-
**
|
|
32
|
+
**I'm in verification mode. I check your work, not change it.**
|
|
15
33
|
|
|
16
|
-
**
|
|
17
|
-
- ✓
|
|
18
|
-
- ✓
|
|
19
|
-
- ✓ Run
|
|
20
|
-
- ✓
|
|
21
|
-
- ✓ Generate
|
|
34
|
+
**What I'll do:**
|
|
35
|
+
- ✓ Find the prompt you implemented
|
|
36
|
+
- ✓ Pull out the checklist (what should be verified)
|
|
37
|
+
- ✓ Run tests and checks I can automate
|
|
38
|
+
- ✓ Go through manual checks with you
|
|
39
|
+
- ✓ Generate a report of what passed/failed
|
|
22
40
|
|
|
23
|
-
**
|
|
24
|
-
- ✗
|
|
25
|
-
- ✗
|
|
26
|
-
- ✗
|
|
27
|
-
- Only verify and report. User will fix issues and re-verify.
|
|
41
|
+
**What I won't do:**
|
|
42
|
+
- ✗ Write code or fix issues
|
|
43
|
+
- ✗ Change anything in your implementation
|
|
44
|
+
- ✗ Skip checks without asking
|
|
28
45
|
|
|
29
|
-
**
|
|
30
|
-
|
|
31
|
-
1. Prompt was executed via `/clavix:execute`
|
|
32
|
-
2. Implementation is complete (or ready for verification)
|
|
33
|
-
3. Output assertion: "Entering VERIFICATION mode. I will verify, not implement."
|
|
46
|
+
**Before I start, I'll confirm:**
|
|
47
|
+
> "Starting verification mode. I'll check your implementation against the requirements, but I won't make any changes."
|
|
34
48
|
|
|
35
49
|
---
|
|
36
50
|
|
|
37
|
-
##
|
|
51
|
+
## How It Works
|
|
38
52
|
|
|
39
|
-
|
|
40
|
-
```bash
|
|
41
|
-
/clavix:deep "your requirement"
|
|
42
|
-
```
|
|
53
|
+
### The Quick Version
|
|
43
54
|
|
|
44
|
-
2. Execute and implement:
|
|
45
|
-
```bash
|
|
46
|
-
/clavix:execute --latest
|
|
47
|
-
# ... implement requirements ...
|
|
48
55
|
```
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
56
|
+
You: /clavix:verify
|
|
57
|
+
Me: "Let me check your implementation..."
|
|
58
|
+
[Runs tests automatically]
|
|
59
|
+
[Goes through checklist]
|
|
60
|
+
Me: "Here's what I found:
|
|
61
|
+
✅ 8 items passed
|
|
62
|
+
❌ 2 items need attention
|
|
63
|
+
|
|
64
|
+
Want me to explain what needs fixing?"
|
|
53
65
|
```
|
|
54
66
|
|
|
55
|
-
|
|
67
|
+
### The Detailed Version
|
|
56
68
|
|
|
57
|
-
|
|
69
|
+
**Step 1: I find your work**
|
|
58
70
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
```
|
|
71
|
+
I'll look for the prompt you implemented. Usually this is automatic:
|
|
72
|
+
- If you just ran `/clavix:execute`, I know which prompt that was
|
|
73
|
+
- I'll find the checklist from the deep/fast mode output
|
|
63
74
|
|
|
64
|
-
**
|
|
65
|
-
```bash
|
|
66
|
-
clavix verify --id <prompt-id>
|
|
67
|
-
```
|
|
75
|
+
**Step 2: I run automated checks**
|
|
68
76
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
77
|
+
Things I can check automatically (you'll see them happening):
|
|
78
|
+
- Running your test suite
|
|
79
|
+
- Building/compiling your code
|
|
80
|
+
- Running linter checks
|
|
81
|
+
- Type checking (if TypeScript)
|
|
73
82
|
|
|
74
|
-
**
|
|
75
|
-
```bash
|
|
76
|
-
clavix verify --retry-failed
|
|
77
|
-
```
|
|
83
|
+
**Step 3: We go through manual items**
|
|
78
84
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
85
|
+
Some things I can't check automatically. For each one, I'll:
|
|
86
|
+
- Show you what needs to be verified
|
|
87
|
+
- Ask if it's working
|
|
88
|
+
- Record your answer
|
|
89
|
+
|
|
90
|
+
**Step 4: I generate a report**
|
|
91
|
+
|
|
92
|
+
You'll see a clear breakdown:
|
|
93
|
+
- What passed
|
|
94
|
+
- What failed
|
|
95
|
+
- What needs your attention
|
|
84
96
|
|
|
85
97
|
---
|
|
86
98
|
|
|
87
|
-
##
|
|
99
|
+
## What I Check
|
|
100
|
+
|
|
101
|
+
### Three Types of Checks
|
|
102
|
+
|
|
103
|
+
#### 1. Automated (I Run These Myself)
|
|
88
104
|
|
|
89
|
-
|
|
105
|
+
| Check | How I Verify |
|
|
106
|
+
|-------|-------------|
|
|
107
|
+
| Tests pass | I run `npm test` (or your test command) |
|
|
108
|
+
| Code compiles | I run `npm run build` |
|
|
109
|
+
| No linting errors | I run `npm run lint` |
|
|
110
|
+
| Type safety | I run `npm run typecheck` (if TypeScript) |
|
|
90
111
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
112
|
+
**You'll see:**
|
|
113
|
+
> "Running tests... ✅ All 42 tests passed"
|
|
114
|
+
> "Building... ✅ Build successful"
|
|
94
115
|
|
|
95
|
-
|
|
116
|
+
#### 2. Semi-Automated (I Check, You Confirm)
|
|
96
117
|
|
|
97
|
-
|
|
118
|
+
| Check | How I Verify |
|
|
119
|
+
|-------|-------------|
|
|
120
|
+
| Renders correctly | I can look at screenshots if you share |
|
|
121
|
+
| No console errors | I check for error patterns |
|
|
122
|
+
| API responses work | I can test endpoints |
|
|
98
123
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
| `test` | "Tests pass", "All tests", "Test coverage" |
|
|
102
|
-
| `build` | "Compiles", "Builds without errors" |
|
|
103
|
-
| `lint` | "No warnings", "Follows conventions" |
|
|
104
|
-
| `typecheck` | "Type errors", "TypeScript" |
|
|
124
|
+
**You'll see:**
|
|
125
|
+
> "Does the login page look right? (yes/no/show me)"
|
|
105
126
|
|
|
106
|
-
|
|
127
|
+
#### 3. Manual (You Tell Me)
|
|
107
128
|
|
|
108
|
-
|
|
129
|
+
| Check | What I Ask |
|
|
130
|
+
|-------|-----------|
|
|
131
|
+
| Requirements met | "Does this do what you originally wanted?" |
|
|
132
|
+
| Edge cases handled | "What happens when [edge case]?" |
|
|
133
|
+
| UX feels right | "Is the user experience good?" |
|
|
109
134
|
|
|
110
|
-
|
|
135
|
+
**You'll see:**
|
|
136
|
+
> "I can't check this automatically. Does [feature] work as expected?"
|
|
137
|
+
|
|
138
|
+
---
|
|
111
139
|
|
|
112
|
-
|
|
113
|
-
```
|
|
114
|
-
📋 [Item description]
|
|
115
|
-
Category: [Functionality/Robustness/Quality/etc.]
|
|
116
|
-
```
|
|
140
|
+
## Understanding Your Results
|
|
117
141
|
|
|
118
|
-
|
|
119
|
-
- Review code changes
|
|
120
|
-
- Test functionality
|
|
121
|
-
- Check edge cases
|
|
142
|
+
### What the Symbols Mean
|
|
122
143
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
144
|
+
| Symbol | Status | What It Means |
|
|
145
|
+
|--------|--------|---------------|
|
|
146
|
+
| ✅ | Passed | This check is good to go |
|
|
147
|
+
| ❌ | Failed | Something needs attention here |
|
|
148
|
+
| ⏭️ | Skipped | You chose to check this later |
|
|
149
|
+
| ➖ | N/A | This doesn't apply to your implementation |
|
|
128
150
|
|
|
129
|
-
###
|
|
151
|
+
### Example Report
|
|
130
152
|
|
|
131
153
|
```
|
|
132
154
|
══════════════════════════════════════════════════════════════════════
|
|
133
155
|
VERIFICATION REPORT
|
|
134
|
-
|
|
156
|
+
Your Todo App Implementation
|
|
135
157
|
══════════════════════════════════════════════════════════════════════
|
|
136
158
|
|
|
137
|
-
📋
|
|
159
|
+
📋 CHECKLIST RESULTS (10 items)
|
|
138
160
|
|
|
139
|
-
✅
|
|
140
|
-
|
|
141
|
-
|
|
161
|
+
✅ Tests pass
|
|
162
|
+
What I did: Ran npm test
|
|
163
|
+
Result: All 23 tests passed
|
|
142
164
|
|
|
143
|
-
✅
|
|
144
|
-
|
|
145
|
-
|
|
165
|
+
✅ Code compiles without errors
|
|
166
|
+
What I did: Ran npm run build
|
|
167
|
+
Result: Build completed successfully
|
|
146
168
|
|
|
147
|
-
|
|
169
|
+
✅ Add todo functionality works
|
|
170
|
+
How verified: You confirmed it works
|
|
171
|
+
|
|
172
|
+
✅ Complete todo functionality works
|
|
173
|
+
How verified: You confirmed it works
|
|
174
|
+
|
|
175
|
+
❌ Keyboard navigation
|
|
148
176
|
Status: FAILED
|
|
149
|
-
|
|
150
|
-
|
|
177
|
+
Issue: Tab key doesn't focus the add button
|
|
178
|
+
To fix: Add tabindex to the add button
|
|
179
|
+
|
|
180
|
+
❌ Empty state message
|
|
181
|
+
Status: FAILED
|
|
182
|
+
Issue: No message when todo list is empty
|
|
183
|
+
To fix: Add "No todos yet" message
|
|
184
|
+
|
|
185
|
+
✅ Delete todo functionality
|
|
186
|
+
How verified: You confirmed it works
|
|
187
|
+
|
|
188
|
+
✅ Data persists after refresh
|
|
189
|
+
How verified: You confirmed it works
|
|
190
|
+
|
|
191
|
+
⏭️ Performance under load
|
|
192
|
+
Status: Skipped (will test later)
|
|
193
|
+
|
|
194
|
+
➖ Authentication
|
|
195
|
+
Status: N/A (not required for this feature)
|
|
151
196
|
|
|
152
197
|
══════════════════════════════════════════════════════════════════════
|
|
153
198
|
SUMMARY
|
|
154
199
|
══════════════════════════════════════════════════════════════════════
|
|
155
|
-
Total:
|
|
156
|
-
Passed:
|
|
157
|
-
Failed:
|
|
158
|
-
Skipped:
|
|
200
|
+
Total: 10 items
|
|
201
|
+
Passed: 6 (60%)
|
|
202
|
+
Failed: 2 (need attention)
|
|
203
|
+
Skipped: 1
|
|
204
|
+
N/A: 1
|
|
159
205
|
|
|
160
|
-
⚠️
|
|
206
|
+
⚠️ 2 items need your attention before marking complete
|
|
161
207
|
══════════════════════════════════════════════════════════════════════
|
|
162
208
|
```
|
|
163
209
|
|
|
164
210
|
---
|
|
165
211
|
|
|
166
|
-
##
|
|
212
|
+
## When Things Fail
|
|
213
|
+
|
|
214
|
+
### Don't Panic!
|
|
215
|
+
|
|
216
|
+
Failed checks are normal. They just mean something needs a bit more work.
|
|
217
|
+
|
|
218
|
+
**When I find failures, I'll tell you:**
|
|
219
|
+
1. What failed
|
|
220
|
+
2. Why it failed (if I can tell)
|
|
221
|
+
3. What might fix it
|
|
222
|
+
|
|
223
|
+
**Example:**
|
|
224
|
+
> "❌ Keyboard navigation isn't working
|
|
225
|
+
>
|
|
226
|
+
> What I found: The tab key doesn't move focus to the submit button
|
|
227
|
+
>
|
|
228
|
+
> Possible fix: Add `tabindex="0"` to the button
|
|
229
|
+
>
|
|
230
|
+
> Want me to help fix this, or will you handle it?"
|
|
231
|
+
|
|
232
|
+
### Your Options When Something Fails
|
|
233
|
+
|
|
234
|
+
1. **Fix it now** - Make the change, then re-verify
|
|
235
|
+
2. **Fix it later** - Mark as skipped, come back to it
|
|
236
|
+
3. **It's not important** - Mark as N/A if it truly doesn't apply
|
|
237
|
+
4. **It's actually fine** - If I got it wrong, tell me and we'll mark it passed
|
|
238
|
+
|
|
239
|
+
**To re-verify after fixing:**
|
|
240
|
+
> Just say "verify again" or run `/clavix:verify` again
|
|
241
|
+
|
|
242
|
+
---
|
|
243
|
+
|
|
244
|
+
## Fast Mode vs Deep Mode
|
|
245
|
+
|
|
246
|
+
### If You Used Deep Mode (`/clavix:deep`)
|
|
247
|
+
|
|
248
|
+
Your prompt already has a detailed checklist. I'll use that.
|
|
167
249
|
|
|
168
|
-
|
|
250
|
+
**What you get:**
|
|
251
|
+
- Comprehensive validation items
|
|
252
|
+
- Edge cases to check
|
|
253
|
+
- Potential risks identified
|
|
254
|
+
- Specific verification criteria
|
|
169
255
|
|
|
170
|
-
|
|
171
|
-
2. **Generate basic checklist** based on intent:
|
|
172
|
-
- `code-generation`: compiles, requirements met, no errors, follows conventions
|
|
173
|
-
- `testing`: tests pass, coverage acceptable, edge cases tested
|
|
174
|
-
- `debugging`: bug fixed, no regression, root cause addressed
|
|
175
|
-
- etc.
|
|
256
|
+
### If You Used Fast Mode (`/clavix:fast`)
|
|
176
257
|
|
|
177
|
-
|
|
178
|
-
```
|
|
179
|
-
⚠️ No checklist found (fast mode prompt)
|
|
180
|
-
Generating basic checklist based on intent...
|
|
258
|
+
Fast mode doesn't create detailed checklists, so I'll generate one based on what you were building.
|
|
181
259
|
|
|
182
|
-
|
|
183
|
-
|
|
260
|
+
**What you get:**
|
|
261
|
+
- Basic checks based on what you asked for
|
|
262
|
+
- Standard quality checks (compiles, no errors)
|
|
263
|
+
- Common sense verifications
|
|
264
|
+
|
|
265
|
+
**You'll see:**
|
|
266
|
+
> "This was a fast mode prompt, so I'm creating a basic checklist.
|
|
267
|
+
> For more thorough verification next time, use /clavix:deep"
|
|
184
268
|
|
|
185
269
|
---
|
|
186
270
|
|
|
187
|
-
## Verification
|
|
271
|
+
## Verification by Intent
|
|
188
272
|
|
|
189
|
-
|
|
190
|
-
- Run the implemented feature
|
|
191
|
-
- Check expected behavior matches requirements
|
|
192
|
-
- Verify all user flows complete successfully
|
|
273
|
+
I generate different checklists based on what you're building:
|
|
193
274
|
|
|
194
|
-
###
|
|
195
|
-
-
|
|
196
|
-
-
|
|
197
|
-
-
|
|
275
|
+
### Building a Feature (code-generation)
|
|
276
|
+
- ✓ Code compiles without errors
|
|
277
|
+
- ✓ All requirements implemented
|
|
278
|
+
- ✓ No console errors or warnings
|
|
279
|
+
- ✓ Follows existing code conventions
|
|
280
|
+
- ✓ Works in target browsers/environments
|
|
198
281
|
|
|
199
|
-
###
|
|
200
|
-
-
|
|
201
|
-
-
|
|
202
|
-
-
|
|
282
|
+
### Fixing a Bug (debugging)
|
|
283
|
+
- ✓ Bug is actually fixed
|
|
284
|
+
- ✓ No regression in related features
|
|
285
|
+
- ✓ Root cause addressed (not just symptoms)
|
|
286
|
+
- ✓ Added test to prevent recurrence
|
|
203
287
|
|
|
204
|
-
###
|
|
205
|
-
-
|
|
206
|
-
-
|
|
207
|
-
-
|
|
288
|
+
### Writing Tests (testing)
|
|
289
|
+
- ✓ Tests pass
|
|
290
|
+
- ✓ Coverage is acceptable
|
|
291
|
+
- ✓ Edge cases are tested
|
|
292
|
+
- ✓ Tests are maintainable
|
|
208
293
|
|
|
209
|
-
###
|
|
210
|
-
-
|
|
211
|
-
-
|
|
212
|
-
-
|
|
294
|
+
### Adding Documentation (documentation)
|
|
295
|
+
- ✓ Documentation is accurate
|
|
296
|
+
- ✓ Examples work correctly
|
|
297
|
+
- ✓ All public APIs documented
|
|
298
|
+
- ✓ Easy to understand
|
|
213
299
|
|
|
214
300
|
---
|
|
215
301
|
|
|
216
302
|
## After Verification
|
|
217
303
|
|
|
218
|
-
###
|
|
219
|
-
```
|
|
220
|
-
✓ Verification complete!
|
|
304
|
+
### Everything Passed! 🎉
|
|
221
305
|
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
306
|
+
> "All checks passed! Your implementation is ready.
|
|
307
|
+
>
|
|
308
|
+
> Next steps:
|
|
309
|
+
> - Mark tasks complete (if you haven't)
|
|
310
|
+
> - Archive the project when you're done
|
|
311
|
+
>
|
|
312
|
+
> Great work!"
|
|
226
313
|
|
|
227
|
-
###
|
|
228
|
-
```
|
|
229
|
-
⚠️ Some items require attention.
|
|
314
|
+
### Some Things Failed
|
|
230
315
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
316
|
+
> "A few things need attention. Here's a quick summary:
|
|
317
|
+
>
|
|
318
|
+
> ❌ Keyboard navigation - add tabindex
|
|
319
|
+
> ❌ Empty state - add message
|
|
320
|
+
>
|
|
321
|
+
> Fix these and run verify again, or skip them if they're not critical."
|
|
322
|
+
|
|
323
|
+
### You Want to Come Back Later
|
|
324
|
+
|
|
325
|
+
> "Got it! I've saved this verification. You can:
|
|
326
|
+
> - Run `/clavix:verify --retry-failed` to just check the skipped/failed items
|
|
327
|
+
> - Run `/clavix:verify --status` to see where things stand
|
|
328
|
+
>
|
|
329
|
+
> No rush!"
|
|
234
330
|
|
|
235
331
|
---
|
|
236
332
|
|
|
237
|
-
##
|
|
333
|
+
## Tips for Smooth Verification
|
|
238
334
|
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
.
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
335
|
+
### Before You Verify
|
|
336
|
+
|
|
337
|
+
1. **Make sure you're done implementing** - Verification works best on finished work
|
|
338
|
+
2. **Run tests yourself first** - Quick sanity check saves time
|
|
339
|
+
3. **Have the app running** - If I need to check UI, it should be accessible
|
|
340
|
+
|
|
341
|
+
### During Verification
|
|
342
|
+
|
|
343
|
+
1. **Be honest** - If something doesn't work, say so. Better to fix now!
|
|
344
|
+
2. **Ask questions** - If a check doesn't make sense, I'll explain
|
|
345
|
+
3. **Skip sparingly** - It's okay to skip, but don't skip everything
|
|
346
|
+
|
|
347
|
+
### After Verification
|
|
348
|
+
|
|
349
|
+
1. **Fix critical issues first** - Start with the biggest problems
|
|
350
|
+
2. **Re-verify incrementally** - Use `--retry-failed` to just check what you fixed
|
|
351
|
+
3. **Don't stress perfection** - 80% is often good enough to ship
|
|
248
352
|
|
|
249
353
|
---
|
|
250
354
|
|
|
251
|
-
##
|
|
355
|
+
## Reference: Verification Commands
|
|
356
|
+
|
|
357
|
+
**I run these automatically - you don't need to type them:**
|
|
252
358
|
|
|
253
|
-
|
|
359
|
+
| What I Run | When |
|
|
360
|
+
|------------|------|
|
|
361
|
+
| `clavix verify --latest` | Check most recent implementation |
|
|
362
|
+
| `clavix verify --id <id>` | Check specific prompt |
|
|
363
|
+
| `clavix verify --retry-failed` | Re-check only failed items |
|
|
364
|
+
| `clavix verify --status` | Show current verification state |
|
|
365
|
+
| `clavix verify --export markdown` | Generate report file |
|
|
254
366
|
|
|
255
|
-
|
|
256
|
-
|-------|---------|---------|
|
|
257
|
-
| HIGH | Automated verification passed | npm test exit code 0 |
|
|
258
|
-
| MEDIUM | Agent verified with evidence | Code review confirmed |
|
|
259
|
-
| LOW | Agent verified without clear evidence | General assessment |
|
|
367
|
+
---
|
|
260
368
|
|
|
261
|
-
|
|
369
|
+
## Workflow Navigation
|
|
262
370
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
371
|
+
**Where you are:** Verification (checking your work)
|
|
372
|
+
|
|
373
|
+
**How you got here:**
|
|
374
|
+
1. `/clavix:deep` or `/clavix:fast` → Optimized your prompt
|
|
375
|
+
2. `/clavix:execute` → Implemented the requirements
|
|
376
|
+
3. **`/clavix:verify`** → Now checking it works (you are here)
|
|
377
|
+
|
|
378
|
+
**What's next:**
|
|
379
|
+
- Fix any failed items → Run verify again
|
|
380
|
+
- All passed → `/clavix:archive` to wrap up
|
|
381
|
+
|
|
382
|
+
**Related commands:**
|
|
383
|
+
- `/clavix:execute` - Run the implementation (previous step)
|
|
384
|
+
- `/clavix:deep` - Get comprehensive checklist next time
|
|
385
|
+
- `/clavix:archive` - Archive when done (next step)
|
|
386
|
+
|
|
387
|
+
---
|
|
388
|
+
|
|
389
|
+
## Agent Transparency (v4.9)
|
|
390
|
+
|
|
391
|
+
### CLI Reference (Commands I Execute)
|
|
392
|
+
{{INCLUDE:agent-protocols/cli-reference.md}}
|
|
272
393
|
|
|
273
394
|
### Error Handling
|
|
274
395
|
{{INCLUDE:agent-protocols/error-handling.md}}
|
|
275
396
|
|
|
276
|
-
###
|
|
397
|
+
### Recovery Patterns
|
|
398
|
+
{{INCLUDE:troubleshooting/vibecoder-recovery.md}}
|
|
399
|
+
|
|
400
|
+
### Agent Decision Rules
|
|
277
401
|
{{INCLUDE:agent-protocols/decision-rules.md}}
|
|
278
402
|
|
|
279
403
|
---
|
|
280
404
|
|
|
281
|
-
##
|
|
405
|
+
## Verification Confidence Levels
|
|
282
406
|
|
|
283
|
-
|
|
407
|
+
When I report results, I'll indicate how confident I am:
|
|
284
408
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
409
|
+
| Level | What It Means | Example |
|
|
410
|
+
|-------|---------------|---------|
|
|
411
|
+
| **HIGH** | Automated test passed | `npm test` returned success |
|
|
412
|
+
| **MEDIUM** | I checked and it looks right | Code review confirmed the change |
|
|
413
|
+
| **LOW** | Best guess, you should double-check | General assessment without proof |
|
|
288
414
|
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
415
|
+
---
|
|
416
|
+
|
|
417
|
+
## Agent Verification Protocol
|
|
418
|
+
|
|
419
|
+
After completing verification, I'll summarize:
|
|
420
|
+
|
|
421
|
+
```
|
|
422
|
+
✓ Verification complete for [prompt-id]
|
|
423
|
+
|
|
424
|
+
Results:
|
|
425
|
+
- Total: [X] items checked
|
|
426
|
+
- Passed: [Y] ([Z]%)
|
|
427
|
+
- Failed: [N] items need attention
|
|
428
|
+
|
|
429
|
+
Status: [All clear! / X items need fixing]
|
|
430
|
+
```
|