start-vibing 3.0.6 → 3.0.8

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 (42) hide show
  1. package/README.md +64 -51
  2. package/package.json +1 -1
  3. package/template/.claude/CLAUDE.md +702 -229
  4. package/template/.claude/agents/claude-md-compactor.md +2 -14
  5. package/template/.claude/agents/documenter.md +0 -7
  6. package/template/.claude/agents/domain-updater.md +2 -7
  7. package/template/.claude/config/README.md +10 -8
  8. package/template/.claude/config/domain-mapping.json +1 -1
  9. package/template/.claude/settings.json +0 -129
  10. package/template/.claude/skills/codebase-knowledge/SKILL.md +145 -145
  11. package/template/.claude/skills/codebase-knowledge/domains/claude-system.md +51 -416
  12. package/template/.claude/skills/codebase-knowledge/domains/mcp-integration.md +37 -204
  13. package/template/.claude/skills/docs-tracker/SKILL.md +239 -239
  14. package/template/.claude/skills/final-check/SKILL.md +284 -284
  15. package/template/.claude/skills/quality-gate/SKILL.md +294 -294
  16. package/template/.claude/skills/security-scan/SKILL.md +222 -222
  17. package/template/.claude/skills/ui-ux-audit/SKILL.md +254 -254
  18. package/template/CLAUDE.md +65 -701
  19. package/template/.claude/agents/_archive/13-debugging/build-error-fixer.md +0 -207
  20. package/template/.claude/agents/_archive/13-debugging/debugger.md +0 -149
  21. package/template/.claude/agents/_archive/13-debugging/error-stack-analyzer.md +0 -141
  22. package/template/.claude/agents/_archive/13-debugging/network-debugger.md +0 -208
  23. package/template/.claude/agents/_archive/13-debugging/runtime-error-fixer.md +0 -181
  24. package/template/.claude/agents/_archive/13-debugging/type-error-resolver.md +0 -185
  25. package/template/.claude/agents/_archive/14-validation/final-validator.md +0 -93
  26. package/template/.claude/commands/feature.md +0 -48
  27. package/template/.claude/commands/fix.md +0 -80
  28. package/template/.claude/commands/research.md +0 -107
  29. package/template/.claude/commands/validate.md +0 -72
  30. package/template/.claude/config/mcp-config.json +0 -344
  31. package/template/.claude/hooks/SETUP.md +0 -126
  32. package/template/.claude/hooks/run-hook.cmd +0 -46
  33. package/template/.claude/hooks/run-hook.sh +0 -43
  34. package/template/.claude/hooks/run-hook.ts +0 -230
  35. package/template/.claude/hooks/security-check.js +0 -202
  36. package/template/.claude/hooks/stop-validator.ts +0 -1667
  37. package/template/.claude/hooks/user-prompt-submit.ts +0 -104
  38. package/template/.claude/scripts/mcp-quick-install.ts +0 -151
  39. package/template/.claude/scripts/setup-mcps.ts +0 -651
  40. package/template/.claude/skills/hook-development/SKILL.md +0 -343
  41. package/template/.claude/skills/mongoose-patterns/SKILL.md +0 -499
  42. package/template/.claude/skills/playwright-automation/SKILL.md +0 -438
package/README.md CHANGED
@@ -12,7 +12,7 @@ npx start-vibing
12
12
  That's it! The CLI will:
13
13
 
14
14
  1. Check for updates
15
- 2. Set up the `.claude/` folder with agents, skills, and hooks
15
+ 2. Set up the `.claude/` folder with agents, skills, and plugins
16
16
  3. Install Claude Code if not found on your system
17
17
  4. Launch Claude Code with `--dangerously-skip-permissions`
18
18
 
@@ -53,25 +53,24 @@ Creates a `.claude/` folder with:
53
53
 
54
54
  ```
55
55
  .claude/
56
- ├── agents/ # 14 specialized AI agents
57
- │ ├── orchestrator.md # Coordinates workflow
58
- │ ├── analyzer.md # Analyzes change impact
59
- │ ├── research.md # Researches best practices
60
- │ ├── code-reviewer.md # Reviews code quality
61
- │ ├── tester.md # Creates tests
62
- ├── security-auditor.md # Security audit (VETO power)
63
- ├── performance.md # Performance optimization
64
- │ ├── debugger.md # Bug tracing
56
+ ├── agents/ # 6 specialized AI subagents
57
+ │ ├── research-web.md # Best practices research
58
+ │ ├── documenter.md # Domain documentation
59
+ │ ├── domain-updater.md # Session learnings
60
+ │ ├── commit-manager.md # Git workflow
61
+ │ ├── claude-md-compactor.md # CLAUDE.md maintenance
62
+ └── tester-unit.md # Unit testing
63
+ ├── skills/ # 20 skill systems (auto-injected)
64
+ │ ├── typescript-strict/ # TypeScript patterns
65
+ │ ├── react-patterns/ # React 19 patterns
66
+ │ ├── security-scan/ # OWASP validation
67
+ │ ├── quality-gate/ # Quality checks
65
68
  │ └── ...
66
- ├── skills/ # 8 skill systems with progressive disclosure
67
- │ ├── test-coverage/ # E2E testing (Playwright)
68
- │ ├── security-scan/ # OWASP validation + scripts
69
- │ ├── quality-gate/ # Quality checks + scripts
69
+ ├── config/ # Project configuration
70
+ │ ├── project-config.json
71
+ │ ├── domain-mapping.json
70
72
  │ └── ...
71
- ├── hooks/ # Workflow enforcement
72
- │ └── stop-validator.py # Blocks incomplete work
73
- └── config/ # Project configuration
74
- └── project-config.json
73
+ └── commands/ # Slash commands
75
74
  ```
76
75
 
77
76
  ### 3. Auto-launches Claude Code
@@ -82,32 +81,45 @@ After setup, automatically runs `claude --dangerously-skip-permissions` so you c
82
81
 
83
82
  Checks for updates on every run (cached for 1 hour) and notifies you when a new version is available.
84
83
 
85
- ## Features
86
-
87
- ### 14 Specialized Agents
88
-
89
- | Agent | Purpose | VETO |
90
- | ---------------- | --------------------------- | ---- |
91
- | orchestrator | Coordinates entire workflow | No |
92
- | analyzer | Analyzes change impact | No |
93
- | research | Best practices research | No |
94
- | code-reviewer | Reviews code quality | No |
95
- | documenter | Documentation updates | No |
96
- | tester | Unit + E2E tests | No |
97
- | security-auditor | Security audit | Yes |
98
- | ui-ux-reviewer | UI/UX review | No |
99
- | quality-checker | Quality gates | No |
100
- | performance | Performance optimization | No |
101
- | debugger | Bug tracing | No |
102
- | final-validator | Final validation | Yes |
103
- | domain-updater | Domain knowledge | No |
104
- | commit-manager | Git commits | No |
84
+ ## Architecture
85
+
86
+ ### 6 Subagents
87
+
88
+ | Agent | Purpose |
89
+ | ------------------ | ------------------------------------ |
90
+ | research-web | Researches best practices (2024-2026)|
91
+ | documenter | Maps files to domains, creates docs |
92
+ | domain-updater | Records learnings in domain docs |
93
+ | commit-manager | Manages git commits |
94
+ | claude-md-compactor| Compacts CLAUDE.md when > 40k chars |
95
+ | tester-unit | Creates unit tests with Vitest |
96
+
97
+ ### 5 Plugins (auto-install)
98
+
99
+ | Plugin | Mechanism | Purpose |
100
+ | ------------------ | ---------------- | -------------------------- |
101
+ | typescript-lsp | LSP server | Type diagnostics (auto) |
102
+ | security-guidance | PreToolUse hook | OWASP vulnerability scan |
103
+ | code-review | /code-review cmd | Code quality analysis |
104
+ | commit-commands | /commit cmd | Git commit/push/PR flows |
105
+ | frontend-design | /frontend-design | Production-grade UI design |
106
+
107
+ ### 20 Skills
108
+
109
+ Skills are auto-injected into context when the task matches their description.
110
+
111
+ | Category | Skills |
112
+ | ------------------ | --------------------------------------------------------- |
113
+ | Development | bun-runtime, typescript-strict, react-patterns, nextjs-app-router, trpc-api, zod-validation, shadcn-ui, tailwind-patterns |
114
+ | Quality & Testing | quality-gate, security-scan, test-coverage, final-check |
115
+ | Infrastructure | docker-patterns, git-workflow, performance-patterns, debugging-patterns |
116
+ | Documentation | codebase-knowledge, docs-tracker, research-cache, ui-ux-audit |
105
117
 
106
118
  ### Smart Copy Behavior
107
119
 
108
120
  When you run `start-vibing` in an existing project:
109
121
 
110
- - **ALWAYS overwrites:** Agent files, hooks, settings.json
122
+ - **ALWAYS overwrites:** Agent files, settings.json
111
123
  - **PRESERVES:** Your custom domains, cached research
112
124
  - **MERGES:** New skills with existing ones
113
125
 
@@ -118,6 +130,7 @@ Use `--force` to overwrite everything.
118
130
  | Flag | Description |
119
131
  | ------------------- | ---------------------------------------- |
120
132
  | `--force` | Overwrite all files |
133
+ | `--new` | Start fresh session (skip resume) |
121
134
  | `--no-claude` | Skip Claude Code installation and launch |
122
135
  | `--no-update-check` | Skip checking for updates |
123
136
  | `--help`, `-h` | Show help message |
@@ -130,7 +143,7 @@ Use `--force` to overwrite everything.
130
143
  edit .claude/config/project-config.json
131
144
 
132
145
  # 2. Claude Code is already running!
133
- # The agents will guide you through the workflow
146
+ # The agents and skills will guide you through the workflow
134
147
  ```
135
148
 
136
149
  ### Configuration
@@ -139,17 +152,17 @@ Edit `.claude/config/project-config.json`:
139
152
 
140
153
  ```json
141
154
  {
142
- "stack": {
143
- "runtime": "bun",
144
- "language": "typescript",
145
- "database": "mongodb"
146
- },
147
- "commands": {
148
- "typecheck": "bun run typecheck",
149
- "lint": "bun run lint",
150
- "test": "bun run test",
151
- "build": "bun run build"
152
- }
155
+ "stack": {
156
+ "runtime": "bun",
157
+ "language": "typescript",
158
+ "database": "mongodb"
159
+ },
160
+ "commands": {
161
+ "typecheck": "bun run typecheck",
162
+ "lint": "bun run lint",
163
+ "test": "bun run test",
164
+ "build": "bun run build"
165
+ }
153
166
  }
154
167
  ```
155
168
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "start-vibing",
3
- "version": "3.0.6",
3
+ "version": "3.0.8",
4
4
  "description": "Setup Claude Code agents, skills, and hooks in your project. Smart copy that preserves your custom domains and configurations.",
5
5
  "type": "module",
6
6
  "bin": {