@ahmed118glitch/get-shit-done-codex 1.19.0 → 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.
- package/CHANGELOG.md +55 -3
- package/README.md +647 -59
- package/agents/gsd-debugger.md +2 -2
- package/agents/gsd-executor.md +24 -8
- package/agents/gsd-phase-researcher.md +3 -3
- package/agents/gsd-plan-checker.md +5 -5
- package/agents/gsd-planner.md +8 -6
- package/agents/gsd-project-researcher.md +1 -1
- package/agents/gsd-research-synthesizer.md +2 -2
- package/agents/gsd-verifier.md +26 -8
- package/bin/install-codex.js +1 -1
- package/bin/install.js +22 -12
- package/commands/gsd/cleanup.md +18 -0
- package/commands/gsd/debug.md +2 -2
- package/commands/gsd/discuss-phase.md +2 -1
- package/commands/gsd/health.md +22 -0
- package/commands/gsd/plan-phase.md +2 -2
- package/commands/gsd/quick.md +6 -4
- package/commands/gsd/research-phase.md +3 -3
- package/get-shit-done/bin/{gsd-tools.js → gsd-tools.cjs} +603 -44
- package/get-shit-done/bin/{gsd-tools.test.js → gsd-tools.test.cjs} +197 -1
- package/get-shit-done/references/decimal-phase-calculation.md +4 -4
- package/get-shit-done/references/git-integration.md +3 -3
- package/get-shit-done/references/git-planning-commit.md +3 -3
- package/get-shit-done/references/model-profiles.md +18 -2
- package/get-shit-done/references/phase-argument-parsing.md +3 -3
- package/get-shit-done/references/planning-config.md +9 -7
- package/get-shit-done/references/questioning.md +3 -0
- package/get-shit-done/templates/config.json +2 -1
- package/get-shit-done/workflows/add-phase.md +2 -2
- package/get-shit-done/workflows/add-todo.md +3 -3
- package/get-shit-done/workflows/audit-milestone.md +7 -6
- package/get-shit-done/workflows/check-todos.md +2 -2
- package/get-shit-done/workflows/cleanup.md +152 -0
- package/get-shit-done/workflows/complete-milestone.md +39 -9
- package/get-shit-done/workflows/diagnose-issues.md +1 -1
- package/get-shit-done/workflows/discuss-phase.md +80 -3
- package/get-shit-done/workflows/execute-phase.md +39 -18
- package/get-shit-done/workflows/execute-plan.md +15 -11
- package/get-shit-done/workflows/health.md +156 -0
- package/get-shit-done/workflows/help.md +16 -0
- package/get-shit-done/workflows/insert-phase.md +2 -2
- package/get-shit-done/workflows/map-codebase.md +2 -2
- package/get-shit-done/workflows/new-milestone.md +6 -6
- package/get-shit-done/workflows/new-project.md +166 -11
- package/get-shit-done/workflows/pause-work.md +2 -2
- package/get-shit-done/workflows/plan-milestone-gaps.md +2 -2
- package/get-shit-done/workflows/plan-phase.md +77 -5
- package/get-shit-done/workflows/progress.md +12 -4
- package/get-shit-done/workflows/quick.md +226 -12
- package/get-shit-done/workflows/remove-phase.md +4 -4
- package/get-shit-done/workflows/research-phase.md +2 -2
- package/get-shit-done/workflows/resume-project.md +1 -1
- package/get-shit-done/workflows/set-profile.md +3 -3
- package/get-shit-done/workflows/settings.md +60 -5
- package/get-shit-done/workflows/transition.md +52 -6
- package/get-shit-done/workflows/verify-phase.md +23 -7
- package/get-shit-done/workflows/verify-work.md +2 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,55 @@ 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
|
+
|
|
44
|
+
## [1.19.1] - 2026-02-15
|
|
45
|
+
|
|
46
|
+
### Added
|
|
47
|
+
- Auto-advance pipeline: `--auto` flag on `discuss-phase` and `plan-phase` chains discuss → plan → execute without stopping. Also available as `workflow.auto_advance` config setting
|
|
48
|
+
|
|
49
|
+
### Fixed
|
|
50
|
+
- Phase transition routing now routes to `discuss-phase` (not `plan-phase`) when no CONTEXT.md exists — consistent across all workflows (#530)
|
|
51
|
+
- ROADMAP progress table plan counts are now computed from disk instead of LLM-edited — deterministic "X/Y Complete" values (#537)
|
|
52
|
+
- Verifier uses ROADMAP Success Criteria directly instead of deriving verification truths from the Goal field (#538)
|
|
53
|
+
- REQUIREMENTS.md traceability updates when a phase completes
|
|
54
|
+
- STATE.md updates after discuss-phase completes (#556)
|
|
55
|
+
- AskUserQuestion headers enforced to 12-char max to prevent UI truncation (#559)
|
|
56
|
+
- Agent model resolution returns `inherit` instead of hardcoded `opus` (#558)
|
|
57
|
+
|
|
9
58
|
## [1.19.0] - 2026-02-15
|
|
10
59
|
|
|
11
60
|
### Added
|
|
@@ -118,12 +167,12 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
118
167
|
|
|
119
168
|
### Changed
|
|
120
169
|
- **Architecture: Thin orchestrator pattern** — Commands now delegate to workflows, reducing command file size by ~75% and improving maintainability
|
|
121
|
-
- **Centralized utilities** — New `gsd-tools.
|
|
170
|
+
- **Centralized utilities** — New `gsd-tools.cjs` (11 functions) replaces repetitive bash patterns across 50+ files
|
|
122
171
|
- **Token reduction** — ~22k characters removed from affected command/workflow/agent files
|
|
123
172
|
- **Condensed agent prompts** — Same behavior with fewer words (executor, planner, verifier, researcher agents)
|
|
124
173
|
|
|
125
174
|
### Added
|
|
126
|
-
- `gsd-tools.
|
|
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
|
|
127
176
|
|
|
128
177
|
## [1.11.2] - 2026-02-05
|
|
129
178
|
|
|
@@ -1222,7 +1271,10 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
1222
1271
|
- YOLO mode for autonomous execution
|
|
1223
1272
|
- Interactive mode with checkpoints
|
|
1224
1273
|
|
|
1225
|
-
[Unreleased]: https://github.com/glittercowboy/get-shit-done/compare/v1.
|
|
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
|
|
1277
|
+
[1.19.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.19.1
|
|
1226
1278
|
[1.19.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.19.0
|
|
1227
1279
|
[1.18.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.18.0
|
|
1228
1280
|
[1.17.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.17.0
|