start-vibing 3.0.9 → 4.0.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/README.md +7 -8
- package/dist/cli.js +197 -150
- package/package.json +3 -3
- package/template/.claude/CLAUDE.md +367 -901
- package/template/.claude/README.md +208 -208
- package/template/.claude/agents/commit-manager.md +1 -1
- package/template/.claude/config/README.md +27 -32
- package/template/.claude/settings.json +74 -70
- package/template/CLAUDE.md +290 -305
- package/template/.claude/agents/documenter.md +0 -178
- package/template/.claude/agents/domain-updater.md +0 -134
- package/template/.claude/config/domain-mapping.json +0 -138
- package/template/.claude/skills/codebase-knowledge/SKILL.md +0 -145
- package/template/.claude/skills/codebase-knowledge/TEMPLATE.md +0 -35
- package/template/.claude/skills/codebase-knowledge/domains/claude-system.md +0 -96
- package/template/.claude/skills/codebase-knowledge/domains/mcp-integration.md +0 -128
- package/template/.claude/skills/docs-tracker/SKILL.md +0 -239
package/template/CLAUDE.md
CHANGED
|
@@ -1,305 +1,290 @@
|
|
|
1
|
-
# Project Rules
|
|
2
|
-
|
|
3
|
-
> **CHARACTER LIMIT**: Max 40,000 chars. Validate with `wc -m CLAUDE.md` before commit.
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
## Last Change
|
|
8
|
-
|
|
9
|
-
**Branch:** main
|
|
10
|
-
**Date:** YYYY-MM-DD
|
|
11
|
-
**Summary:** Initial setup with start-vibing.
|
|
12
|
-
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
## 30 Seconds Overview
|
|
16
|
-
|
|
17
|
-
UPDATE THIS WITH YOUR PROJECT DESCRIPTION
|
|
18
|
-
|
|
19
|
-
---
|
|
20
|
-
|
|
21
|
-
## Stack
|
|
22
|
-
|
|
23
|
-
| Component | Technology |
|
|
24
|
-
| ---------- | -------------------------- |
|
|
25
|
-
| Runtime | Bun / Node.js |
|
|
26
|
-
| Language | TypeScript **strict mode** |
|
|
27
|
-
| Validation | Zod |
|
|
28
|
-
| Database | MongoDB + Mongoose |
|
|
29
|
-
| Testing | Vitest + Playwright |
|
|
30
|
-
| UI | React + Tailwind + shadcn |
|
|
31
|
-
| Data | TanStack Query + Sonner |
|
|
32
|
-
| Forms | react-hook-form + Zod |
|
|
33
|
-
|
|
34
|
-
---
|
|
35
|
-
|
|
36
|
-
## Architecture
|
|
37
|
-
|
|
38
|
-
```
|
|
39
|
-
project-root/
|
|
40
|
-
├── CLAUDE.md # THIS FILE - project rules (40k char max)
|
|
41
|
-
├── .claude/
|
|
42
|
-
│ ├── agents/ #
|
|
43
|
-
│
|
|
44
|
-
│ ├──
|
|
45
|
-
│ ├──
|
|
46
|
-
│
|
|
47
|
-
|
|
48
|
-
├──
|
|
49
|
-
│ ├──
|
|
50
|
-
│ │ ├── (
|
|
51
|
-
│ │
|
|
52
|
-
│ │ │
|
|
53
|
-
│ │ │
|
|
54
|
-
│ │
|
|
55
|
-
│ │
|
|
56
|
-
│
|
|
57
|
-
│ ├──
|
|
58
|
-
│ │ ├──
|
|
59
|
-
│ │ ├──
|
|
60
|
-
│ │
|
|
61
|
-
│
|
|
62
|
-
│
|
|
63
|
-
│
|
|
64
|
-
|
|
65
|
-
├──
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
---
|
|
87
|
-
|
|
88
|
-
##
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
|
93
|
-
|
|
94
|
-
|
|
|
95
|
-
|
|
|
96
|
-
|
|
|
97
|
-
|
|
|
98
|
-
|
|
|
99
|
-
|
|
|
100
|
-
|
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
1.
|
|
106
|
-
2.
|
|
107
|
-
3.
|
|
108
|
-
4.
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
|
128
|
-
|
|
129
|
-
| **
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
|
153
|
-
|
|
154
|
-
|
|
|
155
|
-
|
|
|
156
|
-
|
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
```
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
|
220
|
-
|
|
|
221
|
-
|
|
|
222
|
-
| Skip
|
|
223
|
-
|
|
|
224
|
-
|
|
|
225
|
-
| Commit directly to main | Create feature/fix branches |
|
|
226
|
-
|
|
|
227
|
-
|
|
|
228
|
-
|
|
|
229
|
-
|
|
|
230
|
-
|
|
|
231
|
-
|
|
|
232
|
-
| Skip
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
Project-specific settings in `.claude/config/`:
|
|
293
|
-
|
|
294
|
-
- `project-config.json` - Stack, structure, commands
|
|
295
|
-
- `domain-mapping.json` - File-to-domain mapping
|
|
296
|
-
- `quality-gates.json` - Quality check commands
|
|
297
|
-
- `testing-config.json` - Test framework config
|
|
298
|
-
- `security-rules.json` - Security audit rules
|
|
299
|
-
|
|
300
|
-
---
|
|
301
|
-
|
|
302
|
-
## Setup by start-vibing
|
|
303
|
-
|
|
304
|
-
This project was set up with `npx start-vibing`.
|
|
305
|
-
For updates: `npx start-vibing --force`
|
|
1
|
+
# Project Rules
|
|
2
|
+
|
|
3
|
+
> **CHARACTER LIMIT**: Max 40,000 chars. Validate with `wc -m CLAUDE.md` before commit.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Last Change
|
|
8
|
+
|
|
9
|
+
**Branch:** main
|
|
10
|
+
**Date:** YYYY-MM-DD
|
|
11
|
+
**Summary:** Initial setup with start-vibing v4.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## 30 Seconds Overview
|
|
16
|
+
|
|
17
|
+
UPDATE THIS WITH YOUR PROJECT DESCRIPTION
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Stack
|
|
22
|
+
|
|
23
|
+
| Component | Technology |
|
|
24
|
+
| ---------- | -------------------------- |
|
|
25
|
+
| Runtime | Bun / Node.js |
|
|
26
|
+
| Language | TypeScript **strict mode** |
|
|
27
|
+
| Validation | Zod |
|
|
28
|
+
| Database | MongoDB + Mongoose |
|
|
29
|
+
| Testing | Vitest + Playwright |
|
|
30
|
+
| UI | React + Tailwind + shadcn |
|
|
31
|
+
| Data | TanStack Query + Sonner |
|
|
32
|
+
| Forms | react-hook-form + Zod |
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Architecture
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
project-root/
|
|
40
|
+
├── CLAUDE.md # THIS FILE - project rules (40k char max)
|
|
41
|
+
├── .claude/
|
|
42
|
+
│ ├── agents/ # 4 active subagents
|
|
43
|
+
│ ├── skills/ # Custom skills (auto-injected by Claude)
|
|
44
|
+
│ ├── scripts/ # Utility scripts
|
|
45
|
+
│ ├── config/ # Project configuration
|
|
46
|
+
│ └── commands/ # Slash commands
|
|
47
|
+
├── src/
|
|
48
|
+
│ ├── app/ # Next.js app router
|
|
49
|
+
│ │ ├── (marketing)/ # Route group - public pages
|
|
50
|
+
│ │ ├── (app)/ # Route group - authenticated
|
|
51
|
+
│ │ │ └── dashboard/
|
|
52
|
+
│ │ │ ├── page.tsx
|
|
53
|
+
│ │ │ └── _components/ # Page-specific components
|
|
54
|
+
│ │ ├── layout.tsx # Root layout with providers
|
|
55
|
+
│ │ └── loading.tsx # Global loading skeleton
|
|
56
|
+
│ ├── components/
|
|
57
|
+
│ │ ├── ui/ # shadcn primitives
|
|
58
|
+
│ │ ├── layout/ # Header, Sidebar, Footer
|
|
59
|
+
│ │ ├── shared/ # Cross-feature components
|
|
60
|
+
│ │ └── providers.tsx # Context providers (client)
|
|
61
|
+
│ └── lib/
|
|
62
|
+
│ ├── utils.ts # cn utility (MANDATORY)
|
|
63
|
+
│ └── api/ # axios instances
|
|
64
|
+
├── types/ # ALL TypeScript interfaces (MANDATORY)
|
|
65
|
+
├── tests/ # Test files
|
|
66
|
+
└── docs/ # Documentation (when user requests it)
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## Workflow
|
|
72
|
+
|
|
73
|
+
```
|
|
74
|
+
0. TODO LIST → Create detailed todo list from prompt
|
|
75
|
+
1. BRANCH → Create feature/ | fix/ | refactor/ | test/
|
|
76
|
+
2. RESEARCH → Use context7 plugin + web search for NEW features
|
|
77
|
+
3. PLAN → Use superpowers brainstorming + EnterPlanMode
|
|
78
|
+
4. IMPLEMENT → Use superpowers TDD + ralph-loop for iteration
|
|
79
|
+
5. TEST → Run tester-unit agent OR Playwright MCP
|
|
80
|
+
6. QUALITY → bun run typecheck && lint && test
|
|
81
|
+
7. SIMPLIFY → Run /simplify (code-simplifier) on changed files
|
|
82
|
+
8. ASK USER → "Done! Want me to document this in /docs?"
|
|
83
|
+
9. COMMIT → Conventional commits, merge to main
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## Key Plugins (9 installed)
|
|
89
|
+
|
|
90
|
+
| Plugin | Purpose | Invocation |
|
|
91
|
+
|--------|---------|------------|
|
|
92
|
+
| **superpowers** | TDD, debugging, brainstorming, planning | Auto + `/brainstorming`, `/execute-plan` |
|
|
93
|
+
| **ralph-loop** | Iterative autonomous dev loop | `/ralph-loop "task" --max-iterations 10` |
|
|
94
|
+
| **context7** | Auto library docs (replaces MCP) | Auto-invokes on library mentions |
|
|
95
|
+
| **code-simplifier** | Refine code quality post-implementation | `/simplify` or ask Claude |
|
|
96
|
+
| **typescript-lsp** | Type diagnostics, go-to-def | Auto (LSP server) |
|
|
97
|
+
| **security-guidance** | OWASP vulnerability scan | Auto (PreToolUse hook) |
|
|
98
|
+
| **code-review** | PR analysis | `/code-review` |
|
|
99
|
+
| **commit-commands** | Git commit, push, PR | `/commit` |
|
|
100
|
+
| **frontend-design** | Production-grade UI design | `/frontend-design` |
|
|
101
|
+
|
|
102
|
+
### Superpowers Workflow (USE THIS)
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
1. /brainstorming → Before any creative work or feature design
|
|
106
|
+
2. /write-plan → Design implementation plan
|
|
107
|
+
3. /execute-plan → Execute with TDD (red-green-refactor)
|
|
108
|
+
4. /systematic-debugging → When bugs appear (root cause first)
|
|
109
|
+
5. /verification-before-completion → Before claiming done
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
### Ralph Loop (USE FOR BIG TASKS)
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
/ralph-loop "implement the full auth system with login, register, forgot password" --max-iterations 15
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
Claude works autonomously until the task is complete or hits the iteration limit.
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## Agent System (4 Subagents)
|
|
123
|
+
|
|
124
|
+
| Agent | Purpose |
|
|
125
|
+
|-------|---------|
|
|
126
|
+
| **research-web** | Researches best practices before new features |
|
|
127
|
+
| **commit-manager** | Manages git commits, conventional format |
|
|
128
|
+
| **claude-md-compactor** | Compacts CLAUDE.md when > 40k chars |
|
|
129
|
+
| **tester-unit** | Creates unit tests with Vitest |
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
## Documentation Policy
|
|
134
|
+
|
|
135
|
+
> Documentation lives in `/docs` and is created **only when the user asks**.
|
|
136
|
+
|
|
137
|
+
After completing any task, Claude should ask:
|
|
138
|
+
```
|
|
139
|
+
Done! Finished [task description]. Want me to:
|
|
140
|
+
1. Document this in /docs?
|
|
141
|
+
2. Move on to the next task?
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
Do NOT auto-document. Do NOT maintain domain docs. Keep it simple.
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
## CLAUDE.md Update Rule (POST-IMPLEMENTATION)
|
|
149
|
+
|
|
150
|
+
> After ANY implementation, update this file to reflect the current state.
|
|
151
|
+
|
|
152
|
+
| Change Type | Sections to Update |
|
|
153
|
+
|-------------|-------------------|
|
|
154
|
+
| Any file change | Last Change (branch, date, summary) |
|
|
155
|
+
| New feature | 30s Overview, Architecture |
|
|
156
|
+
| New dependency | Stack |
|
|
157
|
+
| Workflow change | Workflow section |
|
|
158
|
+
|
|
159
|
+
Keep only the LATEST Last Change entry (no stacking).
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
## Critical Rules
|
|
164
|
+
|
|
165
|
+
### HTTP Requests (MANDATORY)
|
|
166
|
+
|
|
167
|
+
| Rule | Implementation |
|
|
168
|
+
|------|----------------|
|
|
169
|
+
| Use axios ONLY | Never `fetch()` or raw `axios` |
|
|
170
|
+
| `withCredentials: true` | ALWAYS for cookies/sessions |
|
|
171
|
+
| Extend base instance | Create `lib/api/axios.ts` |
|
|
172
|
+
| Type responses | `api.get<User>('/users')` |
|
|
173
|
+
| Centralize errors | Use interceptors |
|
|
174
|
+
|
|
175
|
+
### Path Aliases (MANDATORY)
|
|
176
|
+
|
|
177
|
+
| Alias | Maps To | Use For |
|
|
178
|
+
| ---------- | ------------------- | ------------- |
|
|
179
|
+
| `$types/*` | `./types/*` | Type defs |
|
|
180
|
+
| `@common` | `./common/index.ts` | Logger, utils |
|
|
181
|
+
| `@db` | `./common/db/` | DB connection |
|
|
182
|
+
|
|
183
|
+
### TypeScript Strict
|
|
184
|
+
|
|
185
|
+
```typescript
|
|
186
|
+
process.env['VARIABLE']; // CORRECT (bracket notation)
|
|
187
|
+
source: 'listed' as const; // CORRECT (literal type)
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
---
|
|
191
|
+
|
|
192
|
+
## Quality Gates
|
|
193
|
+
|
|
194
|
+
```bash
|
|
195
|
+
bun run typecheck # MUST pass
|
|
196
|
+
bun run lint # MUST pass
|
|
197
|
+
bun run test # MUST pass
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
---
|
|
201
|
+
|
|
202
|
+
## Commit Format
|
|
203
|
+
|
|
204
|
+
```
|
|
205
|
+
[type]: [description]
|
|
206
|
+
|
|
207
|
+
- Detail 1
|
|
208
|
+
- Detail 2
|
|
209
|
+
|
|
210
|
+
Generated with Claude Code
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
Types: `feat`, `fix`, `refactor`, `docs`, `chore`
|
|
214
|
+
|
|
215
|
+
---
|
|
216
|
+
|
|
217
|
+
## FORBIDDEN Actions
|
|
218
|
+
|
|
219
|
+
| Action | Reason |
|
|
220
|
+
| ------------------------------ | ---------------------------- |
|
|
221
|
+
| Write in non-English | ALL code/docs MUST be in EN |
|
|
222
|
+
| Skip typecheck | Catches runtime errors |
|
|
223
|
+
| Use `any` type | Defeats strict mode |
|
|
224
|
+
| Define types in `src/` | Must be in `types/` |
|
|
225
|
+
| Commit directly to main | Create feature/fix branches |
|
|
226
|
+
| Use MUI/Chakra | Use shadcn/ui + Radix |
|
|
227
|
+
| Wildcard icon imports | Use named imports |
|
|
228
|
+
| Files > 400 lines | MUST split into smaller |
|
|
229
|
+
| 'use client' at top level | Push to leaf components only |
|
|
230
|
+
| Waterfall data fetching | Use Promise.all() for parallel |
|
|
231
|
+
| Auto-document without asking | Ask user first |
|
|
232
|
+
| Skip superpowers for features | Use brainstorming + TDD |
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
## UI Architecture (MANDATORY)
|
|
237
|
+
|
|
238
|
+
> Web apps MUST have **separate UIs** for each platform.
|
|
239
|
+
|
|
240
|
+
| Platform | Layout |
|
|
241
|
+
| ----------------- | ------------------------------------------- |
|
|
242
|
+
| Mobile (375px) | Full-screen modals, bottom nav, touch-first |
|
|
243
|
+
| Tablet (768px) | Condensed dropdowns, hybrid nav |
|
|
244
|
+
| Desktop (1280px+) | Sidebar left, top navbar with search |
|
|
245
|
+
|
|
246
|
+
---
|
|
247
|
+
|
|
248
|
+
## MCP Servers
|
|
249
|
+
|
|
250
|
+
| Server | Purpose | When to Use |
|
|
251
|
+
| --------------------- | ----------------------- | ------------------------------------ |
|
|
252
|
+
| `sequential-thinking` | Complex problem-solving | Multi-step tasks, planning |
|
|
253
|
+
| `memory` | Persistent knowledge | Store/recall project patterns |
|
|
254
|
+
| `playwright` | Browser automation | UI testing, page verification |
|
|
255
|
+
| `nextjs-devtools` | Next.js dev tools | Next.js projects only |
|
|
256
|
+
| `mongodb` | Database operations | DB queries, schema inspection |
|
|
257
|
+
|
|
258
|
+
> Note: `context7` is now a **plugin** (auto-invokes on library mentions).
|
|
259
|
+
|
|
260
|
+
---
|
|
261
|
+
|
|
262
|
+
## Community Skills (from GitHub)
|
|
263
|
+
|
|
264
|
+
| Skill | Source | Purpose |
|
|
265
|
+
|-------|--------|---------|
|
|
266
|
+
| **react-best-practices** | vercel-labs | React/Next.js perf optimization rules |
|
|
267
|
+
| **web-design-guidelines** | vercel-labs | 100+ WCAG + UX audit rules |
|
|
268
|
+
| **composition-patterns** | vercel-labs | Compound component patterns |
|
|
269
|
+
| **webapp-testing** | anthropics | Real browser test execution |
|
|
270
|
+
| **mcp-builder** | anthropics | MCP server development guide |
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
## Configuration
|
|
275
|
+
|
|
276
|
+
Edit these files in `.claude/config/` for your project:
|
|
277
|
+
|
|
278
|
+
| File | Purpose |
|
|
279
|
+
| --------------------- | -------------------------- |
|
|
280
|
+
| `project-config.json` | Stack, structure, commands |
|
|
281
|
+
| `quality-gates.json` | Quality check commands |
|
|
282
|
+
| `testing-config.json` | Test framework config |
|
|
283
|
+
| `security-rules.json` | Security audit rules |
|
|
284
|
+
|
|
285
|
+
---
|
|
286
|
+
|
|
287
|
+
## Setup by start-vibing
|
|
288
|
+
|
|
289
|
+
This project was set up with `npx start-vibing`.
|
|
290
|
+
For updates: `npx start-vibing --force`
|