@ahmed118glitch/get-shit-done-codex 1.19.2 → 1.20.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 (56) hide show
  1. package/CHANGELOG.md +40 -3
  2. package/README.md +647 -59
  3. package/agents/gsd-debugger.md +2 -2
  4. package/agents/gsd-executor.md +24 -8
  5. package/agents/gsd-phase-researcher.md +3 -3
  6. package/agents/gsd-plan-checker.md +5 -5
  7. package/agents/gsd-planner.md +8 -6
  8. package/agents/gsd-project-researcher.md +1 -1
  9. package/agents/gsd-research-synthesizer.md +2 -2
  10. package/agents/gsd-verifier.md +9 -7
  11. package/bin/install.js +22 -12
  12. package/commands/gsd/cleanup.md +18 -0
  13. package/commands/gsd/debug.md +2 -2
  14. package/commands/gsd/health.md +22 -0
  15. package/commands/gsd/plan-phase.md +1 -1
  16. package/commands/gsd/quick.md +6 -4
  17. package/commands/gsd/research-phase.md +3 -3
  18. package/get-shit-done/bin/{gsd-tools.js → gsd-tools.cjs} +488 -44
  19. package/get-shit-done/bin/{gsd-tools.test.js → gsd-tools.test.cjs} +52 -1
  20. package/get-shit-done/references/decimal-phase-calculation.md +4 -4
  21. package/get-shit-done/references/git-integration.md +3 -3
  22. package/get-shit-done/references/git-planning-commit.md +3 -3
  23. package/get-shit-done/references/model-profiles.md +18 -2
  24. package/get-shit-done/references/phase-argument-parsing.md +3 -3
  25. package/get-shit-done/references/planning-config.md +9 -7
  26. package/get-shit-done/references/questioning.md +3 -0
  27. package/get-shit-done/workflows/add-phase.md +2 -2
  28. package/get-shit-done/workflows/add-todo.md +3 -3
  29. package/get-shit-done/workflows/audit-milestone.md +7 -6
  30. package/get-shit-done/workflows/check-todos.md +2 -2
  31. package/get-shit-done/workflows/cleanup.md +152 -0
  32. package/get-shit-done/workflows/complete-milestone.md +39 -9
  33. package/get-shit-done/workflows/diagnose-issues.md +1 -1
  34. package/get-shit-done/workflows/discuss-phase.md +22 -6
  35. package/get-shit-done/workflows/execute-phase.md +31 -9
  36. package/get-shit-done/workflows/execute-plan.md +12 -11
  37. package/get-shit-done/workflows/health.md +156 -0
  38. package/get-shit-done/workflows/help.md +16 -0
  39. package/get-shit-done/workflows/insert-phase.md +2 -2
  40. package/get-shit-done/workflows/map-codebase.md +2 -2
  41. package/get-shit-done/workflows/new-milestone.md +6 -6
  42. package/get-shit-done/workflows/new-project.md +166 -11
  43. package/get-shit-done/workflows/pause-work.md +2 -2
  44. package/get-shit-done/workflows/plan-milestone-gaps.md +2 -2
  45. package/get-shit-done/workflows/plan-phase.md +25 -5
  46. package/get-shit-done/workflows/progress.md +12 -4
  47. package/get-shit-done/workflows/quick.md +226 -12
  48. package/get-shit-done/workflows/remove-phase.md +4 -4
  49. package/get-shit-done/workflows/research-phase.md +2 -2
  50. package/get-shit-done/workflows/resume-project.md +1 -1
  51. package/get-shit-done/workflows/set-profile.md +3 -3
  52. package/get-shit-done/workflows/settings.md +47 -3
  53. package/get-shit-done/workflows/transition.md +5 -5
  54. package/get-shit-done/workflows/verify-phase.md +6 -6
  55. package/get-shit-done/workflows/verify-work.md +2 -2
  56. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -6,6 +6,41 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.20.0] - 2026-02-15
10
+
11
+ ### Added
12
+ - `/gsd:health` command — validates `.planning/` directory integrity with `--repair` flag for auto-fixing config.json and STATE.md
13
+ - `--full` flag for `/gsd:quick` — enables plan-checking (max 2 iterations) and post-execution verification on quick tasks
14
+ - `--auto` flag wired from `/gsd:new-project` through the full phase chain (discuss → plan → execute)
15
+ - Auto-advance chains phase execution across full milestones when `workflow.auto_advance` is enabled
16
+
17
+ ### Fixed
18
+ - Plans created without user context — `/gsd:plan-phase` warns when no CONTEXT.md exists, `/gsd:discuss-phase` warns when plans already exist (#253)
19
+ - OpenCode installer converts `general-purpose` subagent type to OpenCode's `general`
20
+ - `/gsd:complete-milestone` respects `commit_docs` setting when merging branches
21
+ - Phase directories tracked in git via `.gitkeep` files
22
+
23
+ ## [1.19.2] - 2026-02-15
24
+
25
+ ### Added
26
+ - User-level default settings via `~/.gsd/defaults.json` — set GSD defaults across all projects
27
+ - Per-agent model overrides — customize which Claude model each agent uses
28
+
29
+ ### Changed
30
+ - Completed milestone phase directories are now archived for cleaner project structure
31
+ - Wave execution diagram added to README for clearer parallelization visualization
32
+
33
+ ### Fixed
34
+ - OpenCode local installs now write config to `./.opencode/` instead of overwriting global `~/.config/opencode/`
35
+ - Large JSON payloads write to temp files to prevent truncation in tool calls
36
+ - Phase heading matching now supports `####` depth
37
+ - Phase padding normalized in insert command
38
+ - ESM conflicts prevented by renaming gsd-tools.js to .cjs
39
+ - Config directory paths quoted in hook templates for local installs
40
+ - Settings file corruption prevented by using Write tool for file creation
41
+ - Plan-phase autocomplete fixed by removing "execution" from description
42
+ - Executor now has scope boundary and attempt limit to prevent runaway loops
43
+
9
44
  ## [1.19.1] - 2026-02-15
10
45
 
11
46
  ### Added
@@ -132,12 +167,12 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
132
167
 
133
168
  ### Changed
134
169
  - **Architecture: Thin orchestrator pattern** — Commands now delegate to workflows, reducing command file size by ~75% and improving maintainability
135
- - **Centralized utilities** — New `gsd-tools.js` (11 functions) replaces repetitive bash patterns across 50+ files
170
+ - **Centralized utilities** — New `gsd-tools.cjs` (11 functions) replaces repetitive bash patterns across 50+ files
136
171
  - **Token reduction** — ~22k characters removed from affected command/workflow/agent files
137
172
  - **Condensed agent prompts** — Same behavior with fewer words (executor, planner, verifier, researcher agents)
138
173
 
139
174
  ### Added
140
- - `gsd-tools.js` CLI utility with functions: state load/update, resolve-model, find-phase, commit, verify-summary, generate-slug, current-timestamp, list-todos, verify-path-exists, config-ensure-section
175
+ - `gsd-tools.cjs` CLI utility with functions: state load/update, resolve-model, find-phase, commit, verify-summary, generate-slug, current-timestamp, list-todos, verify-path-exists, config-ensure-section
141
176
 
142
177
  ## [1.11.2] - 2026-02-05
143
178
 
@@ -1236,7 +1271,9 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
1236
1271
  - YOLO mode for autonomous execution
1237
1272
  - Interactive mode with checkpoints
1238
1273
 
1239
- [Unreleased]: https://github.com/glittercowboy/get-shit-done/compare/v1.19.1...HEAD
1274
+ [Unreleased]: https://github.com/glittercowboy/get-shit-done/compare/v1.20.0...HEAD
1275
+ [1.20.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.20.0
1276
+ [1.19.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.19.2
1240
1277
  [1.19.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.19.1
1241
1278
  [1.19.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.19.0
1242
1279
  [1.18.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.18.0