get-shit-done-cc 1.9.11 → 1.10.0-experimental.0

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.
Files changed (61) hide show
  1. package/README.md +10 -9
  2. package/agents/design-specialist.md +222 -0
  3. package/agents/gsd-executor.md +37 -375
  4. package/agents/gsd-planner.md +15 -108
  5. package/bin/install.js +92 -5
  6. package/commands/gsd/autopilot.md +518 -0
  7. package/commands/gsd/checkpoints.md +229 -0
  8. package/commands/gsd/design-system.md +70 -0
  9. package/commands/gsd/discuss-design.md +77 -0
  10. package/commands/gsd/extend.md +80 -0
  11. package/commands/gsd/help.md +46 -17
  12. package/commands/gsd/new-project.md +94 -8
  13. package/commands/gsd/plan-phase.md +35 -5
  14. package/get-shit-done/references/ccr-integration.md +468 -0
  15. package/get-shit-done/references/checkpoint-execution.md +369 -0
  16. package/get-shit-done/references/checkpoint-types.md +728 -0
  17. package/get-shit-done/references/deviation-rules.md +215 -0
  18. package/get-shit-done/references/framework-patterns.md +543 -0
  19. package/get-shit-done/references/ui-principles.md +258 -0
  20. package/get-shit-done/references/verification-patterns.md +1 -1
  21. package/get-shit-done/skills/gsd-extend/SKILL.md +154 -0
  22. package/get-shit-done/skills/gsd-extend/references/agent-structure.md +305 -0
  23. package/get-shit-done/skills/gsd-extend/references/extension-anatomy.md +123 -0
  24. package/get-shit-done/skills/gsd-extend/references/reference-structure.md +408 -0
  25. package/get-shit-done/skills/gsd-extend/references/template-structure.md +370 -0
  26. package/get-shit-done/skills/gsd-extend/references/validation-rules.md +140 -0
  27. package/get-shit-done/skills/gsd-extend/references/workflow-structure.md +253 -0
  28. package/get-shit-done/skills/gsd-extend/templates/agent-template.md +234 -0
  29. package/get-shit-done/skills/gsd-extend/templates/reference-template.md +239 -0
  30. package/get-shit-done/skills/gsd-extend/templates/workflow-template.md +169 -0
  31. package/get-shit-done/skills/gsd-extend/workflows/create-approach.md +332 -0
  32. package/get-shit-done/skills/gsd-extend/workflows/list-extensions.md +133 -0
  33. package/get-shit-done/skills/gsd-extend/workflows/remove-extension.md +93 -0
  34. package/get-shit-done/skills/gsd-extend/workflows/validate-extension.md +184 -0
  35. package/get-shit-done/templates/autopilot-script-simple.sh +181 -0
  36. package/get-shit-done/templates/autopilot-script.sh +1142 -0
  37. package/get-shit-done/templates/autopilot-script.sh.backup +1142 -0
  38. package/get-shit-done/templates/design-system.md +238 -0
  39. package/get-shit-done/templates/phase-design.md +205 -0
  40. package/get-shit-done/templates/phase-models-template.json +71 -0
  41. package/get-shit-done/templates/phase-prompt.md +4 -4
  42. package/get-shit-done/templates/state.md +37 -0
  43. package/get-shit-done/tui/App.tsx +169 -0
  44. package/get-shit-done/tui/README.md +107 -0
  45. package/get-shit-done/tui/build.js +37 -0
  46. package/get-shit-done/tui/components/ActivityFeed.tsx +126 -0
  47. package/get-shit-done/tui/components/PhaseCard.tsx +86 -0
  48. package/get-shit-done/tui/components/StatsBar.tsx +147 -0
  49. package/get-shit-done/tui/dist/index.js +387 -0
  50. package/get-shit-done/tui/index.tsx +12 -0
  51. package/get-shit-done/tui/package-lock.json +1074 -0
  52. package/get-shit-done/tui/package.json +22 -0
  53. package/get-shit-done/tui/utils/pipeReader.ts +129 -0
  54. package/get-shit-done/workflows/design-system.md +245 -0
  55. package/get-shit-done/workflows/discuss-design.md +330 -0
  56. package/get-shit-done/workflows/execute-phase.md +44 -1
  57. package/get-shit-done/workflows/execute-plan-auth.md +122 -0
  58. package/get-shit-done/workflows/execute-plan-checkpoints.md +541 -0
  59. package/get-shit-done/workflows/execute-plan.md +34 -856
  60. package/package.json +8 -3
  61. package/commands/gsd/whats-new.md +0 -124
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.10.0-experimental.0",
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"
@@ -34,12 +34,17 @@
34
34
  "engines": {
35
35
  "node": ">=16.7.0"
36
36
  },
37
- "dependencies": {},
37
+ "dependencies": {
38
+ "ink": "^6.6.0",
39
+ "react": "^19.2.4"
40
+ },
38
41
  "devDependencies": {
39
42
  "esbuild": "^0.24.0"
40
43
  },
41
44
  "scripts": {
42
45
  "build:hooks": "node scripts/build-hooks.js",
43
- "prepublishOnly": "npm run build:hooks"
46
+ "build:tui": "cd get-shit-done/tui && npm run build",
47
+ "postinstall": "npm run build:tui",
48
+ "prepublishOnly": "npm run build:hooks && npm run build:tui"
44
49
  }
45
50
  }
@@ -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>