start-vibing 1.1.2 → 1.1.4

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 (38) hide show
  1. package/package.json +1 -1
  2. package/template/.claude/CLAUDE.md +129 -168
  3. package/template/.claude/agents/analyzer.md +0 -14
  4. package/template/.claude/agents/commit-manager.md +0 -19
  5. package/template/.claude/agents/documenter.md +0 -10
  6. package/template/.claude/agents/domain-updater.md +194 -200
  7. package/template/.claude/agents/final-validator.md +0 -18
  8. package/template/.claude/agents/orchestrator.md +36 -34
  9. package/template/.claude/agents/quality-checker.md +0 -24
  10. package/template/.claude/agents/research.md +299 -262
  11. package/template/.claude/agents/security-auditor.md +1 -14
  12. package/template/.claude/agents/tester.md +0 -8
  13. package/template/.claude/agents/ui-ux-reviewer.md +80 -18
  14. package/template/.claude/commands/feature.md +48 -102
  15. package/template/.claude/config/README.md +30 -30
  16. package/template/.claude/config/project-config.json +53 -53
  17. package/template/.claude/config/quality-gates.json +46 -46
  18. package/template/.claude/config/security-rules.json +45 -45
  19. package/template/.claude/config/testing-config.json +168 -168
  20. package/template/.claude/hooks/SETUP.md +52 -181
  21. package/template/.claude/hooks/user-prompt-submit.py +184 -46
  22. package/template/.claude/settings.json +0 -39
  23. package/template/.claude/skills/codebase-knowledge/SKILL.md +145 -145
  24. package/template/.claude/skills/codebase-knowledge/domains/claude-system.md +260 -321
  25. package/template/.claude/skills/docs-tracker/SKILL.md +239 -239
  26. package/template/.claude/skills/final-check/SKILL.md +284 -284
  27. package/template/.claude/skills/quality-gate/SKILL.md +278 -278
  28. package/template/.claude/skills/research-cache/SKILL.md +207 -207
  29. package/template/.claude/skills/security-scan/SKILL.md +206 -206
  30. package/template/.claude/skills/test-coverage/SKILL.md +441 -441
  31. package/template/.claude/skills/ui-ux-audit/SKILL.md +254 -254
  32. package/template/.claude/config/domain-mapping.json +0 -26
  33. package/template/.claude/hooks/post-tool-use.py +0 -155
  34. package/template/.claude/hooks/pre-tool-use.py +0 -159
  35. package/template/.claude/hooks/stop-validation.py +0 -155
  36. package/template/.claude/hooks/validate-commit.py +0 -200
  37. package/template/.claude/hooks/workflow-manager.py +0 -350
  38. package/template/.claude/workflow-state.schema.json +0 -200
@@ -1,207 +1,207 @@
1
- ---
2
- name: research-cache
3
- description: Caches research findings to avoid redundant web searches. Stores best practices by topic with sources and dates. Use before researching to check existing knowledge.
4
- allowed-tools: Read, Write, Glob, Grep
5
- ---
6
-
7
- # Research Cache - Best Practices Storage
8
-
9
- ## Purpose
10
-
11
- This skill caches research findings to avoid redundant web searches and maintain institutional knowledge about best practices.
12
-
13
- ---
14
-
15
- ## Structure
16
-
17
- ```
18
- .claude/skills/research-cache/
19
- ├── SKILL.md # This file
20
- ├── TEMPLATE.md # Template for research findings
21
- └── cache/ # Cached research by topic
22
- ├── react-server-components.md
23
- ├── typescript-strict.md
24
- └── [topic].md
25
- ```
26
-
27
- ---
28
-
29
- ## How It Works
30
-
31
- ### Before Research
32
-
33
- 1. **Check cache first** - Look for existing research on the topic
34
- 2. **Verify freshness** - Research older than 6 months may need updating
35
- 3. **Reuse findings** - If recent research exists, use it directly
36
-
37
- ### After Research
38
-
39
- 1. **Create cache file** - Document findings in `cache/[topic].md`
40
- 2. **Follow template** - Use consistent structure
41
- 3. **Include sources** - Always cite URLs and dates
42
- 4. **Tag relevance** - Mark which parts of stack it applies to
43
-
44
- ---
45
-
46
- ## Cache File Template
47
-
48
- ```markdown
49
- # Research: [Topic Name]
50
-
51
- ## Metadata
52
- - **Date:** YYYY-MM-DD
53
- - **Researcher:** [agent/session]
54
- - **Freshness:** [fresh|stale|outdated]
55
- - **Stack:** [bun|typescript|mongodb|react|all]
56
-
57
- ## Problem Statement
58
- [What problem were we trying to solve?]
59
-
60
- ## Search Queries
61
- 1. "[query 1]"
62
- 2. "[query 2]"
63
- 3. "[query 3]"
64
-
65
- ## Key Findings
66
-
67
- ### Finding 1: [Title]
68
- **Source:** [URL]
69
- **Date:** [publication date]
70
- **Relevance:** [high|medium|low]
71
-
72
- [Summary of finding]
73
-
74
- **Code Example:**
75
- ```[language]
76
- [code]
77
- ```
78
-
79
- **Applies When:**
80
- - [condition 1]
81
- - [condition 2]
82
-
83
- ### Finding 2: [Title]
84
- ...
85
-
86
- ## Recommendations
87
-
88
- ### DO
89
- 1. [Best practice 1]
90
- 2. [Best practice 2]
91
-
92
- ### AVOID
93
- 1. [Anti-pattern 1]
94
- 2. [Anti-pattern 2]
95
-
96
- ### CONSIDER
97
- 1. [Alternative approach 1]
98
- 2. [Alternative approach 2]
99
-
100
- ## Implementation Notes
101
-
102
- ### For This Project
103
- - [Specific note for your project]
104
- - [Integration point]
105
-
106
- ### Gotchas
107
- - [Warning 1]
108
- - [Warning 2]
109
-
110
- ## Sources
111
-
112
- | Title | URL | Date | Relevance |
113
- |-------|-----|------|-----------|
114
- | [Source 1] | [url] | [date] | [high/med/low] |
115
- | [Source 2] | [url] | [date] | [high/med/low] |
116
-
117
- ## Related Topics
118
- - [[related-topic-1]]
119
- - [[related-topic-2]]
120
- ```
121
-
122
- ---
123
-
124
- ## Usage Patterns
125
-
126
- ### Quick Lookup
127
-
128
- ```bash
129
- # Check if research exists
130
- ls .claude/skills/research-cache/cache/
131
-
132
- # Read specific research
133
- cat .claude/skills/research-cache/cache/[topic].md
134
- ```
135
-
136
- ### Search Cached Research
137
-
138
- ```bash
139
- # Find all research mentioning a term
140
- grep -r "websocket" .claude/skills/research-cache/cache/
141
- ```
142
-
143
- ### Check Freshness
144
-
145
- ```bash
146
- # Find research older than 6 months
147
- find .claude/skills/research-cache/cache/ -mtime +180
148
- ```
149
-
150
- ---
151
-
152
- ## Integration with Research Agent
153
-
154
- The **research agent** uses this skill to:
155
-
156
- 1. **Check existing research** before web searching
157
- 2. **Store new findings** after web research
158
- 3. **Update stale research** when patterns change
159
- 4. **Cross-reference** findings across topics
160
-
161
- ---
162
-
163
- ## Freshness Guidelines
164
-
165
- | Age | Status | Action |
166
- |-----|--------|--------|
167
- | < 3 months | Fresh | Use directly |
168
- | 3-6 months | Aging | Verify still valid |
169
- | 6-12 months | Stale | Update recommended |
170
- | > 12 months | Outdated | Full re-research needed |
171
-
172
- ---
173
-
174
- ## Topic Naming Convention
175
-
176
- Use kebab-case descriptive names:
177
-
178
- ```
179
- react-server-components.md # Technology + feature
180
- typescript-strict-mode.md # Language + specific setting
181
- mongodb-indexes.md # Database + concept
182
- bun-docker-deploy.md # Runtime + deployment context
183
- error-handling-patterns.md # Generic pattern
184
- ```
185
-
186
- ---
187
-
188
- ## Rules
189
-
190
- ### MANDATORY
191
-
192
- 1. **Always check cache first** - Don't duplicate research
193
- 2. **Always include sources** - No unsourced recommendations
194
- 3. **Always date entries** - Freshness matters
195
- 4. **Always follow template** - Consistency helps retrieval
196
-
197
- ### FORBIDDEN
198
-
199
- 1. **Cache without sources** - All findings need citations
200
- 2. **Ignore freshness** - Old research may be wrong
201
- 3. **Duplicate topics** - One file per topic, update existing
202
-
203
- ---
204
-
205
- ## Version
206
-
207
- - **v1.0.0** - Initial implementation
1
+ ---
2
+ name: research-cache
3
+ description: Caches research findings to avoid redundant web searches. Stores best practices by topic with sources and dates. Use before researching to check existing knowledge.
4
+ allowed-tools: Read, Write, Glob, Grep
5
+ ---
6
+
7
+ # Research Cache - Best Practices Storage
8
+
9
+ ## Purpose
10
+
11
+ This skill caches research findings to avoid redundant web searches and maintain institutional knowledge about best practices.
12
+
13
+ ---
14
+
15
+ ## Structure
16
+
17
+ ```
18
+ .claude/skills/research-cache/
19
+ ├── SKILL.md # This file
20
+ ├── TEMPLATE.md # Template for research findings
21
+ └── cache/ # Cached research by topic
22
+ ├── solana-websockets.md
23
+ ├── typescript-strict.md
24
+ └── [topic].md
25
+ ```
26
+
27
+ ---
28
+
29
+ ## How It Works
30
+
31
+ ### Before Research
32
+
33
+ 1. **Check cache first** - Look for existing research on the topic
34
+ 2. **Verify freshness** - Research older than 6 months may need updating
35
+ 3. **Reuse findings** - If recent research exists, use it directly
36
+
37
+ ### After Research
38
+
39
+ 1. **Create cache file** - Document findings in `cache/[topic].md`
40
+ 2. **Follow template** - Use consistent structure
41
+ 3. **Include sources** - Always cite URLs and dates
42
+ 4. **Tag relevance** - Mark which parts of stack it applies to
43
+
44
+ ---
45
+
46
+ ## Cache File Template
47
+
48
+ ```markdown
49
+ # Research: [Topic Name]
50
+
51
+ ## Metadata
52
+ - **Date:** YYYY-MM-DD
53
+ - **Researcher:** [agent/session]
54
+ - **Freshness:** [fresh|stale|outdated]
55
+ - **Stack:** [bun|typescript|mongodb|solana|all]
56
+
57
+ ## Problem Statement
58
+ [What problem were we trying to solve?]
59
+
60
+ ## Search Queries
61
+ 1. "[query 1]"
62
+ 2. "[query 2]"
63
+ 3. "[query 3]"
64
+
65
+ ## Key Findings
66
+
67
+ ### Finding 1: [Title]
68
+ **Source:** [URL]
69
+ **Date:** [publication date]
70
+ **Relevance:** [high|medium|low]
71
+
72
+ [Summary of finding]
73
+
74
+ **Code Example:**
75
+ ```[language]
76
+ [code]
77
+ ```
78
+
79
+ **Applies When:**
80
+ - [condition 1]
81
+ - [condition 2]
82
+
83
+ ### Finding 2: [Title]
84
+ ...
85
+
86
+ ## Recommendations
87
+
88
+ ### DO
89
+ 1. [Best practice 1]
90
+ 2. [Best practice 2]
91
+
92
+ ### AVOID
93
+ 1. [Anti-pattern 1]
94
+ 2. [Anti-pattern 2]
95
+
96
+ ### CONSIDER
97
+ 1. [Alternative approach 1]
98
+ 2. [Alternative approach 2]
99
+
100
+ ## Implementation Notes
101
+
102
+ ### For This Project
103
+ - [Specific note for solana-listeners]
104
+ - [Integration point]
105
+
106
+ ### Gotchas
107
+ - [Warning 1]
108
+ - [Warning 2]
109
+
110
+ ## Sources
111
+
112
+ | Title | URL | Date | Relevance |
113
+ |-------|-----|------|-----------|
114
+ | [Source 1] | [url] | [date] | [high/med/low] |
115
+ | [Source 2] | [url] | [date] | [high/med/low] |
116
+
117
+ ## Related Topics
118
+ - [[related-topic-1]]
119
+ - [[related-topic-2]]
120
+ ```
121
+
122
+ ---
123
+
124
+ ## Usage Patterns
125
+
126
+ ### Quick Lookup
127
+
128
+ ```bash
129
+ # Check if research exists
130
+ ls .claude/skills/research-cache/cache/
131
+
132
+ # Read specific research
133
+ cat .claude/skills/research-cache/cache/[topic].md
134
+ ```
135
+
136
+ ### Search Cached Research
137
+
138
+ ```bash
139
+ # Find all research mentioning a term
140
+ grep -r "websocket" .claude/skills/research-cache/cache/
141
+ ```
142
+
143
+ ### Check Freshness
144
+
145
+ ```bash
146
+ # Find research older than 6 months
147
+ find .claude/skills/research-cache/cache/ -mtime +180
148
+ ```
149
+
150
+ ---
151
+
152
+ ## Integration with Research Agent
153
+
154
+ The **research agent** uses this skill to:
155
+
156
+ 1. **Check existing research** before web searching
157
+ 2. **Store new findings** after web research
158
+ 3. **Update stale research** when patterns change
159
+ 4. **Cross-reference** findings across topics
160
+
161
+ ---
162
+
163
+ ## Freshness Guidelines
164
+
165
+ | Age | Status | Action |
166
+ |-----|--------|--------|
167
+ | < 3 months | Fresh | Use directly |
168
+ | 3-6 months | Aging | Verify still valid |
169
+ | 6-12 months | Stale | Update recommended |
170
+ | > 12 months | Outdated | Full re-research needed |
171
+
172
+ ---
173
+
174
+ ## Topic Naming Convention
175
+
176
+ Use kebab-case descriptive names:
177
+
178
+ ```
179
+ solana-websockets.md # Technology + feature
180
+ typescript-strict-mode.md # Language + specific setting
181
+ mongodb-indexes.md # Database + concept
182
+ bun-docker-deploy.md # Runtime + deployment context
183
+ error-handling-patterns.md # Generic pattern
184
+ ```
185
+
186
+ ---
187
+
188
+ ## Rules
189
+
190
+ ### MANDATORY
191
+
192
+ 1. **Always check cache first** - Don't duplicate research
193
+ 2. **Always include sources** - No unsourced recommendations
194
+ 3. **Always date entries** - Freshness matters
195
+ 4. **Always follow template** - Consistency helps retrieval
196
+
197
+ ### FORBIDDEN
198
+
199
+ 1. **Cache without sources** - All findings need citations
200
+ 2. **Ignore freshness** - Old research may be wrong
201
+ 3. **Duplicate topics** - One file per topic, update existing
202
+
203
+ ---
204
+
205
+ ## Version
206
+
207
+ - **v1.0.0** - Initial implementation