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.
- package/README.md +64 -51
- package/package.json +1 -1
- package/template/.claude/CLAUDE.md +702 -229
- package/template/.claude/agents/claude-md-compactor.md +2 -14
- package/template/.claude/agents/documenter.md +0 -7
- package/template/.claude/agents/domain-updater.md +2 -7
- package/template/.claude/config/README.md +10 -8
- package/template/.claude/config/domain-mapping.json +1 -1
- package/template/.claude/settings.json +0 -129
- package/template/.claude/skills/codebase-knowledge/SKILL.md +145 -145
- package/template/.claude/skills/codebase-knowledge/domains/claude-system.md +51 -416
- package/template/.claude/skills/codebase-knowledge/domains/mcp-integration.md +37 -204
- package/template/.claude/skills/docs-tracker/SKILL.md +239 -239
- package/template/.claude/skills/final-check/SKILL.md +284 -284
- package/template/.claude/skills/quality-gate/SKILL.md +294 -294
- package/template/.claude/skills/security-scan/SKILL.md +222 -222
- package/template/.claude/skills/ui-ux-audit/SKILL.md +254 -254
- package/template/CLAUDE.md +65 -701
- package/template/.claude/agents/_archive/13-debugging/build-error-fixer.md +0 -207
- package/template/.claude/agents/_archive/13-debugging/debugger.md +0 -149
- package/template/.claude/agents/_archive/13-debugging/error-stack-analyzer.md +0 -141
- package/template/.claude/agents/_archive/13-debugging/network-debugger.md +0 -208
- package/template/.claude/agents/_archive/13-debugging/runtime-error-fixer.md +0 -181
- package/template/.claude/agents/_archive/13-debugging/type-error-resolver.md +0 -185
- package/template/.claude/agents/_archive/14-validation/final-validator.md +0 -93
- package/template/.claude/commands/feature.md +0 -48
- package/template/.claude/commands/fix.md +0 -80
- package/template/.claude/commands/research.md +0 -107
- package/template/.claude/commands/validate.md +0 -72
- package/template/.claude/config/mcp-config.json +0 -344
- package/template/.claude/hooks/SETUP.md +0 -126
- package/template/.claude/hooks/run-hook.cmd +0 -46
- package/template/.claude/hooks/run-hook.sh +0 -43
- package/template/.claude/hooks/run-hook.ts +0 -230
- package/template/.claude/hooks/security-check.js +0 -202
- package/template/.claude/hooks/stop-validator.ts +0 -1667
- package/template/.claude/hooks/user-prompt-submit.ts +0 -104
- package/template/.claude/scripts/mcp-quick-install.ts +0 -151
- package/template/.claude/scripts/setup-mcps.ts +0 -651
- package/template/.claude/skills/hook-development/SKILL.md +0 -343
- package/template/.claude/skills/mongoose-patterns/SKILL.md +0 -499
- 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
|
|
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/ #
|
|
57
|
-
│ ├──
|
|
58
|
-
│ ├──
|
|
59
|
-
│ ├──
|
|
60
|
-
│ ├──
|
|
61
|
-
│ ├──
|
|
62
|
-
│
|
|
63
|
-
|
|
64
|
-
│ ├──
|
|
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
|
-
├──
|
|
67
|
-
│ ├──
|
|
68
|
-
│ ├──
|
|
69
|
-
│ ├── quality-gate/ # Quality checks + scripts
|
|
69
|
+
├── config/ # Project configuration
|
|
70
|
+
│ ├── project-config.json
|
|
71
|
+
│ ├── domain-mapping.json
|
|
70
72
|
│ └── ...
|
|
71
|
-
|
|
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
|
-
##
|
|
86
|
-
|
|
87
|
-
###
|
|
88
|
-
|
|
89
|
-
| Agent
|
|
90
|
-
|
|
|
91
|
-
|
|
|
92
|
-
|
|
|
93
|
-
|
|
|
94
|
-
|
|
|
95
|
-
|
|
|
96
|
-
| tester
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
|
101
|
-
|
|
|
102
|
-
|
|
|
103
|
-
|
|
|
104
|
-
|
|
|
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,
|
|
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
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
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