gsd-codex-cli 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/.codex/prompts/gsd-add-phase.md +44 -0
- package/.codex/prompts/gsd-add-todo.md +43 -0
- package/.codex/prompts/gsd-audit-milestone.md +43 -0
- package/.codex/prompts/gsd-check-todos.md +43 -0
- package/.codex/prompts/gsd-complete-milestone.md +43 -0
- package/.codex/prompts/gsd-debug.md +46 -0
- package/.codex/prompts/gsd-discuss-phase.md +43 -0
- package/.codex/prompts/gsd-execute-phase.md +43 -0
- package/.codex/prompts/gsd-help.md +43 -0
- package/.codex/prompts/gsd-insert-phase.md +43 -0
- package/.codex/prompts/gsd-list-phase-assumptions.md +43 -0
- package/.codex/prompts/gsd-map-codebase.md +43 -0
- package/.codex/prompts/gsd-new-milestone.md +43 -0
- package/.codex/prompts/gsd-new-project.md +43 -0
- package/.codex/prompts/gsd-pause-work.md +43 -0
- package/.codex/prompts/gsd-plan-milestone-gaps.md +43 -0
- package/.codex/prompts/gsd-plan-phase.md +43 -0
- package/.codex/prompts/gsd-progress.md +43 -0
- package/.codex/prompts/gsd-quick.md +43 -0
- package/.codex/prompts/gsd-remove-phase.md +43 -0
- package/.codex/prompts/gsd-research-phase.md +43 -0
- package/.codex/prompts/gsd-resume-work.md +43 -0
- package/.codex/prompts/gsd-set-profile.md +43 -0
- package/.codex/prompts/gsd-settings.md +43 -0
- package/.codex/prompts/gsd-update.md +43 -0
- package/.codex/prompts/gsd-verify-work.md +43 -0
- package/.codex/skills/get-shit-done-codex/SKILL.md +65 -0
- package/.codex/skills/get-shit-done-codex/references/compat.md +32 -0
- package/.codex/skills/get-shit-done-codex/references/windows.md +23 -0
- package/CHANGELOG.md +1434 -0
- package/LICENSE +21 -0
- package/README.md +690 -0
- package/agents/gsd-codebase-mapper.md +761 -0
- package/agents/gsd-debugger.md +1198 -0
- package/agents/gsd-executor.md +419 -0
- package/agents/gsd-integration-checker.md +423 -0
- package/agents/gsd-phase-researcher.md +469 -0
- package/agents/gsd-plan-checker.md +622 -0
- package/agents/gsd-planner.md +1159 -0
- package/agents/gsd-project-researcher.md +618 -0
- package/agents/gsd-research-synthesizer.md +236 -0
- package/agents/gsd-roadmapper.md +639 -0
- package/agents/gsd-verifier.md +541 -0
- package/bin/install-codex.js +100 -0
- package/bin/install.js +1806 -0
- package/commands/gsd/add-phase.md +39 -0
- package/commands/gsd/add-todo.md +42 -0
- package/commands/gsd/audit-milestone.md +42 -0
- package/commands/gsd/check-todos.md +41 -0
- package/commands/gsd/cleanup.md +18 -0
- package/commands/gsd/complete-milestone.md +136 -0
- package/commands/gsd/debug.md +162 -0
- package/commands/gsd/discuss-phase.md +87 -0
- package/commands/gsd/execute-phase.md +42 -0
- package/commands/gsd/health.md +22 -0
- package/commands/gsd/help.md +22 -0
- package/commands/gsd/insert-phase.md +33 -0
- package/commands/gsd/join-discord.md +18 -0
- package/commands/gsd/list-phase-assumptions.md +50 -0
- package/commands/gsd/map-codebase.md +71 -0
- package/commands/gsd/new-milestone.md +51 -0
- package/commands/gsd/new-project.md +42 -0
- package/commands/gsd/pause-work.md +35 -0
- package/commands/gsd/plan-milestone-gaps.md +40 -0
- package/commands/gsd/plan-phase.md +44 -0
- package/commands/gsd/progress.md +24 -0
- package/commands/gsd/quick.md +40 -0
- package/commands/gsd/reapply-patches.md +110 -0
- package/commands/gsd/remove-phase.md +32 -0
- package/commands/gsd/research-phase.md +187 -0
- package/commands/gsd/resume-work.md +40 -0
- package/commands/gsd/set-profile.md +34 -0
- package/commands/gsd/settings.md +36 -0
- package/commands/gsd/update.md +37 -0
- package/commands/gsd/verify-work.md +39 -0
- package/get-shit-done/bin/gsd-tools.cjs +5243 -0
- package/get-shit-done/bin/gsd-tools.test.cjs +2273 -0
- package/get-shit-done/references/checkpoints.md +775 -0
- package/get-shit-done/references/continuation-format.md +249 -0
- package/get-shit-done/references/decimal-phase-calculation.md +65 -0
- package/get-shit-done/references/git-integration.md +248 -0
- package/get-shit-done/references/git-planning-commit.md +38 -0
- package/get-shit-done/references/model-profile-resolution.md +34 -0
- package/get-shit-done/references/model-profiles.md +92 -0
- package/get-shit-done/references/phase-argument-parsing.md +61 -0
- package/get-shit-done/references/planning-config.md +196 -0
- package/get-shit-done/references/questioning.md +145 -0
- package/get-shit-done/references/tdd.md +263 -0
- package/get-shit-done/references/ui-brand.md +160 -0
- package/get-shit-done/references/verification-patterns.md +612 -0
- package/get-shit-done/templates/DEBUG.md +159 -0
- package/get-shit-done/templates/UAT.md +247 -0
- package/get-shit-done/templates/codebase/architecture.md +255 -0
- package/get-shit-done/templates/codebase/concerns.md +310 -0
- package/get-shit-done/templates/codebase/conventions.md +307 -0
- package/get-shit-done/templates/codebase/integrations.md +280 -0
- package/get-shit-done/templates/codebase/stack.md +186 -0
- package/get-shit-done/templates/codebase/structure.md +285 -0
- package/get-shit-done/templates/codebase/testing.md +480 -0
- package/get-shit-done/templates/config.json +36 -0
- package/get-shit-done/templates/context.md +283 -0
- package/get-shit-done/templates/continue-here.md +78 -0
- package/get-shit-done/templates/debug-subagent-prompt.md +91 -0
- package/get-shit-done/templates/discovery.md +146 -0
- package/get-shit-done/templates/milestone-archive.md +123 -0
- package/get-shit-done/templates/milestone.md +115 -0
- package/get-shit-done/templates/phase-prompt.md +567 -0
- package/get-shit-done/templates/planner-subagent-prompt.md +117 -0
- package/get-shit-done/templates/project.md +184 -0
- package/get-shit-done/templates/requirements.md +231 -0
- package/get-shit-done/templates/research-project/ARCHITECTURE.md +204 -0
- package/get-shit-done/templates/research-project/FEATURES.md +147 -0
- package/get-shit-done/templates/research-project/PITFALLS.md +200 -0
- package/get-shit-done/templates/research-project/STACK.md +120 -0
- package/get-shit-done/templates/research-project/SUMMARY.md +170 -0
- package/get-shit-done/templates/research.md +552 -0
- package/get-shit-done/templates/roadmap.md +202 -0
- package/get-shit-done/templates/state.md +176 -0
- package/get-shit-done/templates/summary-complex.md +59 -0
- package/get-shit-done/templates/summary-minimal.md +41 -0
- package/get-shit-done/templates/summary-standard.md +48 -0
- package/get-shit-done/templates/summary.md +246 -0
- package/get-shit-done/templates/user-setup.md +311 -0
- package/get-shit-done/templates/verification-report.md +322 -0
- package/get-shit-done/workflows/add-phase.md +111 -0
- package/get-shit-done/workflows/add-todo.md +157 -0
- package/get-shit-done/workflows/audit-milestone.md +242 -0
- package/get-shit-done/workflows/check-todos.md +176 -0
- package/get-shit-done/workflows/cleanup.md +152 -0
- package/get-shit-done/workflows/complete-milestone.md +674 -0
- package/get-shit-done/workflows/diagnose-issues.md +219 -0
- package/get-shit-done/workflows/discovery-phase.md +289 -0
- package/get-shit-done/workflows/discuss-phase.md +485 -0
- package/get-shit-done/workflows/execute-phase.md +408 -0
- package/get-shit-done/workflows/execute-plan.md +441 -0
- package/get-shit-done/workflows/health.md +156 -0
- package/get-shit-done/workflows/help.md +486 -0
- package/get-shit-done/workflows/insert-phase.md +129 -0
- package/get-shit-done/workflows/list-phase-assumptions.md +178 -0
- package/get-shit-done/workflows/map-codebase.md +327 -0
- package/get-shit-done/workflows/new-milestone.md +373 -0
- package/get-shit-done/workflows/new-project.md +1113 -0
- package/get-shit-done/workflows/pause-work.md +122 -0
- package/get-shit-done/workflows/plan-milestone-gaps.md +256 -0
- package/get-shit-done/workflows/plan-phase.md +448 -0
- package/get-shit-done/workflows/progress.md +393 -0
- package/get-shit-done/workflows/quick.md +444 -0
- package/get-shit-done/workflows/remove-phase.md +154 -0
- package/get-shit-done/workflows/research-phase.md +74 -0
- package/get-shit-done/workflows/resume-project.md +306 -0
- package/get-shit-done/workflows/set-profile.md +80 -0
- package/get-shit-done/workflows/settings.md +200 -0
- package/get-shit-done/workflows/transition.md +539 -0
- package/get-shit-done/workflows/update.md +214 -0
- package/get-shit-done/workflows/verify-phase.md +242 -0
- package/get-shit-done/workflows/verify-work.md +570 -0
- package/hooks/dist/gsd-check-update.js +62 -0
- package/hooks/dist/gsd-statusline.js +91 -0
- package/package.json +54 -0
- package/scripts/build-hooks.js +42 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1434 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to GSD will be documented in this file.
|
|
4
|
+
|
|
5
|
+
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
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
|
+
|
|
58
|
+
## [1.19.0] - 2026-02-15
|
|
59
|
+
|
|
60
|
+
### Added
|
|
61
|
+
- Brave Search integration for researchers (requires BRAVE_API_KEY environment variable)
|
|
62
|
+
- GitHub issue templates for bug reports and feature requests
|
|
63
|
+
- Security policy for responsible disclosure
|
|
64
|
+
- Auto-labeling workflow for new issues
|
|
65
|
+
|
|
66
|
+
### Fixed
|
|
67
|
+
- UAT gaps and debug sessions now auto-resolve after gap-closure phase execution (#580)
|
|
68
|
+
- Fall back to ROADMAP.md when phase directory missing (#521)
|
|
69
|
+
- Template hook paths for OpenCode/Gemini runtimes (#585)
|
|
70
|
+
- Accept both `##` and `###` phase headers, detect malformed ROADMAPs (#598, #599)
|
|
71
|
+
- Use `{phase_num}` instead of ambiguous `{phase}` for filenames (#601)
|
|
72
|
+
- Add package.json to prevent ESM inheritance issues (#602)
|
|
73
|
+
|
|
74
|
+
## [1.18.0] - 2026-02-08
|
|
75
|
+
|
|
76
|
+
### Added
|
|
77
|
+
- `--auto` flag for `/gsd:new-project` — runs research → requirements → roadmap automatically after config questions. Expects idea document via @ reference (e.g., `/gsd:new-project --auto @prd.md`)
|
|
78
|
+
|
|
79
|
+
### Fixed
|
|
80
|
+
- Windows: SessionStart hook now spawns detached process correctly
|
|
81
|
+
- Windows: Replaced HEREDOC with literal newlines for git commit compatibility
|
|
82
|
+
- Research decision from `/gsd:new-milestone` now persists to config.json
|
|
83
|
+
|
|
84
|
+
## [1.17.0] - 2026-02-08
|
|
85
|
+
|
|
86
|
+
### Added
|
|
87
|
+
- **gsd-tools verification suite**: `verify plan-structure`, `verify phase-completeness`, `verify references`, `verify commits`, `verify artifacts`, `verify key-links` — deterministic structural checks
|
|
88
|
+
- **gsd-tools frontmatter CRUD**: `frontmatter get/set/merge/validate` — safe YAML frontmatter operations with schema validation
|
|
89
|
+
- **gsd-tools template fill**: `template fill summary/plan/verification` — pre-filled document skeletons
|
|
90
|
+
- **gsd-tools state progression**: `state advance-plan`, `state update-progress`, `state record-metric`, `state add-decision`, `state add-blocker`, `state resolve-blocker`, `state record-session` — automates STATE.md updates
|
|
91
|
+
- **Local patch preservation**: Installer now detects locally modified GSD files, backs them up to `gsd-local-patches/`, and creates a manifest for restoration
|
|
92
|
+
- `/gsd:reapply-patches` command to merge local modifications back after GSD updates
|
|
93
|
+
|
|
94
|
+
### Changed
|
|
95
|
+
- Agents (executor, planner, plan-checker, verifier) now use gsd-tools for state updates and verification instead of manual markdown parsing
|
|
96
|
+
- `/gsd:update` workflow now notifies about backed-up local patches and suggests `/gsd:reapply-patches`
|
|
97
|
+
|
|
98
|
+
### Fixed
|
|
99
|
+
- Added workaround for Claude Code `classifyHandoffIfNeeded` bug that causes false agent failures — execute-phase and quick workflows now spot-check actual output before reporting failure
|
|
100
|
+
|
|
101
|
+
## [1.16.0] - 2026-02-08
|
|
102
|
+
|
|
103
|
+
### Added
|
|
104
|
+
- 10 new gsd-tools CLI commands that replace manual AI orchestration of mechanical operations:
|
|
105
|
+
- `phase add <desc>` — append phase to roadmap + create directory
|
|
106
|
+
- `phase insert <after> <desc>` — insert decimal phase
|
|
107
|
+
- `phase remove <N> [--force]` — remove phase with full renumbering
|
|
108
|
+
- `phase complete <N>` — mark done, update state + roadmap, detect milestone end
|
|
109
|
+
- `roadmap analyze` — unified roadmap parser with disk status
|
|
110
|
+
- `milestone complete <ver> [--name]` — archive roadmap/requirements/audit
|
|
111
|
+
- `validate consistency` — check phase numbering and disk/roadmap sync
|
|
112
|
+
- `progress [json|table|bar]` — render progress in various formats
|
|
113
|
+
- `todo complete <file>` — move todo from pending to completed
|
|
114
|
+
- `scaffold [context|uat|verification|phase-dir]` — template generation
|
|
115
|
+
|
|
116
|
+
### Changed
|
|
117
|
+
- Workflows now delegate deterministic operations to gsd-tools CLI, reducing token usage and errors:
|
|
118
|
+
- `remove-phase.md`: 13 manual steps → 1 CLI call + confirm + commit
|
|
119
|
+
- `add-phase.md`: 6 manual steps → 1 CLI call + state update
|
|
120
|
+
- `insert-phase.md`: 7 manual steps → 1 CLI call + state update
|
|
121
|
+
- `complete-milestone.md`: archival delegated to `milestone complete`
|
|
122
|
+
- `progress.md`: roadmap parsing delegated to `roadmap analyze`
|
|
123
|
+
|
|
124
|
+
### Fixed
|
|
125
|
+
- Execute-phase now correctly spawns `gsd-executor` subagents instead of generic task agents
|
|
126
|
+
- `commit_docs=false` setting now respected in all `.planning/` commit paths (execute-plan, debugger, reference docs all route through gsd-tools CLI)
|
|
127
|
+
- Execute-phase orchestrator no longer bloats context by embedding file content — passes paths instead, letting subagents read in their fresh context
|
|
128
|
+
- Windows: Normalized backslash paths in gsd-tools invocations (contributed by @rmindel)
|
|
129
|
+
|
|
130
|
+
## [1.15.0] - 2026-02-08
|
|
131
|
+
|
|
132
|
+
### Changed
|
|
133
|
+
- Optimized workflow context loading to eliminate redundant file reads, reducing token usage by ~5,000-10,000 tokens per workflow execution
|
|
134
|
+
|
|
135
|
+
## [1.14.0] - 2026-02-08
|
|
136
|
+
|
|
137
|
+
### Added
|
|
138
|
+
- Context-optimizing parsing commands in gsd-tools (`phase-plan-index`, `state-snapshot`, `summary-extract`) — reduces agent context usage by returning structured JSON instead of raw file content
|
|
139
|
+
|
|
140
|
+
### Fixed
|
|
141
|
+
- Installer no longer deletes opencode.json on JSONC parse errors — now handles comments, trailing commas, and BOM correctly (#474)
|
|
142
|
+
|
|
143
|
+
## [1.13.0] - 2026-02-08
|
|
144
|
+
|
|
145
|
+
### Added
|
|
146
|
+
- `gsd-tools history-digest` — Compiles phase summaries into structured JSON for faster context loading
|
|
147
|
+
- `gsd-tools phases list` — Lists phase directories with filtering (replaces fragile `ls | sort -V` patterns)
|
|
148
|
+
- `gsd-tools roadmap get-phase` — Extracts phase sections from ROADMAP.md
|
|
149
|
+
- `gsd-tools phase next-decimal` — Calculates next decimal phase number for insert operations
|
|
150
|
+
- `gsd-tools state get/patch` — Atomic STATE.md field operations
|
|
151
|
+
- `gsd-tools template select` — Chooses summary template based on plan complexity
|
|
152
|
+
- Summary template variants: minimal (~30 lines), standard (~60 lines), complex (~100 lines)
|
|
153
|
+
- Test infrastructure with 22 tests covering new commands
|
|
154
|
+
|
|
155
|
+
### Changed
|
|
156
|
+
- Planner uses two-step context assembly: digest for selection, full SUMMARY for understanding
|
|
157
|
+
- Agents migrated from bash patterns to structured gsd-tools commands
|
|
158
|
+
- Nested YAML frontmatter parsing now handles `dependency-graph.provides`, `tech-stack.added` correctly
|
|
159
|
+
|
|
160
|
+
## [1.12.1] - 2026-02-08
|
|
161
|
+
|
|
162
|
+
### Changed
|
|
163
|
+
- Consolidated workflow initialization into compound `init` commands, reducing token usage and improving startup performance
|
|
164
|
+
- Updated 24 workflow and agent files to use single-call context gathering instead of multiple atomic calls
|
|
165
|
+
|
|
166
|
+
## [1.12.0] - 2026-02-07
|
|
167
|
+
|
|
168
|
+
### Changed
|
|
169
|
+
- **Architecture: Thin orchestrator pattern** — Commands now delegate to workflows, reducing command file size by ~75% and improving maintainability
|
|
170
|
+
- **Centralized utilities** — New `gsd-tools.cjs` (11 functions) replaces repetitive bash patterns across 50+ files
|
|
171
|
+
- **Token reduction** — ~22k characters removed from affected command/workflow/agent files
|
|
172
|
+
- **Condensed agent prompts** — Same behavior with fewer words (executor, planner, verifier, researcher agents)
|
|
173
|
+
|
|
174
|
+
### Added
|
|
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
|
|
176
|
+
|
|
177
|
+
## [1.11.2] - 2026-02-05
|
|
178
|
+
|
|
179
|
+
### Added
|
|
180
|
+
- Security section in README with Claude Code deny rules for sensitive files
|
|
181
|
+
|
|
182
|
+
### Changed
|
|
183
|
+
- Install respects `attribution.commit` setting for OpenCode compatibility (#286)
|
|
184
|
+
|
|
185
|
+
### Fixed
|
|
186
|
+
- **CRITICAL:** Prevent API keys from being committed via `/gsd:map-codebase` (#429)
|
|
187
|
+
- Enforce context fidelity in planning pipeline - agents now honor CONTEXT.md decisions (#326, #216, #206)
|
|
188
|
+
- Executor verifies task completion to prevent hallucinated success (#315)
|
|
189
|
+
- Auto-create `config.json` when missing during `/gsd:settings` (#264)
|
|
190
|
+
- `/gsd:update` respects local vs global install location
|
|
191
|
+
- Researcher writes RESEARCH.md regardless of `commit_docs` setting
|
|
192
|
+
- Statusline crash handling, color validation, git staging rules
|
|
193
|
+
- Statusline.js reference updated during install (#330)
|
|
194
|
+
- Parallelization config setting now respected (#379)
|
|
195
|
+
- ASCII box-drawing vs text content with diacritics (#289)
|
|
196
|
+
- Removed broken gsd-gemini link (404)
|
|
197
|
+
|
|
198
|
+
## [1.11.1] - 2026-01-31
|
|
199
|
+
|
|
200
|
+
### Added
|
|
201
|
+
- Git branching strategy configuration with three options:
|
|
202
|
+
- `none` (default): commit to current branch
|
|
203
|
+
- `phase`: create branch per phase (`gsd/phase-{N}-{slug}`)
|
|
204
|
+
- `milestone`: create branch per milestone (`gsd/{version}-{slug}`)
|
|
205
|
+
- Squash merge option at milestone completion (recommended) with merge-with-history alternative
|
|
206
|
+
- Context compliance verification dimension in plan checker — flags if plans contradict user decisions
|
|
207
|
+
|
|
208
|
+
### Fixed
|
|
209
|
+
- CONTEXT.md from `/gsd:discuss-phase` now properly flows to all downstream agents (researcher, planner, checker, revision loop)
|
|
210
|
+
|
|
211
|
+
## [1.10.1] - 2025-01-30
|
|
212
|
+
|
|
213
|
+
### Fixed
|
|
214
|
+
- Gemini CLI agent loading errors that prevented commands from executing
|
|
215
|
+
|
|
216
|
+
## [1.10.0] - 2026-01-29
|
|
217
|
+
|
|
218
|
+
### Added
|
|
219
|
+
- Native Gemini CLI support — install with `--gemini` flag or select from interactive menu
|
|
220
|
+
- New `--all` flag to install for Claude Code, OpenCode, and Gemini simultaneously
|
|
221
|
+
|
|
222
|
+
### Fixed
|
|
223
|
+
- Context bar now shows 100% at actual 80% limit (was scaling incorrectly)
|
|
224
|
+
|
|
225
|
+
## [1.9.12] - 2025-01-23
|
|
226
|
+
|
|
227
|
+
### Removed
|
|
228
|
+
- `/gsd:whats-new` command — use `/gsd:update` instead (shows changelog with cancel option)
|
|
229
|
+
|
|
230
|
+
### Fixed
|
|
231
|
+
- Restored auto-release GitHub Actions workflow
|
|
232
|
+
|
|
233
|
+
## [1.9.11] - 2026-01-23
|
|
234
|
+
|
|
235
|
+
### Changed
|
|
236
|
+
- Switched to manual npm publish workflow (removed GitHub Actions CI/CD)
|
|
237
|
+
|
|
238
|
+
### Fixed
|
|
239
|
+
- Discord badge now uses static format for reliable rendering
|
|
240
|
+
|
|
241
|
+
## [1.9.10] - 2026-01-23
|
|
242
|
+
|
|
243
|
+
### Added
|
|
244
|
+
- Discord community link shown in installer completion message
|
|
245
|
+
|
|
246
|
+
## [1.9.9] - 2026-01-23
|
|
247
|
+
|
|
248
|
+
### Added
|
|
249
|
+
- `/gsd:join-discord` command to quickly access the GSD Discord community invite link
|
|
250
|
+
|
|
251
|
+
## [1.9.8] - 2025-01-22
|
|
252
|
+
|
|
253
|
+
### Added
|
|
254
|
+
- Uninstall flag (`--uninstall`) to cleanly remove GSD from global or local installations
|
|
255
|
+
|
|
256
|
+
### Fixed
|
|
257
|
+
- Context file detection now matches filename variants (handles both `CONTEXT.md` and `{phase}-CONTEXT.md` patterns)
|
|
258
|
+
|
|
259
|
+
## [1.9.7] - 2026-01-22
|
|
260
|
+
|
|
261
|
+
### Fixed
|
|
262
|
+
- OpenCode installer now uses correct XDG-compliant config path (`~/.config/opencode/`) instead of `~/.opencode/`
|
|
263
|
+
- OpenCode commands use flat structure (`command/gsd-help.md`) matching OpenCode's expected format
|
|
264
|
+
- OpenCode permissions written to `~/.config/opencode/opencode.json`
|
|
265
|
+
|
|
266
|
+
## [1.9.6] - 2026-01-22
|
|
267
|
+
|
|
268
|
+
### Added
|
|
269
|
+
- Interactive runtime selection: installer now prompts to choose Claude Code, OpenCode, or both
|
|
270
|
+
- Native OpenCode support: `--opencode` flag converts GSD to OpenCode format automatically
|
|
271
|
+
- `--both` flag to install for both Claude Code and OpenCode in one command
|
|
272
|
+
- Auto-configures `~/.opencode.json` permissions for seamless GSD doc access
|
|
273
|
+
|
|
274
|
+
### Changed
|
|
275
|
+
- Installation flow now asks for runtime first, then location
|
|
276
|
+
- Updated README with new installation options
|
|
277
|
+
|
|
278
|
+
## [1.9.5] - 2025-01-22
|
|
279
|
+
|
|
280
|
+
### Fixed
|
|
281
|
+
- Subagents can now access MCP tools (Context7, etc.) - workaround for Claude Code bug #13898
|
|
282
|
+
- Installer: Escape/Ctrl+C now cancels instead of installing globally
|
|
283
|
+
- Installer: Fixed hook paths on Windows
|
|
284
|
+
- Removed stray backticks in `/gsd:new-project` output
|
|
285
|
+
|
|
286
|
+
### Changed
|
|
287
|
+
- Condensed verbose documentation in templates and workflows (-170 lines)
|
|
288
|
+
- Added CI/CD automation for releases
|
|
289
|
+
|
|
290
|
+
## [1.9.4] - 2026-01-21
|
|
291
|
+
|
|
292
|
+
### Changed
|
|
293
|
+
- Checkpoint automation now enforces automation-first principle: Claude starts servers, handles CLI installs, and fixes setup failures before presenting checkpoints to users
|
|
294
|
+
- Added server lifecycle protocol (port conflict handling, background process management)
|
|
295
|
+
- Added CLI auto-installation handling with safe-to-install matrix
|
|
296
|
+
- Added pre-checkpoint failure recovery (fix broken environment before asking user to verify)
|
|
297
|
+
- DRY refactor: checkpoints.md is now single source of truth for automation patterns
|
|
298
|
+
|
|
299
|
+
## [1.9.2] - 2025-01-21
|
|
300
|
+
|
|
301
|
+
### Removed
|
|
302
|
+
- **Codebase Intelligence System** — Removed due to overengineering concerns
|
|
303
|
+
- Deleted `/gsd:analyze-codebase` command
|
|
304
|
+
- Deleted `/gsd:query-intel` command
|
|
305
|
+
- Removed SQLite graph database and sql.js dependency (21MB)
|
|
306
|
+
- Removed intel hooks (gsd-intel-index.js, gsd-intel-session.js, gsd-intel-prune.js)
|
|
307
|
+
- Removed entity file generation and templates
|
|
308
|
+
|
|
309
|
+
### Fixed
|
|
310
|
+
- new-project now properly includes model_profile in config
|
|
311
|
+
|
|
312
|
+
## [1.9.0] - 2025-01-20
|
|
313
|
+
|
|
314
|
+
### Added
|
|
315
|
+
- **Model Profiles** — `/gsd:set-profile` for quality/balanced/budget agent configurations
|
|
316
|
+
- **Workflow Settings** — `/gsd:settings` command for toggling workflow behaviors interactively
|
|
317
|
+
|
|
318
|
+
### Fixed
|
|
319
|
+
- Orchestrators now inline file contents in Task prompts (fixes context issues with @ references)
|
|
320
|
+
- Tech debt from milestone audit addressed
|
|
321
|
+
- All hooks now use `gsd-` prefix for consistency (statusline.js → gsd-statusline.js)
|
|
322
|
+
|
|
323
|
+
## [1.8.0] - 2026-01-19
|
|
324
|
+
|
|
325
|
+
### Added
|
|
326
|
+
- Uncommitted planning mode: Keep `.planning/` local-only (not committed to git) via `planning.commit_docs: false` in config.json. Useful for OSS contributions, client work, or privacy preferences.
|
|
327
|
+
- `/gsd:new-project` now asks about git tracking during initial setup, letting you opt out of committing planning docs from the start
|
|
328
|
+
|
|
329
|
+
## [1.7.1] - 2026-01-19
|
|
330
|
+
|
|
331
|
+
### Fixed
|
|
332
|
+
- Quick task PLAN and SUMMARY files now use numbered prefix (`001-PLAN.md`, `001-SUMMARY.md`) matching regular phase naming convention
|
|
333
|
+
|
|
334
|
+
## [1.7.0] - 2026-01-19
|
|
335
|
+
|
|
336
|
+
### Added
|
|
337
|
+
- **Quick Mode** (`/gsd:quick`) — Execute small, ad-hoc tasks with GSD guarantees but skip optional agents (researcher, checker, verifier). Quick tasks live in `.planning/quick/` with their own tracking in STATE.md.
|
|
338
|
+
|
|
339
|
+
### Changed
|
|
340
|
+
- Improved progress bar calculation to clamp values within 0-100 range
|
|
341
|
+
- Updated documentation with comprehensive Quick Mode sections in help.md, README.md, and GSD-STYLE.md
|
|
342
|
+
|
|
343
|
+
### Fixed
|
|
344
|
+
- Console window flash on Windows when running hooks
|
|
345
|
+
- Empty `--config-dir` value validation
|
|
346
|
+
- Consistent `allowed-tools` YAML format across agents
|
|
347
|
+
- Corrected agent name in research-phase heading
|
|
348
|
+
- Removed hardcoded 2025 year from search query examples
|
|
349
|
+
- Removed dead gsd-researcher agent references
|
|
350
|
+
- Integrated unused reference files into documentation
|
|
351
|
+
|
|
352
|
+
### Housekeeping
|
|
353
|
+
- Added homepage and bugs fields to package.json
|
|
354
|
+
|
|
355
|
+
## [1.6.4] - 2026-01-17
|
|
356
|
+
|
|
357
|
+
### Fixed
|
|
358
|
+
- Installation on WSL2/non-TTY terminals now works correctly - detects non-interactive stdin and falls back to global install automatically
|
|
359
|
+
- Installation now verifies files were actually copied before showing success checkmarks
|
|
360
|
+
- Orphaned `gsd-notify.sh` hook from previous versions is now automatically removed during install (both file and settings.json registration)
|
|
361
|
+
|
|
362
|
+
## [1.6.3] - 2025-01-17
|
|
363
|
+
|
|
364
|
+
### Added
|
|
365
|
+
- `--gaps-only` flag for `/gsd:execute-phase` — executes only gap closure plans after verify-work finds issues, eliminating redundant state discovery
|
|
366
|
+
|
|
367
|
+
## [1.6.2] - 2025-01-17
|
|
368
|
+
|
|
369
|
+
### Changed
|
|
370
|
+
- README restructured with clearer 6-step workflow: init → discuss → plan → execute → verify → complete
|
|
371
|
+
- Discuss-phase and verify-work now emphasized as critical steps in core workflow documentation
|
|
372
|
+
- "Subagent Execution" section replaced with "Multi-Agent Orchestration" explaining thin orchestrator pattern and 30-40% context efficiency
|
|
373
|
+
- Brownfield instructions consolidated into callout at top of "How It Works" instead of separate section
|
|
374
|
+
- Phase directories now created at discuss/plan-phase instead of during roadmap creation
|
|
375
|
+
|
|
376
|
+
## [1.6.1] - 2025-01-17
|
|
377
|
+
|
|
378
|
+
### Changed
|
|
379
|
+
- Installer performs clean install of GSD folders, removing orphaned files from previous versions
|
|
380
|
+
- `/gsd:update` shows changelog and asks for confirmation before updating, with clear warning about what gets replaced
|
|
381
|
+
|
|
382
|
+
## [1.6.0] - 2026-01-17
|
|
383
|
+
|
|
384
|
+
### Changed
|
|
385
|
+
- **BREAKING:** Unified `/gsd:new-milestone` flow — now mirrors `/gsd:new-project` with questioning → research → requirements → roadmap in a single command
|
|
386
|
+
- Roadmapper agent now references templates instead of inline structures for easier maintenance
|
|
387
|
+
|
|
388
|
+
### Removed
|
|
389
|
+
- **BREAKING:** `/gsd:discuss-milestone` — consolidated into `/gsd:new-milestone`
|
|
390
|
+
- **BREAKING:** `/gsd:create-roadmap` — integrated into project/milestone flows
|
|
391
|
+
- **BREAKING:** `/gsd:define-requirements` — integrated into project/milestone flows
|
|
392
|
+
- **BREAKING:** `/gsd:research-project` — integrated into project/milestone flows
|
|
393
|
+
|
|
394
|
+
### Added
|
|
395
|
+
- `/gsd:verify-work` now includes next-step routing after verification completes
|
|
396
|
+
|
|
397
|
+
## [1.5.30] - 2026-01-17
|
|
398
|
+
|
|
399
|
+
### Fixed
|
|
400
|
+
- Output templates in `plan-phase`, `execute-phase`, and `audit-milestone` now render markdown correctly instead of showing literal backticks
|
|
401
|
+
- Next-step suggestions now consistently recommend `/gsd:discuss-phase` before `/gsd:plan-phase` across all routing paths
|
|
402
|
+
|
|
403
|
+
## [1.5.29] - 2025-01-16
|
|
404
|
+
|
|
405
|
+
### Changed
|
|
406
|
+
- Discuss-phase now uses domain-aware questioning with deeper probing for gray areas
|
|
407
|
+
|
|
408
|
+
### Fixed
|
|
409
|
+
- Windows hooks now work via Node.js conversion (statusline, update-check)
|
|
410
|
+
- Phase input normalization at command entry points
|
|
411
|
+
- Removed blocking notification popups (gsd-notify) on all platforms
|
|
412
|
+
|
|
413
|
+
## [1.5.28] - 2026-01-16
|
|
414
|
+
|
|
415
|
+
### Changed
|
|
416
|
+
- Consolidated milestone workflow into single command
|
|
417
|
+
- Merged domain expertise skills into agent configurations
|
|
418
|
+
- **BREAKING:** Removed `/gsd:execute-plan` command (use `/gsd:execute-phase` instead)
|
|
419
|
+
|
|
420
|
+
### Fixed
|
|
421
|
+
- Phase directory matching now handles both zero-padded (05-*) and unpadded (5-*) folder names
|
|
422
|
+
- Map-codebase agent output collection
|
|
423
|
+
|
|
424
|
+
## [1.5.27] - 2026-01-16
|
|
425
|
+
|
|
426
|
+
### Fixed
|
|
427
|
+
- Orchestrator corrections between executor completions are now committed (previously left uncommitted when orchestrator made small fixes between waves)
|
|
428
|
+
|
|
429
|
+
## [1.5.26] - 2026-01-16
|
|
430
|
+
|
|
431
|
+
### Fixed
|
|
432
|
+
- Revised plans now get committed after checker feedback (previously only initial plans were committed, leaving revisions uncommitted)
|
|
433
|
+
|
|
434
|
+
## [1.5.25] - 2026-01-16
|
|
435
|
+
|
|
436
|
+
### Fixed
|
|
437
|
+
- Stop notification hook no longer shows stale project state (now uses session-scoped todos only)
|
|
438
|
+
- Researcher agent now reliably loads CONTEXT.md from discuss-phase
|
|
439
|
+
|
|
440
|
+
## [1.5.24] - 2026-01-16
|
|
441
|
+
|
|
442
|
+
### Fixed
|
|
443
|
+
- Stop notification hook now correctly parses STATE.md fields (was always showing "Ready for input")
|
|
444
|
+
- Planner agent now reliably loads CONTEXT.md and RESEARCH.md files
|
|
445
|
+
|
|
446
|
+
## [1.5.23] - 2025-01-16
|
|
447
|
+
|
|
448
|
+
### Added
|
|
449
|
+
- Cross-platform completion notification hook (Mac/Linux/Windows alerts when Claude stops)
|
|
450
|
+
- Phase researcher now loads CONTEXT.md from discuss-phase to focus research on user decisions
|
|
451
|
+
|
|
452
|
+
### Fixed
|
|
453
|
+
- Consistent zero-padding for phase directories (01-name, not 1-name)
|
|
454
|
+
- Plan file naming: `{phase}-{plan}-PLAN.md` pattern restored across all agents
|
|
455
|
+
- Double-path bug in researcher git add command
|
|
456
|
+
- Removed `/gsd:research-phase` from next-step suggestions (use `/gsd:plan-phase` instead)
|
|
457
|
+
|
|
458
|
+
## [1.5.22] - 2025-01-16
|
|
459
|
+
|
|
460
|
+
### Added
|
|
461
|
+
- Statusline update indicator — shows `⬆ /gsd:update` when a new version is available
|
|
462
|
+
|
|
463
|
+
### Fixed
|
|
464
|
+
- Planner now updates ROADMAP.md placeholders after planning completes
|
|
465
|
+
|
|
466
|
+
## [1.5.21] - 2026-01-16
|
|
467
|
+
|
|
468
|
+
### Added
|
|
469
|
+
- GSD brand system for consistent UI (checkpoint boxes, stage banners, status symbols)
|
|
470
|
+
- Research synthesizer agent that consolidates parallel research into SUMMARY.md
|
|
471
|
+
|
|
472
|
+
### Changed
|
|
473
|
+
- **Unified `/gsd:new-project` flow** — Single command now handles questions → research → requirements → roadmap (~10 min)
|
|
474
|
+
- Simplified README to reflect streamlined workflow: new-project → plan-phase → execute-phase
|
|
475
|
+
- Added optional `/gsd:discuss-phase` documentation for UI/UX/behavior decisions before planning
|
|
476
|
+
|
|
477
|
+
### Fixed
|
|
478
|
+
- verify-work now shows clear checkpoint box with action prompt ("Type 'pass' or describe what's wrong")
|
|
479
|
+
- Planner uses correct `{phase}-{plan}-PLAN.md` naming convention
|
|
480
|
+
- Planner no longer surfaces internal `user_setup` in output
|
|
481
|
+
- Research synthesizer commits all research files together (not individually)
|
|
482
|
+
- Project researcher agent can no longer commit (orchestrator handles commits)
|
|
483
|
+
- Roadmap requires explicit user approval before committing
|
|
484
|
+
|
|
485
|
+
## [1.5.20] - 2026-01-16
|
|
486
|
+
|
|
487
|
+
### Fixed
|
|
488
|
+
- Research no longer skipped based on premature "Research: Unlikely" predictions made during roadmap creation. The `--skip-research` flag provides explicit control when needed.
|
|
489
|
+
|
|
490
|
+
### Removed
|
|
491
|
+
- `Research: Likely/Unlikely` fields from roadmap phase template
|
|
492
|
+
- `detect_research_needs` step from roadmap creation workflow
|
|
493
|
+
- Roadmap-based research skip logic from planner agent
|
|
494
|
+
|
|
495
|
+
## [1.5.19] - 2026-01-16
|
|
496
|
+
|
|
497
|
+
### Changed
|
|
498
|
+
- `/gsd:discuss-phase` redesigned with intelligent gray area analysis — analyzes phase to identify discussable areas (UI, UX, Behavior, etc.), presents multi-select for user control, deep-dives each area with focused questioning
|
|
499
|
+
- Explicit scope guardrail prevents scope creep during discussion — captures deferred ideas without acting on them
|
|
500
|
+
- CONTEXT.md template restructured for decisions (domain boundary, decisions by category, Claude's discretion, deferred ideas)
|
|
501
|
+
- Downstream awareness: discuss-phase now explicitly documents that CONTEXT.md feeds researcher and planner agents
|
|
502
|
+
- `/gsd:plan-phase` now integrates research — spawns `gsd-phase-researcher` before planning unless research exists or `--skip-research` flag used
|
|
503
|
+
|
|
504
|
+
## [1.5.18] - 2026-01-16
|
|
505
|
+
|
|
506
|
+
### Added
|
|
507
|
+
- **Plan verification loop** — Plans are now verified before execution with a planner → checker → revise cycle
|
|
508
|
+
- New `gsd-plan-checker` agent (744 lines) validates plans will achieve phase goals
|
|
509
|
+
- Six verification dimensions: requirement coverage, task completeness, dependency correctness, key links, scope sanity, must_haves derivation
|
|
510
|
+
- Max 3 revision iterations before user escalation
|
|
511
|
+
- `--skip-verify` flag for experienced users who want to bypass verification
|
|
512
|
+
- **Dedicated planner agent** — `gsd-planner` (1,319 lines) consolidates all planning expertise
|
|
513
|
+
- Complete methodology: discovery levels, task breakdown, dependency graphs, scope estimation, goal-backward analysis
|
|
514
|
+
- Revision mode for handling checker feedback
|
|
515
|
+
- TDD integration and checkpoint patterns
|
|
516
|
+
- **Statusline integration** — Context usage, model, and current task display
|
|
517
|
+
|
|
518
|
+
### Changed
|
|
519
|
+
- `/gsd:plan-phase` refactored to thin orchestrator pattern (310 lines)
|
|
520
|
+
- Spawns `gsd-planner` for planning, `gsd-plan-checker` for verification
|
|
521
|
+
- User sees status between agent spawns (not a black box)
|
|
522
|
+
- Planning references deprecated with redirects to `gsd-planner` agent sections
|
|
523
|
+
- `plan-format.md`, `scope-estimation.md`, `goal-backward.md`, `principles.md`
|
|
524
|
+
- `workflows/plan-phase.md`
|
|
525
|
+
|
|
526
|
+
### Fixed
|
|
527
|
+
- Removed zombie `gsd-milestone-auditor` agent (was accidentally re-added after correct deletion)
|
|
528
|
+
|
|
529
|
+
### Removed
|
|
530
|
+
- Phase 99 throwaway test files
|
|
531
|
+
|
|
532
|
+
## [1.5.17] - 2026-01-15
|
|
533
|
+
|
|
534
|
+
### Added
|
|
535
|
+
- New `/gsd:update` command — check for updates, install, and display changelog of what changed (better UX than raw `npx get-shit-done-cc`)
|
|
536
|
+
|
|
537
|
+
## [1.5.16] - 2026-01-15
|
|
538
|
+
|
|
539
|
+
### Added
|
|
540
|
+
- New `gsd-researcher` agent (915 lines) with comprehensive research methodology, 4 research modes (ecosystem, feasibility, implementation, comparison), source hierarchy, and verification protocols
|
|
541
|
+
- New `gsd-debugger` agent (990 lines) with scientific debugging methodology, hypothesis testing, and 7+ investigation techniques
|
|
542
|
+
- New `gsd-codebase-mapper` agent for brownfield codebase analysis
|
|
543
|
+
- Research subagent prompt template for context-only spawning
|
|
544
|
+
|
|
545
|
+
### Changed
|
|
546
|
+
- `/gsd:research-phase` refactored to thin orchestrator — now injects rich context (key insight framing, downstream consumer info, quality gates) to gsd-researcher agent
|
|
547
|
+
- `/gsd:research-project` refactored to spawn 4 parallel gsd-researcher agents with milestone-aware context (greenfield vs v1.1+) and roadmap implications guidance
|
|
548
|
+
- `/gsd:debug` refactored to thin orchestrator (149 lines) — spawns gsd-debugger agent with full debugging expertise
|
|
549
|
+
- `/gsd:new-milestone` now explicitly references MILESTONE-CONTEXT.md
|
|
550
|
+
|
|
551
|
+
### Deprecated
|
|
552
|
+
- `workflows/research-phase.md` — consolidated into gsd-researcher agent
|
|
553
|
+
- `workflows/research-project.md` — consolidated into gsd-researcher agent
|
|
554
|
+
- `workflows/debug.md` — consolidated into gsd-debugger agent
|
|
555
|
+
- `references/research-pitfalls.md` — consolidated into gsd-researcher agent
|
|
556
|
+
- `references/debugging.md` — consolidated into gsd-debugger agent
|
|
557
|
+
- `references/debug-investigation.md` — consolidated into gsd-debugger agent
|
|
558
|
+
|
|
559
|
+
## [1.5.15] - 2025-01-15
|
|
560
|
+
|
|
561
|
+
### Fixed
|
|
562
|
+
- **Agents now install correctly** — The `agents/` folder (gsd-executor, gsd-verifier, gsd-integration-checker, gsd-milestone-auditor) was missing from npm package, now included
|
|
563
|
+
|
|
564
|
+
### Changed
|
|
565
|
+
- Consolidated `/gsd:plan-fix` into `/gsd:plan-phase --gaps` for simpler workflow
|
|
566
|
+
- UAT file writes now batched instead of per-response for better performance
|
|
567
|
+
|
|
568
|
+
## [1.5.14] - 2025-01-15
|
|
569
|
+
|
|
570
|
+
### Fixed
|
|
571
|
+
- Plan-phase now always routes to `/gsd:execute-phase` after planning, even for single-plan phases
|
|
572
|
+
|
|
573
|
+
## [1.5.13] - 2026-01-15
|
|
574
|
+
|
|
575
|
+
### Fixed
|
|
576
|
+
- `/gsd:new-milestone` now presents research and requirements paths as equal options, matching `/gsd:new-project` format
|
|
577
|
+
|
|
578
|
+
## [1.5.12] - 2025-01-15
|
|
579
|
+
|
|
580
|
+
### Changed
|
|
581
|
+
- **Milestone cycle reworked for proper requirements flow:**
|
|
582
|
+
- `complete-milestone` now archives AND deletes ROADMAP.md and REQUIREMENTS.md (fresh for next milestone)
|
|
583
|
+
- `new-milestone` is now a "brownfield new-project" — updates PROJECT.md with new goals, routes to define-requirements
|
|
584
|
+
- `discuss-milestone` is now required before `new-milestone` (creates context file)
|
|
585
|
+
- `research-project` is milestone-aware — focuses on new features, ignores already-validated requirements
|
|
586
|
+
- `create-roadmap` continues phase numbering from previous milestone
|
|
587
|
+
- Flow: complete → discuss → new-milestone → research → requirements → roadmap
|
|
588
|
+
|
|
589
|
+
### Fixed
|
|
590
|
+
- `MILESTONE-AUDIT.md` now versioned as `v{version}-MILESTONE-AUDIT.md` and archived on completion
|
|
591
|
+
- `progress` now correctly routes to `/gsd:discuss-milestone` when between milestones (Route F)
|
|
592
|
+
|
|
593
|
+
## [1.5.11] - 2025-01-15
|
|
594
|
+
|
|
595
|
+
### Changed
|
|
596
|
+
- Verifier reuses previous must-haves on re-verification instead of re-deriving, focuses deep verification on failed items with quick regression checks on passed items
|
|
597
|
+
|
|
598
|
+
## [1.5.10] - 2025-01-15
|
|
599
|
+
|
|
600
|
+
### Changed
|
|
601
|
+
- Milestone audit now reads existing phase VERIFICATION.md files instead of re-verifying each phase, aggregates tech debt and deferred gaps, adds `tech_debt` status for non-blocking accumulated debt
|
|
602
|
+
|
|
603
|
+
### Fixed
|
|
604
|
+
- VERIFICATION.md now included in phase completion commit alongside ROADMAP.md, STATE.md, and REQUIREMENTS.md
|
|
605
|
+
|
|
606
|
+
## [1.5.9] - 2025-01-15
|
|
607
|
+
|
|
608
|
+
### Added
|
|
609
|
+
- Milestone audit system (`/gsd:audit-milestone`) for verifying milestone completion with parallel verification agents
|
|
610
|
+
|
|
611
|
+
### Changed
|
|
612
|
+
- Checkpoint display format improved with box headers and unmissable "→ YOUR ACTION:" prompts
|
|
613
|
+
- Subagent colors updated (executor: yellow, integration-checker: blue)
|
|
614
|
+
- Execute-phase now recommends `/gsd:audit-milestone` when milestone completes
|
|
615
|
+
|
|
616
|
+
### Fixed
|
|
617
|
+
- Research-phase no longer gatekeeps by domain type
|
|
618
|
+
|
|
619
|
+
### Removed
|
|
620
|
+
- Domain expertise feature (`~/.claude/skills/expertise/`) - was personal tooling not available to other users
|
|
621
|
+
|
|
622
|
+
## [1.5.8] - 2025-01-15
|
|
623
|
+
|
|
624
|
+
### Added
|
|
625
|
+
- Verification loop: When gaps are found, verifier generates fix plans that execute automatically before re-verifying
|
|
626
|
+
|
|
627
|
+
### Changed
|
|
628
|
+
- `gsd-executor` subagent color changed from red to blue
|
|
629
|
+
|
|
630
|
+
## [1.5.7] - 2025-01-15
|
|
631
|
+
|
|
632
|
+
### Added
|
|
633
|
+
- `gsd-executor` subagent: Dedicated agent for plan execution with full workflow logic built-in
|
|
634
|
+
- `gsd-verifier` subagent: Goal-backward verification that checks if phase goals are actually achieved (not just tasks completed)
|
|
635
|
+
- Phase verification: Automatic verification runs when a phase completes to catch stubs and incomplete implementations
|
|
636
|
+
- Goal-backward planning reference: Documentation for deriving must-haves from goals
|
|
637
|
+
|
|
638
|
+
### Changed
|
|
639
|
+
- execute-plan and execute-phase now spawn `gsd-executor` subagent instead of using inline workflow
|
|
640
|
+
- Roadmap and planning workflows enhanced with goal-backward analysis
|
|
641
|
+
|
|
642
|
+
### Removed
|
|
643
|
+
- Obsolete templates (`checkpoint-resume.md`, `subagent-task-prompt.md`) — logic now lives in subagents
|
|
644
|
+
|
|
645
|
+
### Fixed
|
|
646
|
+
- Updated remaining `general-purpose` subagent references to use `gsd-executor`
|
|
647
|
+
|
|
648
|
+
## [1.5.6] - 2025-01-15
|
|
649
|
+
|
|
650
|
+
### Changed
|
|
651
|
+
- README: Separated flow into distinct steps (1 → 1.5 → 2 → 3 → 4 → 5) making `research-project` clearly optional and `define-requirements` required
|
|
652
|
+
- README: Research recommended for quality; skip only for speed
|
|
653
|
+
|
|
654
|
+
### Fixed
|
|
655
|
+
- execute-phase: Phase metadata (timing, wave info) now bundled into single commit instead of separate commits
|
|
656
|
+
|
|
657
|
+
## [1.5.5] - 2025-01-15
|
|
658
|
+
|
|
659
|
+
### Changed
|
|
660
|
+
- README now documents the `research-project` → `define-requirements` flow (optional but recommended before `create-roadmap`)
|
|
661
|
+
- Commands section reorganized into 7 grouped tables (Setup, Execution, Verification, Milestones, Phase Management, Session, Utilities) for easier scanning
|
|
662
|
+
- Context Engineering table now includes `research/` and `REQUIREMENTS.md`
|
|
663
|
+
|
|
664
|
+
## [1.5.4] - 2025-01-15
|
|
665
|
+
|
|
666
|
+
### Changed
|
|
667
|
+
- Research phase now loads REQUIREMENTS.md to focus research on concrete requirements (e.g., "email verification") rather than just high-level roadmap descriptions
|
|
668
|
+
|
|
669
|
+
## [1.5.3] - 2025-01-15
|
|
670
|
+
|
|
671
|
+
### Changed
|
|
672
|
+
- **execute-phase narration**: Orchestrator now describes what each wave builds before spawning agents, and summarizes what was built after completion. No more staring at opaque status updates.
|
|
673
|
+
- **new-project flow**: Now offers two paths — research first (recommended) or define requirements directly (fast path for familiar domains)
|
|
674
|
+
- **define-requirements**: Works without prior research. Gathers requirements through conversation when FEATURES.md doesn't exist.
|
|
675
|
+
|
|
676
|
+
### Removed
|
|
677
|
+
- Dead `/gsd:status` command (referenced abandoned background agent model)
|
|
678
|
+
- Unused `agent-history.md` template
|
|
679
|
+
- `_archive/` directory with old execute-phase version
|
|
680
|
+
|
|
681
|
+
## [1.5.2] - 2026-01-15
|
|
682
|
+
|
|
683
|
+
### Added
|
|
684
|
+
- Requirements traceability: roadmap phases now include `Requirements:` field listing which REQ-IDs they cover
|
|
685
|
+
- plan-phase loads REQUIREMENTS.md and shows phase-specific requirements before planning
|
|
686
|
+
- Requirements automatically marked Complete when phase finishes
|
|
687
|
+
|
|
688
|
+
### Changed
|
|
689
|
+
- Workflow preferences (mode, depth, parallelization) now asked in single prompt instead of 3 separate questions
|
|
690
|
+
- define-requirements shows full requirements list inline before commit (not just counts)
|
|
691
|
+
- Research-project and workflow aligned to both point to define-requirements as next step
|
|
692
|
+
|
|
693
|
+
### Fixed
|
|
694
|
+
- Requirements status now updated by orchestrator (commands) instead of subagent workflow, which couldn't determine phase completion
|
|
695
|
+
|
|
696
|
+
## [1.5.1] - 2026-01-14
|
|
697
|
+
|
|
698
|
+
### Changed
|
|
699
|
+
- Research agents write their own files directly (STACK.md, FEATURES.md, ARCHITECTURE.md, PITFALLS.md) instead of returning results to orchestrator
|
|
700
|
+
- Slimmed principles.md and load it dynamically in core commands
|
|
701
|
+
|
|
702
|
+
## [1.5.0] - 2026-01-14
|
|
703
|
+
|
|
704
|
+
### Added
|
|
705
|
+
- New `/gsd:research-project` command for pre-roadmap ecosystem research — spawns parallel agents to investigate stack, features, architecture, and pitfalls before you commit to a roadmap
|
|
706
|
+
- New `/gsd:define-requirements` command for scoping v1 requirements from research findings — transforms "what exists in this domain" into "what we're building"
|
|
707
|
+
- Requirements traceability: phases now map to specific requirement IDs with 100% coverage validation
|
|
708
|
+
|
|
709
|
+
### Changed
|
|
710
|
+
- **BREAKING:** New project flow is now: `new-project → research-project → define-requirements → create-roadmap`
|
|
711
|
+
- Roadmap creation now requires REQUIREMENTS.md and validates all v1 requirements are mapped to phases
|
|
712
|
+
- Simplified questioning in new-project to four essentials (vision, core priority, boundaries, constraints)
|
|
713
|
+
|
|
714
|
+
## [1.4.29] - 2026-01-14
|
|
715
|
+
|
|
716
|
+
### Removed
|
|
717
|
+
- Deleted obsolete `_archive/execute-phase.md` and `status.md` commands
|
|
718
|
+
|
|
719
|
+
## [1.4.28] - 2026-01-14
|
|
720
|
+
|
|
721
|
+
### Fixed
|
|
722
|
+
- Restored comprehensive checkpoint documentation with full examples for verification, decisions, and auth gates
|
|
723
|
+
- Fixed execute-plan command to use fresh continuation agents instead of broken resume pattern
|
|
724
|
+
- Rich checkpoint presentation formats now documented for all three checkpoint types
|
|
725
|
+
|
|
726
|
+
### Changed
|
|
727
|
+
- Slimmed execute-phase command to properly delegate checkpoint handling to workflow
|
|
728
|
+
|
|
729
|
+
## [1.4.27] - 2025-01-14
|
|
730
|
+
|
|
731
|
+
### Fixed
|
|
732
|
+
- Restored "what to do next" commands after plan/phase execution completes — orchestrator pattern conversion had inadvertently removed the copy/paste-ready next-step routing
|
|
733
|
+
|
|
734
|
+
## [1.4.26] - 2026-01-14
|
|
735
|
+
|
|
736
|
+
### Added
|
|
737
|
+
- Full changelog history backfilled from git (66 historical versions from 1.0.0 to 1.4.23)
|
|
738
|
+
|
|
739
|
+
## [1.4.25] - 2026-01-14
|
|
740
|
+
|
|
741
|
+
### Added
|
|
742
|
+
- New `/gsd:whats-new` command shows changes since your installed version
|
|
743
|
+
- VERSION file written during installation for version tracking
|
|
744
|
+
- CHANGELOG.md now included in package installation
|
|
745
|
+
|
|
746
|
+
## [1.4.24] - 2026-01-14
|
|
747
|
+
|
|
748
|
+
### Added
|
|
749
|
+
- USER-SETUP.md template for external service configuration
|
|
750
|
+
|
|
751
|
+
### Removed
|
|
752
|
+
- **BREAKING:** ISSUES.md system (replaced by phase-scoped UAT issues and TODOs)
|
|
753
|
+
|
|
754
|
+
## [1.4.23] - 2026-01-14
|
|
755
|
+
|
|
756
|
+
### Changed
|
|
757
|
+
- Removed dead ISSUES.md system code
|
|
758
|
+
|
|
759
|
+
## [1.4.22] - 2026-01-14
|
|
760
|
+
|
|
761
|
+
### Added
|
|
762
|
+
- Subagent isolation for debug investigations with checkpoint support
|
|
763
|
+
|
|
764
|
+
### Fixed
|
|
765
|
+
- DEBUG_DIR path constant to prevent typos in debug workflow
|
|
766
|
+
|
|
767
|
+
## [1.4.21] - 2026-01-14
|
|
768
|
+
|
|
769
|
+
### Fixed
|
|
770
|
+
- SlashCommand tool added to plan-fix allowed-tools
|
|
771
|
+
|
|
772
|
+
## [1.4.20] - 2026-01-14
|
|
773
|
+
|
|
774
|
+
### Fixed
|
|
775
|
+
- Standardized debug file naming convention
|
|
776
|
+
- Debug workflow now invokes execute-plan correctly
|
|
777
|
+
|
|
778
|
+
## [1.4.19] - 2026-01-14
|
|
779
|
+
|
|
780
|
+
### Fixed
|
|
781
|
+
- Auto-diagnose issues instead of offering choice in plan-fix
|
|
782
|
+
|
|
783
|
+
## [1.4.18] - 2026-01-14
|
|
784
|
+
|
|
785
|
+
### Added
|
|
786
|
+
- Parallel diagnosis before plan-fix execution
|
|
787
|
+
|
|
788
|
+
## [1.4.17] - 2026-01-14
|
|
789
|
+
|
|
790
|
+
### Changed
|
|
791
|
+
- Redesigned verify-work as conversational UAT with persistent state
|
|
792
|
+
|
|
793
|
+
## [1.4.16] - 2026-01-13
|
|
794
|
+
|
|
795
|
+
### Added
|
|
796
|
+
- Pre-execution summary for interactive mode in execute-plan
|
|
797
|
+
- Pre-computed wave numbers at plan time
|
|
798
|
+
|
|
799
|
+
## [1.4.15] - 2026-01-13
|
|
800
|
+
|
|
801
|
+
### Added
|
|
802
|
+
- Context rot explanation to README header
|
|
803
|
+
|
|
804
|
+
## [1.4.14] - 2026-01-13
|
|
805
|
+
|
|
806
|
+
### Changed
|
|
807
|
+
- YOLO mode is now recommended default in new-project
|
|
808
|
+
|
|
809
|
+
## [1.4.13] - 2026-01-13
|
|
810
|
+
|
|
811
|
+
### Fixed
|
|
812
|
+
- Brownfield flow documentation
|
|
813
|
+
- Removed deprecated resume-task references
|
|
814
|
+
|
|
815
|
+
## [1.4.12] - 2026-01-13
|
|
816
|
+
|
|
817
|
+
### Changed
|
|
818
|
+
- execute-phase is now recommended as primary execution command
|
|
819
|
+
|
|
820
|
+
## [1.4.11] - 2026-01-13
|
|
821
|
+
|
|
822
|
+
### Fixed
|
|
823
|
+
- Checkpoints now use fresh continuation agents instead of resume
|
|
824
|
+
|
|
825
|
+
## [1.4.10] - 2026-01-13
|
|
826
|
+
|
|
827
|
+
### Changed
|
|
828
|
+
- execute-plan converted to orchestrator pattern for performance
|
|
829
|
+
|
|
830
|
+
## [1.4.9] - 2026-01-13
|
|
831
|
+
|
|
832
|
+
### Changed
|
|
833
|
+
- Removed subagent-only context from execute-phase orchestrator
|
|
834
|
+
|
|
835
|
+
### Fixed
|
|
836
|
+
- Removed "what's out of scope" question from discuss-phase
|
|
837
|
+
|
|
838
|
+
## [1.4.8] - 2026-01-13
|
|
839
|
+
|
|
840
|
+
### Added
|
|
841
|
+
- TDD reasoning explanation restored to plan-phase docs
|
|
842
|
+
|
|
843
|
+
## [1.4.7] - 2026-01-13
|
|
844
|
+
|
|
845
|
+
### Added
|
|
846
|
+
- Project state loading before execution in execute-phase
|
|
847
|
+
|
|
848
|
+
### Fixed
|
|
849
|
+
- Parallel execution marked as recommended, not experimental
|
|
850
|
+
|
|
851
|
+
## [1.4.6] - 2026-01-13
|
|
852
|
+
|
|
853
|
+
### Added
|
|
854
|
+
- Checkpoint pause/resume for spawned agents
|
|
855
|
+
- Deviation rules, commit rules, and workflow references to execute-phase
|
|
856
|
+
|
|
857
|
+
## [1.4.5] - 2026-01-13
|
|
858
|
+
|
|
859
|
+
### Added
|
|
860
|
+
- Parallel-first planning with dependency graphs
|
|
861
|
+
- Checkpoint-resume capability for long-running phases
|
|
862
|
+
- `.claude/rules/` directory for auto-loaded contribution rules
|
|
863
|
+
|
|
864
|
+
### Changed
|
|
865
|
+
- execute-phase uses wave-based blocking execution
|
|
866
|
+
|
|
867
|
+
## [1.4.4] - 2026-01-13
|
|
868
|
+
|
|
869
|
+
### Fixed
|
|
870
|
+
- Inline listing for multiple active debug sessions
|
|
871
|
+
|
|
872
|
+
## [1.4.3] - 2026-01-13
|
|
873
|
+
|
|
874
|
+
### Added
|
|
875
|
+
- `/gsd:debug` command for systematic debugging with persistent state
|
|
876
|
+
|
|
877
|
+
## [1.4.2] - 2026-01-13
|
|
878
|
+
|
|
879
|
+
### Fixed
|
|
880
|
+
- Installation verification step clarification
|
|
881
|
+
|
|
882
|
+
## [1.4.1] - 2026-01-13
|
|
883
|
+
|
|
884
|
+
### Added
|
|
885
|
+
- Parallel phase execution via `/gsd:execute-phase`
|
|
886
|
+
- Parallel-aware planning in `/gsd:plan-phase`
|
|
887
|
+
- `/gsd:status` command for parallel agent monitoring
|
|
888
|
+
- Parallelization configuration in config.json
|
|
889
|
+
- Wave-based parallel execution with dependency graphs
|
|
890
|
+
|
|
891
|
+
### Changed
|
|
892
|
+
- Renamed `execute-phase.md` workflow to `execute-plan.md` for clarity
|
|
893
|
+
- Plan frontmatter now includes `wave`, `depends_on`, `files_modified`, `autonomous`
|
|
894
|
+
|
|
895
|
+
## [1.4.0] - 2026-01-12
|
|
896
|
+
|
|
897
|
+
### Added
|
|
898
|
+
- Full parallel phase execution system
|
|
899
|
+
- Parallelization frontmatter in plan templates
|
|
900
|
+
- Dependency analysis for parallel task scheduling
|
|
901
|
+
- Agent history schema v1.2 with parallel execution support
|
|
902
|
+
|
|
903
|
+
### Changed
|
|
904
|
+
- Plans can now specify wave numbers and dependencies
|
|
905
|
+
- execute-phase orchestrates multiple subagents in waves
|
|
906
|
+
|
|
907
|
+
## [1.3.34] - 2026-01-11
|
|
908
|
+
|
|
909
|
+
### Added
|
|
910
|
+
- `/gsd:add-todo` and `/gsd:check-todos` for mid-session idea capture
|
|
911
|
+
|
|
912
|
+
## [1.3.33] - 2026-01-11
|
|
913
|
+
|
|
914
|
+
### Fixed
|
|
915
|
+
- Consistent zero-padding for decimal phase numbers (e.g., 01.1)
|
|
916
|
+
|
|
917
|
+
### Changed
|
|
918
|
+
- Removed obsolete .claude-plugin directory
|
|
919
|
+
|
|
920
|
+
## [1.3.32] - 2026-01-10
|
|
921
|
+
|
|
922
|
+
### Added
|
|
923
|
+
- `/gsd:resume-task` for resuming interrupted subagent executions
|
|
924
|
+
|
|
925
|
+
## [1.3.31] - 2026-01-08
|
|
926
|
+
|
|
927
|
+
### Added
|
|
928
|
+
- Planning principles for security, performance, and observability
|
|
929
|
+
- Pro patterns section in README
|
|
930
|
+
|
|
931
|
+
## [1.3.30] - 2026-01-08
|
|
932
|
+
|
|
933
|
+
### Added
|
|
934
|
+
- verify-work option surfaces after plan execution
|
|
935
|
+
|
|
936
|
+
## [1.3.29] - 2026-01-08
|
|
937
|
+
|
|
938
|
+
### Added
|
|
939
|
+
- `/gsd:verify-work` for conversational UAT validation
|
|
940
|
+
- `/gsd:plan-fix` for fixing UAT issues
|
|
941
|
+
- UAT issues template
|
|
942
|
+
|
|
943
|
+
## [1.3.28] - 2026-01-07
|
|
944
|
+
|
|
945
|
+
### Added
|
|
946
|
+
- `--config-dir` CLI argument for multi-account setups
|
|
947
|
+
- `/gsd:remove-phase` command
|
|
948
|
+
|
|
949
|
+
### Fixed
|
|
950
|
+
- Validation for --config-dir edge cases
|
|
951
|
+
|
|
952
|
+
## [1.3.27] - 2026-01-07
|
|
953
|
+
|
|
954
|
+
### Added
|
|
955
|
+
- Recommended permissions mode documentation
|
|
956
|
+
|
|
957
|
+
### Fixed
|
|
958
|
+
- Mandatory verification enforced before phase/milestone completion routing
|
|
959
|
+
|
|
960
|
+
## [1.3.26] - 2026-01-06
|
|
961
|
+
|
|
962
|
+
### Added
|
|
963
|
+
- Claude Code marketplace plugin support
|
|
964
|
+
|
|
965
|
+
### Fixed
|
|
966
|
+
- Phase artifacts now committed when created
|
|
967
|
+
|
|
968
|
+
## [1.3.25] - 2026-01-06
|
|
969
|
+
|
|
970
|
+
### Fixed
|
|
971
|
+
- Milestone discussion context persists across /clear
|
|
972
|
+
|
|
973
|
+
## [1.3.24] - 2026-01-06
|
|
974
|
+
|
|
975
|
+
### Added
|
|
976
|
+
- `CLAUDE_CONFIG_DIR` environment variable support
|
|
977
|
+
|
|
978
|
+
## [1.3.23] - 2026-01-06
|
|
979
|
+
|
|
980
|
+
### Added
|
|
981
|
+
- Non-interactive install flags (`--global`, `--local`) for Docker/CI
|
|
982
|
+
|
|
983
|
+
## [1.3.22] - 2026-01-05
|
|
984
|
+
|
|
985
|
+
### Changed
|
|
986
|
+
- Removed unused auto.md command
|
|
987
|
+
|
|
988
|
+
## [1.3.21] - 2026-01-05
|
|
989
|
+
|
|
990
|
+
### Changed
|
|
991
|
+
- TDD features use dedicated plans for full context quality
|
|
992
|
+
|
|
993
|
+
## [1.3.20] - 2026-01-05
|
|
994
|
+
|
|
995
|
+
### Added
|
|
996
|
+
- Per-task atomic commits for better AI observability
|
|
997
|
+
|
|
998
|
+
## [1.3.19] - 2026-01-05
|
|
999
|
+
|
|
1000
|
+
### Fixed
|
|
1001
|
+
- Clarified create-milestone.md file locations with explicit instructions
|
|
1002
|
+
|
|
1003
|
+
## [1.3.18] - 2026-01-05
|
|
1004
|
+
|
|
1005
|
+
### Added
|
|
1006
|
+
- YAML frontmatter schema with dependency graph metadata
|
|
1007
|
+
- Intelligent context assembly via frontmatter dependency graph
|
|
1008
|
+
|
|
1009
|
+
## [1.3.17] - 2026-01-04
|
|
1010
|
+
|
|
1011
|
+
### Fixed
|
|
1012
|
+
- Clarified depth controls compression, not inflation in planning
|
|
1013
|
+
|
|
1014
|
+
## [1.3.16] - 2026-01-04
|
|
1015
|
+
|
|
1016
|
+
### Added
|
|
1017
|
+
- Depth parameter for planning thoroughness (`--depth=1-5`)
|
|
1018
|
+
|
|
1019
|
+
## [1.3.15] - 2026-01-01
|
|
1020
|
+
|
|
1021
|
+
### Fixed
|
|
1022
|
+
- TDD reference loaded directly in commands
|
|
1023
|
+
|
|
1024
|
+
## [1.3.14] - 2025-12-31
|
|
1025
|
+
|
|
1026
|
+
### Added
|
|
1027
|
+
- TDD integration with detection, annotation, and execution flow
|
|
1028
|
+
|
|
1029
|
+
## [1.3.13] - 2025-12-29
|
|
1030
|
+
|
|
1031
|
+
### Fixed
|
|
1032
|
+
- Restored deterministic bash commands
|
|
1033
|
+
- Removed redundant decision_gate
|
|
1034
|
+
|
|
1035
|
+
## [1.3.12] - 2025-12-29
|
|
1036
|
+
|
|
1037
|
+
### Fixed
|
|
1038
|
+
- Restored plan-format.md as output template
|
|
1039
|
+
|
|
1040
|
+
## [1.3.11] - 2025-12-29
|
|
1041
|
+
|
|
1042
|
+
### Changed
|
|
1043
|
+
- 70% context reduction for plan-phase workflow
|
|
1044
|
+
- Merged CLI automation into checkpoints
|
|
1045
|
+
- Compressed scope-estimation (74% reduction) and plan-phase.md (66% reduction)
|
|
1046
|
+
|
|
1047
|
+
## [1.3.10] - 2025-12-29
|
|
1048
|
+
|
|
1049
|
+
### Fixed
|
|
1050
|
+
- Explicit plan count check in offer_next step
|
|
1051
|
+
|
|
1052
|
+
## [1.3.9] - 2025-12-27
|
|
1053
|
+
|
|
1054
|
+
### Added
|
|
1055
|
+
- Evolutionary PROJECT.md system with incremental updates
|
|
1056
|
+
|
|
1057
|
+
## [1.3.8] - 2025-12-18
|
|
1058
|
+
|
|
1059
|
+
### Added
|
|
1060
|
+
- Brownfield/existing projects section in README
|
|
1061
|
+
|
|
1062
|
+
## [1.3.7] - 2025-12-18
|
|
1063
|
+
|
|
1064
|
+
### Fixed
|
|
1065
|
+
- Improved incremental codebase map updates
|
|
1066
|
+
|
|
1067
|
+
## [1.3.6] - 2025-12-18
|
|
1068
|
+
|
|
1069
|
+
### Added
|
|
1070
|
+
- File paths included in codebase mapping output
|
|
1071
|
+
|
|
1072
|
+
## [1.3.5] - 2025-12-17
|
|
1073
|
+
|
|
1074
|
+
### Fixed
|
|
1075
|
+
- Removed arbitrary 100-line limit from codebase mapping
|
|
1076
|
+
|
|
1077
|
+
## [1.3.4] - 2025-12-17
|
|
1078
|
+
|
|
1079
|
+
### Fixed
|
|
1080
|
+
- Inline code for Next Up commands (avoids nesting ambiguity)
|
|
1081
|
+
|
|
1082
|
+
## [1.3.3] - 2025-12-17
|
|
1083
|
+
|
|
1084
|
+
### Fixed
|
|
1085
|
+
- Check PROJECT.md not .planning/ directory for existing project detection
|
|
1086
|
+
|
|
1087
|
+
## [1.3.2] - 2025-12-17
|
|
1088
|
+
|
|
1089
|
+
### Added
|
|
1090
|
+
- Git commit step to map-codebase workflow
|
|
1091
|
+
|
|
1092
|
+
## [1.3.1] - 2025-12-17
|
|
1093
|
+
|
|
1094
|
+
### Added
|
|
1095
|
+
- `/gsd:map-codebase` documentation in help and README
|
|
1096
|
+
|
|
1097
|
+
## [1.3.0] - 2025-12-17
|
|
1098
|
+
|
|
1099
|
+
### Added
|
|
1100
|
+
- `/gsd:map-codebase` command for brownfield project analysis
|
|
1101
|
+
- Codebase map templates (stack, architecture, structure, conventions, testing, integrations, concerns)
|
|
1102
|
+
- Parallel Explore agent orchestration for codebase analysis
|
|
1103
|
+
- Brownfield integration into GSD workflows
|
|
1104
|
+
|
|
1105
|
+
### Changed
|
|
1106
|
+
- Improved continuation UI with context and visual hierarchy
|
|
1107
|
+
|
|
1108
|
+
### Fixed
|
|
1109
|
+
- Permission errors for non-DSP users (removed shell context)
|
|
1110
|
+
- First question is now freeform, not AskUserQuestion
|
|
1111
|
+
|
|
1112
|
+
## [1.2.13] - 2025-12-17
|
|
1113
|
+
|
|
1114
|
+
### Added
|
|
1115
|
+
- Improved continuation UI with context and visual hierarchy
|
|
1116
|
+
|
|
1117
|
+
## [1.2.12] - 2025-12-17
|
|
1118
|
+
|
|
1119
|
+
### Fixed
|
|
1120
|
+
- First question should be freeform, not AskUserQuestion
|
|
1121
|
+
|
|
1122
|
+
## [1.2.11] - 2025-12-17
|
|
1123
|
+
|
|
1124
|
+
### Fixed
|
|
1125
|
+
- Permission errors for non-DSP users (removed shell context)
|
|
1126
|
+
|
|
1127
|
+
## [1.2.10] - 2025-12-16
|
|
1128
|
+
|
|
1129
|
+
### Fixed
|
|
1130
|
+
- Inline command invocation replaced with clear-then-paste pattern
|
|
1131
|
+
|
|
1132
|
+
## [1.2.9] - 2025-12-16
|
|
1133
|
+
|
|
1134
|
+
### Fixed
|
|
1135
|
+
- Git init runs in current directory
|
|
1136
|
+
|
|
1137
|
+
## [1.2.8] - 2025-12-16
|
|
1138
|
+
|
|
1139
|
+
### Changed
|
|
1140
|
+
- Phase count derived from work scope, not arbitrary limits
|
|
1141
|
+
|
|
1142
|
+
## [1.2.7] - 2025-12-16
|
|
1143
|
+
|
|
1144
|
+
### Fixed
|
|
1145
|
+
- AskUserQuestion mandated for all exploration questions
|
|
1146
|
+
|
|
1147
|
+
## [1.2.6] - 2025-12-16
|
|
1148
|
+
|
|
1149
|
+
### Changed
|
|
1150
|
+
- Internal refactoring
|
|
1151
|
+
|
|
1152
|
+
## [1.2.5] - 2025-12-16
|
|
1153
|
+
|
|
1154
|
+
### Changed
|
|
1155
|
+
- `<if mode>` tags for yolo/interactive branching
|
|
1156
|
+
|
|
1157
|
+
## [1.2.4] - 2025-12-16
|
|
1158
|
+
|
|
1159
|
+
### Fixed
|
|
1160
|
+
- Stale CONTEXT.md references updated to new vision structure
|
|
1161
|
+
|
|
1162
|
+
## [1.2.3] - 2025-12-16
|
|
1163
|
+
|
|
1164
|
+
### Fixed
|
|
1165
|
+
- Enterprise language removed from help and discuss-milestone
|
|
1166
|
+
|
|
1167
|
+
## [1.2.2] - 2025-12-16
|
|
1168
|
+
|
|
1169
|
+
### Fixed
|
|
1170
|
+
- new-project completion presented inline instead of as question
|
|
1171
|
+
|
|
1172
|
+
## [1.2.1] - 2025-12-16
|
|
1173
|
+
|
|
1174
|
+
### Fixed
|
|
1175
|
+
- AskUserQuestion restored for decision gate in questioning flow
|
|
1176
|
+
|
|
1177
|
+
## [1.2.0] - 2025-12-15
|
|
1178
|
+
|
|
1179
|
+
### Changed
|
|
1180
|
+
- Research workflow implemented as Claude Code context injection
|
|
1181
|
+
|
|
1182
|
+
## [1.1.2] - 2025-12-15
|
|
1183
|
+
|
|
1184
|
+
### Fixed
|
|
1185
|
+
- YOLO mode now skips confirmation gates in plan-phase
|
|
1186
|
+
|
|
1187
|
+
## [1.1.1] - 2025-12-15
|
|
1188
|
+
|
|
1189
|
+
### Added
|
|
1190
|
+
- README documentation for new research workflow
|
|
1191
|
+
|
|
1192
|
+
## [1.1.0] - 2025-12-15
|
|
1193
|
+
|
|
1194
|
+
### Added
|
|
1195
|
+
- Pre-roadmap research workflow
|
|
1196
|
+
- `/gsd:research-phase` for niche domain ecosystem discovery
|
|
1197
|
+
- `/gsd:research-project` command with workflow and templates
|
|
1198
|
+
- `/gsd:create-roadmap` command with research-aware workflow
|
|
1199
|
+
- Research subagent prompt templates
|
|
1200
|
+
|
|
1201
|
+
### Changed
|
|
1202
|
+
- new-project split to only create PROJECT.md + config.json
|
|
1203
|
+
- Questioning rewritten as thinking partner, not interviewer
|
|
1204
|
+
|
|
1205
|
+
## [1.0.11] - 2025-12-15
|
|
1206
|
+
|
|
1207
|
+
### Added
|
|
1208
|
+
- `/gsd:research-phase` for niche domain ecosystem discovery
|
|
1209
|
+
|
|
1210
|
+
## [1.0.10] - 2025-12-15
|
|
1211
|
+
|
|
1212
|
+
### Fixed
|
|
1213
|
+
- Scope creep prevention in discuss-phase command
|
|
1214
|
+
|
|
1215
|
+
## [1.0.9] - 2025-12-15
|
|
1216
|
+
|
|
1217
|
+
### Added
|
|
1218
|
+
- Phase CONTEXT.md loaded in plan-phase command
|
|
1219
|
+
|
|
1220
|
+
## [1.0.8] - 2025-12-15
|
|
1221
|
+
|
|
1222
|
+
### Changed
|
|
1223
|
+
- PLAN.md included in phase completion commits
|
|
1224
|
+
|
|
1225
|
+
## [1.0.7] - 2025-12-15
|
|
1226
|
+
|
|
1227
|
+
### Added
|
|
1228
|
+
- Path replacement for local installs
|
|
1229
|
+
|
|
1230
|
+
## [1.0.6] - 2025-12-15
|
|
1231
|
+
|
|
1232
|
+
### Changed
|
|
1233
|
+
- Internal improvements
|
|
1234
|
+
|
|
1235
|
+
## [1.0.5] - 2025-12-15
|
|
1236
|
+
|
|
1237
|
+
### Added
|
|
1238
|
+
- Global/local install prompt during setup
|
|
1239
|
+
|
|
1240
|
+
### Fixed
|
|
1241
|
+
- Bin path fixed (removed ./)
|
|
1242
|
+
- .DS_Store ignored
|
|
1243
|
+
|
|
1244
|
+
## [1.0.4] - 2025-12-15
|
|
1245
|
+
|
|
1246
|
+
### Fixed
|
|
1247
|
+
- Bin name and circular dependency removed
|
|
1248
|
+
|
|
1249
|
+
## [1.0.3] - 2025-12-15
|
|
1250
|
+
|
|
1251
|
+
### Added
|
|
1252
|
+
- TDD guidance in planning workflow
|
|
1253
|
+
|
|
1254
|
+
## [1.0.2] - 2025-12-15
|
|
1255
|
+
|
|
1256
|
+
### Added
|
|
1257
|
+
- Issue triage system to prevent deferred issue pile-up
|
|
1258
|
+
|
|
1259
|
+
## [1.0.1] - 2025-12-15
|
|
1260
|
+
|
|
1261
|
+
### Added
|
|
1262
|
+
- Initial npm package release
|
|
1263
|
+
|
|
1264
|
+
## [1.0.0] - 2025-12-14
|
|
1265
|
+
|
|
1266
|
+
### Added
|
|
1267
|
+
- Initial release of GSD (Get Shit Done) meta-prompting system
|
|
1268
|
+
- Core slash commands: `/gsd:new-project`, `/gsd:discuss-phase`, `/gsd:plan-phase`, `/gsd:execute-phase`
|
|
1269
|
+
- PROJECT.md and STATE.md templates
|
|
1270
|
+
- Phase-based development workflow
|
|
1271
|
+
- YOLO mode for autonomous execution
|
|
1272
|
+
- Interactive mode with checkpoints
|
|
1273
|
+
|
|
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
|
|
1278
|
+
[1.19.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.19.0
|
|
1279
|
+
[1.18.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.18.0
|
|
1280
|
+
[1.17.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.17.0
|
|
1281
|
+
[1.16.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.16.0
|
|
1282
|
+
[1.15.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.15.0
|
|
1283
|
+
[1.14.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.14.0
|
|
1284
|
+
[1.13.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.13.0
|
|
1285
|
+
[1.12.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.12.1
|
|
1286
|
+
[1.12.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.12.0
|
|
1287
|
+
[1.11.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.11.2
|
|
1288
|
+
[1.11.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.11.0
|
|
1289
|
+
[1.10.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.10.1
|
|
1290
|
+
[1.10.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.10.0
|
|
1291
|
+
[1.9.12]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.12
|
|
1292
|
+
[1.9.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.11
|
|
1293
|
+
[1.9.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.10
|
|
1294
|
+
[1.9.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.9
|
|
1295
|
+
[1.9.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.8
|
|
1296
|
+
[1.9.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.7
|
|
1297
|
+
[1.9.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.6
|
|
1298
|
+
[1.9.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.5
|
|
1299
|
+
[1.9.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.4
|
|
1300
|
+
[1.9.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.2
|
|
1301
|
+
[1.9.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.0
|
|
1302
|
+
[1.8.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.8.0
|
|
1303
|
+
[1.7.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.7.1
|
|
1304
|
+
[1.7.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.7.0
|
|
1305
|
+
[1.6.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.6.4
|
|
1306
|
+
[1.6.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.6.3
|
|
1307
|
+
[1.6.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.6.2
|
|
1308
|
+
[1.6.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.6.1
|
|
1309
|
+
[1.6.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.6.0
|
|
1310
|
+
[1.5.30]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.30
|
|
1311
|
+
[1.5.29]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.29
|
|
1312
|
+
[1.5.28]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.28
|
|
1313
|
+
[1.5.27]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.27
|
|
1314
|
+
[1.5.26]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.26
|
|
1315
|
+
[1.5.25]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.25
|
|
1316
|
+
[1.5.24]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.24
|
|
1317
|
+
[1.5.23]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.23
|
|
1318
|
+
[1.5.22]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.22
|
|
1319
|
+
[1.5.21]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.21
|
|
1320
|
+
[1.5.20]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.20
|
|
1321
|
+
[1.5.19]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.19
|
|
1322
|
+
[1.5.18]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.18
|
|
1323
|
+
[1.5.17]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.17
|
|
1324
|
+
[1.5.16]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.16
|
|
1325
|
+
[1.5.15]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.15
|
|
1326
|
+
[1.5.14]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.14
|
|
1327
|
+
[1.5.13]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.13
|
|
1328
|
+
[1.5.12]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.12
|
|
1329
|
+
[1.5.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.11
|
|
1330
|
+
[1.5.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.10
|
|
1331
|
+
[1.5.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.9
|
|
1332
|
+
[1.5.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.8
|
|
1333
|
+
[1.5.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.7
|
|
1334
|
+
[1.5.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.6
|
|
1335
|
+
[1.5.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.5
|
|
1336
|
+
[1.5.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.4
|
|
1337
|
+
[1.5.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.3
|
|
1338
|
+
[1.5.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.2
|
|
1339
|
+
[1.5.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.1
|
|
1340
|
+
[1.5.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.0
|
|
1341
|
+
[1.4.29]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.29
|
|
1342
|
+
[1.4.28]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.28
|
|
1343
|
+
[1.4.27]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.27
|
|
1344
|
+
[1.4.26]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.26
|
|
1345
|
+
[1.4.25]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.25
|
|
1346
|
+
[1.4.24]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.24
|
|
1347
|
+
[1.4.23]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.23
|
|
1348
|
+
[1.4.22]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.22
|
|
1349
|
+
[1.4.21]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.21
|
|
1350
|
+
[1.4.20]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.20
|
|
1351
|
+
[1.4.19]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.19
|
|
1352
|
+
[1.4.18]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.18
|
|
1353
|
+
[1.4.17]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.17
|
|
1354
|
+
[1.4.16]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.16
|
|
1355
|
+
[1.4.15]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.15
|
|
1356
|
+
[1.4.14]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.14
|
|
1357
|
+
[1.4.13]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.13
|
|
1358
|
+
[1.4.12]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.12
|
|
1359
|
+
[1.4.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.11
|
|
1360
|
+
[1.4.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.10
|
|
1361
|
+
[1.4.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.9
|
|
1362
|
+
[1.4.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.8
|
|
1363
|
+
[1.4.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.7
|
|
1364
|
+
[1.4.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.6
|
|
1365
|
+
[1.4.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.5
|
|
1366
|
+
[1.4.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.4
|
|
1367
|
+
[1.4.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.3
|
|
1368
|
+
[1.4.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.2
|
|
1369
|
+
[1.4.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.1
|
|
1370
|
+
[1.4.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.0
|
|
1371
|
+
[1.3.34]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.34
|
|
1372
|
+
[1.3.33]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.33
|
|
1373
|
+
[1.3.32]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.32
|
|
1374
|
+
[1.3.31]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.31
|
|
1375
|
+
[1.3.30]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.30
|
|
1376
|
+
[1.3.29]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.29
|
|
1377
|
+
[1.3.28]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.28
|
|
1378
|
+
[1.3.27]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.27
|
|
1379
|
+
[1.3.26]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.26
|
|
1380
|
+
[1.3.25]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.25
|
|
1381
|
+
[1.3.24]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.24
|
|
1382
|
+
[1.3.23]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.23
|
|
1383
|
+
[1.3.22]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.22
|
|
1384
|
+
[1.3.21]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.21
|
|
1385
|
+
[1.3.20]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.20
|
|
1386
|
+
[1.3.19]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.19
|
|
1387
|
+
[1.3.18]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.18
|
|
1388
|
+
[1.3.17]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.17
|
|
1389
|
+
[1.3.16]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.16
|
|
1390
|
+
[1.3.15]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.15
|
|
1391
|
+
[1.3.14]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.14
|
|
1392
|
+
[1.3.13]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.13
|
|
1393
|
+
[1.3.12]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.12
|
|
1394
|
+
[1.3.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.11
|
|
1395
|
+
[1.3.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.10
|
|
1396
|
+
[1.3.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.9
|
|
1397
|
+
[1.3.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.8
|
|
1398
|
+
[1.3.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.7
|
|
1399
|
+
[1.3.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.6
|
|
1400
|
+
[1.3.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.5
|
|
1401
|
+
[1.3.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.4
|
|
1402
|
+
[1.3.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.3
|
|
1403
|
+
[1.3.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.2
|
|
1404
|
+
[1.3.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.1
|
|
1405
|
+
[1.3.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.0
|
|
1406
|
+
[1.2.13]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.13
|
|
1407
|
+
[1.2.12]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.12
|
|
1408
|
+
[1.2.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.11
|
|
1409
|
+
[1.2.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.10
|
|
1410
|
+
[1.2.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.9
|
|
1411
|
+
[1.2.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.8
|
|
1412
|
+
[1.2.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.7
|
|
1413
|
+
[1.2.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.6
|
|
1414
|
+
[1.2.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.5
|
|
1415
|
+
[1.2.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.4
|
|
1416
|
+
[1.2.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.3
|
|
1417
|
+
[1.2.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.2
|
|
1418
|
+
[1.2.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.1
|
|
1419
|
+
[1.2.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.0
|
|
1420
|
+
[1.1.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.1.2
|
|
1421
|
+
[1.1.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.1.1
|
|
1422
|
+
[1.1.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.1.0
|
|
1423
|
+
[1.0.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.11
|
|
1424
|
+
[1.0.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.10
|
|
1425
|
+
[1.0.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.9
|
|
1426
|
+
[1.0.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.8
|
|
1427
|
+
[1.0.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.7
|
|
1428
|
+
[1.0.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.6
|
|
1429
|
+
[1.0.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.5
|
|
1430
|
+
[1.0.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.4
|
|
1431
|
+
[1.0.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.3
|
|
1432
|
+
[1.0.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.2
|
|
1433
|
+
[1.0.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.1
|
|
1434
|
+
[1.0.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.0
|