get-shit-done-cc 1.6.0 → 1.6.2

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 CHANGED
@@ -166,7 +166,9 @@ If you prefer not to use that flag, add this to your project's `.claude/settings
166
166
 
167
167
  ## How It Works
168
168
 
169
- ### 1. Initialize Project (~10 minutes)
169
+ > **Already have code?** Run `/gsd:map-codebase` first. It spawns parallel agents to analyze your stack, architecture, conventions, and concerns. Then `/gsd:new-project` knows your codebase — questions focus on what you're adding, and planning automatically loads your patterns.
170
+
171
+ ### 1. Initialize Project
170
172
 
171
173
  ```
172
174
  /gsd:new-project
@@ -183,24 +185,55 @@ You approve the roadmap. Now you're ready to build.
183
185
 
184
186
  **Creates:** `PROJECT.md`, `REQUIREMENTS.md`, `ROADMAP.md`, `STATE.md`, `.planning/research/`
185
187
 
186
- ### 2. Plan Phase
188
+ ---
189
+
190
+ ### 2. Discuss Phase
187
191
 
188
192
  ```
189
- /gsd:discuss-phase 1 # Optional: clarify UI/UX/behavior decisions first
190
- /gsd:plan-phase 1
193
+ /gsd:discuss-phase 1
191
194
  ```
192
195
 
193
- **discuss-phase** (optional) If the phase has gray areas (UI choices, UX flows, behavior decisions), discuss them first. Creates `CONTEXT.md` that guides planning. Skip if you trust the system's defaults.
196
+ **This is where you shape the implementation.**
197
+
198
+ Your roadmap has a sentence or two per phase. That's not enough context to build something the way *you* imagine it. This step captures your preferences before anything gets researched or planned.
199
+
200
+ The system analyzes the phase and identifies gray areas based on what's being built:
201
+
202
+ - **Visual features** → Layout, density, interactions, empty states
203
+ - **APIs/CLIs** → Response format, flags, error handling, verbosity
204
+ - **Content systems** → Structure, tone, depth, flow
205
+ - **Organization tasks** → Grouping criteria, naming, duplicates, exceptions
206
+
207
+ For each area you select, it asks until you're satisfied. The output — `CONTEXT.md` — feeds directly into the next two steps:
208
+
209
+ 1. **Researcher reads it** — Knows what patterns to investigate ("user wants card layout" → research card component libraries)
210
+ 2. **Planner reads it** — Knows what decisions are locked ("infinite scroll decided" → plan includes scroll handling)
211
+
212
+ The deeper you go here, the more the system builds what you actually want. Skip it and you get reasonable defaults. Use it and you get *your* vision.
213
+
214
+ **Creates:** `{phase}-CONTEXT.md`
215
+
216
+ ---
194
217
 
195
- **plan-phase** The system:
218
+ ### 3. Plan Phase
196
219
 
197
- 1. **Researches** — Investigates how to implement this specific phase
220
+ ```
221
+ /gsd:plan-phase 1
222
+ ```
223
+
224
+ The system:
225
+
226
+ 1. **Researches** — Investigates how to implement this phase, guided by your CONTEXT.md decisions
198
227
  2. **Plans** — Creates 2-3 atomic task plans with XML structure
199
- 3. **Verifies** — Checks plans against requirements, loops if needed
228
+ 3. **Verifies** — Checks plans against requirements, loops until they pass
200
229
 
201
- Ready when plans pass verification.
230
+ Each plan is small enough to execute in a fresh context window. No degradation, no "I'll be more concise now."
202
231
 
203
- ### 3. Execute Phase
232
+ **Creates:** `{phase}-RESEARCH.md`, `{phase}-{N}-PLAN.md`
233
+
234
+ ---
235
+
236
+ ### 4. Execute Phase
204
237
 
205
238
  ```
206
239
  /gsd:execute-phase 1
@@ -209,43 +242,58 @@ Ready when plans pass verification.
209
242
  The system:
210
243
 
211
244
  1. **Runs plans in waves** — Parallel where possible, sequential when dependent
212
- 2. **Fresh context per plan** — 200k tokens purely for implementation, zero degradation
213
- 3. **Verifies code** — Checks against phase goals when complete
245
+ 2. **Fresh context per plan** — 200k tokens purely for implementation, zero accumulated garbage
246
+ 3. **Commits per task** — Every task gets its own atomic commit
247
+ 4. **Verifies against goals** — Checks the codebase delivers what the phase promised
248
+
249
+ Walk away, come back to completed work with clean git history.
250
+
251
+ **Creates:** `{phase}-{N}-SUMMARY.md`, `{phase}-VERIFICATION.md`
252
+
253
+ ---
214
254
 
215
- ### 4. Repeat
255
+ ### 5. Verify Work
216
256
 
217
257
  ```
218
- /gsd:plan-phase 2
219
- /gsd:execute-phase 2
220
- ...
221
- /gsd:complete-milestone # When all phases done
258
+ /gsd:verify-work 1
222
259
  ```
223
260
 
224
- Loop plan execute until milestone complete. Ship your MVP. Start next milestone.
261
+ **This is where you confirm it actually works.**
225
262
 
226
- ---
263
+ Automated verification checks that code exists and tests pass. But does the feature *work* the way you expected? This is your chance to use it.
227
264
 
228
- ## Existing Projects (Brownfield)
265
+ The system:
229
266
 
230
- Already have code? Start here instead.
267
+ 1. **Extracts testable deliverables** What you should be able to do now
268
+ 2. **Walks you through one at a time** — "Can you log in with email?" Yes/no, or describe what's wrong
269
+ 3. **Diagnoses failures automatically** — Spawns debug agents to find root causes
270
+ 4. **Creates verified fix plans** — Ready for immediate re-execution
231
271
 
232
- ### 1. Map the codebase
272
+ If everything passes, you move on. If something's broken, you don't manually debug — you just run `/gsd:execute-phase` again with the fix plans it created.
233
273
 
234
- ```
235
- /gsd:map-codebase
236
- ```
274
+ **Creates:** `{phase}-UAT.md`, fix plans if issues found
237
275
 
238
- Spawns parallel agents to analyze your code. Creates `.planning/codebase/` with structured analysis of your stack, architecture, conventions, and concerns.
276
+ ---
239
277
 
240
- ### 2. Initialize and build
278
+ ### 6. Repeat Complete → Next Milestone
241
279
 
242
280
  ```
243
- /gsd:new-project
281
+ /gsd:discuss-phase 2
282
+ /gsd:plan-phase 2
283
+ /gsd:execute-phase 2
284
+ /gsd:verify-work 2
285
+ ...
286
+ /gsd:complete-milestone
287
+ /gsd:new-milestone
244
288
  ```
245
289
 
246
- Same flow as greenfield, but the system knows your codebase. Questions focus on what you're adding/changing. Then plan → execute as normal.
290
+ Loop **discuss plan execute verify** until milestone complete.
247
291
 
248
- The codebase docs load automatically during planning. Claude knows your patterns, conventions, and where to put things.
292
+ Each phase gets your input (discuss), proper research (plan), clean execution (execute), and human verification (verify). Context stays fresh. Quality stays high.
293
+
294
+ When all phases are done, `/gsd:complete-milestone` archives the milestone and tags the release.
295
+
296
+ Then `/gsd:new-milestone` starts the next version — same flow as `new-project` but for your existing codebase. You describe what you want to build next, the system researches the domain, you scope requirements, and it creates a fresh roadmap. Each milestone is a clean cycle: define → build → ship.
249
297
 
250
298
  ---
251
299
 
@@ -290,19 +338,20 @@ Every plan is structured XML optimized for Claude:
290
338
 
291
339
  Precise instructions. No guessing. Verification built in.
292
340
 
293
- ### Subagent Execution
341
+ ### Multi-Agent Orchestration
294
342
 
295
- As Claude fills its context window, quality degrades. You've seen it: *"Due to context limits, I'll be more concise now."* That "concision" is code for cutting corners.
343
+ Every stage uses the same pattern: a thin orchestrator spawns specialized agents, collects results, and routes to the next step.
296
344
 
297
- GSD prevents this. Each plan is maximum 3 tasks. Each plan runs in a fresh subagent — 200k tokens purely for implementation, zero accumulated garbage.
345
+ | Stage | Orchestrator does | Agents do |
346
+ |-------|------------------|-----------|
347
+ | Research | Coordinates, presents findings | 4 parallel researchers investigate stack, features, architecture, pitfalls |
348
+ | Planning | Validates, manages iteration | Planner creates plans, checker verifies, loop until pass |
349
+ | Execution | Groups into waves, tracks progress | Executors implement in parallel, each with fresh 200k context |
350
+ | Verification | Presents results, routes next | Verifier checks codebase against goals, debuggers diagnose failures |
298
351
 
299
- | Task | Context | Quality |
300
- |------|---------|---------|
301
- | Task 1 | Fresh | ✅ Full |
302
- | Task 2 | Fresh | ✅ Full |
303
- | Task 3 | Fresh | ✅ Full |
352
+ The orchestrator never does heavy lifting. It spawns agents, waits, integrates results.
304
353
 
305
- No degradation. Walk away, come back to completed work.
354
+ **The result:** You can run an entire phase — deep research, multiple plans created and verified, thousands of lines of code written across parallel executors, automated verification against goals — and your main context window stays at 30-40%. The work happens in fresh subagent contexts. Your session stays fast and responsive.
306
355
 
307
356
  ### Atomic Git Commits
308
357
 
@@ -338,9 +387,12 @@ You're never locked in. The system adapts.
338
387
  | Command | What it does |
339
388
  |---------|--------------|
340
389
  | `/gsd:new-project` | Full initialization: questions → research → requirements → roadmap |
390
+ | `/gsd:discuss-phase [N]` | Capture implementation decisions before planning |
341
391
  | `/gsd:plan-phase [N]` | Research + plan + verify for a phase |
342
392
  | `/gsd:execute-phase <N>` | Execute all plans in parallel waves, verify when complete |
343
- | `/gsd:complete-milestone` | Ship it, prep next version |
393
+ | `/gsd:verify-work [N]` | Manual user acceptance testing ¹ |
394
+ | `/gsd:complete-milestone` | Archive milestone, tag release |
395
+ | `/gsd:new-milestone [name]` | Start next version: questions → research → requirements → roadmap |
344
396
 
345
397
  ### Navigation
346
398
 
@@ -349,12 +401,6 @@ You're never locked in. The system adapts.
349
401
  | `/gsd:progress` | Where am I? What's next? |
350
402
  | `/gsd:help` | Show all commands and usage guide |
351
403
 
352
- ### Verification
353
-
354
- | Command | What it does |
355
- |---------|--------------|
356
- | `/gsd:verify-work [N]` | Manual user acceptance testing ¹ |
357
-
358
404
  ### Brownfield
359
405
 
360
406
  | Command | What it does |
@@ -368,13 +414,6 @@ You're never locked in. The system adapts.
368
414
  | `/gsd:add-phase` | Append phase to roadmap |
369
415
  | `/gsd:insert-phase [N]` | Insert urgent work between phases |
370
416
  | `/gsd:remove-phase [N]` | Remove future phase, renumber |
371
- | `/gsd:discuss-phase [N]` | Gather context before planning |
372
-
373
- ### Milestones
374
-
375
- | Command | What it does |
376
- |---------|--------------|
377
- | `/gsd:new-milestone [name]` | Start next milestone (questioning → research → requirements → roadmap) |
378
417
 
379
418
  ### Session
380
419
 
@@ -414,22 +414,11 @@ If gaps found, include in draft for user decision.
414
414
 
415
415
  **Write files first, then return.** This ensures artifacts persist even if context is lost.
416
416
 
417
- 1. **Create phase directories (zero-padded):**
418
- ```bash
419
- # Always zero-pad phase numbers: 01, 02, ... 09, 10, 11
420
- for i in 1 2 3; do
421
- PADDED=$(printf "%02d" $i)
422
- mkdir -p ".planning/phases/${PADDED}-{phase-name}"
423
- done
424
- ```
417
+ 1. **Write ROADMAP.md** using output format
425
418
 
426
- Examples: `01-foundation`, `02-core-features`, `10-polish`
419
+ 2. **Write STATE.md** using output format
427
420
 
428
- 2. **Write ROADMAP.md** using output format
429
-
430
- 3. **Write STATE.md** using output format
431
-
432
- 4. **Update REQUIREMENTS.md traceability section**
421
+ 3. **Update REQUIREMENTS.md traceability section**
433
422
 
434
423
  Files on disk = context preserved. User can review actual files.
435
424
 
@@ -459,9 +448,6 @@ When files are written and returning to orchestrator:
459
448
  **Files written:**
460
449
  - .planning/ROADMAP.md
461
450
  - .planning/STATE.md
462
- - .planning/phases/01-{phase-name}/
463
- - .planning/phases/02-{phase-name}/
464
- - ... (all phases zero-padded)
465
451
 
466
452
  **Updated:**
467
453
  - .planning/REQUIREMENTS.md (traceability section)
@@ -602,7 +588,6 @@ Roadmap is complete when:
602
588
  - [ ] 100% requirement coverage validated (no orphans)
603
589
  - [ ] ROADMAP.md structure complete
604
590
  - [ ] STATE.md structure complete
605
- - [ ] Phase directories identified
606
591
  - [ ] REQUIREMENTS.md traceability update prepared
607
592
  - [ ] Draft presented for user approval
608
593
  - [ ] User feedback incorporated (if any)
package/bin/install.js CHANGED
@@ -123,8 +123,13 @@ function writeSettings(settingsPath, settings) {
123
123
 
124
124
  /**
125
125
  * Recursively copy directory, replacing paths in .md files
126
+ * Deletes existing destDir first to remove orphaned files from previous versions
126
127
  */
127
128
  function copyWithPathReplacement(srcDir, destDir, pathPrefix) {
129
+ // Clean install: remove existing destination to prevent orphaned files
130
+ if (fs.existsSync(destDir)) {
131
+ fs.rmSync(destDir, { recursive: true });
132
+ }
128
133
  fs.mkdirSync(destDir, { recursive: true });
129
134
 
130
135
  const entries = fs.readdirSync(srcDir, { withFileTypes: true });
@@ -187,10 +192,30 @@ function install(isGlobal) {
187
192
  console.log(` ${green}✓${reset} Installed get-shit-done`);
188
193
 
189
194
  // Copy agents to ~/.claude/agents (subagents must be at root level)
195
+ // Only delete gsd-*.md files to preserve user's custom agents
190
196
  const agentsSrc = path.join(src, 'agents');
191
197
  if (fs.existsSync(agentsSrc)) {
192
198
  const agentsDest = path.join(claudeDir, 'agents');
193
- copyWithPathReplacement(agentsSrc, agentsDest, pathPrefix);
199
+ fs.mkdirSync(agentsDest, { recursive: true });
200
+
201
+ // Remove old GSD agents (gsd-*.md) before copying new ones
202
+ if (fs.existsSync(agentsDest)) {
203
+ for (const file of fs.readdirSync(agentsDest)) {
204
+ if (file.startsWith('gsd-') && file.endsWith('.md')) {
205
+ fs.unlinkSync(path.join(agentsDest, file));
206
+ }
207
+ }
208
+ }
209
+
210
+ // Copy new agents (don't use copyWithPathReplacement which would wipe the folder)
211
+ const agentEntries = fs.readdirSync(agentsSrc, { withFileTypes: true });
212
+ for (const entry of agentEntries) {
213
+ if (entry.isFile() && entry.name.endsWith('.md')) {
214
+ let content = fs.readFileSync(path.join(agentsSrc, entry.name), 'utf8');
215
+ content = content.replace(/~\/\.claude\//g, pathPrefix);
216
+ fs.writeFileSync(path.join(agentsDest, entry.name), content);
217
+ }
218
+ }
194
219
  console.log(` ${green}✓${reset} Installed agents`);
195
220
  }
196
221
 
@@ -23,7 +23,6 @@ This is the brownfield equivalent of new-project. The project exists, PROJECT.md
23
23
  - `.planning/REQUIREMENTS.md` — scoped requirements
24
24
  - `.planning/ROADMAP.md` — phase structure
25
25
  - `.planning/STATE.md` — updated project memory
26
- - `.planning/phases/` — phase directories
27
26
 
28
27
  **After this command:** Run `/gsd:plan-phase [N]` to start execution.
29
28
 
@@ -591,7 +590,7 @@ Create roadmap:
591
590
  2. Map every v1 requirement to exactly one phase
592
591
  3. Derive 2-5 success criteria per phase (observable user behaviors)
593
592
  4. Validate 100% coverage
594
- 5. Write files immediately (ROADMAP.md, STATE.md, phase directories, update REQUIREMENTS.md traceability)
593
+ 5. Write files immediately (ROADMAP.md, STATE.md, update REQUIREMENTS.md traceability)
595
594
  6. Return ROADMAP CREATED with summary
596
595
 
597
596
  Write files first, then return.
@@ -630,7 +629,7 @@ Use AskUserQuestion:
630
629
  **Commit roadmap:**
631
630
 
632
631
  ```bash
633
- git add .planning/ROADMAP.md .planning/STATE.md .planning/REQUIREMENTS.md .planning/phases/
632
+ git add .planning/ROADMAP.md .planning/STATE.md .planning/REQUIREMENTS.md
634
633
  git commit -m "$(cat <<'EOF'
635
634
  docs: create v[X.Y] roadmap ([N] phases)
636
635
 
@@ -696,7 +695,6 @@ Present completion with next steps:
696
695
  - `.planning/REQUIREMENTS.md`
697
696
  - `.planning/ROADMAP.md`
698
697
  - `.planning/STATE.md`
699
- - `.planning/phases/XX-name/` directories
700
698
 
701
699
  </output>
702
700
 
@@ -713,7 +711,7 @@ Present completion with next steps:
713
711
  - [ ] gsd-roadmapper spawned with context
714
712
  - [ ] Roadmap files written immediately
715
713
  - [ ] User feedback incorporated (if any)
716
- - [ ] ROADMAP.md, STATE.md, phase directories → **committed**
714
+ - [ ] ROADMAP.md, STATE.md → **committed**
717
715
  - [ ] User knows next step is `/gsd:plan-phase [N]`
718
716
 
719
717
  </success_criteria>
@@ -22,7 +22,6 @@ This is the most leveraged moment in any project. Deep questioning here means be
22
22
  - `.planning/REQUIREMENTS.md` — scoped requirements
23
23
  - `.planning/ROADMAP.md` — phase structure
24
24
  - `.planning/STATE.md` — project memory
25
- - `.planning/phases/` — phase directories
26
25
 
27
26
  **After this command:** Run `/gsd:plan-phase 1` to start execution.
28
27
 
@@ -710,7 +709,7 @@ Create roadmap:
710
709
  2. Map every v1 requirement to exactly one phase
711
710
  3. Derive 2-5 success criteria per phase (observable user behaviors)
712
711
  4. Validate 100% coverage
713
- 5. Write files immediately (ROADMAP.md, STATE.md, phase directories, update REQUIREMENTS.md traceability)
712
+ 5. Write files immediately (ROADMAP.md, STATE.md, update REQUIREMENTS.md traceability)
714
713
  6. Return ROADMAP CREATED with summary
715
714
 
716
715
  Write files first, then return. This ensures artifacts persist even if context is lost.
@@ -801,7 +800,7 @@ Use AskUserQuestion:
801
800
  **Commit roadmap (after approval):**
802
801
 
803
802
  ```bash
804
- git add .planning/ROADMAP.md .planning/STATE.md .planning/REQUIREMENTS.md .planning/phases/
803
+ git add .planning/ROADMAP.md .planning/STATE.md .planning/REQUIREMENTS.md
805
804
  git commit -m "$(cat <<'EOF'
806
805
  docs: create roadmap ([N] phases)
807
806
 
@@ -869,7 +868,6 @@ Present completion with next steps:
869
868
  - `.planning/REQUIREMENTS.md`
870
869
  - `.planning/ROADMAP.md`
871
870
  - `.planning/STATE.md`
872
- - `.planning/phases/XX-name/` directories
873
871
 
874
872
  </output>
875
873
 
@@ -891,7 +889,6 @@ Present completion with next steps:
891
889
  - [ ] ROADMAP.md created with phases, requirement mappings, success criteria
892
890
  - [ ] STATE.md initialized
893
891
  - [ ] REQUIREMENTS.md traceability updated
894
- - [ ] Phase directories created → **committed**
895
892
  - [ ] User knows next step is `/gsd:discuss-phase 1`
896
893
 
897
894
  **Atomic commits:** Each phase commits its artifacts immediately. If context is lost, artifacts persist.
@@ -77,6 +77,57 @@ You're ahead of the latest release (development version?).
77
77
  STOP here if ahead.
78
78
  </step>
79
79
 
80
+ <step name="show_changes_and_confirm">
81
+ **If update available**, fetch and show what's new BEFORE updating:
82
+
83
+ 1. Fetch changelog (same as fetch_changelog step)
84
+ 2. Extract entries between installed and latest versions
85
+ 3. Display preview and ask for confirmation:
86
+
87
+ ```
88
+ ## GSD Update Available
89
+
90
+ **Installed:** 1.5.10
91
+ **Latest:** 1.5.15
92
+
93
+ ### What's New
94
+ ────────────────────────────────────────────────────────────
95
+
96
+ ## [1.5.15] - 2026-01-20
97
+
98
+ ### Added
99
+ - Feature X
100
+
101
+ ## [1.5.14] - 2026-01-18
102
+
103
+ ### Fixed
104
+ - Bug fix Y
105
+
106
+ ────────────────────────────────────────────────────────────
107
+
108
+ ⚠️ **Note:** The installer performs a clean install of GSD folders:
109
+ - `~/.claude/commands/gsd/` will be wiped and replaced
110
+ - `~/.claude/get-shit-done/` will be wiped and replaced
111
+ - `~/.claude/agents/gsd-*` files will be replaced
112
+
113
+ Your custom files in other locations are preserved:
114
+ - Custom commands in `~/.claude/commands/your-stuff/` ✓
115
+ - Custom agents not prefixed with `gsd-` ✓
116
+ - Custom hooks ✓
117
+ - Your CLAUDE.md files ✓
118
+
119
+ If you've modified any GSD files directly, back them up first.
120
+ ```
121
+
122
+ Use AskUserQuestion:
123
+ - Question: "Proceed with update?"
124
+ - Options:
125
+ - "Yes, update now"
126
+ - "No, cancel"
127
+
128
+ **If user cancels:** STOP here.
129
+ </step>
130
+
80
131
  <step name="run_update">
81
132
  Run the update:
82
133
 
@@ -93,63 +144,18 @@ rm -f ~/.claude/cache/gsd-update-check.json
93
144
  ```
94
145
  </step>
95
146
 
96
- <step name="fetch_changelog">
97
- Fetch changelog from GitHub:
98
-
99
- Use WebFetch tool with:
100
- - URL: `https://raw.githubusercontent.com/glittercowboy/get-shit-done/main/CHANGELOG.md`
101
- - Prompt: "Extract all version entries with their dates and changes. Return the raw markdown for each version section."
102
-
103
- **If fetch fails:**
104
- Fall back to local:
105
- ```bash
106
- cat ~/.claude/get-shit-done/CHANGELOG.md 2>/dev/null
107
- ```
108
- </step>
109
-
110
- <step name="extract_changes">
111
- From the changelog, extract entries between:
112
- - **From:** installed version (exclusive)
113
- - **To:** latest version (inclusive)
114
-
115
- Parse each `## [X.Y.Z]` section and collect all versions in the range.
116
- </step>
117
-
118
147
  <step name="display_result">
119
- Format beautiful output:
148
+ Format completion message (changelog was already shown in confirmation step):
120
149
 
121
150
  ```
122
151
  ╔═══════════════════════════════════════════════════════════╗
123
152
  ║ GSD Updated: v1.5.10 → v1.5.15 ║
124
153
  ╚═══════════════════════════════════════════════════════════╝
125
154
 
126
- ✨ What's New
127
- ────────────────────────────────────────────────────────────
128
-
129
- ## [1.5.15] - 2026-01-20
130
-
131
- ### Added
132
- - Feature X
133
- - Feature Y
134
-
135
- ## [1.5.14] - 2026-01-18
136
-
137
- ### Fixed
138
- - Bug in feature A
139
-
140
- ────────────────────────────────────────────────────────────
141
-
142
155
  ⚠️ Restart Claude Code to pick up the new commands.
143
156
 
144
157
  [View full changelog](https://github.com/glittercowboy/get-shit-done/blob/main/CHANGELOG.md)
145
158
  ```
146
-
147
- **Key elements:**
148
- - Box header with version transition
149
- - All changelog entries in the range
150
- - **BREAKING:** changes surfaced prominently
151
- - Restart reminder (critical for picking up new commands)
152
- - Link to full changelog
153
159
  </step>
154
160
 
155
161
  </process>
@@ -158,8 +164,9 @@ Format beautiful output:
158
164
  - [ ] Installed version read correctly
159
165
  - [ ] Latest version checked via npm
160
166
  - [ ] Update skipped if already current
167
+ - [ ] Changelog fetched and displayed BEFORE update
168
+ - [ ] Clean install warning shown
169
+ - [ ] User confirmation obtained
161
170
  - [ ] Update executed successfully
162
- - [ ] Changelog fetched (remote or local fallback)
163
- - [ ] Changes between versions displayed
164
171
  - [ ] Restart reminder shown
165
172
  </success_criteria>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.",
5
5
  "bin": {
6
6
  "get-shit-done-cc": "bin/install.js"