gsd-code-first 1.0.1 → 1.0.3

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.
@@ -146,14 +146,14 @@ Proceed to install step (treat as version 0.0.0 for comparison).
146
146
  Check npm for latest version:
147
147
 
148
148
  ```bash
149
- npm view get-shit-done-cc version 2>/dev/null
149
+ npm view gsd-code-first version 2>/dev/null
150
150
  ```
151
151
 
152
152
  **If npm check fails:**
153
153
  ```
154
154
  Couldn't check for updates (offline or npm unavailable).
155
155
 
156
- To update manually: `npx get-shit-done-cc --global`
156
+ To update manually: `npx gsd-code-first --global`
157
157
  ```
158
158
 
159
159
  Exit.
@@ -252,17 +252,17 @@ RUNTIME_FLAG="--$TARGET_RUNTIME"
252
252
 
253
253
  **If LOCAL install:**
254
254
  ```bash
255
- npx -y get-shit-done-cc@latest "$RUNTIME_FLAG" --local
255
+ npx -y gsd-code-first@latest "$RUNTIME_FLAG" --local
256
256
  ```
257
257
 
258
258
  **If GLOBAL install:**
259
259
  ```bash
260
- npx -y get-shit-done-cc@latest "$RUNTIME_FLAG" --global
260
+ npx -y gsd-code-first@latest "$RUNTIME_FLAG" --global
261
261
  ```
262
262
 
263
263
  **If UNKNOWN install:**
264
264
  ```bash
265
- npx -y get-shit-done-cc@latest --claude --global
265
+ npx -y gsd-code-first@latest --claude --global
266
266
  ```
267
267
 
268
268
  Capture output. If install fails, show error and exit.
@@ -93,7 +93,7 @@ const child = spawn(process.execPath, ['-e', `
93
93
 
94
94
  let latest = null;
95
95
  try {
96
- latest = execSync('npm view get-shit-done-cc version', { encoding: 'utf8', timeout: 10000, windowsHide: true }).trim();
96
+ latest = execSync('npm view gsd-code-first version', { encoding: 'utf8', timeout: 10000, windowsHide: true }).trim();
97
97
  } catch (e) {}
98
98
 
99
99
  const result = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsd-code-first",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Code-First fork of Get Shit Done — AI-native development with code-as-planning",
5
5
  "bin": {
6
6
  "get-shit-done-cc": "bin/install.js"