start-vibing 4.4.11 → 4.4.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "start-vibing",
3
- "version": "4.4.11",
3
+ "version": "4.4.13",
4
4
  "description": "Setup Claude Code with 9 plugins, 6 community skills, and 8 MCP servers. Parallel install, auto-accept, superpowers + ralph-loop. e2e-audit 0.2.0 refactor (skill-only, no agents): SessionStart hook + slash command make the skill keyword-invokable (\"e2e audit\", \"roda o e2e\", \"integration test\", \"test coverage gaps\"). Source-first discovery via detect-stack, discover-routes (Next app/pages/Remix/SvelteKit/Nuxt/Astro), discover-api-surface (HTTP handlers, tRPC procedures, GraphQL, server actions, middleware auth), inventory-existing-tests (preserve prior corpus + sha256 drift hash), and detect-uncovered (branch-diff vs origin/main finds changes not covered by existing specs). Report-then-ask between mapping and Playwright run; post-run-feedback report before writing findings. SHOT+TRACE+ASSERT+SOURCE evidence quad per non-meta finding; meta rules (coverage-gap-*, uncovered-*, test-drift, stack-detect, post-run-feedback) exempt. verify-audit.sh enforces schema + quad. Generic (no project leakage). super-design 0.7.0 carries over.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -5,16 +5,34 @@ For user-facing project rules, see `/CLAUDE.md`.
5
5
 
6
6
  ---
7
7
 
8
+ ## Language Policy (HARD RULE)
9
+
10
+ > **ENGLISH ONLY — for everything Claude produces — UNLESS the user explicitly asks for another language in the current request.**
11
+
12
+ Applies to **every** output, no exceptions beyond an explicit user override:
13
+
14
+ - Chat replies, status updates, summaries, questions back to the user
15
+ - Code (identifiers, variables, function/class names, type names)
16
+ - Comments, JSDoc, docstrings
17
+ - Commit messages, PR titles, PR descriptions, branch names
18
+ - Documentation (`/docs/**`, README, CLAUDE.md updates, changelogs, ADRs)
19
+ - Test names, error messages, log messages, CLI help strings
20
+ - File and folder names, configuration keys
21
+
22
+ The user may write to Claude in Portuguese, Spanish, or any other language — Claude still responds and writes in English unless the user explicitly says e.g. "responda em português", "write this in Spanish". An override applies only to the current request; revert to English on the next turn. Never mix English + another language in the same output. If unsure whether a request is an override, default to English and ask one short clarifying question.
23
+
24
+ ---
25
+
8
26
  ## What start-vibing v4 Installs
9
27
 
10
28
  start-vibing is a CLI (`npx start-vibing`) that sets up Claude Code with a complete development system in ~30 seconds:
11
29
 
12
- | Component | Count | Installation Method |
13
- |-----------|-------|-------------------|
14
- | **MCP Servers** | 8 | `claude mcp add` (parallel, ~20s) |
15
- | **Plugins** | 9 | `claude plugin install` (parallel, auto-accept, ~3s) |
16
- | **Community Skills** | 5 | Direct HTTPS download from GitHub (~0.3s) |
17
- | **Template Files** | ~30 | File copy (agents, skills, config, CLAUDE.md) |
30
+ | Component | Count | Installation Method |
31
+ | -------------------- | ----- | ---------------------------------------------------- |
32
+ | **MCP Servers** | 8 | `claude mcp add` (parallel, ~20s) |
33
+ | **Plugins** | 9 | `claude plugin install` (parallel, auto-accept, ~3s) |
34
+ | **Community Skills** | 5 | Direct HTTPS download from GitHub (~0.3s) |
35
+ | **Template Files** | ~30 | File copy (agents, skills, config, CLAUDE.md) |
18
36
 
19
37
  ### Installation Architecture
20
38
 
@@ -32,14 +50,14 @@ All phases run best-effort. MCP and plugin failures are non-blocking — `settin
32
50
 
33
51
  ### CLI Options
34
52
 
35
- | Flag | Effect |
36
- |------|--------|
37
- | `--force` | Overwrite all files (including custom ones) |
38
- | `--new` | Start fresh Claude session (default: resume last) |
39
- | `--no-claude` | Skip Claude Code installation and launch |
40
- | `--no-mcp` | Skip MCP server installation |
41
- | `--no-skills` | Skip community skills installation |
42
- | `--no-update-check` | Skip version check |
53
+ | Flag | Effect |
54
+ | ------------------- | ------------------------------------------------- |
55
+ | `--force` | Overwrite all files (including custom ones) |
56
+ | `--new` | Start fresh Claude session (default: resume last) |
57
+ | `--no-claude` | Skip Claude Code installation and launch |
58
+ | `--no-mcp` | Skip MCP server installation |
59
+ | `--no-skills` | Skip community skills installation |
60
+ | `--no-update-check` | Skip version check |
43
61
 
44
62
  ---
45
63
 
@@ -58,13 +76,13 @@ All phases run best-effort. MCP and plugin failures are non-blocking — `settin
58
76
 
59
77
  ## Agents (5 Active Subagents)
60
78
 
61
- | Agent | Model | Purpose |
62
- |-------|-------|---------|
63
- | **research-web** | sonnet | Researches best practices (2025-2026) with ontology-based structuring, output to `/docs/research/` |
64
- | **documenter** | sonnet | Analyzes sessions via git log/diff, writes changelog + technical docs + ADRs to `/docs/` |
65
- | **commit-manager** | haiku | Manages git commits, conventional format, merge workflow |
66
- | **claude-md-compactor** | sonnet | Compacts CLAUDE.md when it exceeds 40k chars |
67
- | **tester-unit** | sonnet | Creates unit tests with Vitest for new functions and utilities |
79
+ | Agent | Model | Purpose |
80
+ | ----------------------- | ------ | -------------------------------------------------------------------------------------------------- |
81
+ | **research-web** | sonnet | Researches best practices (2025-2026) with ontology-based structuring, output to `/docs/research/` |
82
+ | **documenter** | sonnet | Analyzes sessions via git log/diff, writes changelog + technical docs + ADRs to `/docs/` |
83
+ | **commit-manager** | haiku | Manages git commits, conventional format, merge workflow |
84
+ | **claude-md-compactor** | sonnet | Compacts CLAUDE.md when it exceeds 40k chars |
85
+ | **tester-unit** | sonnet | Creates unit tests with Vitest for new functions and utilities |
68
86
 
69
87
  ### Agent Workflow Order
70
88
 
@@ -79,6 +97,7 @@ Agents are dispatched via the `Agent` tool with `subagent_type` matching agent n
79
97
  The research-web agent outputs findings to `/docs/research/[topic].md` (NOT to `.claude/skills/research-cache/`).
80
98
 
81
99
  **Research flow:**
100
+
82
101
  1. Check `/docs/research/` for existing findings (reuse if fresh < 3 months)
83
102
  2. Build ontology map (concepts → relationships → constraints)
84
103
  3. Search with `[topic] [aspect] [2025-2026] [context]` queries
@@ -86,6 +105,7 @@ The research-web agent outputs findings to `/docs/research/[topic].md` (NOT to `
86
105
  5. Save structured output to `/docs/research/`
87
106
 
88
107
  **For UI/UX tasks, the agent also runs:**
108
+
89
109
  - Competitor analysis (3-5 competitors, heuristic evaluation)
90
110
  - Design system pattern check (shadcn/ui, Radix, WCAG 2.1)
91
111
  - User flow mapping (happy path + 2 error paths)
@@ -96,6 +116,7 @@ The research-web agent outputs findings to `/docs/research/[topic].md` (NOT to `
96
116
  The documenter agent runs after implementation, analyzes the session, and writes structured docs to `/docs/`.
97
117
 
98
118
  **Documentation flow:**
119
+
99
120
  1. Run `git log` + `git diff` to analyze what changed
100
121
  2. Classify changes: per-commit, per-feature, per-session
101
122
  3. Mini-research for technologies used (check `/docs/research/` first, else 1-2 queries)
@@ -103,6 +124,7 @@ The documenter agent runs after implementation, analyzes the session, and writes
103
124
  5. Update all indexes (`/docs/index.md` + per-folder indexes)
104
125
 
105
126
  **Output structure:**
127
+
106
128
  ```
107
129
  /docs/
108
130
  ├── index.md # Root index
@@ -121,6 +143,7 @@ The documenter agent runs after implementation, analyzes the session, and writes
121
143
  ```
122
144
 
123
145
  **Writing rules:**
146
+
124
147
  - Self-contained sections (AI RAG chunk retrieval)
125
148
  - What→Why→How progression (humans first)
126
149
  - Before→After pattern for all changes (mandatory)
@@ -136,22 +159,22 @@ Plugins are the primary extension mechanism. All 9 are installed in parallel wit
136
159
 
137
160
  ### Core Workflow Plugins
138
161
 
139
- | Plugin | Mechanism | Purpose |
140
- |--------|-----------|---------|
141
- | **superpowers** | Skills + commands | TDD, brainstorming, debugging, planning, code review, git worktrees |
142
- | **ralph-loop** | Stop hook + command | Iterative autonomous development loop with checkpoints |
143
- | **context7** | Skill + agent + MCP | Auto library docs — replaces manual context7 MCP server |
144
- | **code-simplifier** | Skill + command | Refine code for clarity, reduce nesting, improve naming |
162
+ | Plugin | Mechanism | Purpose |
163
+ | ------------------- | ------------------- | ------------------------------------------------------------------- |
164
+ | **superpowers** | Skills + commands | TDD, brainstorming, debugging, planning, code review, git worktrees |
165
+ | **ralph-loop** | Stop hook + command | Iterative autonomous development loop with checkpoints |
166
+ | **context7** | Skill + agent + MCP | Auto library docs — replaces manual context7 MCP server |
167
+ | **code-simplifier** | Skill + command | Refine code for clarity, reduce nesting, improve naming |
145
168
 
146
169
  ### Development Plugins
147
170
 
148
- | Plugin | Mechanism | Purpose |
149
- |--------|-----------|---------|
150
- | **typescript-lsp** | LSP server (auto) | Type diagnostics, go-to-definition, hover info |
151
- | **security-guidance** | PreToolUse hook (auto) | OWASP Top 10, vulnerability scan, blocks unsafe patterns |
152
- | **code-review** | `/code-review` command | Code quality analysis, PR review |
153
- | **commit-commands** | `/commit` command | Git commit, push, PR flows with conventional format |
154
- | **frontend-design** | `/frontend-design` command | Production-grade UI design with competitor research |
171
+ | Plugin | Mechanism | Purpose |
172
+ | --------------------- | -------------------------- | -------------------------------------------------------- |
173
+ | **typescript-lsp** | LSP server (auto) | Type diagnostics, go-to-definition, hover info |
174
+ | **security-guidance** | PreToolUse hook (auto) | OWASP Top 10, vulnerability scan, blocks unsafe patterns |
175
+ | **code-review** | `/code-review` command | Code quality analysis, PR review |
176
+ | **commit-commands** | `/commit` command | Git commit, push, PR flows with conventional format |
177
+ | **frontend-design** | `/frontend-design` command | Production-grade UI design with competitor research |
155
178
 
156
179
  ### Plugin Installation Details
157
180
 
@@ -193,6 +216,7 @@ All file changes and git history persist between iterations. Best for multi-file
193
216
  ### Using Code Simplifier (POST-IMPLEMENTATION)
194
217
 
195
218
  After implementing, run `/simplify` to:
219
+
196
220
  - Reduce nesting and redundancy
197
221
  - Improve naming and readability
198
222
  - Replace nested ternaries with early returns
@@ -206,10 +230,10 @@ All 8 MCPs are installed in parallel via `claude mcp add -s user` (~20s total).
206
230
 
207
231
  ### Required MCPs (ALWAYS use these)
208
232
 
209
- | Server | Package | Purpose |
210
- |--------|---------|---------|
233
+ | Server | Package | Purpose |
234
+ | --------------------- | -------------------------------------------------- | ---------------------------------------------------------------------------- |
211
235
  | `sequential-thinking` | `@modelcontextprotocol/server-sequential-thinking` | Structured reasoning for multi-step tasks, architecture decisions, debugging |
212
- | `playwright` | `@playwright/mcp@latest` | Browser automation for UI verification, E2E tests, visual validation |
236
+ | `playwright` | `@playwright/mcp@latest` | Browser automation for UI verification, E2E tests, visual validation |
213
237
 
214
238
  > These 2 are **non-negotiable**. Skipping them leads to poor planning and untested UIs.
215
239
 
@@ -217,27 +241,27 @@ All 8 MCPs are installed in parallel via `claude mcp add -s user` (~20s total).
217
241
 
218
242
  ### Standard MCPs
219
243
 
220
- | Server | Package | Transport | Purpose |
221
- |--------|---------|-----------|---------|
222
- | `memory` | `@modelcontextprotocol/server-memory` | stdio (npx) | Persistent knowledge graph across sessions |
223
- | `nextjs-devtools` | `next-devtools-mcp@latest` | stdio (npx) | Next.js runtime errors, routes, cache inspection |
224
- | `mongodb` | `@mongodb-js/mongodb-mcp-server` | stdio (npx) | MongoDB queries, schema inspection, aggregation |
225
- | `jira` | `@aashari/mcp-server-atlassian-jira` | stdio (npx) | Issue tracking, task management |
226
- | `git` | `mcp-server-git` | stdio (uvx) | Git operations, repo search, history, diffs |
227
- | `fetch` | `mcp-server-fetch` | stdio (uvx) | Fetch web pages as markdown |
244
+ | Server | Package | Transport | Purpose |
245
+ | ----------------- | ------------------------------------- | ----------- | ------------------------------------------------ |
246
+ | `memory` | `@modelcontextprotocol/server-memory` | stdio (npx) | Persistent knowledge graph across sessions |
247
+ | `nextjs-devtools` | `next-devtools-mcp@latest` | stdio (npx) | Next.js runtime errors, routes, cache inspection |
248
+ | `mongodb` | `@mongodb-js/mongodb-mcp-server` | stdio (npx) | MongoDB queries, schema inspection, aggregation |
249
+ | `jira` | `@aashari/mcp-server-atlassian-jira` | stdio (npx) | Issue tracking, task management |
250
+ | `git` | `mcp-server-git` | stdio (uvx) | Git operations, repo search, history, diffs |
251
+ | `fetch` | `mcp-server-fetch` | stdio (uvx) | Fetch web pages as markdown |
228
252
 
229
253
  ### Optional MCPs (install manually)
230
254
 
231
255
  These are shown to the user after setup but not auto-installed:
232
256
 
233
- | Server | Install Command |
234
- |--------|----------------|
257
+ | Server | Install Command |
258
+ | -------- | ----------------------------------------------------------------------------------- |
235
259
  | `github` | `claude mcp add --transport http -s user github https://api.githubcopilot.com/mcp/` |
236
- | `sentry` | `claude mcp add --transport http -s user sentry https://mcp.sentry.dev/mcp` |
237
- | `figma` | `claude mcp add --transport http -s user figma https://mcp.figma.com/mcp` |
238
- | `linear` | `claude mcp add --transport http -s user linear https://mcp.linear.app/sse` |
239
- | `stripe` | `claude mcp add --transport http -s user stripe https://mcp.stripe.com` |
240
- | `vercel` | `claude mcp add --transport http -s user vercel https://mcp.vercel.com` |
260
+ | `sentry` | `claude mcp add --transport http -s user sentry https://mcp.sentry.dev/mcp` |
261
+ | `figma` | `claude mcp add --transport http -s user figma https://mcp.figma.com/mcp` |
262
+ | `linear` | `claude mcp add --transport http -s user linear https://mcp.linear.app/sse` |
263
+ | `stripe` | `claude mcp add --transport http -s user stripe https://mcp.stripe.com` |
264
+ | `vercel` | `claude mcp add --transport http -s user vercel https://mcp.vercel.com` |
241
265
 
242
266
  ---
243
267
 
@@ -260,13 +284,13 @@ Community skills are downloaded directly from GitHub raw URLs (the `skillsadd` n
260
284
 
261
285
  ### Installed Skills
262
286
 
263
- | Skill | Source Repo | Purpose |
264
- |-------|------------|---------|
265
- | **react-best-practices** | `vercel-labs/agent-skills` | React/Next.js performance optimization rules |
266
- | **web-design-guidelines** | `vercel-labs/agent-skills` | 100+ WCAG accessibility + UX audit rules |
267
- | **composition-patterns** | `vercel-labs/agent-skills` | Compound component and composition patterns |
268
- | **webapp-testing** | `anthropics/skills` | Real browser test execution with Playwright |
269
- | **mcp-builder** | `anthropics/skills` | Guide for building MCP servers |
287
+ | Skill | Source Repo | Purpose |
288
+ | ------------------------- | -------------------------- | -------------------------------------------- |
289
+ | **react-best-practices** | `vercel-labs/agent-skills` | React/Next.js performance optimization rules |
290
+ | **web-design-guidelines** | `vercel-labs/agent-skills` | 100+ WCAG accessibility + UX audit rules |
291
+ | **composition-patterns** | `vercel-labs/agent-skills` | Compound component and composition patterns |
292
+ | **webapp-testing** | `anthropics/skills` | Real browser test execution with Playwright |
293
+ | **mcp-builder** | `anthropics/skills` | Guide for building MCP servers |
270
294
 
271
295
  ### Adding More Skills
272
296
 
@@ -294,12 +318,12 @@ curl -o .claude/skills/<name>/SKILL.md \
294
318
 
295
319
  Project-specific settings in `.claude/config/`:
296
320
 
297
- | File | Purpose |
298
- |------|---------|
299
- | `project-config.json` | Stack, structure, commands |
300
- | `quality-gates.json` | Quality check commands |
321
+ | File | Purpose |
322
+ | --------------------- | ------------------------------ |
323
+ | `project-config.json` | Stack, structure, commands |
324
+ | `quality-gates.json` | Quality check commands |
301
325
  | `testing-config.json` | Test framework and conventions |
302
- | `security-rules.json` | Security audit rules |
326
+ | `security-rules.json` | Security audit rules |
303
327
 
304
328
  Agents read config files before acting. Do NOT hardcode project specifics — update the JSON files instead.
305
329
 
@@ -311,17 +335,17 @@ The `.claude/settings.json` file contains `enabledPlugins` which is the fallback
311
335
 
312
336
  ```json
313
337
  {
314
- "enabledPlugins": {
315
- "typescript-lsp@claude-plugins-official": true,
316
- "security-guidance@claude-plugins-official": true,
317
- "code-review@claude-plugins-official": true,
318
- "commit-commands@claude-plugins-official": true,
319
- "frontend-design@claude-plugins-official": true,
320
- "superpowers@claude-plugins-official": true,
321
- "ralph-loop@claude-plugins-official": true,
322
- "context7@claude-plugins-official": true,
323
- "code-simplifier@claude-plugins-official": true
324
- }
338
+ "enabledPlugins": {
339
+ "typescript-lsp@claude-plugins-official": true,
340
+ "security-guidance@claude-plugins-official": true,
341
+ "code-review@claude-plugins-official": true,
342
+ "commit-commands@claude-plugins-official": true,
343
+ "frontend-design@claude-plugins-official": true,
344
+ "superpowers@claude-plugins-official": true,
345
+ "ralph-loop@claude-plugins-official": true,
346
+ "context7@claude-plugins-official": true,
347
+ "code-simplifier@claude-plugins-official": true
348
+ }
325
349
  }
326
350
  ```
327
351
 
@@ -359,6 +383,7 @@ The `.claude/settings.json` file contains `enabledPlugins` which is the fallback
359
383
  ### After Completing Work
360
384
 
361
385
  The documenter agent runs automatically after implementation:
386
+
362
387
  1. Analyzes git log/diff for the session
363
388
  2. Writes changelog + technical docs + ADRs as needed
364
389
  3. Updates all indexes
@@ -397,23 +422,23 @@ All implementations MUST:
397
422
 
398
423
  ## FORBIDDEN Actions
399
424
 
400
- | Action | Reason |
401
- | ------------------------------ | ---------------------------- |
402
- | Write in non-English | ALL code/docs MUST be in EN |
403
- | Skip typecheck | Catches runtime errors |
404
- | Use `any` type | Defeats strict mode |
405
- | Define types in `src/` | Must be in `types/` |
406
- | Commit directly to main | Create feature/fix branches |
407
- | Skip documenter after implementation | Changelog + docs are mandatory |
408
- | Mix doc types in one file | Changelog ≠ technical ≠ decision |
409
- | Leave docs unlinked from index | Undiscoverable docs are useless |
410
- | Skip superpowers for features | Use brainstorming + TDD |
411
- | Skip code-simplifier | Run /simplify post-implementation |
412
- | Use MUI/Chakra | Use shadcn/ui + Radix |
413
- | Files > 400 lines | MUST split into smaller |
414
- | 'use client' at top level | Push to leaf components only |
415
- | Waterfall data fetching | Use Promise.all() for parallel |
416
- | Skip CLAUDE.md update | MUST update after implementations |
425
+ | Action | Reason |
426
+ | ------------------------------------ | --------------------------------------------------------------------------------------------------------------------- |
427
+ | Speak/write in non-English | EN ONLY (chat, code, docs, commits) see Language Policy. Override only via explicit user request, current turn only |
428
+ | Skip typecheck | Catches runtime errors |
429
+ | Use `any` type | Defeats strict mode |
430
+ | Define types in `src/` | Must be in `types/` |
431
+ | Commit directly to main | Create feature/fix branches |
432
+ | Skip documenter after implementation | Changelog + docs are mandatory |
433
+ | Mix doc types in one file | Changelog ≠ technical ≠ decision |
434
+ | Leave docs unlinked from index | Undiscoverable docs are useless |
435
+ | Skip superpowers for features | Use brainstorming + TDD |
436
+ | Skip code-simplifier | Run /simplify post-implementation |
437
+ | Use MUI/Chakra | Use shadcn/ui + Radix |
438
+ | Files > 400 lines | MUST split into smaller |
439
+ | 'use client' at top level | Push to leaf components only |
440
+ | Waterfall data fetching | Use Promise.all() for parallel |
441
+ | Skip CLAUDE.md update | MUST update after implementations |
417
442
 
418
443
  ---
419
444
 
@@ -18,6 +18,26 @@ UPDATE THIS WITH YOUR PROJECT DESCRIPTION
18
18
 
19
19
  ---
20
20
 
21
+ ## Language Policy (HARD RULE)
22
+
23
+ > **ENGLISH ONLY — for everything Claude produces — UNLESS the user explicitly asks for another language in the current request.**
24
+
25
+ This applies to **every** output, with **no exceptions** beyond an explicit user override:
26
+
27
+ - Chat replies, status updates, summaries, questions back to the user
28
+ - Code (identifiers, variables, function/class names, type names)
29
+ - Comments, JSDoc, docstrings
30
+ - Commit messages, PR titles, PR descriptions, branch names
31
+ - Documentation (`/docs/**`, README, CLAUDE.md updates, changelogs, ADRs)
32
+ - Test names, error messages, log messages, CLI help strings
33
+ - File and folder names, configuration keys
34
+
35
+ The user may write to Claude in Portuguese, Spanish, or any other language — **Claude still responds and writes in English** unless the user explicitly says e.g. "responda em português", "write this in Spanish", "use PT-BR for the docs". An override applies **only to the current request**; revert to English on the next turn unless re-confirmed. Mixing English + another language in the same output is forbidden.
36
+
37
+ If unsure whether a request is an override, default to English and ask one short clarifying question.
38
+
39
+ ---
40
+
21
41
  ## Stack
22
42
 
23
43
  | Component | Technology |
@@ -87,17 +107,17 @@ project-root/
87
107
 
88
108
  ## Key Plugins (9 installed)
89
109
 
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` |
110
+ | Plugin | Purpose | Invocation |
111
+ | --------------------- | --------------------------------------- | ---------------------------------------- |
112
+ | **superpowers** | TDD, debugging, brainstorming, planning | Auto + `/brainstorming`, `/execute-plan` |
113
+ | **ralph-loop** | Iterative autonomous dev loop | `/ralph-loop "task" --max-iterations 10` |
114
+ | **context7** | Auto library docs (replaces MCP) | Auto-invokes on library mentions |
115
+ | **code-simplifier** | Refine code quality post-implementation | `/simplify` or ask Claude |
116
+ | **typescript-lsp** | Type diagnostics, go-to-def | Auto (LSP server) |
117
+ | **security-guidance** | OWASP vulnerability scan | Auto (PreToolUse hook) |
118
+ | **code-review** | PR analysis | `/code-review` |
119
+ | **commit-commands** | Git commit, push, PR | `/commit` |
120
+ | **frontend-design** | Production-grade UI design | `/frontend-design` |
101
121
 
102
122
  ### Superpowers Workflow (USE THIS)
103
123
 
@@ -121,12 +141,12 @@ Claude works autonomously until the task is complete or hits the iteration limit
121
141
 
122
142
  ## Agent System (4 Subagents)
123
143
 
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 |
144
+ | Agent | Purpose |
145
+ | ----------------------- | --------------------------------------------- |
146
+ | **research-web** | Researches best practices before new features |
147
+ | **commit-manager** | Manages git commits, conventional format |
148
+ | **claude-md-compactor** | Compacts CLAUDE.md when > 40k chars |
149
+ | **tester-unit** | Creates unit tests with Vitest |
130
150
 
131
151
  ---
132
152
 
@@ -135,6 +155,7 @@ Claude works autonomously until the task is complete or hits the iteration limit
135
155
  > Documentation lives in `/docs` and is created **only when the user asks**.
136
156
 
137
157
  After completing any task, Claude should ask:
158
+
138
159
  ```
139
160
  Done! Finished [task description]. Want me to:
140
161
  1. Document this in /docs?
@@ -149,12 +170,12 @@ Do NOT auto-document. Do NOT maintain domain docs. Keep it simple.
149
170
 
150
171
  > After ANY implementation, update this file to reflect the current state.
151
172
 
152
- | Change Type | Sections to Update |
153
- |-------------|-------------------|
173
+ | Change Type | Sections to Update |
174
+ | --------------- | ----------------------------------- |
154
175
  | Any file change | Last Change (branch, date, summary) |
155
- | New feature | 30s Overview, Architecture |
156
- | New dependency | Stack |
157
- | Workflow change | Workflow section |
176
+ | New feature | 30s Overview, Architecture |
177
+ | New dependency | Stack |
178
+ | Workflow change | Workflow section |
158
179
 
159
180
  Keep only the LATEST Last Change entry (no stacking).
160
181
 
@@ -164,13 +185,13 @@ Keep only the LATEST Last Change entry (no stacking).
164
185
 
165
186
  ### HTTP Requests (MANDATORY)
166
187
 
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 |
188
+ | Rule | Implementation |
189
+ | ----------------------- | ------------------------------ |
190
+ | Use axios ONLY | Never `fetch()` or raw `axios` |
191
+ | `withCredentials: true` | ALWAYS for cookies/sessions |
192
+ | Extend base instance | Create `lib/api/axios.ts` |
193
+ | Type responses | `api.get<User>('/users')` |
194
+ | Centralize errors | Use interceptors |
174
195
 
175
196
  ### Path Aliases (MANDATORY)
176
197
 
@@ -216,20 +237,20 @@ Types: `feat`, `fix`, `refactor`, `docs`, `chore`
216
237
 
217
238
  ## FORBIDDEN Actions
218
239
 
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 |
240
+ | Action | Reason |
241
+ | ----------------------------- | --------------------------------------------------------------------------------------------------------------------- |
242
+ | Speak/write in non-English | EN ONLY (chat, code, docs, commits) see Language Policy. Override only via explicit user request, current turn only |
243
+ | Skip typecheck | Catches runtime errors |
244
+ | Use `any` type | Defeats strict mode |
245
+ | Define types in `src/` | Must be in `types/` |
246
+ | Commit directly to main | Create feature/fix branches |
247
+ | Use MUI/Chakra | Use shadcn/ui + Radix |
248
+ | Wildcard icon imports | Use named imports |
249
+ | Files > 400 lines | MUST split into smaller |
250
+ | 'use client' at top level | Push to leaf components only |
251
+ | Waterfall data fetching | Use Promise.all() for parallel |
252
+ | Auto-document without asking | Ask user first |
253
+ | Skip superpowers for features | Use brainstorming + TDD |
233
254
 
234
255
  ---
235
256
 
@@ -247,13 +268,13 @@ Types: `feat`, `fix`, `refactor`, `docs`, `chore`
247
268
 
248
269
  ## MCP Servers
249
270
 
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 |
271
+ | Server | Purpose | When to Use |
272
+ | --------------------- | ----------------------- | ----------------------------- |
273
+ | `sequential-thinking` | Complex problem-solving | Multi-step tasks, planning |
274
+ | `memory` | Persistent knowledge | Store/recall project patterns |
275
+ | `playwright` | Browser automation | UI testing, page verification |
276
+ | `nextjs-devtools` | Next.js dev tools | Next.js projects only |
277
+ | `mongodb` | Database operations | DB queries, schema inspection |
257
278
 
258
279
  > Note: `context7` is now a **plugin** (auto-invokes on library mentions).
259
280
 
@@ -261,13 +282,13 @@ Types: `feat`, `fix`, `refactor`, `docs`, `chore`
261
282
 
262
283
  ## Community Skills (from GitHub)
263
284
 
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 |
285
+ | Skill | Source | Purpose |
286
+ | ------------------------- | ----------- | ------------------------------------- |
287
+ | **react-best-practices** | vercel-labs | React/Next.js perf optimization rules |
288
+ | **web-design-guidelines** | vercel-labs | 100+ WCAG + UX audit rules |
289
+ | **composition-patterns** | vercel-labs | Compound component patterns |
290
+ | **webapp-testing** | anthropics | Real browser test execution |
291
+ | **mcp-builder** | anthropics | MCP server development guide |
271
292
 
272
293
  ---
273
294