@ahmed118glitch/get-shit-done-codex 1.18.3 → 1.19.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 (32) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/README.md +101 -85
  3. package/agents/gsd-phase-researcher.md +1 -1
  4. package/agents/gsd-roadmapper.md +39 -5
  5. package/agents/gsd-verifier.md +2 -2
  6. package/bin/install-codex.js +100 -100
  7. package/bin/install.js +65 -8
  8. package/commands/gsd/discuss-phase.md +1 -1
  9. package/commands/gsd/reapply-patches.md +3 -3
  10. package/commands/gsd/verify-work.md +1 -1
  11. package/get-shit-done/bin/gsd-tools.js +106 -19
  12. package/get-shit-done/bin/gsd-tools.test.js +44 -0
  13. package/get-shit-done/references/model-profile-resolution.md +4 -2
  14. package/get-shit-done/references/model-profiles.md +3 -0
  15. package/get-shit-done/references/questioning.md +1 -0
  16. package/get-shit-done/templates/UAT.md +1 -1
  17. package/get-shit-done/templates/context.md +2 -2
  18. package/get-shit-done/templates/planner-subagent-prompt.md +4 -4
  19. package/get-shit-done/templates/research.md +2 -2
  20. package/get-shit-done/templates/verification-report.md +1 -1
  21. package/get-shit-done/workflows/diagnose-issues.md +1 -1
  22. package/get-shit-done/workflows/discovery-phase.md +1 -1
  23. package/get-shit-done/workflows/discuss-phase.md +3 -3
  24. package/get-shit-done/workflows/execute-phase.md +51 -2
  25. package/get-shit-done/workflows/help.md +4 -4
  26. package/get-shit-done/workflows/new-milestone.md +1 -1
  27. package/get-shit-done/workflows/new-project.md +3 -3
  28. package/get-shit-done/workflows/plan-phase.md +1 -1
  29. package/get-shit-done/workflows/progress.md +2 -2
  30. package/get-shit-done/workflows/update.md +14 -12
  31. package/get-shit-done/workflows/verify-work.md +3 -3
  32. package/package.json +1 -1
@@ -13,8 +13,9 @@ Detect whether GSD is installed locally or globally by checking both locations:
13
13
 
14
14
  ```bash
15
15
  # Check local first (takes priority)
16
- if [ -f "./.claude/get-shit-done/VERSION" ]; then
17
- cat "./.claude/get-shit-done/VERSION"
16
+ # Paths templated at install time for runtime compatibility
17
+ if [ -f ./.claude/get-shit-done/VERSION ]; then
18
+ cat ./.claude/get-shit-done/VERSION
18
19
  echo "LOCAL"
19
20
  elif [ -f ~/.claude/get-shit-done/VERSION ]; then
20
21
  cat ~/.claude/get-shit-done/VERSION
@@ -46,15 +47,15 @@ Proceed to install step (treat as version 0.0.0 for comparison).
46
47
  <step name="check_latest_version">
47
48
  Check npm for latest version:
48
49
 
49
- ```bash
50
- npm view @ahmed118glitch/get-shit-done-codex version 2>/dev/null
51
- ```
50
+ ```bash
51
+ npm view @ahmed118glitch/get-shit-done-codex version 2>/dev/null
52
+ ```
52
53
 
53
54
  **If npm check fails:**
54
55
  ```
55
56
  Couldn't check for updates (offline or npm unavailable).
56
57
 
57
- To update manually: `npx --yes --package=@ahmed118glitch/get-shit-done-codex@latest get-shit-done-cc --global`
58
+ To update manually: `npx --yes --package=@ahmed118glitch/get-shit-done-codex@latest get-shit-done-cc --global`
58
59
  ```
59
60
 
60
61
  Exit.
@@ -145,14 +146,14 @@ Use AskUserQuestion:
145
146
  Run the update using the install type detected in step 1:
146
147
 
147
148
  **If LOCAL install:**
148
- ```bash
149
- npx --yes --package=@ahmed118glitch/get-shit-done-codex@latest get-shit-done-cc --local
150
- ```
149
+ ```bash
150
+ npx --yes --package=@ahmed118glitch/get-shit-done-codex@latest get-shit-done-cc --local
151
+ ```
151
152
 
152
153
  **If GLOBAL install (or unknown):**
153
- ```bash
154
- npx --yes --package=@ahmed118glitch/get-shit-done-codex@latest get-shit-done-cc --global
155
- ```
154
+ ```bash
155
+ npx --yes --package=@ahmed118glitch/get-shit-done-codex@latest get-shit-done-cc --global
156
+ ```
156
157
 
157
158
  Capture output. If install fails, show error and exit.
158
159
 
@@ -167,6 +168,7 @@ rm -f ./.claude/cache/gsd-update-check.json
167
168
  ```bash
168
169
  rm -f ~/.claude/cache/gsd-update-check.json
169
170
  ```
171
+ (Paths are templated at install time for runtime compatibility)
170
172
  </step>
171
173
 
172
174
  <step name="display_result">
@@ -164,7 +164,7 @@ skipped: 0
164
164
  [none yet]
165
165
  ```
166
166
 
167
- Write to `.planning/phases/XX-name/{phase}-UAT.md`
167
+ Write to `.planning/phases/XX-name/{phase_num}-UAT.md`
168
168
 
169
169
  Proceed to `present_test`.
170
170
  </step>
@@ -292,7 +292,7 @@ Clear Current Test section:
292
292
 
293
293
  Commit the UAT file:
294
294
  ```bash
295
- node ~/.claude/get-shit-done/bin/gsd-tools.js commit "test({phase}): complete UAT - {passed} passed, {issues} issues" --files ".planning/phases/XX-name/{phase}-UAT.md"
295
+ node ~/.claude/get-shit-done/bin/gsd-tools.js commit "test({phase_num}): complete UAT - {passed} passed, {issues} issues" --files ".planning/phases/XX-name/{phase_num}-UAT.md"
296
296
  ```
297
297
 
298
298
  Present summary:
@@ -366,7 +366,7 @@ Task(
366
366
  **Mode:** gap_closure
367
367
 
368
368
  **UAT with diagnoses:**
369
- @.planning/phases/{phase_dir}/{phase}-UAT.md
369
+ @.planning/phases/{phase_dir}/{phase_num}-UAT.md
370
370
 
371
371
  **Project State:**
372
372
  @.planning/STATE.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ahmed118glitch/get-shit-done-codex",
3
- "version": "1.18.3",
3
+ "version": "1.19.0",
4
4
  "description": "Codex-native package for the get-shit-done workflow with native subagent orchestration.",
5
5
  "bin": {
6
6
  "get-shit-done-codex": "bin/install-codex.js",