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.
@@ -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
- ```