clavix 4.8.0 → 4.9.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.
Files changed (48) hide show
  1. package/dist/core/adapters/amp-adapter.d.ts +3 -0
  2. package/dist/core/adapters/amp-adapter.js +1 -0
  3. package/dist/core/adapters/cline-adapter.d.ts +3 -0
  4. package/dist/core/adapters/cline-adapter.js +1 -0
  5. package/dist/core/adapters/codebuddy-adapter.d.ts +3 -0
  6. package/dist/core/adapters/codebuddy-adapter.js +1 -0
  7. package/dist/core/adapters/codex-adapter.d.ts +3 -0
  8. package/dist/core/adapters/codex-adapter.js +1 -0
  9. package/dist/core/adapters/cursor-adapter.d.ts +3 -0
  10. package/dist/core/adapters/cursor-adapter.js +1 -0
  11. package/dist/core/adapters/droid-adapter.d.ts +3 -0
  12. package/dist/core/adapters/droid-adapter.js +1 -0
  13. package/dist/core/adapters/instructions-generator.js +9 -2
  14. package/dist/core/adapters/kilocode-adapter.d.ts +3 -0
  15. package/dist/core/adapters/kilocode-adapter.js +1 -0
  16. package/dist/core/adapters/opencode-adapter.d.ts +3 -0
  17. package/dist/core/adapters/opencode-adapter.js +1 -0
  18. package/dist/core/adapters/roocode-adapter.d.ts +3 -0
  19. package/dist/core/adapters/roocode-adapter.js +1 -0
  20. package/dist/core/adapters/windsurf-adapter.d.ts +3 -0
  21. package/dist/core/adapters/windsurf-adapter.js +1 -0
  22. package/dist/core/command-transformer.d.ts +55 -0
  23. package/dist/core/command-transformer.js +65 -0
  24. package/dist/templates/slash-commands/_canonical/archive.md +67 -81
  25. package/dist/templates/slash-commands/_canonical/deep.md +40 -34
  26. package/dist/templates/slash-commands/_canonical/execute.md +187 -155
  27. package/dist/templates/slash-commands/_canonical/fast.md +33 -24
  28. package/dist/templates/slash-commands/_canonical/implement.md +283 -301
  29. package/dist/templates/slash-commands/_canonical/plan.md +33 -17
  30. package/dist/templates/slash-commands/_canonical/prd.md +36 -21
  31. package/dist/templates/slash-commands/_canonical/start.md +34 -33
  32. package/dist/templates/slash-commands/_canonical/summarize.md +39 -47
  33. package/dist/templates/slash-commands/_canonical/verify.md +324 -186
  34. package/dist/templates/slash-commands/_components/agent-protocols/cli-reference.md +202 -0
  35. package/dist/templates/slash-commands/_components/agent-protocols/error-handling.md +145 -88
  36. package/dist/templates/slash-commands/_components/agent-protocols/supportive-companion.md +216 -0
  37. package/dist/templates/slash-commands/_components/agent-protocols/task-blocking.md +224 -0
  38. package/dist/templates/slash-commands/_components/references/quality-dimensions.md +152 -44
  39. package/dist/templates/slash-commands/_components/sections/conversation-examples.md +302 -0
  40. package/dist/templates/slash-commands/_components/sections/escalation-factors.md +119 -87
  41. package/dist/templates/slash-commands/_components/sections/improvement-explanations.md +171 -0
  42. package/dist/templates/slash-commands/_components/sections/pattern-impact.md +208 -0
  43. package/dist/templates/slash-commands/_components/sections/prd-examples.md +289 -0
  44. package/dist/templates/slash-commands/_components/troubleshooting/vibecoder-recovery.md +223 -0
  45. package/dist/types/agent.d.ts +4 -0
  46. package/dist/utils/template-loader.d.ts +1 -1
  47. package/dist/utils/template-loader.js +5 -1
  48. 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
- Verify that your implementation covers the validation checklist, edge cases, and risks identified by `/clavix:deep` or `/clavix:fast`.
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
- **You are in Clavix verification mode. You verify implementations against checklists.**
32
+ **I'm in verification mode. I check your work, not change it.**
15
33
 
16
- **YOUR ROLE:**
17
- - ✓ Load saved prompt and extract validation checklist
18
- - ✓ Verify each checklist item systematically
19
- - ✓ Run automated hooks where applicable (test, build, lint)
20
- - ✓ Report pass/fail/skip for each item with reasoning
21
- - ✓ Generate verification report
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
- **DO NOT IMPLEMENT. DO NOT MODIFY CODE.**
24
- - ✗ Writing new code
25
- - ✗ Fixing issues found during verification
26
- - ✗ Making changes to implementation
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
- **MODE ENTRY VALIDATION:**
30
- Before verifying, confirm:
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
- ## Prerequisites
51
+ ## How It Works
38
52
 
39
- 1. Generate optimized prompt with checklist:
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
- 3. Then verify:
51
- ```bash
52
- /clavix:verify --latest
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
- ## Usage
69
+ **Step 1: I find your work**
58
70
 
59
- **Verify latest executed prompt (recommended):**
60
- ```bash
61
- clavix verify --latest
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
- **Verify specific prompt:**
65
- ```bash
66
- clavix verify --id <prompt-id>
67
- ```
75
+ **Step 2: I run automated checks**
68
76
 
69
- **Show verification status:**
70
- ```bash
71
- clavix verify --status
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
- **Re-run only failed items:**
75
- ```bash
76
- clavix verify --retry-failed
77
- ```
83
+ **Step 3: We go through manual items**
78
84
 
79
- **Export verification report:**
80
- ```bash
81
- clavix verify --export markdown
82
- clavix verify --export json
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
- ## Verification Workflow
99
+ ## What I Check
100
+
101
+ ### Three Types of Checks
102
+
103
+ #### 1. Automated (I Run These Myself)
88
104
 
89
- ### Step 1: Load Checklist
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
- 1. Locate saved prompt from `.clavix/outputs/prompts/deep/` or `.clavix/outputs/prompts/fast/`
92
- 2. Extract validation checklist, edge cases, and risks sections
93
- 3. If fast mode (no checklist): Generate basic checklist from intent
112
+ **You'll see:**
113
+ > "Running tests... All 42 tests passed"
114
+ > "Building... Build successful"
94
115
 
95
- ### Step 2: Run Automated Hooks
116
+ #### 2. Semi-Automated (I Check, You Confirm)
96
117
 
97
- For items that can be verified automatically:
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
- | Hook | Verifies |
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
- Hooks are auto-detected from `package.json` scripts.
127
+ #### 3. Manual (You Tell Me)
107
128
 
108
- ### Step 3: Manual Verification
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
- For each item that requires manual verification:
135
+ **You'll see:**
136
+ > "I can't check this automatically. Does [feature] work as expected?"
137
+
138
+ ---
111
139
 
112
- 1. **Display the item:**
113
- ```
114
- 📋 [Item description]
115
- Category: [Functionality/Robustness/Quality/etc.]
116
- ```
140
+ ## Understanding Your Results
117
141
 
118
- 2. **Verify against implementation:**
119
- - Review code changes
120
- - Test functionality
121
- - Check edge cases
142
+ ### What the Symbols Mean
122
143
 
123
- 3. **Record result:**
124
- - ✓ **Passed**: Item is verified (with evidence)
125
- - **Failed**: Item not covered (with reason)
126
- - ⏭️ **Skipped**: Will verify later
127
- - **N/A**: Does not apply to this implementation
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
- ### Step 4: Generate Report
151
+ ### Example Report
130
152
 
131
153
  ```
132
154
  ══════════════════════════════════════════════════════════════════════
133
155
  VERIFICATION REPORT
134
- [prompt-id]
156
+ Your Todo App Implementation
135
157
  ══════════════════════════════════════════════════════════════════════
136
158
 
137
- 📋 VALIDATION CHECKLIST (X items)
159
+ 📋 CHECKLIST RESULTS (10 items)
138
160
 
139
- [automated] Code compiles/runs without errors
140
- Evidence: npm run build - exit code 0
141
- Confidence: HIGH
161
+ Tests pass
162
+ What I did: Ran npm test
163
+ Result: All 23 tests passed
142
164
 
143
- [manual] All requirements implemented
144
- Evidence: Login page with OAuth, callback handling
145
- Confidence: MEDIUM
165
+ Code compiles without errors
166
+ What I did: Ran npm run build
167
+ Result: Build completed successfully
146
168
 
147
- [manual] Keyboard navigation works
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
- Reason: Tab order skips OAuth buttons
150
- Confidence: MEDIUM
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: X items
156
- Passed: Y (Z%)
157
- Failed: N (requires attention)
158
- Skipped: M
200
+ Total: 10 items
201
+ Passed: 6 (60%)
202
+ Failed: 2 (need attention)
203
+ Skipped: 1
204
+ N/A: 1
159
205
 
160
- ⚠️ N item(s) require attention before marking complete
206
+ ⚠️ 2 items need your attention before marking complete
161
207
  ══════════════════════════════════════════════════════════════════════
162
208
  ```
163
209
 
164
210
  ---
165
211
 
166
- ## Fast Mode Handling
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
- When verifying a fast mode prompt (no checklist):
250
+ **What you get:**
251
+ - Comprehensive validation items
252
+ - Edge cases to check
253
+ - Potential risks identified
254
+ - Specific verification criteria
169
255
 
170
- 1. **Detect intent** from original prompt
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
- 3. **Display notice:**
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
- 💡 For comprehensive checklists, use /clavix:deep
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 Methods by Category
271
+ ## Verification by Intent
188
272
 
189
- ### Functionality
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
- ### Testing
195
- - Run test suite: `npm test`
196
- - Check coverage report
197
- - Verify no failing tests
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
- ### Robustness/Edge Cases
200
- - Test with edge case inputs (empty, null, max values)
201
- - Check error messages are user-friendly
202
- - Verify system recovers gracefully
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
- ### Quality
205
- - Run linter: `npm run lint`
206
- - Check for console errors
207
- - Review code style
288
+ ### Writing Tests (testing)
289
+ - Tests pass
290
+ - Coverage is acceptable
291
+ - Edge cases are tested
292
+ - ✓ Tests are maintainable
208
293
 
209
- ### Security (if applicable)
210
- - Verify authentication required where expected
211
- - Test input sanitization
212
- - Check sensitive data handling
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
- ### If All Items Pass
219
- ```
220
- ✓ Verification complete!
304
+ ### Everything Passed! 🎉
221
305
 
222
- Next steps:
223
- /clavix:archive - Archive completed project
224
- clavix prompts clear --executed - Cleanup prompts
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
- ### If Items Fail
228
- ```
229
- ⚠️ Some items require attention.
314
+ ### Some Things Failed
230
315
 
231
- Fix issues and re-run:
232
- clavix verify --retry-failed --id <prompt-id>
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
- ## Verification Report Storage
333
+ ## Tips for Smooth Verification
238
334
 
239
- Reports are saved alongside prompt files:
240
- ```
241
- .clavix/
242
- outputs/
243
- prompts/
244
- deep/
245
- deep-20250117-143022-a3f2.md # Prompt
246
- deep-20250117-143022-a3f2.verification.json # Report
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
- ## Agent Transparency (v4.8)
355
+ ## Reference: Verification Commands
356
+
357
+ **I run these automatically - you don't need to type them:**
252
358
 
253
- ### Verification Confidence Levels
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
- | Level | Meaning | Example |
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
- ### Verification Checkpoint Output
369
+ ## Workflow Navigation
262
370
 
263
- After completing verification:
264
- ```
265
- VERIFICATION CHECKPOINT (v4.8):
266
- - Prompt: [id]
267
- - Total items: [X]
268
- - Passed: [Y] ([Z]%)
269
- - Failed: [N]
270
- - Status: [completed/requires-attention]
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
- ### Decision Rules
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
- ## Workflow Navigation
405
+ ## Verification Confidence Levels
282
406
 
283
- **You are here:** Verify (Post-Implementation Verification)
407
+ When I report results, I'll indicate how confident I am:
284
408
 
285
- **Common workflows:**
286
- - `/clavix:execute` → **`/clavix:verify`** → Fix issues → Re-verify → `/clavix:archive`
287
- - `/clavix:implement` **`/clavix:verify`** `/clavix:archive`
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
- **Related commands:**
290
- - `/clavix:execute` - Execute saved prompt (previous step)
291
- - `/clavix:deep` - Comprehensive analysis with validation checklist
292
- - `/clavix:archive` - Archive completed project (next step)
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
+ ```