get-shit-done-cc 1.9.11 → 1.9.13

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
@@ -2,7 +2,7 @@
2
2
 
3
3
  # GET SHIT DONE
4
4
 
5
- **A light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.**
5
+ **A light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code and OpenCode.**
6
6
 
7
7
  **Solves context rot — the quality degradation that happens as Claude fills its context window.**
8
8
 
@@ -84,13 +84,7 @@ Verify with `/gsd:help` inside your Claude Code or OpenCode interface.
84
84
 
85
85
  ### Staying Updated
86
86
 
87
- GSD evolves fast. Check for updates periodically:
88
-
89
- ```
90
- /gsd:whats-new
91
- ```
92
-
93
- Update with:
87
+ GSD evolves fast. Update periodically:
94
88
 
95
89
  ```bash
96
90
  npx get-shit-done-cc@latest
@@ -439,7 +433,6 @@ You're never locked in. The system adapts.
439
433
  |---------|--------------|
440
434
  | `/gsd:progress` | Where am I? What's next? |
441
435
  | `/gsd:help` | Show all commands and usage guide |
442
- | `/gsd:whats-new` | See what changed since your installed version |
443
436
  | `/gsd:update` | Update GSD with changelog preview |
444
437
  | `/gsd:join-discord` | Join the GSD Discord community |
445
438
 
@@ -27,13 +27,7 @@ Output ONLY the reference content below. Do NOT add:
27
27
 
28
28
  ## Staying Updated
29
29
 
30
- GSD evolves fast. Check for updates periodically:
31
-
32
- ```
33
- /gsd:whats-new
34
- ```
35
-
36
- Shows what changed since your installed version. Update with:
30
+ GSD evolves fast. Update periodically:
37
31
 
38
32
  ```bash
39
33
  npx get-shit-done-cc@latest
@@ -333,20 +327,12 @@ Usage: `/gsd:set-profile budget`
333
327
  **`/gsd:help`**
334
328
  Show this command reference.
335
329
 
336
- **`/gsd:whats-new`**
337
- See what's changed since your installed version.
330
+ **`/gsd:update`**
331
+ Update GSD to latest version with changelog preview.
338
332
 
339
333
  - Shows installed vs latest version comparison
340
334
  - Displays changelog entries for versions you've missed
341
335
  - Highlights breaking changes
342
- - Provides update instructions when behind
343
-
344
- Usage: `/gsd:whats-new`
345
-
346
- **`/gsd:update`**
347
- Update GSD to latest version with changelog preview.
348
-
349
- - Shows what changed before updating
350
336
  - Confirms before running install
351
337
  - Better than raw `npx get-shit-done-cc`
352
338
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.9.11",
3
+ "version": "1.9.13",
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"
@@ -1,124 +0,0 @@
1
- ---
2
- name: gsd:whats-new
3
- description: See what's new in GSD since your installed version
4
- ---
5
-
6
- <objective>
7
- Display changes between installed version and latest available version.
8
-
9
- Shows version comparison, changelog entries for missed versions, and update instructions.
10
- </objective>
11
-
12
- <process>
13
-
14
- <step name="get_installed_version">
15
- Read installed version from VERSION file:
16
-
17
- ```bash
18
- cat ~/.claude/get-shit-done/VERSION 2>/dev/null
19
- ```
20
-
21
- **If VERSION file missing:**
22
- ```
23
- ## GSD What's New
24
-
25
- **Installed version:** Unknown
26
-
27
- Your installation doesn't include version tracking.
28
-
29
- **To fix:** `npx get-shit-done-cc --global`
30
-
31
- This will reinstall with version tracking enabled.
32
- ```
33
-
34
- STOP here if no VERSION file.
35
- </step>
36
-
37
- <step name="fetch_remote_changelog">
38
- Fetch latest CHANGELOG.md from GitHub:
39
-
40
- Use WebFetch tool with:
41
- - URL: `https://raw.githubusercontent.com/glittercowboy/get-shit-done/main/CHANGELOG.md`
42
- - Prompt: "Extract all version entries with their dates and changes. Return in Keep-a-Changelog format."
43
-
44
- **If fetch fails:**
45
- Fall back to local changelog:
46
- ```bash
47
- cat ~/.claude/get-shit-done/CHANGELOG.md 2>/dev/null
48
- ```
49
-
50
- Note to user: "Couldn't check for updates (offline or GitHub unavailable). Showing local changelog."
51
- </step>
52
-
53
- <step name="parse_versions">
54
- From the remote (or local) changelog:
55
-
56
- 1. **Extract latest version** - First `## [X.Y.Z]` line after `## [Unreleased]`
57
- 2. **Compare with installed** - From VERSION file
58
- 3. **Extract entries between** - All version sections from latest down to (but not including) installed
59
-
60
- **Version comparison:**
61
- - If installed == latest: "You're on the latest version"
62
- - If installed < latest: Show changes since installed version
63
- - If installed > latest: "You're ahead of latest release (development version?)"
64
- </step>
65
-
66
- <step name="display_output">
67
- Format output clearly:
68
-
69
- **If up to date:**
70
- ```
71
- ## GSD What's New
72
-
73
- **Installed:** 1.4.26
74
- **Latest:** 1.4.26
75
-
76
- You're on the latest version.
77
-
78
- [View full changelog](https://github.com/glittercowboy/get-shit-done/blob/main/CHANGELOG.md)
79
- ```
80
-
81
- **If updates available:**
82
- ```
83
- ## GSD What's New
84
-
85
- **Installed:** 1.4.23
86
- **Latest:** 1.4.26
87
-
88
- ---
89
-
90
- ### Changes since your version:
91
-
92
- ## [1.4.26] - 2026-01-20
93
-
94
- ### Added
95
- - Feature X
96
- - Feature Y
97
-
98
- ### Changed
99
- - **BREAKING:** Changed Z behavior
100
-
101
- ## [1.4.25] - 2026-01-18
102
-
103
- ### Fixed
104
- - Bug in feature A
105
-
106
- ---
107
-
108
- [View full changelog](https://github.com/glittercowboy/get-shit-done/blob/main/CHANGELOG.md)
109
-
110
- **To update:** `npx get-shit-done-cc --global`
111
- ```
112
-
113
- **Breaking changes:** Surface prominently with **BREAKING:** prefix in the output.
114
- </step>
115
-
116
- </process>
117
-
118
- <success_criteria>
119
- - [ ] Installed version read from VERSION file
120
- - [ ] Remote changelog fetched (or graceful fallback to local)
121
- - [ ] Version comparison displayed clearly
122
- - [ ] Changes since installed version shown (if any)
123
- - [ ] Update instructions provided when behind
124
- </success_criteria>