clavix 4.6.0 → 4.8.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/execute.js +29 -9
- package/dist/cli/commands/verify.d.ts +28 -0
- package/dist/cli/commands/verify.js +347 -0
- package/dist/core/basic-checklist-generator.d.ts +35 -0
- package/dist/core/basic-checklist-generator.js +344 -0
- package/dist/core/checklist-parser.d.ts +48 -0
- package/dist/core/checklist-parser.js +238 -0
- package/dist/core/prompt-manager.d.ts +7 -0
- package/dist/core/prompt-manager.js +47 -22
- package/dist/core/verification-hooks.d.ts +67 -0
- package/dist/core/verification-hooks.js +309 -0
- package/dist/core/verification-manager.d.ts +106 -0
- package/dist/core/verification-manager.js +422 -0
- package/dist/templates/agents/agents.md +14 -7
- package/dist/templates/agents/copilot-instructions.md +14 -7
- package/dist/templates/agents/octo.md +14 -8
- package/dist/templates/agents/warp.md +15 -10
- package/dist/templates/slash-commands/_canonical/archive.md +6 -5
- package/dist/templates/slash-commands/_canonical/deep.md +72 -11
- package/dist/templates/slash-commands/_canonical/execute.md +128 -6
- package/dist/templates/slash-commands/_canonical/fast.md +70 -13
- package/dist/templates/slash-commands/_canonical/verify.md +292 -0
- package/dist/templates/slash-commands/_components/agent-protocols/verification-methods.md +184 -0
- package/dist/types/verification.d.ts +204 -0
- package/dist/types/verification.js +8 -0
- package/package.json +1 -1
- package/dist/templates/slash-commands/_canonical/prompts.md +0 -97
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: "Clavix: Prompts"
|
|
3
|
-
description: Manage saved prompts (list, clear, inspect)
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Clavix: Prompts Management
|
|
7
|
-
|
|
8
|
-
Manage your saved fast/deep prompts with lifecycle awareness.
|
|
9
|
-
|
|
10
|
-
## List All Prompts
|
|
11
|
-
|
|
12
|
-
```bash
|
|
13
|
-
clavix prompts list
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
Shows:
|
|
17
|
-
- All saved prompts with age
|
|
18
|
-
- Execution status (executed ✓ / pending ○)
|
|
19
|
-
- Age warnings (OLD >7d, STALE >30d)
|
|
20
|
-
- Storage statistics
|
|
21
|
-
|
|
22
|
-
## Cleanup Workflows
|
|
23
|
-
|
|
24
|
-
**After executing prompts (recommended):**
|
|
25
|
-
```bash
|
|
26
|
-
clavix prompts clear --executed
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
**Remove stale prompts (>30 days):**
|
|
30
|
-
```bash
|
|
31
|
-
clavix prompts clear --stale
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
**Remove specific type:**
|
|
35
|
-
```bash
|
|
36
|
-
clavix prompts clear --fast
|
|
37
|
-
clavix prompts clear --deep
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
**Interactive cleanup:**
|
|
41
|
-
```bash
|
|
42
|
-
clavix prompts clear
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
**Remove all (with safety checks):**
|
|
46
|
-
```bash
|
|
47
|
-
clavix prompts clear --all
|
|
48
|
-
```
|
|
49
|
-
|
|
50
|
-
## Best Practices
|
|
51
|
-
|
|
52
|
-
**Regular cleanup schedule:**
|
|
53
|
-
1. After executing prompts: Clear executed
|
|
54
|
-
2. Weekly: Review and clear stale
|
|
55
|
-
3. Before archiving PRD: Clear related prompts
|
|
56
|
-
|
|
57
|
-
**Storage hygiene:**
|
|
58
|
-
- Keep <20 active prompts for performance
|
|
59
|
-
- Clear executed prompts regularly
|
|
60
|
-
- Review prompts >7 days old
|
|
61
|
-
|
|
62
|
-
**Safety:**
|
|
63
|
-
- System warns before deleting unexecuted prompts
|
|
64
|
-
- Interactive mode shows what will be deleted
|
|
65
|
-
- Prompts are in `.clavix/outputs/prompts/` for manual recovery
|
|
66
|
-
|
|
67
|
-
## Prompt Lifecycle
|
|
68
|
-
|
|
69
|
-
```
|
|
70
|
-
CREATE → /clavix:fast or /clavix:deep
|
|
71
|
-
REVIEW → /clavix:prompts (you are here)
|
|
72
|
-
EXECUTE → /clavix:execute
|
|
73
|
-
CLEANUP → /clavix:prompts clear
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
## Common Workflows
|
|
77
|
-
|
|
78
|
-
**Quick execute (no review):**
|
|
79
|
-
```bash
|
|
80
|
-
/clavix:fast "task"
|
|
81
|
-
/clavix:execute --latest
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
**Review before executing:**
|
|
85
|
-
```bash
|
|
86
|
-
/clavix:fast "task"
|
|
87
|
-
/clavix:prompts # Review
|
|
88
|
-
/clavix:execute # Select interactively
|
|
89
|
-
/clavix:prompts clear --executed
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
**Batch cleanup:**
|
|
93
|
-
```bash
|
|
94
|
-
/clavix:prompts # See stats
|
|
95
|
-
clavix prompts clear --executed
|
|
96
|
-
clavix prompts clear --stale
|
|
97
|
-
```
|