start-vibing 2.0.0 → 2.0.1

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": "2.0.0",
3
+ "version": "2.0.1",
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": {
@@ -3,8 +3,8 @@
3
3
  ## Last Update
4
4
 
5
5
  - **Date:** 2026-01-02
6
- - **Commit:** 5c74c95
7
- - **Session:** Added 3 specialized agents and progressive disclosure to skills
6
+ - **Commit:** 70ca50f
7
+ - **Session:** Enhanced start-vibing CLI with auto-install Claude Code and self-update
8
8
 
9
9
  ## Files
10
10
 
@@ -75,14 +75,41 @@
75
75
 
76
76
  | Hash | Date | Description |
77
77
  | ---- | ---- | ----------- |
78
+ | 70ca50f | 2026-01-02 | feat(start-vibing): auto-install Claude Code and self-update |
78
79
  | 5c74c95 | 2026-01-02 | feat: add specialized agents and progressive disclosure to skills |
79
80
  | b5c483b | 2026-01-02 | docs: add agents/skills comparison research with industry benchmarks |
80
81
  | 0f2c1ff | 2026-01-02 | fix: block ALL changes on main branch, not just protected files |
81
82
  | 1f6f35f | 2026-01-02 | feat: enhance stop hook with system config file protection |
82
- | 9ba6ec0 | 2026-01-02 | fix: escape f-string braces and ignore .claude in doc check |
83
83
 
84
84
  ## Problems & Solutions
85
85
 
86
+ ### 2026-01-02 - start-vibing v2.0.0 with Auto-install and Self-update
87
+
88
+ **Context:**
89
+ User wanted start-vibing to automatically install Claude Code and keep itself updated.
90
+
91
+ **Solution:**
92
+ 1. Added 3 new modules to start-vibing:
93
+ - `platform.ts` - OS/shell detection (Windows/macOS/Linux)
94
+ - `update.ts` - Self-update check with 1-hour cache
95
+ - `claude.ts` - Claude Code detection/installation/launch
96
+ 2. CLI now checks npm registry for updates on every run
97
+ 3. Detects if Claude Code is installed, auto-installs if missing
98
+ 4. Launches `claude --dangerously-skip-permissions` after setup
99
+ 5. New CLI options: `--no-claude`, `--no-update-check`
100
+
101
+ **Result:**
102
+ - Published as start-vibing v2.0.0 on npm
103
+ - Zero new runtime dependencies
104
+ - Works on Windows (PowerShell, CMD), macOS, and Linux
105
+
106
+ **Files Added:**
107
+ - `packages/start-vibing/src/platform.ts`
108
+ - `packages/start-vibing/src/update.ts`
109
+ - `packages/start-vibing/src/claude.ts`
110
+
111
+ ---
112
+
86
113
  ### 2026-01-02 - Added Specialized Agents and Progressive Disclosure
87
114
 
88
115
  **Context:**