get-shit-done-cc 1.4.24 → 1.4.26

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/bin/install.js CHANGED
@@ -163,6 +163,19 @@ function install(isGlobal) {
163
163
  copyWithPathReplacement(skillSrc, skillDest, pathPrefix);
164
164
  console.log(` ${green}✓${reset} Installed get-shit-done`);
165
165
 
166
+ // Copy CHANGELOG.md
167
+ const changelogSrc = path.join(src, 'CHANGELOG.md');
168
+ const changelogDest = path.join(claudeDir, 'get-shit-done', 'CHANGELOG.md');
169
+ if (fs.existsSync(changelogSrc)) {
170
+ fs.copyFileSync(changelogSrc, changelogDest);
171
+ console.log(` ${green}✓${reset} Installed CHANGELOG.md`);
172
+ }
173
+
174
+ // Write VERSION file for whats-new command
175
+ const versionDest = path.join(claudeDir, 'get-shit-done', 'VERSION');
176
+ fs.writeFileSync(versionDest, pkg.version);
177
+ console.log(` ${green}✓${reset} Wrote VERSION (${pkg.version})`);
178
+
166
179
  console.log(`
167
180
  ${green}Done!${reset} Launch Claude Code and run ${cyan}/gsd:help${reset}.
168
181
  `);
@@ -280,6 +280,16 @@ Usage: `/gsd:check-todos api`
280
280
  **`/gsd:help`**
281
281
  Show this command reference.
282
282
 
283
+ **`/gsd:whats-new`**
284
+ See what's changed since your installed version.
285
+
286
+ - Shows installed vs latest version comparison
287
+ - Displays changelog entries for versions you've missed
288
+ - Highlights breaking changes
289
+ - Provides update instructions when behind
290
+
291
+ Usage: `/gsd:whats-new`
292
+
283
293
  ## Files & Structure
284
294
 
285
295
  ```
@@ -0,0 +1,124 @@
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>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.4.24",
3
+ "version": "1.4.26",
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"