@ktpartners/dgs-platform 2.7.3 → 2.7.5
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 +1845 -0
- package/agents/dgs-roadmapper.md +29 -0
- package/deliver-great-systems/bin/lib/init.cjs +5 -0
- package/deliver-great-systems/bin/lib/init.test.cjs +12 -0
- package/deliver-great-systems/workflows/new-project.md +7 -1
- package/deliver-great-systems/workflows/quick.md +4 -5
- package/deliver-great-systems/workflows/settings.md +30 -0
- package/deliver-great-systems/workflows/update.md +2 -2
- package/package.json +7 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1845 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to DGS (Deliver Great Systems) will be documented in this file.
|
|
4
|
+
|
|
5
|
+
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
|
+
|
|
7
|
+
> Versions prior to 2.0.0 were released as **Get Shit Done (GSD)** by [@glittercowboy](https://github.com/glittercowboy). DGS is a fork that continues development under the new name.
|
|
8
|
+
|
|
9
|
+
## [Unreleased]
|
|
10
|
+
|
|
11
|
+
## [2.7.5] - 2026-03-22
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- **Settings workflow commit/push** — `/dgs:settings` now commits and pushes `config.json` after writing changes, closing the gap where config updates were saved locally but never committed
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- **Fast path sync parity** — fast mode now uses `dgs-tools commit --push` instead of raw `git commit`, ensuring automatic push works when `sync_push` is configured
|
|
18
|
+
- **Package metadata** — added `repository` field to package.json for npm registry linking
|
|
19
|
+
|
|
20
|
+
## [2.7.4] - 2026-03-22
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- **Product-scoped milestone versioning** — `new-project` now reads the current product milestone version via `getMilestoneInfo` instead of hardcoding `v1.0`. When multiple projects share a product folder, each new project gets the correct milestone version (e.g., v3.0 if two milestones already shipped). Defaults to v1.0 for greenfield products.
|
|
24
|
+
|
|
25
|
+
## [2.7.3] - 2026-03-22
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
- **verify-work commits VERIFICATION.md** — the UAT completion commit now includes VERIFICATION.md alongside UAT.md, preventing uncommitted verification artifacts that broke the sync push chain
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
- **`--push` on all workflow commits** — every workflow's final `dgs-tools commit` call now passes `--push`, enabling automatic push across all 15 workflows (ideas, specs, planning, execution, milestones). Multi-commit workflows only push on the final commit to avoid churn.
|
|
32
|
+
|
|
33
|
+
## [2.7.2] - 2026-03-21
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
- **Automatic pull in init** — `dgs-tools init <workflow>` now checks `sync_pull` config and cadence, executing `pullAll` automatically when `sync_pull` is `"auto"`. Returns `needs_pull: true` for `"prompt"` mode. Pull failures are captured in the init JSON response, never blocking workflow execution.
|
|
37
|
+
- **Automatic push on commit** — `dgs-tools commit` accepts `--push` flag. When present, calls `pushAll` after successful commit based on `sync_push` config (`"auto"` pushes silently, `"prompt"` returns `needs_push: true`, `"off"` skips). Push failures are captured, never blocking the commit result.
|
|
38
|
+
- **execute-phase uses --push** — the `update_roadmap` commit step now passes `--push`, making post-phase push atomic with the commit instead of a separate step Claude could skip
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
- Todos directory kept at product level (`.planning/todos/`) instead of being moved into project subfolders during v1→v2 migration
|
|
42
|
+
|
|
43
|
+
## [2.7.1] - 2026-03-21
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
- Replaced hardcoded `.planning/` paths with `getPlanningRoot()` in state.cjs for multi-project compatibility
|
|
47
|
+
|
|
48
|
+
### Added
|
|
49
|
+
- **Codereview gate in dgs-executor** — executor agent now includes a `codereview_gate` step for code quality checks during plan execution
|
|
50
|
+
|
|
51
|
+
## [2.7.0] - 2026-03-20
|
|
52
|
+
|
|
53
|
+
_Milestone: v17.0 Git Push and Pull Integration_
|
|
54
|
+
|
|
55
|
+
### Added
|
|
56
|
+
- **Git sync engine** (`sync.cjs`) — `pullAll` (fetch+merge) and `pushAll` (upstream tracking, repo filter) functions with pre-flight checks and repo collection from REPOS.md
|
|
57
|
+
- **`/dgs:sync` command** — slash command for interactive sync operations (pull/push across registered repos)
|
|
58
|
+
- **`sync pull` / `sync push` CLI commands** — `dgs-tools sync pull` and `sync push` for scripted usage
|
|
59
|
+
- **`workflow-pull` / `workflow-push` CLI commands** — orchestration-level sync with automatic conflict detection and workflow-appropriate error handling
|
|
60
|
+
- **Sync hooks in workflows** — `execute-phase` and `run-job` now call workflow-pull before execution and workflow-push after completion
|
|
61
|
+
- **Cadence table** — `getCadence()` function maps sync timing (phase/wave/manual) to workflow trigger points; cadence flags wired into all init commands
|
|
62
|
+
- **Sync configuration keys** — `git.sync.auto_pull`, `git.sync.auto_push`, `git.sync.cadence`, `git.sync.conflict_strategy` with `git.sync` shorthand in config.cjs and loadConfig defaults
|
|
63
|
+
- **Sync settings UI** — git sync toggles added to `/dgs:settings` interactive configuration
|
|
64
|
+
- **Config split for multi-user** — config split into tracked `config.json` (shared settings) and gitignored `config.local.json` (per-machine: `current_project`, `planningRoot`, `hints`). Dual-read with local override in `loadConfig()`
|
|
65
|
+
- **Sync hooks reference document** — documents workflow boundaries and sync trigger points
|
|
66
|
+
- **Documentation updates** — Remote Synchronisation section in git-integration.md, full config reference rewrite of planning-config.md, team setup checklist, safety matrix, push/pull cadence guide in multi-user docs
|
|
67
|
+
|
|
68
|
+
### Fixed
|
|
69
|
+
- Corrected stale SYNC-05, CAD-03, CAD-06 text in REQUIREMENTS.md
|
|
70
|
+
|
|
71
|
+
## [2.6.3] - 2026-03-18
|
|
72
|
+
|
|
73
|
+
### Changed
|
|
74
|
+
- Replaced `xlsx` dependency with `exceljs` to resolve security vulnerabilities
|
|
75
|
+
|
|
76
|
+
## [2.6.1] - 2026-03-18
|
|
77
|
+
|
|
78
|
+
### Added
|
|
79
|
+
- **`/dgs:reactivate-project` command** — reverses project completion by changing STATE.md status back from "completed" to "In progress", removing the Completed date line, optionally re-setting current_project in config.json, and regenerating PROJECTS.md. Switch guard message now points to this command instead of manual STATE.md editing.
|
|
80
|
+
|
|
81
|
+
## [2.6.0] - 2026-03-18
|
|
82
|
+
|
|
83
|
+
_Milestone: v16.0 Workflow Discipline_
|
|
84
|
+
|
|
85
|
+
### Added
|
|
86
|
+
- **CLAUDE.md workflow discipline template** — flow-based 5-section template at `templates/claude-md.md` routing code modifications through `/dgs:*` commands with read-only bypass, command hierarchy guidance, and override escape hatch ("skip DGS" / "without DGS")
|
|
87
|
+
- **Workflow discipline opt-in during init-product** — prompt after base branch configuration copies template to `./CLAUDE.md` with `DGS:BEGIN/END` managed section delimiters; same prompt in v1 migration path
|
|
88
|
+
- **`/dgs:settings` workflow discipline toggle** — shows On/Off state, toggle on creates/updates CLAUDE.md from template, toggle off removes DGS section with confirmation
|
|
89
|
+
- **`/dgs:fast` command** — lightweight single-commit workflow for trivial edits without subagent overhead. Conventional commit message inference (fix:/chore:/docs:), scope warning at 3 files/30 lines, `--dry-run` with diff preview, shared ID counter with quick tasks
|
|
90
|
+
- **Task archival** — STATE.md quick tasks table capped at 20 rows with oldest automatically archived to `.planning/quick/HISTORY.md` (append-only). `state archive-quick-tasks` CLI command
|
|
91
|
+
- **`/dgs:cleanup` quick task directory cleanup** — extends cleanup to detect and remove completed quick/fast task planning directories (permanent record in HISTORY.md)
|
|
92
|
+
- **Command hierarchy documentation** — 5-tier hierarchy (fast, quick, quick --full, execute-phase, debug) added to `/dgs:help`, USER-GUIDE.md, and README.md
|
|
93
|
+
|
|
94
|
+
### Fixed
|
|
95
|
+
- **Config discipline key persistence** — `init-product.md` config write JSON now includes `"discipline"` key in both fresh install and v1 migration paths, preventing user opt-in/out choice from being overwritten
|
|
96
|
+
- **Base branch config tests** — fixed 4 failing tests in `config.test.cjs` caused by `config.json` vs `dgs.config.json` path mismatch
|
|
97
|
+
|
|
98
|
+
## [2.5.7] - 2026-03-17
|
|
99
|
+
|
|
100
|
+
### Added
|
|
101
|
+
- **Spec-to-milestone linking in new-project** — `new-project` spec-driven flow now calls `specs link-milestone` when creating a project from a spec, completing REQ-04 (implementation tracking) from the spec lifecycle spec. Both `new-milestone` and `new-project` now establish bidirectional spec-milestone links.
|
|
102
|
+
- **Multi-user approach guide** (`docs/MULTI_USER_APPROACH_GUIDE.md`) — comprehensive guide covering parallel safety for ideas/specs, discuss-phase, phase execution, quick tasks, git branching strategies, job rollback implications, and recommended team workflows
|
|
103
|
+
|
|
104
|
+
## [2.5.6] - 2026-03-16
|
|
105
|
+
|
|
106
|
+
### Fixed
|
|
107
|
+
- **Auto-test runs in correct directory for multi-repo v2 setups** — added `--cwd` flag to auto-test CLI commands (`collect`, `run`, `map`, `rerun`). `audit-phase` workflow now resolves the code repo path from REPOS.md and passes `--cwd <repo-path>` to all auto-test calls. Backwards compatible — single-repo setups unaffected.
|
|
108
|
+
|
|
109
|
+
## [2.5.5] - 2026-03-16
|
|
110
|
+
|
|
111
|
+
### Fixed
|
|
112
|
+
- **Milestone job creation** — `create-milestone-job` no longer fails with "Milestone not found" on standard DGS ROADMAP format where `## v1.0` heading is followed by peer-level `## Overview` section. Phase detection now falls back to searching the entire ROADMAP content.
|
|
113
|
+
- **`map-codebase` in jobs** — gracefully skips with SUCCESS when no repos are registered instead of failing the job step. Valid state for new projects before coding starts.
|
|
114
|
+
|
|
115
|
+
## [2.5.4] - 2026-03-16
|
|
116
|
+
|
|
117
|
+
### Added
|
|
118
|
+
- **`/dgs:rollback-job <version>`** — roll back all code changes from a milestone job to pre-job state. Resets code repos to the commit SHAs recorded at job start, deletes SUMMARY.md files for executed phases, marks job as `rolled_back`. Requires explicit "rollback" confirmation (destructive). Planning repo is preserved to avoid affecting other projects.
|
|
119
|
+
- **Job start SHA recording** — `run-job` now records the starting commit SHA for each code repo before execution begins, stored as `StartShas` in the job file header
|
|
120
|
+
|
|
121
|
+
### Changed
|
|
122
|
+
- Default cross-LLM review models updated: OpenAI `gpt-4o` → `gpt-5-mini`, Gemini `gemini-2.0-flash` → `gemini-2.5-flash`
|
|
123
|
+
|
|
124
|
+
### Fixed
|
|
125
|
+
- **Spec review API calls** — switched from inline JSON with variable interpolation to file-based payloads (`curl -d @file` via `python3 json.dump`), fixing JSON parsing errors when spec content contains markdown with quotes, newlines, and special characters
|
|
126
|
+
|
|
127
|
+
## [2.5.3] - 2026-03-15
|
|
128
|
+
|
|
129
|
+
### Added
|
|
130
|
+
- **Code review workflow** (`codereview.md`) — optional 3-pass, 9-agent multi-agent code review that runs after plan execution. Pass 1: Correctness/Security, Standards/Patterns, Simplification. Pass 2: Fix Verification, Integration/Flow, Test Coverage. Pass 3: Fresh Eyes, Production Readiness, Diff Sanity. Auto-fixes low-risk issues in a separate commit.
|
|
131
|
+
- `workflow.codereview` config toggle (default: `false`) — opt-in via `/dgs:settings`
|
|
132
|
+
- Code Reviewer question added to `/dgs:settings` interactive configuration
|
|
133
|
+
- `codereview_gate` step wired into `execute-plan.md` between metadata commit and codebase map update
|
|
134
|
+
|
|
135
|
+
## [2.5.2] - 2026-03-15
|
|
136
|
+
|
|
137
|
+
### Changed
|
|
138
|
+
- **Config questions moved from new-project to init-product** — project configuration (branching strategy, settings toggles) now lives in init-product where it belongs, keeping new-project focused on context gathering and PROJECT.md creation
|
|
139
|
+
- `new-project` Step 5 (config) removed; init-product validates config completeness and prompts for missing settings
|
|
140
|
+
- `settings.md` branching strategy descriptions updated to match init-product wording
|
|
141
|
+
|
|
142
|
+
## [2.5.1] - 2026-03-15
|
|
143
|
+
|
|
144
|
+
_Milestone: v15.0 Improved Context Loading_
|
|
145
|
+
|
|
146
|
+
### Added
|
|
147
|
+
- **5-tier context loading system** (none/lite/planning/execution/verification) — every workflow now declares which project files it needs and loads them systematically via `dgs-tools context load-tier`
|
|
148
|
+
- `context.cjs` engine module with machine-readable YAML tier definitions parsed from `references/context-tiers.md`, tier inheritance, and scope flag resolution (--phase, --idea, --spec)
|
|
149
|
+
- `dgs-tools context load-tier <name>` CLI command returning JSON file lists resolved against current project state with graceful degradation for missing files
|
|
150
|
+
- 14 specific context gaps closed: executors receive CONTEXT.md, plan-checker gets prior SUMMARYs, spec/idea workflows load docs/ directories with multimodal image support
|
|
151
|
+
- Context tier annotations in help.md (56 commands), README.md overview section, and USER-GUIDE.md per-tier reference tables (62 commands)
|
|
152
|
+
|
|
153
|
+
### Changed
|
|
154
|
+
- All 63 workflows now include `<context_tier>` declarations with systematic `load-tier` CLI wiring, replacing ad-hoc context reads
|
|
155
|
+
- Codebase glob patterns replace 3 hardcoded file paths in write-spec and refine-spec
|
|
156
|
+
- `approve-spec` warns when a spec has no roadmap linkage (non-blocking)
|
|
157
|
+
- `write-spec` warns when selected ideas are already covered by approved specs
|
|
158
|
+
|
|
159
|
+
## [2.5.0] - 2026-03-14
|
|
160
|
+
|
|
161
|
+
_Milestone: v14.0 Multi-Repo Codebase Mapping_
|
|
162
|
+
|
|
163
|
+
### Added
|
|
164
|
+
- **Multi-repo codebase mapping** — `/dgs:map-codebase` reads REPOS.md and maps each registered repo into `codebase/<repo-name>/` with 7 analysis documents per repo
|
|
165
|
+
- `dgs-codebase-synthesizer` agent generates unified top-level ARCHITECTURE/STACK/STRUCTURE files from per-repo maps with labeled repo sections
|
|
166
|
+
- `dgs-codebase-cross-analyzer` agent produces CROSS-REPO.md with shared dependencies, API boundaries, and common/divergent patterns
|
|
167
|
+
- Lifecycle management: refresh mode (full remap) and update mode via `--only` flag for selective repo re-mapping
|
|
168
|
+
- Per-repo targeting via positional argument shorthand (`/dgs:map-codebase <repo-name>`)
|
|
169
|
+
- Enhanced secret scanning covering connection string patterns (PostgreSQL, MongoDB, MySQL, Redis, AMQP) with silent-when-clean behavior
|
|
170
|
+
|
|
171
|
+
### Changed
|
|
172
|
+
- All 7 consumer workflows (write-spec, refine-spec, import-spec, new-project, plan-phase, find-related-ideas, execute-plan) work unchanged via unified top-level files
|
|
173
|
+
|
|
174
|
+
## [2.4.1] - 2026-03-12
|
|
175
|
+
|
|
176
|
+
_Milestone: v13.0 Spec Lifecycle Management_
|
|
177
|
+
|
|
178
|
+
### Added
|
|
179
|
+
- **Spec lifecycle management** — two-state machine (draft/final) with formal approval gates and conversational refinement
|
|
180
|
+
- `/dgs:approve-spec` command with tiered validation (P0 errors block, P1 warnings allow with confirmation), `approved_date` auto-set on final transition
|
|
181
|
+
- `/dgs:refine-spec` command with conversational editing, `--section` targeting, atomic saves, version increment, and final-status demotion warning
|
|
182
|
+
- Dual-format frontmatter parser (YAML + bold-key) with format-preserving write-back
|
|
183
|
+
- Automatic Refinement Log initialization — write-spec and import-spec create "Created" entries with version 1.0 on every new spec
|
|
184
|
+
- Bidirectional spec-milestone linking with implementation status tracking (none/in-progress/completed) in `list-specs` output
|
|
185
|
+
|
|
186
|
+
## [2.4.0] - 2026-03-11
|
|
187
|
+
|
|
188
|
+
_Milestone: v12.0 Audit-Phase & Auto-Verify_
|
|
189
|
+
|
|
190
|
+
### Added
|
|
191
|
+
- **`/dgs:audit-phase` command** — dedicated two-layer phase verification replacing `verify-work --auto-test`
|
|
192
|
+
- Structural verification via `dgs-phase-verifier` agent inspecting deliverables for file existence, substance, correct exports, must_haves satisfaction, and upstream dependency wiring
|
|
193
|
+
- Enhanced false-positive detection (`checkSuspect`) and covered-duplicate skipping (`isCommandCovered`) for more accurate test results
|
|
194
|
+
- Phase-level gap-fix cycles in job orchestrator with independent `PhaseFixCycle` counter (max 2 per phase)
|
|
195
|
+
|
|
196
|
+
### Changed
|
|
197
|
+
- `--auto-test` and `--rerun-failed` flags cleanly removed from verify-work (audit-phase is the sole automated verification command)
|
|
198
|
+
|
|
199
|
+
## [2.3.4] - 2026-03-11
|
|
200
|
+
|
|
201
|
+
### Fixed
|
|
202
|
+
- Bug fixes and stability improvements ahead of v12.0 milestone
|
|
203
|
+
|
|
204
|
+
## [2.3.3] - 2026-03-10
|
|
205
|
+
|
|
206
|
+
_Milestone: v11.0 Idea Consolidation_
|
|
207
|
+
|
|
208
|
+
### Added
|
|
209
|
+
- **Idea consolidation** — `/dgs:consolidate-ideas` merges 2+ pending ideas into a single AI-synthesised idea with bidirectional lineage tracking and `[from #ID]` attribution
|
|
210
|
+
- `/dgs:find-related-ideas` command with Jaccard tag similarity + AI semantic/implementation overlap scoring, grouped results (HIGH/MEDIUM/LOW), and direct consolidation flow
|
|
211
|
+
- `/dgs:undo-consolidation` reverses any consolidation, restoring source ideas to pending via git mv
|
|
212
|
+
- `consolidated/` state directory with list filtering, restore support, and write-spec guards
|
|
213
|
+
|
|
214
|
+
## [2.3.2] - 2026-03-10
|
|
215
|
+
|
|
216
|
+
### Fixed
|
|
217
|
+
- Inverted ternary, JSON field name mismatch, and stale path in consolidation workflow templates
|
|
218
|
+
|
|
219
|
+
## [2.3.1] - 2026-03-10
|
|
220
|
+
|
|
221
|
+
### Fixed
|
|
222
|
+
- Stability fixes for v10.0 auto-verify pipeline
|
|
223
|
+
|
|
224
|
+
## [2.3.0] - 2026-03-09
|
|
225
|
+
|
|
226
|
+
_Milestones: v8.0 Configurable Planning Root, v9.0 Project Folder Structure, v10.0 Auto-Verify_
|
|
227
|
+
|
|
228
|
+
### Added
|
|
229
|
+
- **Configurable planning root** — `paths.cjs` leaf module with detection cascade, dedicated planning repos can store artifacts at repo root
|
|
230
|
+
- **Project folder structure** — all projects namespaced under `.planning/projects/` with centralised `getProjectDir()` helper
|
|
231
|
+
- **Automated test verification** — `/dgs:audit-phase` collects test commands from PLAN.md verify blocks, executes with timeout and false-positive detection, maps results to UAT format, triggers auto-diagnosis on failures
|
|
232
|
+
- `dgs.config.json` config file rename with dual-read backwards compatibility
|
|
233
|
+
- Root-mode init with layout detection prompt and namespace warning
|
|
234
|
+
- GATE test scanning 113 files preventing hardcoded `.planning` path regressions
|
|
235
|
+
- `--rerun-failed` mode for selective re-verification after gap closure
|
|
236
|
+
- Job orchestration: `map-codebase` before `plan-phase` and auto-verify after `execute-phase` for fully unattended milestone builds
|
|
237
|
+
|
|
238
|
+
### Changed
|
|
239
|
+
- All 17 library modules migrated to dynamic `getPlanningRoot()` resolution
|
|
240
|
+
- `getProjectFolders()` simplified to scan `projects/` directly (no more SYSTEM_DIRS exclusion)
|
|
241
|
+
|
|
242
|
+
## [2.1.0] - 2026-03-09
|
|
243
|
+
|
|
244
|
+
_Milestones: v7.0 Import Spec_
|
|
245
|
+
|
|
246
|
+
### Added
|
|
247
|
+
- **Spec import** — `/dgs:import-spec` converts external documents (PDF, DOCX, etc.) to standard 9-section PRDs using AI synthesis with codebase and product context
|
|
248
|
+
- Source document preserved as attachment via `docs add`
|
|
249
|
+
- Ideas linking via `--ideas <id...>` flag
|
|
250
|
+
- Duplicate import detection via `source_document` field
|
|
251
|
+
|
|
252
|
+
## [2.0.9] - 2026-03-08
|
|
253
|
+
|
|
254
|
+
### Fixed
|
|
255
|
+
- Pre-release fixes for configurable planning root (v8.0)
|
|
256
|
+
|
|
257
|
+
## [2.0.8] - 2026-03-05
|
|
258
|
+
|
|
259
|
+
### Fixed
|
|
260
|
+
- Job orchestration stability fixes
|
|
261
|
+
|
|
262
|
+
## [2.0.7] - 2026-03-05
|
|
263
|
+
|
|
264
|
+
_Milestone: v6.0 Job Orchestration_
|
|
265
|
+
|
|
266
|
+
### Added
|
|
267
|
+
- **Milestone job orchestration** — `/dgs:create-milestone-job` generates step sequence from roadmap, `/dgs:run-job` executes with subagent-per-step and resume support
|
|
268
|
+
- Silent execution mode: plan-phase and execute-phase auto-resolve interactive prompts in job context
|
|
269
|
+
- Dynamic audit-gap-fix cycle: automatic phase insertion when audit finds gaps (3-cycle safety limit)
|
|
270
|
+
- `/dgs:list-jobs`, `/dgs:cancel-job`, dry-run preview, health check, auto job summaries
|
|
271
|
+
|
|
272
|
+
## [2.0.6] - 2026-03-02
|
|
273
|
+
|
|
274
|
+
_Milestone: v5.0 Idea Discussion & Research_
|
|
275
|
+
|
|
276
|
+
### Added
|
|
277
|
+
- **Idea development commands** — `/dgs:discuss-idea` (3-phase structured conversation), `/dgs:research-idea` (5-dimension adaptive research), `/dgs:develop-idea` (combined orchestrator)
|
|
278
|
+
- Section-aware idea file parsing with Discussion Log and Research Log sections
|
|
279
|
+
- write-spec enrichment: PRD generation reads discussion/research logs and linked research documents
|
|
280
|
+
- Dev status column (D/R/D+R/-) in `list-ideas`
|
|
281
|
+
|
|
282
|
+
## [2.0.5] - 2026-03-02
|
|
283
|
+
|
|
284
|
+
_Milestones: v3.1 User Identity, v4.0 Git Branching Enhancements_
|
|
285
|
+
|
|
286
|
+
### Added
|
|
287
|
+
- **User identity tracking** — git identity gate on write commands, Author/Updated By on ideas and specs, review attribution
|
|
288
|
+
- **Configurable base branch** — `git.base_branch` in config.json flows through all branching operations
|
|
289
|
+
- **Project-scoped branch names** — `{project}` template variable eliminates branch collisions across multi-project setups
|
|
290
|
+
- **Conflict resolution CLI** — `merge-conflicts` detect/context/resolved/summary with ADDITIVE/DIVERGENT/STRUCTURAL/DELETION classification
|
|
291
|
+
- **Automated conflict resolution agent** — per-hunk resolution, cascading learnings, escalation protocol with accept/reject-with-hint/abort flow
|
|
292
|
+
|
|
293
|
+
## [2.0.4] - 2026-03-01
|
|
294
|
+
|
|
295
|
+
### Fixed
|
|
296
|
+
- BUG-001: Fixed project switching edge case
|
|
297
|
+
- BUG-002: Fixed overlap detection false positives
|
|
298
|
+
- BUG-003: Fixed branch template validation
|
|
299
|
+
|
|
300
|
+
## [2.0.3] - 2026-03-01
|
|
301
|
+
|
|
302
|
+
### Fixed
|
|
303
|
+
- BUG-008: Fixed silent execution mode prompt handling
|
|
304
|
+
|
|
305
|
+
## [2.0.2] - 2026-03-01
|
|
306
|
+
|
|
307
|
+
### Fixed
|
|
308
|
+
- Bug fixes for v3.0 Ideas & Specs workflows
|
|
309
|
+
|
|
310
|
+
## [2.0.1] - 2026-02-28
|
|
311
|
+
|
|
312
|
+
_Milestones: v2.1 Flat Repo Layout, v3.0 Ideas & Specs_
|
|
313
|
+
|
|
314
|
+
### Added
|
|
315
|
+
- **Flat sibling layout** — planning repo sits alongside source repos with `../repo-name` paths in REPOS.md
|
|
316
|
+
- **Ideas lifecycle** — `/dgs:add-idea`, `/dgs:update-idea`, `/dgs:list-ideas`, `/dgs:reject-idea`, `/dgs:restore-idea` with manifest-based sequential IDs and git mv state transitions
|
|
317
|
+
- **Document management** — scoped storage (product/idea/spec), INDEX.md with SHA-256 checksums, PDF/XLSX/CSV/DOCX text extraction via sidecar files
|
|
318
|
+
- **Spec writing with cross-LLM review** — structured PRD drafting from ideas with parallel OpenAI/Gemini review, auto-rejection of Non-Goal contradictions, convergence detection
|
|
319
|
+
- **Keyword search** — fuzzy Levenshtein matching across ideas, specs, docs, and projects with scope/tag filtering
|
|
320
|
+
- Spec-driven project and milestone creation via `--auto` mode
|
|
321
|
+
- Repo-relative plan format with clean `src/index.ts` paths
|
|
322
|
+
|
|
323
|
+
### Changed
|
|
324
|
+
- Path normalization with `normalizeForMatch()` for consistent `./` and `../` handling
|
|
325
|
+
- Gitignore elimination for flat layout (conditionally skipped when all repos use `../` paths)
|
|
326
|
+
|
|
327
|
+
## [2.0.0] - 2026-02-26
|
|
328
|
+
|
|
329
|
+
_Milestones: v1.0 Multi-Project Multi-Repo Platform, v2.0 Rename to Deliver Great Systems_
|
|
330
|
+
|
|
331
|
+
### Changed
|
|
332
|
+
- **BREAKING:** Renamed from "Get Shit Done (GSD)" to "Deliver Great Systems (DGS)"
|
|
333
|
+
- Package name changed to `@ktpartners/dgs-platform`
|
|
334
|
+
- All slash commands now use `/dgs:` prefix instead of `/gsd:`
|
|
335
|
+
- Agent files renamed from `gsd-*` to `dgs-*`
|
|
336
|
+
- Hook files renamed from `gsd-*` to `dgs-*`
|
|
337
|
+
- Installation directory changed from `get-shit-done/` to `deliver-great-systems/`
|
|
338
|
+
- Binary renamed from `gsd-tools.cjs` to `dgs-tools.cjs`
|
|
339
|
+
|
|
340
|
+
### Added
|
|
341
|
+
- **Multi-project, multi-repo platform** — register multiple git repos under a product folder, create concurrent projects that span repos
|
|
342
|
+
- Product setup with repo auto-discovery, REPOS.md registry, longest-prefix-match resolution
|
|
343
|
+
- Full project lifecycle: create, switch, list, complete with PROJECTS.md auto-regeneration
|
|
344
|
+
- Multi-repo execution: per-repo commits, branching, partial failure recovery, preflight checks
|
|
345
|
+
- Cross-project overlap detection at repo and file level with severity classification
|
|
346
|
+
- v1-to-v2 migration with git history preservation via `git mv`, dry-run, rollback safety
|
|
347
|
+
- Fork attribution in README.md crediting Get Shit Done as the origin project
|
|
348
|
+
- GSD-to-DGS migration detection in installer for existing GSD users
|
|
349
|
+
|
|
350
|
+
## [1.20.6] - 2025-02-23
|
|
351
|
+
|
|
352
|
+
### Added
|
|
353
|
+
- Context window monitor hook with WARNING/CRITICAL alerts when agent context usage exceeds thresholds
|
|
354
|
+
- Nyquist validation layer in plan-phase pipeline to catch quality issues before execution
|
|
355
|
+
- Option highlighting and gray area looping in discuss-phase for clearer preference capture
|
|
356
|
+
|
|
357
|
+
### Changed
|
|
358
|
+
- Refactored installer tools into 11 domain modules for maintainability
|
|
359
|
+
|
|
360
|
+
### Fixed
|
|
361
|
+
- Auto-advance chain no longer breaks when skills fail to resolve inside Task subagents
|
|
362
|
+
- Gemini CLI workflows and templates no longer incorrectly convert to TOML format
|
|
363
|
+
- Universal phase number parsing handles all formats consistently (decimal phases, plain numbers)
|
|
364
|
+
|
|
365
|
+
## [1.20.5] - 2026-02-19
|
|
366
|
+
|
|
367
|
+
### Fixed
|
|
368
|
+
- `/gsd:health --repair` now creates timestamped backup before regenerating STATE.md (#657)
|
|
369
|
+
|
|
370
|
+
### Changed
|
|
371
|
+
- Subagents now discover and load project CLAUDE.md and skills at spawn time for better project context (#671, #672)
|
|
372
|
+
- Improved context loading reliability in spawned agents
|
|
373
|
+
|
|
374
|
+
## [1.20.4] - 2026-02-17
|
|
375
|
+
|
|
376
|
+
### Fixed
|
|
377
|
+
- Executor agents now update ROADMAP.md and REQUIREMENTS.md after each plan completes — previously both documents stayed unchecked throughout milestone execution
|
|
378
|
+
- New `requirements mark-complete` CLI command enables per-plan requirement tracking instead of waiting for phase completion
|
|
379
|
+
- Executor final commit includes ROADMAP.md and REQUIREMENTS.md
|
|
380
|
+
|
|
381
|
+
## [1.20.3] - 2026-02-16
|
|
382
|
+
|
|
383
|
+
### Fixed
|
|
384
|
+
- Milestone audit now cross-references three independent sources (VERIFICATION.md + SUMMARY frontmatter + REQUIREMENTS.md traceability) instead of single-source phase status checks
|
|
385
|
+
- Orphaned requirements (in traceability table but absent from all phase VERIFICATIONs) detected and forced to `unsatisfied`
|
|
386
|
+
- Integration checker receives milestone requirement IDs and maps findings to affected requirements
|
|
387
|
+
- `complete-milestone` gates on requirements completion before archival — surfaces unchecked requirements with proceed/audit/abort options
|
|
388
|
+
- `plan-milestone-gaps` updates REQUIREMENTS.md traceability table (phase assignments, checkbox resets, coverage count) and includes it in commit
|
|
389
|
+
- Gemini CLI: escape `${VAR}` shell variables in agent bodies to prevent template validation failures
|
|
390
|
+
|
|
391
|
+
## [1.20.2] - 2026-02-16
|
|
392
|
+
|
|
393
|
+
### Fixed
|
|
394
|
+
- Requirements tracking chain now strips bracket syntax (`[REQ-01, REQ-02]` → `REQ-01, REQ-02`) across all agents
|
|
395
|
+
- Verifier cross-references requirement IDs from PLAN frontmatter instead of only grepping REQUIREMENTS.md by phase number
|
|
396
|
+
- Orphaned requirements (mapped to phase in REQUIREMENTS.md but unclaimed by any plan) are detected and flagged
|
|
397
|
+
|
|
398
|
+
### Changed
|
|
399
|
+
- All `requirements` references across planner, templates, and workflows enforce MUST/REQUIRED/CRITICAL language — no more passive suggestions
|
|
400
|
+
- Plan checker now **fails** (blocking, not warning) when any roadmap requirement is absent from all plans
|
|
401
|
+
- Researcher receives phase-specific requirement IDs and must output a `<phase_requirements>` mapping table
|
|
402
|
+
- Phase requirement IDs extracted from ROADMAP and passed through full chain: researcher → planner → checker → executor → verifier
|
|
403
|
+
- Verification report requirements table expanded with Source Plan, Description, and Evidence columns
|
|
404
|
+
|
|
405
|
+
## [1.20.1] - 2026-02-16
|
|
406
|
+
|
|
407
|
+
### Fixed
|
|
408
|
+
- Auto-mode (`--auto`) now survives context compaction by persisting `workflow.auto_advance` to config.json on disk
|
|
409
|
+
- Checkpoints no longer block auto-mode: human-verify auto-approves, decision auto-selects first option (human-action still stops for auth gates)
|
|
410
|
+
- Plan-phase now passes `--auto` flag when spawning execute-phase
|
|
411
|
+
- Auto-advance clears on milestone complete to prevent runaway chains
|
|
412
|
+
|
|
413
|
+
## [1.20.0] - 2026-02-15
|
|
414
|
+
|
|
415
|
+
### Added
|
|
416
|
+
- `/gsd:health` command — validates `.planning/` directory integrity with `--repair` flag for auto-fixing config.json and STATE.md
|
|
417
|
+
- `--full` flag for `/gsd:quick` — enables plan-checking (max 2 iterations) and post-execution verification on quick tasks
|
|
418
|
+
- `--auto` flag wired from `/gsd:new-project` through the full phase chain (discuss → plan → execute)
|
|
419
|
+
- Auto-advance chains phase execution across full milestones when `workflow.auto_advance` is enabled
|
|
420
|
+
|
|
421
|
+
### Fixed
|
|
422
|
+
- Plans created without user context — `/gsd:plan-phase` warns when no CONTEXT.md exists, `/gsd:discuss-phase` warns when plans already exist (#253)
|
|
423
|
+
- OpenCode installer converts `general-purpose` subagent type to OpenCode's `general`
|
|
424
|
+
- `/gsd:complete-milestone` respects `commit_docs` setting when merging branches
|
|
425
|
+
- Phase directories tracked in git via `.gitkeep` files
|
|
426
|
+
|
|
427
|
+
## [1.19.2] - 2026-02-15
|
|
428
|
+
|
|
429
|
+
### Added
|
|
430
|
+
- User-level default settings via `~/.gsd/defaults.json` — set GSD defaults across all projects
|
|
431
|
+
- Per-agent model overrides — customize which Claude model each agent uses
|
|
432
|
+
|
|
433
|
+
### Changed
|
|
434
|
+
- Completed milestone phase directories are now archived for cleaner project structure
|
|
435
|
+
- Wave execution diagram added to README for clearer parallelization visualization
|
|
436
|
+
|
|
437
|
+
### Fixed
|
|
438
|
+
- OpenCode local installs now write config to `./.opencode/` instead of overwriting global `~/.config/opencode/`
|
|
439
|
+
- Large JSON payloads write to temp files to prevent truncation in tool calls
|
|
440
|
+
- Phase heading matching now supports `####` depth
|
|
441
|
+
- Phase padding normalized in insert command
|
|
442
|
+
- ESM conflicts prevented by renaming gsd-tools.js to .cjs
|
|
443
|
+
- Config directory paths quoted in hook templates for local installs
|
|
444
|
+
- Settings file corruption prevented by using Write tool for file creation
|
|
445
|
+
- Plan-phase autocomplete fixed by removing "execution" from description
|
|
446
|
+
- Executor now has scope boundary and attempt limit to prevent runaway loops
|
|
447
|
+
|
|
448
|
+
## [1.19.1] - 2026-02-15
|
|
449
|
+
|
|
450
|
+
### Added
|
|
451
|
+
- 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
|
|
452
|
+
|
|
453
|
+
### Fixed
|
|
454
|
+
- Phase transition routing now routes to `discuss-phase` (not `plan-phase`) when no CONTEXT.md exists — consistent across all workflows (#530)
|
|
455
|
+
- ROADMAP progress table plan counts are now computed from disk instead of LLM-edited — deterministic "X/Y Complete" values (#537)
|
|
456
|
+
- Verifier uses ROADMAP Success Criteria directly instead of deriving verification truths from the Goal field (#538)
|
|
457
|
+
- REQUIREMENTS.md traceability updates when a phase completes
|
|
458
|
+
- STATE.md updates after discuss-phase completes (#556)
|
|
459
|
+
- AskUserQuestion headers enforced to 12-char max to prevent UI truncation (#559)
|
|
460
|
+
- Agent model resolution returns `inherit` instead of hardcoded `opus` (#558)
|
|
461
|
+
|
|
462
|
+
## [1.19.0] - 2026-02-15
|
|
463
|
+
|
|
464
|
+
### Added
|
|
465
|
+
- Brave Search integration for researchers (requires BRAVE_API_KEY environment variable)
|
|
466
|
+
- GitHub issue templates for bug reports and feature requests
|
|
467
|
+
- Security policy for responsible disclosure
|
|
468
|
+
- Auto-labeling workflow for new issues
|
|
469
|
+
|
|
470
|
+
### Fixed
|
|
471
|
+
- UAT gaps and debug sessions now auto-resolve after gap-closure phase execution (#580)
|
|
472
|
+
- Fall back to ROADMAP.md when phase directory missing (#521)
|
|
473
|
+
- Template hook paths for OpenCode/Gemini runtimes (#585)
|
|
474
|
+
- Accept both `##` and `###` phase headers, detect malformed ROADMAPs (#598, #599)
|
|
475
|
+
- Use `{phase_num}` instead of ambiguous `{phase}` for filenames (#601)
|
|
476
|
+
- Add package.json to prevent ESM inheritance issues (#602)
|
|
477
|
+
|
|
478
|
+
## [1.18.0] - 2026-02-08
|
|
479
|
+
|
|
480
|
+
### Added
|
|
481
|
+
- `--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`)
|
|
482
|
+
|
|
483
|
+
### Fixed
|
|
484
|
+
- Windows: SessionStart hook now spawns detached process correctly
|
|
485
|
+
- Windows: Replaced HEREDOC with literal newlines for git commit compatibility
|
|
486
|
+
- Research decision from `/gsd:new-milestone` now persists to config.json
|
|
487
|
+
|
|
488
|
+
## [1.17.0] - 2026-02-08
|
|
489
|
+
|
|
490
|
+
### Added
|
|
491
|
+
- **gsd-tools verification suite**: `verify plan-structure`, `verify phase-completeness`, `verify references`, `verify commits`, `verify artifacts`, `verify key-links` — deterministic structural checks
|
|
492
|
+
- **gsd-tools frontmatter CRUD**: `frontmatter get/set/merge/validate` — safe YAML frontmatter operations with schema validation
|
|
493
|
+
- **gsd-tools template fill**: `template fill summary/plan/verification` — pre-filled document skeletons
|
|
494
|
+
- **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
|
|
495
|
+
- **Local patch preservation**: Installer now detects locally modified GSD files, backs them up to `gsd-local-patches/`, and creates a manifest for restoration
|
|
496
|
+
- `/gsd:reapply-patches` command to merge local modifications back after GSD updates
|
|
497
|
+
|
|
498
|
+
### Changed
|
|
499
|
+
- Agents (executor, planner, plan-checker, verifier) now use gsd-tools for state updates and verification instead of manual markdown parsing
|
|
500
|
+
- `/gsd:update` workflow now notifies about backed-up local patches and suggests `/gsd:reapply-patches`
|
|
501
|
+
|
|
502
|
+
### Fixed
|
|
503
|
+
- 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
|
|
504
|
+
|
|
505
|
+
## [1.16.0] - 2026-02-08
|
|
506
|
+
|
|
507
|
+
### Added
|
|
508
|
+
- 10 new gsd-tools CLI commands that replace manual AI orchestration of mechanical operations:
|
|
509
|
+
- `phase add <desc>` — append phase to roadmap + create directory
|
|
510
|
+
- `phase insert <after> <desc>` — insert decimal phase
|
|
511
|
+
- `phase remove <N> [--force]` — remove phase with full renumbering
|
|
512
|
+
- `phase complete <N>` — mark done, update state + roadmap, detect milestone end
|
|
513
|
+
- `roadmap analyze` — unified roadmap parser with disk status
|
|
514
|
+
- `milestone complete <ver> [--name]` — archive roadmap/requirements/audit
|
|
515
|
+
- `validate consistency` — check phase numbering and disk/roadmap sync
|
|
516
|
+
- `progress [json|table|bar]` — render progress in various formats
|
|
517
|
+
- `todo complete <file>` — move todo from pending to completed
|
|
518
|
+
- `scaffold [context|uat|verification|phase-dir]` — template generation
|
|
519
|
+
|
|
520
|
+
### Changed
|
|
521
|
+
- Workflows now delegate deterministic operations to gsd-tools CLI, reducing token usage and errors:
|
|
522
|
+
- `remove-phase.md`: 13 manual steps → 1 CLI call + confirm + commit
|
|
523
|
+
- `add-phase.md`: 6 manual steps → 1 CLI call + state update
|
|
524
|
+
- `insert-phase.md`: 7 manual steps → 1 CLI call + state update
|
|
525
|
+
- `complete-milestone.md`: archival delegated to `milestone complete`
|
|
526
|
+
- `progress.md`: roadmap parsing delegated to `roadmap analyze`
|
|
527
|
+
|
|
528
|
+
### Fixed
|
|
529
|
+
- Execute-phase now correctly spawns `gsd-executor` subagents instead of generic task agents
|
|
530
|
+
- `commit_docs=false` setting now respected in all `.planning/` commit paths (execute-plan, debugger, reference docs all route through gsd-tools CLI)
|
|
531
|
+
- Execute-phase orchestrator no longer bloats context by embedding file content — passes paths instead, letting subagents read in their fresh context
|
|
532
|
+
- Windows: Normalized backslash paths in gsd-tools invocations (contributed by @rmindel)
|
|
533
|
+
|
|
534
|
+
## [1.15.0] - 2026-02-08
|
|
535
|
+
|
|
536
|
+
### Changed
|
|
537
|
+
- Optimized workflow context loading to eliminate redundant file reads, reducing token usage by ~5,000-10,000 tokens per workflow execution
|
|
538
|
+
|
|
539
|
+
## [1.14.0] - 2026-02-08
|
|
540
|
+
|
|
541
|
+
### Added
|
|
542
|
+
- 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
|
|
543
|
+
|
|
544
|
+
### Fixed
|
|
545
|
+
- Installer no longer deletes opencode.json on JSONC parse errors — now handles comments, trailing commas, and BOM correctly (#474)
|
|
546
|
+
|
|
547
|
+
## [1.13.0] - 2026-02-08
|
|
548
|
+
|
|
549
|
+
### Added
|
|
550
|
+
- `gsd-tools history-digest` — Compiles phase summaries into structured JSON for faster context loading
|
|
551
|
+
- `gsd-tools phases list` — Lists phase directories with filtering (replaces fragile `ls | sort -V` patterns)
|
|
552
|
+
- `gsd-tools roadmap get-phase` — Extracts phase sections from ROADMAP.md
|
|
553
|
+
- `gsd-tools phase next-decimal` — Calculates next decimal phase number for insert operations
|
|
554
|
+
- `gsd-tools state get/patch` — Atomic STATE.md field operations
|
|
555
|
+
- `gsd-tools template select` — Chooses summary template based on plan complexity
|
|
556
|
+
- Summary template variants: minimal (~30 lines), standard (~60 lines), complex (~100 lines)
|
|
557
|
+
- Test infrastructure with 22 tests covering new commands
|
|
558
|
+
|
|
559
|
+
### Changed
|
|
560
|
+
- Planner uses two-step context assembly: digest for selection, full SUMMARY for understanding
|
|
561
|
+
- Agents migrated from bash patterns to structured gsd-tools commands
|
|
562
|
+
- Nested YAML frontmatter parsing now handles `dependency-graph.provides`, `tech-stack.added` correctly
|
|
563
|
+
|
|
564
|
+
## [1.12.1] - 2026-02-08
|
|
565
|
+
|
|
566
|
+
### Changed
|
|
567
|
+
- Consolidated workflow initialization into compound `init` commands, reducing token usage and improving startup performance
|
|
568
|
+
- Updated 24 workflow and agent files to use single-call context gathering instead of multiple atomic calls
|
|
569
|
+
|
|
570
|
+
## [1.12.0] - 2026-02-07
|
|
571
|
+
|
|
572
|
+
### Changed
|
|
573
|
+
- **Architecture: Thin orchestrator pattern** — Commands now delegate to workflows, reducing command file size by ~75% and improving maintainability
|
|
574
|
+
- **Centralized utilities** — New `gsd-tools.cjs` (11 functions) replaces repetitive bash patterns across 50+ files
|
|
575
|
+
- **Token reduction** — ~22k characters removed from affected command/workflow/agent files
|
|
576
|
+
- **Condensed agent prompts** — Same behavior with fewer words (executor, planner, verifier, researcher agents)
|
|
577
|
+
|
|
578
|
+
### Added
|
|
579
|
+
- `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
|
|
580
|
+
|
|
581
|
+
## [1.11.2] - 2026-02-05
|
|
582
|
+
|
|
583
|
+
### Added
|
|
584
|
+
- Security section in README with Claude Code deny rules for sensitive files
|
|
585
|
+
|
|
586
|
+
### Changed
|
|
587
|
+
- Install respects `attribution.commit` setting for OpenCode compatibility (#286)
|
|
588
|
+
|
|
589
|
+
### Fixed
|
|
590
|
+
- **CRITICAL:** Prevent API keys from being committed via `/gsd:map-codebase` (#429)
|
|
591
|
+
- Enforce context fidelity in planning pipeline - agents now honor CONTEXT.md decisions (#326, #216, #206)
|
|
592
|
+
- Executor verifies task completion to prevent hallucinated success (#315)
|
|
593
|
+
- Auto-create `config.json` when missing during `/gsd:settings` (#264)
|
|
594
|
+
- `/gsd:update` respects local vs global install location
|
|
595
|
+
- Researcher writes RESEARCH.md regardless of `commit_docs` setting
|
|
596
|
+
- Statusline crash handling, color validation, git staging rules
|
|
597
|
+
- Statusline.js reference updated during install (#330)
|
|
598
|
+
- Parallelization config setting now respected (#379)
|
|
599
|
+
- ASCII box-drawing vs text content with diacritics (#289)
|
|
600
|
+
- Removed broken gsd-gemini link (404)
|
|
601
|
+
|
|
602
|
+
## [1.11.1] - 2026-01-31
|
|
603
|
+
|
|
604
|
+
### Added
|
|
605
|
+
- Git branching strategy configuration with three options:
|
|
606
|
+
- `none` (default): commit to current branch
|
|
607
|
+
- `phase`: create branch per phase (`gsd/phase-{N}-{slug}`)
|
|
608
|
+
- `milestone`: create branch per milestone (`gsd/{version}-{slug}`)
|
|
609
|
+
- Squash merge option at milestone completion (recommended) with merge-with-history alternative
|
|
610
|
+
- Context compliance verification dimension in plan checker — flags if plans contradict user decisions
|
|
611
|
+
|
|
612
|
+
### Fixed
|
|
613
|
+
- CONTEXT.md from `/gsd:discuss-phase` now properly flows to all downstream agents (researcher, planner, checker, revision loop)
|
|
614
|
+
|
|
615
|
+
## [1.10.1] - 2025-01-30
|
|
616
|
+
|
|
617
|
+
### Fixed
|
|
618
|
+
- Gemini CLI agent loading errors that prevented commands from executing
|
|
619
|
+
|
|
620
|
+
## [1.10.0] - 2026-01-29
|
|
621
|
+
|
|
622
|
+
### Added
|
|
623
|
+
- Native Gemini CLI support — install with `--gemini` flag or select from interactive menu
|
|
624
|
+
- New `--all` flag to install for Claude Code, OpenCode, and Gemini simultaneously
|
|
625
|
+
|
|
626
|
+
### Fixed
|
|
627
|
+
- Context bar now shows 100% at actual 80% limit (was scaling incorrectly)
|
|
628
|
+
|
|
629
|
+
## [1.9.12] - 2025-01-23
|
|
630
|
+
|
|
631
|
+
### Removed
|
|
632
|
+
- `/gsd:whats-new` command — use `/gsd:update` instead (shows changelog with cancel option)
|
|
633
|
+
|
|
634
|
+
### Fixed
|
|
635
|
+
- Restored auto-release GitHub Actions workflow
|
|
636
|
+
|
|
637
|
+
## [1.9.11] - 2026-01-23
|
|
638
|
+
|
|
639
|
+
### Changed
|
|
640
|
+
- Switched to manual npm publish workflow (removed GitHub Actions CI/CD)
|
|
641
|
+
|
|
642
|
+
### Fixed
|
|
643
|
+
- Discord badge now uses static format for reliable rendering
|
|
644
|
+
|
|
645
|
+
## [1.9.10] - 2026-01-23
|
|
646
|
+
|
|
647
|
+
### Added
|
|
648
|
+
- Discord community link shown in installer completion message
|
|
649
|
+
|
|
650
|
+
## [1.9.9] - 2026-01-23
|
|
651
|
+
|
|
652
|
+
### Added
|
|
653
|
+
- `/gsd:join-discord` command to quickly access the GSD Discord community invite link
|
|
654
|
+
|
|
655
|
+
## [1.9.8] - 2025-01-22
|
|
656
|
+
|
|
657
|
+
### Added
|
|
658
|
+
- Uninstall flag (`--uninstall`) to cleanly remove GSD from global or local installations
|
|
659
|
+
|
|
660
|
+
### Fixed
|
|
661
|
+
- Context file detection now matches filename variants (handles both `CONTEXT.md` and `{phase}-CONTEXT.md` patterns)
|
|
662
|
+
|
|
663
|
+
## [1.9.7] - 2026-01-22
|
|
664
|
+
|
|
665
|
+
### Fixed
|
|
666
|
+
- OpenCode installer now uses correct XDG-compliant config path (`~/.config/opencode/`) instead of `~/.opencode/`
|
|
667
|
+
- OpenCode commands use flat structure (`command/gsd-help.md`) matching OpenCode's expected format
|
|
668
|
+
- OpenCode permissions written to `~/.config/opencode/opencode.json`
|
|
669
|
+
|
|
670
|
+
## [1.9.6] - 2026-01-22
|
|
671
|
+
|
|
672
|
+
### Added
|
|
673
|
+
- Interactive runtime selection: installer now prompts to choose Claude Code, OpenCode, or both
|
|
674
|
+
- Native OpenCode support: `--opencode` flag converts GSD to OpenCode format automatically
|
|
675
|
+
- `--both` flag to install for both Claude Code and OpenCode in one command
|
|
676
|
+
- Auto-configures `~/.opencode.json` permissions for seamless GSD doc access
|
|
677
|
+
|
|
678
|
+
### Changed
|
|
679
|
+
- Installation flow now asks for runtime first, then location
|
|
680
|
+
- Updated README with new installation options
|
|
681
|
+
|
|
682
|
+
## [1.9.5] - 2025-01-22
|
|
683
|
+
|
|
684
|
+
### Fixed
|
|
685
|
+
- Subagents can now access MCP tools (Context7, etc.) - workaround for Claude Code bug #13898
|
|
686
|
+
- Installer: Escape/Ctrl+C now cancels instead of installing globally
|
|
687
|
+
- Installer: Fixed hook paths on Windows
|
|
688
|
+
- Removed stray backticks in `/gsd:new-project` output
|
|
689
|
+
|
|
690
|
+
### Changed
|
|
691
|
+
- Condensed verbose documentation in templates and workflows (-170 lines)
|
|
692
|
+
- Added CI/CD automation for releases
|
|
693
|
+
|
|
694
|
+
## [1.9.4] - 2026-01-21
|
|
695
|
+
|
|
696
|
+
### Changed
|
|
697
|
+
- Checkpoint automation now enforces automation-first principle: Claude starts servers, handles CLI installs, and fixes setup failures before presenting checkpoints to users
|
|
698
|
+
- Added server lifecycle protocol (port conflict handling, background process management)
|
|
699
|
+
- Added CLI auto-installation handling with safe-to-install matrix
|
|
700
|
+
- Added pre-checkpoint failure recovery (fix broken environment before asking user to verify)
|
|
701
|
+
- DRY refactor: checkpoints.md is now single source of truth for automation patterns
|
|
702
|
+
|
|
703
|
+
## [1.9.2] - 2025-01-21
|
|
704
|
+
|
|
705
|
+
### Removed
|
|
706
|
+
- **Codebase Intelligence System** — Removed due to overengineering concerns
|
|
707
|
+
- Deleted `/gsd:analyze-codebase` command
|
|
708
|
+
- Deleted `/gsd:query-intel` command
|
|
709
|
+
- Removed SQLite graph database and sql.js dependency (21MB)
|
|
710
|
+
- Removed intel hooks (gsd-intel-index.js, gsd-intel-session.js, gsd-intel-prune.js)
|
|
711
|
+
- Removed entity file generation and templates
|
|
712
|
+
|
|
713
|
+
### Fixed
|
|
714
|
+
- new-project now properly includes model_profile in config
|
|
715
|
+
|
|
716
|
+
## [1.9.0] - 2025-01-20
|
|
717
|
+
|
|
718
|
+
### Added
|
|
719
|
+
- **Model Profiles** — `/gsd:set-profile` for quality/balanced/budget agent configurations
|
|
720
|
+
- **Workflow Settings** — `/gsd:settings` command for toggling workflow behaviors interactively
|
|
721
|
+
|
|
722
|
+
### Fixed
|
|
723
|
+
- Orchestrators now inline file contents in Task prompts (fixes context issues with @ references)
|
|
724
|
+
- Tech debt from milestone audit addressed
|
|
725
|
+
- All hooks now use `gsd-` prefix for consistency (statusline.js → gsd-statusline.js)
|
|
726
|
+
|
|
727
|
+
## [1.8.0] - 2026-01-19
|
|
728
|
+
|
|
729
|
+
### Added
|
|
730
|
+
- 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.
|
|
731
|
+
- `/gsd:new-project` now asks about git tracking during initial setup, letting you opt out of committing planning docs from the start
|
|
732
|
+
|
|
733
|
+
## [1.7.1] - 2026-01-19
|
|
734
|
+
|
|
735
|
+
### Fixed
|
|
736
|
+
- Quick task PLAN and SUMMARY files now use numbered prefix (`001-PLAN.md`, `001-SUMMARY.md`) matching regular phase naming convention
|
|
737
|
+
|
|
738
|
+
## [1.7.0] - 2026-01-19
|
|
739
|
+
|
|
740
|
+
### Added
|
|
741
|
+
- **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.
|
|
742
|
+
|
|
743
|
+
### Changed
|
|
744
|
+
- Improved progress bar calculation to clamp values within 0-100 range
|
|
745
|
+
- Updated documentation with comprehensive Quick Mode sections in help.md, README.md, and GSD-STYLE.md
|
|
746
|
+
|
|
747
|
+
### Fixed
|
|
748
|
+
- Console window flash on Windows when running hooks
|
|
749
|
+
- Empty `--config-dir` value validation
|
|
750
|
+
- Consistent `allowed-tools` YAML format across agents
|
|
751
|
+
- Corrected agent name in research-phase heading
|
|
752
|
+
- Removed hardcoded 2025 year from search query examples
|
|
753
|
+
- Removed dead gsd-researcher agent references
|
|
754
|
+
- Integrated unused reference files into documentation
|
|
755
|
+
|
|
756
|
+
### Housekeeping
|
|
757
|
+
- Added homepage and bugs fields to package.json
|
|
758
|
+
|
|
759
|
+
## [1.6.4] - 2026-01-17
|
|
760
|
+
|
|
761
|
+
### Fixed
|
|
762
|
+
- Installation on WSL2/non-TTY terminals now works correctly - detects non-interactive stdin and falls back to global install automatically
|
|
763
|
+
- Installation now verifies files were actually copied before showing success checkmarks
|
|
764
|
+
- Orphaned `gsd-notify.sh` hook from previous versions is now automatically removed during install (both file and settings.json registration)
|
|
765
|
+
|
|
766
|
+
## [1.6.3] - 2025-01-17
|
|
767
|
+
|
|
768
|
+
### Added
|
|
769
|
+
- `--gaps-only` flag for `/gsd:execute-phase` — executes only gap closure plans after verify-work finds issues, eliminating redundant state discovery
|
|
770
|
+
|
|
771
|
+
## [1.6.2] - 2025-01-17
|
|
772
|
+
|
|
773
|
+
### Changed
|
|
774
|
+
- README restructured with clearer 6-step workflow: init → discuss → plan → execute → verify → complete
|
|
775
|
+
- Discuss-phase and verify-work now emphasized as critical steps in core workflow documentation
|
|
776
|
+
- "Subagent Execution" section replaced with "Multi-Agent Orchestration" explaining thin orchestrator pattern and 30-40% context efficiency
|
|
777
|
+
- Brownfield instructions consolidated into callout at top of "How It Works" instead of separate section
|
|
778
|
+
- Phase directories now created at discuss/plan-phase instead of during roadmap creation
|
|
779
|
+
|
|
780
|
+
## [1.6.1] - 2025-01-17
|
|
781
|
+
|
|
782
|
+
### Changed
|
|
783
|
+
- Installer performs clean install of GSD folders, removing orphaned files from previous versions
|
|
784
|
+
- `/gsd:update` shows changelog and asks for confirmation before updating, with clear warning about what gets replaced
|
|
785
|
+
|
|
786
|
+
## [1.6.0] - 2026-01-17
|
|
787
|
+
|
|
788
|
+
### Changed
|
|
789
|
+
- **BREAKING:** Unified `/gsd:new-milestone` flow — now mirrors `/gsd:new-project` with questioning → research → requirements → roadmap in a single command
|
|
790
|
+
- Roadmapper agent now references templates instead of inline structures for easier maintenance
|
|
791
|
+
|
|
792
|
+
### Removed
|
|
793
|
+
- **BREAKING:** `/gsd:discuss-milestone` — consolidated into `/gsd:new-milestone`
|
|
794
|
+
- **BREAKING:** `/gsd:create-roadmap` — integrated into project/milestone flows
|
|
795
|
+
- **BREAKING:** `/gsd:define-requirements` — integrated into project/milestone flows
|
|
796
|
+
- **BREAKING:** `/gsd:research-project` — integrated into project/milestone flows
|
|
797
|
+
|
|
798
|
+
### Added
|
|
799
|
+
- `/gsd:verify-work` now includes next-step routing after verification completes
|
|
800
|
+
|
|
801
|
+
## [1.5.30] - 2026-01-17
|
|
802
|
+
|
|
803
|
+
### Fixed
|
|
804
|
+
- Output templates in `plan-phase`, `execute-phase`, and `audit-milestone` now render markdown correctly instead of showing literal backticks
|
|
805
|
+
- Next-step suggestions now consistently recommend `/gsd:discuss-phase` before `/gsd:plan-phase` across all routing paths
|
|
806
|
+
|
|
807
|
+
## [1.5.29] - 2025-01-16
|
|
808
|
+
|
|
809
|
+
### Changed
|
|
810
|
+
- Discuss-phase now uses domain-aware questioning with deeper probing for gray areas
|
|
811
|
+
|
|
812
|
+
### Fixed
|
|
813
|
+
- Windows hooks now work via Node.js conversion (statusline, update-check)
|
|
814
|
+
- Phase input normalization at command entry points
|
|
815
|
+
- Removed blocking notification popups (gsd-notify) on all platforms
|
|
816
|
+
|
|
817
|
+
## [1.5.28] - 2026-01-16
|
|
818
|
+
|
|
819
|
+
### Changed
|
|
820
|
+
- Consolidated milestone workflow into single command
|
|
821
|
+
- Merged domain expertise skills into agent configurations
|
|
822
|
+
- **BREAKING:** Removed `/gsd:execute-plan` command (use `/gsd:execute-phase` instead)
|
|
823
|
+
|
|
824
|
+
### Fixed
|
|
825
|
+
- Phase directory matching now handles both zero-padded (05-*) and unpadded (5-*) folder names
|
|
826
|
+
- Map-codebase agent output collection
|
|
827
|
+
|
|
828
|
+
## [1.5.27] - 2026-01-16
|
|
829
|
+
|
|
830
|
+
### Fixed
|
|
831
|
+
- Orchestrator corrections between executor completions are now committed (previously left uncommitted when orchestrator made small fixes between waves)
|
|
832
|
+
|
|
833
|
+
## [1.5.26] - 2026-01-16
|
|
834
|
+
|
|
835
|
+
### Fixed
|
|
836
|
+
- Revised plans now get committed after checker feedback (previously only initial plans were committed, leaving revisions uncommitted)
|
|
837
|
+
|
|
838
|
+
## [1.5.25] - 2026-01-16
|
|
839
|
+
|
|
840
|
+
### Fixed
|
|
841
|
+
- Stop notification hook no longer shows stale project state (now uses session-scoped todos only)
|
|
842
|
+
- Researcher agent now reliably loads CONTEXT.md from discuss-phase
|
|
843
|
+
|
|
844
|
+
## [1.5.24] - 2026-01-16
|
|
845
|
+
|
|
846
|
+
### Fixed
|
|
847
|
+
- Stop notification hook now correctly parses STATE.md fields (was always showing "Ready for input")
|
|
848
|
+
- Planner agent now reliably loads CONTEXT.md and RESEARCH.md files
|
|
849
|
+
|
|
850
|
+
## [1.5.23] - 2025-01-16
|
|
851
|
+
|
|
852
|
+
### Added
|
|
853
|
+
- Cross-platform completion notification hook (Mac/Linux/Windows alerts when Claude stops)
|
|
854
|
+
- Phase researcher now loads CONTEXT.md from discuss-phase to focus research on user decisions
|
|
855
|
+
|
|
856
|
+
### Fixed
|
|
857
|
+
- Consistent zero-padding for phase directories (01-name, not 1-name)
|
|
858
|
+
- Plan file naming: `{phase}-{plan}-PLAN.md` pattern restored across all agents
|
|
859
|
+
- Double-path bug in researcher git add command
|
|
860
|
+
- Removed `/gsd:research-phase` from next-step suggestions (use `/gsd:plan-phase` instead)
|
|
861
|
+
|
|
862
|
+
## [1.5.22] - 2025-01-16
|
|
863
|
+
|
|
864
|
+
### Added
|
|
865
|
+
- Statusline update indicator — shows `⬆ /gsd:update` when a new version is available
|
|
866
|
+
|
|
867
|
+
### Fixed
|
|
868
|
+
- Planner now updates ROADMAP.md placeholders after planning completes
|
|
869
|
+
|
|
870
|
+
## [1.5.21] - 2026-01-16
|
|
871
|
+
|
|
872
|
+
### Added
|
|
873
|
+
- GSD brand system for consistent UI (checkpoint boxes, stage banners, status symbols)
|
|
874
|
+
- Research synthesizer agent that consolidates parallel research into SUMMARY.md
|
|
875
|
+
|
|
876
|
+
### Changed
|
|
877
|
+
- **Unified `/gsd:new-project` flow** — Single command now handles questions → research → requirements → roadmap (~10 min)
|
|
878
|
+
- Simplified README to reflect streamlined workflow: new-project → plan-phase → execute-phase
|
|
879
|
+
- Added optional `/gsd:discuss-phase` documentation for UI/UX/behavior decisions before planning
|
|
880
|
+
|
|
881
|
+
### Fixed
|
|
882
|
+
- verify-work now shows clear checkpoint box with action prompt ("Type 'pass' or describe what's wrong")
|
|
883
|
+
- Planner uses correct `{phase}-{plan}-PLAN.md` naming convention
|
|
884
|
+
- Planner no longer surfaces internal `user_setup` in output
|
|
885
|
+
- Research synthesizer commits all research files together (not individually)
|
|
886
|
+
- Project researcher agent can no longer commit (orchestrator handles commits)
|
|
887
|
+
- Roadmap requires explicit user approval before committing
|
|
888
|
+
|
|
889
|
+
## [1.5.20] - 2026-01-16
|
|
890
|
+
|
|
891
|
+
### Fixed
|
|
892
|
+
- Research no longer skipped based on premature "Research: Unlikely" predictions made during roadmap creation. The `--skip-research` flag provides explicit control when needed.
|
|
893
|
+
|
|
894
|
+
### Removed
|
|
895
|
+
- `Research: Likely/Unlikely` fields from roadmap phase template
|
|
896
|
+
- `detect_research_needs` step from roadmap creation workflow
|
|
897
|
+
- Roadmap-based research skip logic from planner agent
|
|
898
|
+
|
|
899
|
+
## [1.5.19] - 2026-01-16
|
|
900
|
+
|
|
901
|
+
### Changed
|
|
902
|
+
- `/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
|
|
903
|
+
- Explicit scope guardrail prevents scope creep during discussion — captures deferred ideas without acting on them
|
|
904
|
+
- CONTEXT.md template restructured for decisions (domain boundary, decisions by category, Claude's discretion, deferred ideas)
|
|
905
|
+
- Downstream awareness: discuss-phase now explicitly documents that CONTEXT.md feeds researcher and planner agents
|
|
906
|
+
- `/gsd:plan-phase` now integrates research — spawns `gsd-phase-researcher` before planning unless research exists or `--skip-research` flag used
|
|
907
|
+
|
|
908
|
+
## [1.5.18] - 2026-01-16
|
|
909
|
+
|
|
910
|
+
### Added
|
|
911
|
+
- **Plan verification loop** — Plans are now verified before execution with a planner → checker → revise cycle
|
|
912
|
+
- New `gsd-plan-checker` agent (744 lines) validates plans will achieve phase goals
|
|
913
|
+
- Six verification dimensions: requirement coverage, task completeness, dependency correctness, key links, scope sanity, must_haves derivation
|
|
914
|
+
- Max 3 revision iterations before user escalation
|
|
915
|
+
- `--skip-verify` flag for experienced users who want to bypass verification
|
|
916
|
+
- **Dedicated planner agent** — `gsd-planner` (1,319 lines) consolidates all planning expertise
|
|
917
|
+
- Complete methodology: discovery levels, task breakdown, dependency graphs, scope estimation, goal-backward analysis
|
|
918
|
+
- Revision mode for handling checker feedback
|
|
919
|
+
- TDD integration and checkpoint patterns
|
|
920
|
+
- **Statusline integration** — Context usage, model, and current task display
|
|
921
|
+
|
|
922
|
+
### Changed
|
|
923
|
+
- `/gsd:plan-phase` refactored to thin orchestrator pattern (310 lines)
|
|
924
|
+
- Spawns `gsd-planner` for planning, `gsd-plan-checker` for verification
|
|
925
|
+
- User sees status between agent spawns (not a black box)
|
|
926
|
+
- Planning references deprecated with redirects to `gsd-planner` agent sections
|
|
927
|
+
- `plan-format.md`, `scope-estimation.md`, `goal-backward.md`, `principles.md`
|
|
928
|
+
- `workflows/plan-phase.md`
|
|
929
|
+
|
|
930
|
+
### Fixed
|
|
931
|
+
- Removed zombie `gsd-milestone-auditor` agent (was accidentally re-added after correct deletion)
|
|
932
|
+
|
|
933
|
+
### Removed
|
|
934
|
+
- Phase 99 throwaway test files
|
|
935
|
+
|
|
936
|
+
## [1.5.17] - 2026-01-15
|
|
937
|
+
|
|
938
|
+
### Added
|
|
939
|
+
- New `/gsd:update` command — check for updates, install, and display changelog of what changed (better UX than raw `npx get-shit-done-cc`)
|
|
940
|
+
|
|
941
|
+
## [1.5.16] - 2026-01-15
|
|
942
|
+
|
|
943
|
+
### Added
|
|
944
|
+
- New `gsd-researcher` agent (915 lines) with comprehensive research methodology, 4 research modes (ecosystem, feasibility, implementation, comparison), source hierarchy, and verification protocols
|
|
945
|
+
- New `gsd-debugger` agent (990 lines) with scientific debugging methodology, hypothesis testing, and 7+ investigation techniques
|
|
946
|
+
- New `gsd-codebase-mapper` agent for brownfield codebase analysis
|
|
947
|
+
- Research subagent prompt template for context-only spawning
|
|
948
|
+
|
|
949
|
+
### Changed
|
|
950
|
+
- `/gsd:research-phase` refactored to thin orchestrator — now injects rich context (key insight framing, downstream consumer info, quality gates) to gsd-researcher agent
|
|
951
|
+
- `/gsd:research-project` refactored to spawn 4 parallel gsd-researcher agents with milestone-aware context (greenfield vs v1.1+) and roadmap implications guidance
|
|
952
|
+
- `/gsd:debug` refactored to thin orchestrator (149 lines) — spawns gsd-debugger agent with full debugging expertise
|
|
953
|
+
- `/gsd:new-milestone` now explicitly references MILESTONE-CONTEXT.md
|
|
954
|
+
|
|
955
|
+
### Deprecated
|
|
956
|
+
- `workflows/research-phase.md` — consolidated into gsd-researcher agent
|
|
957
|
+
- `workflows/research-project.md` — consolidated into gsd-researcher agent
|
|
958
|
+
- `workflows/debug.md` — consolidated into gsd-debugger agent
|
|
959
|
+
- `references/research-pitfalls.md` — consolidated into gsd-researcher agent
|
|
960
|
+
- `references/debugging.md` — consolidated into gsd-debugger agent
|
|
961
|
+
- `references/debug-investigation.md` — consolidated into gsd-debugger agent
|
|
962
|
+
|
|
963
|
+
## [1.5.15] - 2025-01-15
|
|
964
|
+
|
|
965
|
+
### Fixed
|
|
966
|
+
- **Agents now install correctly** — The `agents/` folder (gsd-executor, gsd-verifier, gsd-integration-checker, gsd-milestone-auditor) was missing from npm package, now included
|
|
967
|
+
|
|
968
|
+
### Changed
|
|
969
|
+
- Consolidated `/gsd:plan-fix` into `/gsd:plan-phase --gaps` for simpler workflow
|
|
970
|
+
- UAT file writes now batched instead of per-response for better performance
|
|
971
|
+
|
|
972
|
+
## [1.5.14] - 2025-01-15
|
|
973
|
+
|
|
974
|
+
### Fixed
|
|
975
|
+
- Plan-phase now always routes to `/gsd:execute-phase` after planning, even for single-plan phases
|
|
976
|
+
|
|
977
|
+
## [1.5.13] - 2026-01-15
|
|
978
|
+
|
|
979
|
+
### Fixed
|
|
980
|
+
- `/gsd:new-milestone` now presents research and requirements paths as equal options, matching `/gsd:new-project` format
|
|
981
|
+
|
|
982
|
+
## [1.5.12] - 2025-01-15
|
|
983
|
+
|
|
984
|
+
### Changed
|
|
985
|
+
- **Milestone cycle reworked for proper requirements flow:**
|
|
986
|
+
- `complete-milestone` now archives AND deletes ROADMAP.md and REQUIREMENTS.md (fresh for next milestone)
|
|
987
|
+
- `new-milestone` is now a "brownfield new-project" — updates PROJECT.md with new goals, routes to define-requirements
|
|
988
|
+
- `discuss-milestone` is now required before `new-milestone` (creates context file)
|
|
989
|
+
- `research-project` is milestone-aware — focuses on new features, ignores already-validated requirements
|
|
990
|
+
- `create-roadmap` continues phase numbering from previous milestone
|
|
991
|
+
- Flow: complete → discuss → new-milestone → research → requirements → roadmap
|
|
992
|
+
|
|
993
|
+
### Fixed
|
|
994
|
+
- `MILESTONE-AUDIT.md` now versioned as `v{version}-MILESTONE-AUDIT.md` and archived on completion
|
|
995
|
+
- `progress` now correctly routes to `/gsd:discuss-milestone` when between milestones (Route F)
|
|
996
|
+
|
|
997
|
+
## [1.5.11] - 2025-01-15
|
|
998
|
+
|
|
999
|
+
### Changed
|
|
1000
|
+
- 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
|
|
1001
|
+
|
|
1002
|
+
## [1.5.10] - 2025-01-15
|
|
1003
|
+
|
|
1004
|
+
### Changed
|
|
1005
|
+
- 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
|
|
1006
|
+
|
|
1007
|
+
### Fixed
|
|
1008
|
+
- VERIFICATION.md now included in phase completion commit alongside ROADMAP.md, STATE.md, and REQUIREMENTS.md
|
|
1009
|
+
|
|
1010
|
+
## [1.5.9] - 2025-01-15
|
|
1011
|
+
|
|
1012
|
+
### Added
|
|
1013
|
+
- Milestone audit system (`/gsd:audit-milestone`) for verifying milestone completion with parallel verification agents
|
|
1014
|
+
|
|
1015
|
+
### Changed
|
|
1016
|
+
- Checkpoint display format improved with box headers and unmissable "→ YOUR ACTION:" prompts
|
|
1017
|
+
- Subagent colors updated (executor: yellow, integration-checker: blue)
|
|
1018
|
+
- Execute-phase now recommends `/gsd:audit-milestone` when milestone completes
|
|
1019
|
+
|
|
1020
|
+
### Fixed
|
|
1021
|
+
- Research-phase no longer gatekeeps by domain type
|
|
1022
|
+
|
|
1023
|
+
### Removed
|
|
1024
|
+
- Domain expertise feature (`~/.claude/skills/expertise/`) - was personal tooling not available to other users
|
|
1025
|
+
|
|
1026
|
+
## [1.5.8] - 2025-01-15
|
|
1027
|
+
|
|
1028
|
+
### Added
|
|
1029
|
+
- Verification loop: When gaps are found, verifier generates fix plans that execute automatically before re-verifying
|
|
1030
|
+
|
|
1031
|
+
### Changed
|
|
1032
|
+
- `gsd-executor` subagent color changed from red to blue
|
|
1033
|
+
|
|
1034
|
+
## [1.5.7] - 2025-01-15
|
|
1035
|
+
|
|
1036
|
+
### Added
|
|
1037
|
+
- `gsd-executor` subagent: Dedicated agent for plan execution with full workflow logic built-in
|
|
1038
|
+
- `gsd-verifier` subagent: Goal-backward verification that checks if phase goals are actually achieved (not just tasks completed)
|
|
1039
|
+
- Phase verification: Automatic verification runs when a phase completes to catch stubs and incomplete implementations
|
|
1040
|
+
- Goal-backward planning reference: Documentation for deriving must-haves from goals
|
|
1041
|
+
|
|
1042
|
+
### Changed
|
|
1043
|
+
- execute-plan and execute-phase now spawn `gsd-executor` subagent instead of using inline workflow
|
|
1044
|
+
- Roadmap and planning workflows enhanced with goal-backward analysis
|
|
1045
|
+
|
|
1046
|
+
### Removed
|
|
1047
|
+
- Obsolete templates (`checkpoint-resume.md`, `subagent-task-prompt.md`) — logic now lives in subagents
|
|
1048
|
+
|
|
1049
|
+
### Fixed
|
|
1050
|
+
- Updated remaining `general-purpose` subagent references to use `gsd-executor`
|
|
1051
|
+
|
|
1052
|
+
## [1.5.6] - 2025-01-15
|
|
1053
|
+
|
|
1054
|
+
### Changed
|
|
1055
|
+
- README: Separated flow into distinct steps (1 → 1.5 → 2 → 3 → 4 → 5) making `research-project` clearly optional and `define-requirements` required
|
|
1056
|
+
- README: Research recommended for quality; skip only for speed
|
|
1057
|
+
|
|
1058
|
+
### Fixed
|
|
1059
|
+
- execute-phase: Phase metadata (timing, wave info) now bundled into single commit instead of separate commits
|
|
1060
|
+
|
|
1061
|
+
## [1.5.5] - 2025-01-15
|
|
1062
|
+
|
|
1063
|
+
### Changed
|
|
1064
|
+
- README now documents the `research-project` → `define-requirements` flow (optional but recommended before `create-roadmap`)
|
|
1065
|
+
- Commands section reorganized into 7 grouped tables (Setup, Execution, Verification, Milestones, Phase Management, Session, Utilities) for easier scanning
|
|
1066
|
+
- Context Engineering table now includes `research/` and `REQUIREMENTS.md`
|
|
1067
|
+
|
|
1068
|
+
## [1.5.4] - 2025-01-15
|
|
1069
|
+
|
|
1070
|
+
### Changed
|
|
1071
|
+
- Research phase now loads REQUIREMENTS.md to focus research on concrete requirements (e.g., "email verification") rather than just high-level roadmap descriptions
|
|
1072
|
+
|
|
1073
|
+
## [1.5.3] - 2025-01-15
|
|
1074
|
+
|
|
1075
|
+
### Changed
|
|
1076
|
+
- **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.
|
|
1077
|
+
- **new-project flow**: Now offers two paths — research first (recommended) or define requirements directly (fast path for familiar domains)
|
|
1078
|
+
- **define-requirements**: Works without prior research. Gathers requirements through conversation when FEATURES.md doesn't exist.
|
|
1079
|
+
|
|
1080
|
+
### Removed
|
|
1081
|
+
- Dead `/gsd:status` command (referenced abandoned background agent model)
|
|
1082
|
+
- Unused `agent-history.md` template
|
|
1083
|
+
- `_archive/` directory with old execute-phase version
|
|
1084
|
+
|
|
1085
|
+
## [1.5.2] - 2026-01-15
|
|
1086
|
+
|
|
1087
|
+
### Added
|
|
1088
|
+
- Requirements traceability: roadmap phases now include `Requirements:` field listing which REQ-IDs they cover
|
|
1089
|
+
- plan-phase loads REQUIREMENTS.md and shows phase-specific requirements before planning
|
|
1090
|
+
- Requirements automatically marked Complete when phase finishes
|
|
1091
|
+
|
|
1092
|
+
### Changed
|
|
1093
|
+
- Workflow preferences (mode, depth, parallelization) now asked in single prompt instead of 3 separate questions
|
|
1094
|
+
- define-requirements shows full requirements list inline before commit (not just counts)
|
|
1095
|
+
- Research-project and workflow aligned to both point to define-requirements as next step
|
|
1096
|
+
|
|
1097
|
+
### Fixed
|
|
1098
|
+
- Requirements status now updated by orchestrator (commands) instead of subagent workflow, which couldn't determine phase completion
|
|
1099
|
+
|
|
1100
|
+
## [1.5.1] - 2026-01-14
|
|
1101
|
+
|
|
1102
|
+
### Changed
|
|
1103
|
+
- Research agents write their own files directly (STACK.md, FEATURES.md, ARCHITECTURE.md, PITFALLS.md) instead of returning results to orchestrator
|
|
1104
|
+
- Slimmed principles.md and load it dynamically in core commands
|
|
1105
|
+
|
|
1106
|
+
## [1.5.0] - 2026-01-14
|
|
1107
|
+
|
|
1108
|
+
### Added
|
|
1109
|
+
- 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
|
|
1110
|
+
- New `/gsd:define-requirements` command for scoping v1 requirements from research findings — transforms "what exists in this domain" into "what we're building"
|
|
1111
|
+
- Requirements traceability: phases now map to specific requirement IDs with 100% coverage validation
|
|
1112
|
+
|
|
1113
|
+
### Changed
|
|
1114
|
+
- **BREAKING:** New project flow is now: `new-project → research-project → define-requirements → create-roadmap`
|
|
1115
|
+
- Roadmap creation now requires REQUIREMENTS.md and validates all v1 requirements are mapped to phases
|
|
1116
|
+
- Simplified questioning in new-project to four essentials (vision, core priority, boundaries, constraints)
|
|
1117
|
+
|
|
1118
|
+
## [1.4.29] - 2026-01-14
|
|
1119
|
+
|
|
1120
|
+
### Removed
|
|
1121
|
+
- Deleted obsolete `_archive/execute-phase.md` and `status.md` commands
|
|
1122
|
+
|
|
1123
|
+
## [1.4.28] - 2026-01-14
|
|
1124
|
+
|
|
1125
|
+
### Fixed
|
|
1126
|
+
- Restored comprehensive checkpoint documentation with full examples for verification, decisions, and auth gates
|
|
1127
|
+
- Fixed execute-plan command to use fresh continuation agents instead of broken resume pattern
|
|
1128
|
+
- Rich checkpoint presentation formats now documented for all three checkpoint types
|
|
1129
|
+
|
|
1130
|
+
### Changed
|
|
1131
|
+
- Slimmed execute-phase command to properly delegate checkpoint handling to workflow
|
|
1132
|
+
|
|
1133
|
+
## [1.4.27] - 2025-01-14
|
|
1134
|
+
|
|
1135
|
+
### Fixed
|
|
1136
|
+
- Restored "what to do next" commands after plan/phase execution completes — orchestrator pattern conversion had inadvertently removed the copy/paste-ready next-step routing
|
|
1137
|
+
|
|
1138
|
+
## [1.4.26] - 2026-01-14
|
|
1139
|
+
|
|
1140
|
+
### Added
|
|
1141
|
+
- Full changelog history backfilled from git (66 historical versions from 1.0.0 to 1.4.23)
|
|
1142
|
+
|
|
1143
|
+
## [1.4.25] - 2026-01-14
|
|
1144
|
+
|
|
1145
|
+
### Added
|
|
1146
|
+
- New `/gsd:whats-new` command shows changes since your installed version
|
|
1147
|
+
- VERSION file written during installation for version tracking
|
|
1148
|
+
- CHANGELOG.md now included in package installation
|
|
1149
|
+
|
|
1150
|
+
## [1.4.24] - 2026-01-14
|
|
1151
|
+
|
|
1152
|
+
### Added
|
|
1153
|
+
- USER-SETUP.md template for external service configuration
|
|
1154
|
+
|
|
1155
|
+
### Removed
|
|
1156
|
+
- **BREAKING:** ISSUES.md system (replaced by phase-scoped UAT issues and TODOs)
|
|
1157
|
+
|
|
1158
|
+
## [1.4.23] - 2026-01-14
|
|
1159
|
+
|
|
1160
|
+
### Changed
|
|
1161
|
+
- Removed dead ISSUES.md system code
|
|
1162
|
+
|
|
1163
|
+
## [1.4.22] - 2026-01-14
|
|
1164
|
+
|
|
1165
|
+
### Added
|
|
1166
|
+
- Subagent isolation for debug investigations with checkpoint support
|
|
1167
|
+
|
|
1168
|
+
### Fixed
|
|
1169
|
+
- DEBUG_DIR path constant to prevent typos in debug workflow
|
|
1170
|
+
|
|
1171
|
+
## [1.4.21] - 2026-01-14
|
|
1172
|
+
|
|
1173
|
+
### Fixed
|
|
1174
|
+
- SlashCommand tool added to plan-fix allowed-tools
|
|
1175
|
+
|
|
1176
|
+
## [1.4.20] - 2026-01-14
|
|
1177
|
+
|
|
1178
|
+
### Fixed
|
|
1179
|
+
- Standardized debug file naming convention
|
|
1180
|
+
- Debug workflow now invokes execute-plan correctly
|
|
1181
|
+
|
|
1182
|
+
## [1.4.19] - 2026-01-14
|
|
1183
|
+
|
|
1184
|
+
### Fixed
|
|
1185
|
+
- Auto-diagnose issues instead of offering choice in plan-fix
|
|
1186
|
+
|
|
1187
|
+
## [1.4.18] - 2026-01-14
|
|
1188
|
+
|
|
1189
|
+
### Added
|
|
1190
|
+
- Parallel diagnosis before plan-fix execution
|
|
1191
|
+
|
|
1192
|
+
## [1.4.17] - 2026-01-14
|
|
1193
|
+
|
|
1194
|
+
### Changed
|
|
1195
|
+
- Redesigned verify-work as conversational UAT with persistent state
|
|
1196
|
+
|
|
1197
|
+
## [1.4.16] - 2026-01-13
|
|
1198
|
+
|
|
1199
|
+
### Added
|
|
1200
|
+
- Pre-execution summary for interactive mode in execute-plan
|
|
1201
|
+
- Pre-computed wave numbers at plan time
|
|
1202
|
+
|
|
1203
|
+
## [1.4.15] - 2026-01-13
|
|
1204
|
+
|
|
1205
|
+
### Added
|
|
1206
|
+
- Context rot explanation to README header
|
|
1207
|
+
|
|
1208
|
+
## [1.4.14] - 2026-01-13
|
|
1209
|
+
|
|
1210
|
+
### Changed
|
|
1211
|
+
- YOLO mode is now recommended default in new-project
|
|
1212
|
+
|
|
1213
|
+
## [1.4.13] - 2026-01-13
|
|
1214
|
+
|
|
1215
|
+
### Fixed
|
|
1216
|
+
- Brownfield flow documentation
|
|
1217
|
+
- Removed deprecated resume-task references
|
|
1218
|
+
|
|
1219
|
+
## [1.4.12] - 2026-01-13
|
|
1220
|
+
|
|
1221
|
+
### Changed
|
|
1222
|
+
- execute-phase is now recommended as primary execution command
|
|
1223
|
+
|
|
1224
|
+
## [1.4.11] - 2026-01-13
|
|
1225
|
+
|
|
1226
|
+
### Fixed
|
|
1227
|
+
- Checkpoints now use fresh continuation agents instead of resume
|
|
1228
|
+
|
|
1229
|
+
## [1.4.10] - 2026-01-13
|
|
1230
|
+
|
|
1231
|
+
### Changed
|
|
1232
|
+
- execute-plan converted to orchestrator pattern for performance
|
|
1233
|
+
|
|
1234
|
+
## [1.4.9] - 2026-01-13
|
|
1235
|
+
|
|
1236
|
+
### Changed
|
|
1237
|
+
- Removed subagent-only context from execute-phase orchestrator
|
|
1238
|
+
|
|
1239
|
+
### Fixed
|
|
1240
|
+
- Removed "what's out of scope" question from discuss-phase
|
|
1241
|
+
|
|
1242
|
+
## [1.4.8] - 2026-01-13
|
|
1243
|
+
|
|
1244
|
+
### Added
|
|
1245
|
+
- TDD reasoning explanation restored to plan-phase docs
|
|
1246
|
+
|
|
1247
|
+
## [1.4.7] - 2026-01-13
|
|
1248
|
+
|
|
1249
|
+
### Added
|
|
1250
|
+
- Project state loading before execution in execute-phase
|
|
1251
|
+
|
|
1252
|
+
### Fixed
|
|
1253
|
+
- Parallel execution marked as recommended, not experimental
|
|
1254
|
+
|
|
1255
|
+
## [1.4.6] - 2026-01-13
|
|
1256
|
+
|
|
1257
|
+
### Added
|
|
1258
|
+
- Checkpoint pause/resume for spawned agents
|
|
1259
|
+
- Deviation rules, commit rules, and workflow references to execute-phase
|
|
1260
|
+
|
|
1261
|
+
## [1.4.5] - 2026-01-13
|
|
1262
|
+
|
|
1263
|
+
### Added
|
|
1264
|
+
- Parallel-first planning with dependency graphs
|
|
1265
|
+
- Checkpoint-resume capability for long-running phases
|
|
1266
|
+
- `.claude/rules/` directory for auto-loaded contribution rules
|
|
1267
|
+
|
|
1268
|
+
### Changed
|
|
1269
|
+
- execute-phase uses wave-based blocking execution
|
|
1270
|
+
|
|
1271
|
+
## [1.4.4] - 2026-01-13
|
|
1272
|
+
|
|
1273
|
+
### Fixed
|
|
1274
|
+
- Inline listing for multiple active debug sessions
|
|
1275
|
+
|
|
1276
|
+
## [1.4.3] - 2026-01-13
|
|
1277
|
+
|
|
1278
|
+
### Added
|
|
1279
|
+
- `/gsd:debug` command for systematic debugging with persistent state
|
|
1280
|
+
|
|
1281
|
+
## [1.4.2] - 2026-01-13
|
|
1282
|
+
|
|
1283
|
+
### Fixed
|
|
1284
|
+
- Installation verification step clarification
|
|
1285
|
+
|
|
1286
|
+
## [1.4.1] - 2026-01-13
|
|
1287
|
+
|
|
1288
|
+
### Added
|
|
1289
|
+
- Parallel phase execution via `/gsd:execute-phase`
|
|
1290
|
+
- Parallel-aware planning in `/gsd:plan-phase`
|
|
1291
|
+
- `/gsd:status` command for parallel agent monitoring
|
|
1292
|
+
- Parallelization configuration in config.json
|
|
1293
|
+
- Wave-based parallel execution with dependency graphs
|
|
1294
|
+
|
|
1295
|
+
### Changed
|
|
1296
|
+
- Renamed `execute-phase.md` workflow to `execute-plan.md` for clarity
|
|
1297
|
+
- Plan frontmatter now includes `wave`, `depends_on`, `files_modified`, `autonomous`
|
|
1298
|
+
|
|
1299
|
+
## [1.4.0] - 2026-01-12
|
|
1300
|
+
|
|
1301
|
+
### Added
|
|
1302
|
+
- Full parallel phase execution system
|
|
1303
|
+
- Parallelization frontmatter in plan templates
|
|
1304
|
+
- Dependency analysis for parallel task scheduling
|
|
1305
|
+
- Agent history schema v1.2 with parallel execution support
|
|
1306
|
+
|
|
1307
|
+
### Changed
|
|
1308
|
+
- Plans can now specify wave numbers and dependencies
|
|
1309
|
+
- execute-phase orchestrates multiple subagents in waves
|
|
1310
|
+
|
|
1311
|
+
## [1.3.34] - 2026-01-11
|
|
1312
|
+
|
|
1313
|
+
### Added
|
|
1314
|
+
- `/gsd:add-todo` and `/gsd:check-todos` for mid-session idea capture
|
|
1315
|
+
|
|
1316
|
+
## [1.3.33] - 2026-01-11
|
|
1317
|
+
|
|
1318
|
+
### Fixed
|
|
1319
|
+
- Consistent zero-padding for decimal phase numbers (e.g., 01.1)
|
|
1320
|
+
|
|
1321
|
+
### Changed
|
|
1322
|
+
- Removed obsolete .claude-plugin directory
|
|
1323
|
+
|
|
1324
|
+
## [1.3.32] - 2026-01-10
|
|
1325
|
+
|
|
1326
|
+
### Added
|
|
1327
|
+
- `/gsd:resume-task` for resuming interrupted subagent executions
|
|
1328
|
+
|
|
1329
|
+
## [1.3.31] - 2026-01-08
|
|
1330
|
+
|
|
1331
|
+
### Added
|
|
1332
|
+
- Planning principles for security, performance, and observability
|
|
1333
|
+
- Pro patterns section in README
|
|
1334
|
+
|
|
1335
|
+
## [1.3.30] - 2026-01-08
|
|
1336
|
+
|
|
1337
|
+
### Added
|
|
1338
|
+
- verify-work option surfaces after plan execution
|
|
1339
|
+
|
|
1340
|
+
## [1.3.29] - 2026-01-08
|
|
1341
|
+
|
|
1342
|
+
### Added
|
|
1343
|
+
- `/gsd:verify-work` for conversational UAT validation
|
|
1344
|
+
- `/gsd:plan-fix` for fixing UAT issues
|
|
1345
|
+
- UAT issues template
|
|
1346
|
+
|
|
1347
|
+
## [1.3.28] - 2026-01-07
|
|
1348
|
+
|
|
1349
|
+
### Added
|
|
1350
|
+
- `--config-dir` CLI argument for multi-account setups
|
|
1351
|
+
- `/gsd:remove-phase` command
|
|
1352
|
+
|
|
1353
|
+
### Fixed
|
|
1354
|
+
- Validation for --config-dir edge cases
|
|
1355
|
+
|
|
1356
|
+
## [1.3.27] - 2026-01-07
|
|
1357
|
+
|
|
1358
|
+
### Added
|
|
1359
|
+
- Recommended permissions mode documentation
|
|
1360
|
+
|
|
1361
|
+
### Fixed
|
|
1362
|
+
- Mandatory verification enforced before phase/milestone completion routing
|
|
1363
|
+
|
|
1364
|
+
## [1.3.26] - 2026-01-06
|
|
1365
|
+
|
|
1366
|
+
### Added
|
|
1367
|
+
- Claude Code marketplace plugin support
|
|
1368
|
+
|
|
1369
|
+
### Fixed
|
|
1370
|
+
- Phase artifacts now committed when created
|
|
1371
|
+
|
|
1372
|
+
## [1.3.25] - 2026-01-06
|
|
1373
|
+
|
|
1374
|
+
### Fixed
|
|
1375
|
+
- Milestone discussion context persists across /clear
|
|
1376
|
+
|
|
1377
|
+
## [1.3.24] - 2026-01-06
|
|
1378
|
+
|
|
1379
|
+
### Added
|
|
1380
|
+
- `CLAUDE_CONFIG_DIR` environment variable support
|
|
1381
|
+
|
|
1382
|
+
## [1.3.23] - 2026-01-06
|
|
1383
|
+
|
|
1384
|
+
### Added
|
|
1385
|
+
- Non-interactive install flags (`--global`, `--local`) for Docker/CI
|
|
1386
|
+
|
|
1387
|
+
## [1.3.22] - 2026-01-05
|
|
1388
|
+
|
|
1389
|
+
### Changed
|
|
1390
|
+
- Removed unused auto.md command
|
|
1391
|
+
|
|
1392
|
+
## [1.3.21] - 2026-01-05
|
|
1393
|
+
|
|
1394
|
+
### Changed
|
|
1395
|
+
- TDD features use dedicated plans for full context quality
|
|
1396
|
+
|
|
1397
|
+
## [1.3.20] - 2026-01-05
|
|
1398
|
+
|
|
1399
|
+
### Added
|
|
1400
|
+
- Per-task atomic commits for better AI observability
|
|
1401
|
+
|
|
1402
|
+
## [1.3.19] - 2026-01-05
|
|
1403
|
+
|
|
1404
|
+
### Fixed
|
|
1405
|
+
- Clarified create-milestone.md file locations with explicit instructions
|
|
1406
|
+
|
|
1407
|
+
## [1.3.18] - 2026-01-05
|
|
1408
|
+
|
|
1409
|
+
### Added
|
|
1410
|
+
- YAML frontmatter schema with dependency graph metadata
|
|
1411
|
+
- Intelligent context assembly via frontmatter dependency graph
|
|
1412
|
+
|
|
1413
|
+
## [1.3.17] - 2026-01-04
|
|
1414
|
+
|
|
1415
|
+
### Fixed
|
|
1416
|
+
- Clarified depth controls compression, not inflation in planning
|
|
1417
|
+
|
|
1418
|
+
## [1.3.16] - 2026-01-04
|
|
1419
|
+
|
|
1420
|
+
### Added
|
|
1421
|
+
- Depth parameter for planning thoroughness (`--depth=1-5`)
|
|
1422
|
+
|
|
1423
|
+
## [1.3.15] - 2026-01-01
|
|
1424
|
+
|
|
1425
|
+
### Fixed
|
|
1426
|
+
- TDD reference loaded directly in commands
|
|
1427
|
+
|
|
1428
|
+
## [1.3.14] - 2025-12-31
|
|
1429
|
+
|
|
1430
|
+
### Added
|
|
1431
|
+
- TDD integration with detection, annotation, and execution flow
|
|
1432
|
+
|
|
1433
|
+
## [1.3.13] - 2025-12-29
|
|
1434
|
+
|
|
1435
|
+
### Fixed
|
|
1436
|
+
- Restored deterministic bash commands
|
|
1437
|
+
- Removed redundant decision_gate
|
|
1438
|
+
|
|
1439
|
+
## [1.3.12] - 2025-12-29
|
|
1440
|
+
|
|
1441
|
+
### Fixed
|
|
1442
|
+
- Restored plan-format.md as output template
|
|
1443
|
+
|
|
1444
|
+
## [1.3.11] - 2025-12-29
|
|
1445
|
+
|
|
1446
|
+
### Changed
|
|
1447
|
+
- 70% context reduction for plan-phase workflow
|
|
1448
|
+
- Merged CLI automation into checkpoints
|
|
1449
|
+
- Compressed scope-estimation (74% reduction) and plan-phase.md (66% reduction)
|
|
1450
|
+
|
|
1451
|
+
## [1.3.10] - 2025-12-29
|
|
1452
|
+
|
|
1453
|
+
### Fixed
|
|
1454
|
+
- Explicit plan count check in offer_next step
|
|
1455
|
+
|
|
1456
|
+
## [1.3.9] - 2025-12-27
|
|
1457
|
+
|
|
1458
|
+
### Added
|
|
1459
|
+
- Evolutionary PROJECT.md system with incremental updates
|
|
1460
|
+
|
|
1461
|
+
## [1.3.8] - 2025-12-18
|
|
1462
|
+
|
|
1463
|
+
### Added
|
|
1464
|
+
- Brownfield/existing projects section in README
|
|
1465
|
+
|
|
1466
|
+
## [1.3.7] - 2025-12-18
|
|
1467
|
+
|
|
1468
|
+
### Fixed
|
|
1469
|
+
- Improved incremental codebase map updates
|
|
1470
|
+
|
|
1471
|
+
## [1.3.6] - 2025-12-18
|
|
1472
|
+
|
|
1473
|
+
### Added
|
|
1474
|
+
- File paths included in codebase mapping output
|
|
1475
|
+
|
|
1476
|
+
## [1.3.5] - 2025-12-17
|
|
1477
|
+
|
|
1478
|
+
### Fixed
|
|
1479
|
+
- Removed arbitrary 100-line limit from codebase mapping
|
|
1480
|
+
|
|
1481
|
+
## [1.3.4] - 2025-12-17
|
|
1482
|
+
|
|
1483
|
+
### Fixed
|
|
1484
|
+
- Inline code for Next Up commands (avoids nesting ambiguity)
|
|
1485
|
+
|
|
1486
|
+
## [1.3.3] - 2025-12-17
|
|
1487
|
+
|
|
1488
|
+
### Fixed
|
|
1489
|
+
- Check PROJECT.md not .planning/ directory for existing project detection
|
|
1490
|
+
|
|
1491
|
+
## [1.3.2] - 2025-12-17
|
|
1492
|
+
|
|
1493
|
+
### Added
|
|
1494
|
+
- Git commit step to map-codebase workflow
|
|
1495
|
+
|
|
1496
|
+
## [1.3.1] - 2025-12-17
|
|
1497
|
+
|
|
1498
|
+
### Added
|
|
1499
|
+
- `/gsd:map-codebase` documentation in help and README
|
|
1500
|
+
|
|
1501
|
+
## [1.3.0] - 2025-12-17
|
|
1502
|
+
|
|
1503
|
+
### Added
|
|
1504
|
+
- `/gsd:map-codebase` command for brownfield project analysis
|
|
1505
|
+
- Codebase map templates (stack, architecture, structure, conventions, testing, integrations, concerns)
|
|
1506
|
+
- Parallel Explore agent orchestration for codebase analysis
|
|
1507
|
+
- Brownfield integration into GSD workflows
|
|
1508
|
+
|
|
1509
|
+
### Changed
|
|
1510
|
+
- Improved continuation UI with context and visual hierarchy
|
|
1511
|
+
|
|
1512
|
+
### Fixed
|
|
1513
|
+
- Permission errors for non-DSP users (removed shell context)
|
|
1514
|
+
- First question is now freeform, not AskUserQuestion
|
|
1515
|
+
|
|
1516
|
+
## [1.2.13] - 2025-12-17
|
|
1517
|
+
|
|
1518
|
+
### Added
|
|
1519
|
+
- Improved continuation UI with context and visual hierarchy
|
|
1520
|
+
|
|
1521
|
+
## [1.2.12] - 2025-12-17
|
|
1522
|
+
|
|
1523
|
+
### Fixed
|
|
1524
|
+
- First question should be freeform, not AskUserQuestion
|
|
1525
|
+
|
|
1526
|
+
## [1.2.11] - 2025-12-17
|
|
1527
|
+
|
|
1528
|
+
### Fixed
|
|
1529
|
+
- Permission errors for non-DSP users (removed shell context)
|
|
1530
|
+
|
|
1531
|
+
## [1.2.10] - 2025-12-16
|
|
1532
|
+
|
|
1533
|
+
### Fixed
|
|
1534
|
+
- Inline command invocation replaced with clear-then-paste pattern
|
|
1535
|
+
|
|
1536
|
+
## [1.2.9] - 2025-12-16
|
|
1537
|
+
|
|
1538
|
+
### Fixed
|
|
1539
|
+
- Git init runs in current directory
|
|
1540
|
+
|
|
1541
|
+
## [1.2.8] - 2025-12-16
|
|
1542
|
+
|
|
1543
|
+
### Changed
|
|
1544
|
+
- Phase count derived from work scope, not arbitrary limits
|
|
1545
|
+
|
|
1546
|
+
## [1.2.7] - 2025-12-16
|
|
1547
|
+
|
|
1548
|
+
### Fixed
|
|
1549
|
+
- AskUserQuestion mandated for all exploration questions
|
|
1550
|
+
|
|
1551
|
+
## [1.2.6] - 2025-12-16
|
|
1552
|
+
|
|
1553
|
+
### Changed
|
|
1554
|
+
- Internal refactoring
|
|
1555
|
+
|
|
1556
|
+
## [1.2.5] - 2025-12-16
|
|
1557
|
+
|
|
1558
|
+
### Changed
|
|
1559
|
+
- `<if mode>` tags for yolo/interactive branching
|
|
1560
|
+
|
|
1561
|
+
## [1.2.4] - 2025-12-16
|
|
1562
|
+
|
|
1563
|
+
### Fixed
|
|
1564
|
+
- Stale CONTEXT.md references updated to new vision structure
|
|
1565
|
+
|
|
1566
|
+
## [1.2.3] - 2025-12-16
|
|
1567
|
+
|
|
1568
|
+
### Fixed
|
|
1569
|
+
- Enterprise language removed from help and discuss-milestone
|
|
1570
|
+
|
|
1571
|
+
## [1.2.2] - 2025-12-16
|
|
1572
|
+
|
|
1573
|
+
### Fixed
|
|
1574
|
+
- new-project completion presented inline instead of as question
|
|
1575
|
+
|
|
1576
|
+
## [1.2.1] - 2025-12-16
|
|
1577
|
+
|
|
1578
|
+
### Fixed
|
|
1579
|
+
- AskUserQuestion restored for decision gate in questioning flow
|
|
1580
|
+
|
|
1581
|
+
## [1.2.0] - 2025-12-15
|
|
1582
|
+
|
|
1583
|
+
### Changed
|
|
1584
|
+
- Research workflow implemented as Claude Code context injection
|
|
1585
|
+
|
|
1586
|
+
## [1.1.2] - 2025-12-15
|
|
1587
|
+
|
|
1588
|
+
### Fixed
|
|
1589
|
+
- YOLO mode now skips confirmation gates in plan-phase
|
|
1590
|
+
|
|
1591
|
+
## [1.1.1] - 2025-12-15
|
|
1592
|
+
|
|
1593
|
+
### Added
|
|
1594
|
+
- README documentation for new research workflow
|
|
1595
|
+
|
|
1596
|
+
## [1.1.0] - 2025-12-15
|
|
1597
|
+
|
|
1598
|
+
### Added
|
|
1599
|
+
- Pre-roadmap research workflow
|
|
1600
|
+
- `/gsd:research-phase` for niche domain ecosystem discovery
|
|
1601
|
+
- `/gsd:research-project` command with workflow and templates
|
|
1602
|
+
- `/gsd:create-roadmap` command with research-aware workflow
|
|
1603
|
+
- Research subagent prompt templates
|
|
1604
|
+
|
|
1605
|
+
### Changed
|
|
1606
|
+
- new-project split to only create PROJECT.md + config.json
|
|
1607
|
+
- Questioning rewritten as thinking partner, not interviewer
|
|
1608
|
+
|
|
1609
|
+
## [1.0.11] - 2025-12-15
|
|
1610
|
+
|
|
1611
|
+
### Added
|
|
1612
|
+
- `/gsd:research-phase` for niche domain ecosystem discovery
|
|
1613
|
+
|
|
1614
|
+
## [1.0.10] - 2025-12-15
|
|
1615
|
+
|
|
1616
|
+
### Fixed
|
|
1617
|
+
- Scope creep prevention in discuss-phase command
|
|
1618
|
+
|
|
1619
|
+
## [1.0.9] - 2025-12-15
|
|
1620
|
+
|
|
1621
|
+
### Added
|
|
1622
|
+
- Phase CONTEXT.md loaded in plan-phase command
|
|
1623
|
+
|
|
1624
|
+
## [1.0.8] - 2025-12-15
|
|
1625
|
+
|
|
1626
|
+
### Changed
|
|
1627
|
+
- PLAN.md included in phase completion commits
|
|
1628
|
+
|
|
1629
|
+
## [1.0.7] - 2025-12-15
|
|
1630
|
+
|
|
1631
|
+
### Added
|
|
1632
|
+
- Path replacement for local installs
|
|
1633
|
+
|
|
1634
|
+
## [1.0.6] - 2025-12-15
|
|
1635
|
+
|
|
1636
|
+
### Changed
|
|
1637
|
+
- Internal improvements
|
|
1638
|
+
|
|
1639
|
+
## [1.0.5] - 2025-12-15
|
|
1640
|
+
|
|
1641
|
+
### Added
|
|
1642
|
+
- Global/local install prompt during setup
|
|
1643
|
+
|
|
1644
|
+
### Fixed
|
|
1645
|
+
- Bin path fixed (removed ./)
|
|
1646
|
+
- .DS_Store ignored
|
|
1647
|
+
|
|
1648
|
+
## [1.0.4] - 2025-12-15
|
|
1649
|
+
|
|
1650
|
+
### Fixed
|
|
1651
|
+
- Bin name and circular dependency removed
|
|
1652
|
+
|
|
1653
|
+
## [1.0.3] - 2025-12-15
|
|
1654
|
+
|
|
1655
|
+
### Added
|
|
1656
|
+
- TDD guidance in planning workflow
|
|
1657
|
+
|
|
1658
|
+
## [1.0.2] - 2025-12-15
|
|
1659
|
+
|
|
1660
|
+
### Added
|
|
1661
|
+
- Issue triage system to prevent deferred issue pile-up
|
|
1662
|
+
|
|
1663
|
+
## [1.0.1] - 2025-12-15
|
|
1664
|
+
|
|
1665
|
+
### Added
|
|
1666
|
+
- Initial npm package release
|
|
1667
|
+
|
|
1668
|
+
## [1.0.0] - 2025-12-14
|
|
1669
|
+
|
|
1670
|
+
### Added
|
|
1671
|
+
- Initial release of GSD (Get Shit Done) meta-prompting system
|
|
1672
|
+
- Core slash commands: `/gsd:new-project`, `/gsd:discuss-phase`, `/gsd:plan-phase`, `/gsd:execute-phase`
|
|
1673
|
+
- PROJECT.md and STATE.md templates
|
|
1674
|
+
- Phase-based development workflow
|
|
1675
|
+
- YOLO mode for autonomous execution
|
|
1676
|
+
- Interactive mode with checkpoints
|
|
1677
|
+
|
|
1678
|
+
[Unreleased]: https://github.com/glittercowboy/get-shit-done/compare/v2.0.0...HEAD
|
|
1679
|
+
[2.0.0]: https://github.com/glittercowboy/get-shit-done/compare/v1.20.6...v2.0.0
|
|
1680
|
+
[1.20.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.20.6
|
|
1681
|
+
[1.20.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.20.5
|
|
1682
|
+
[1.20.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.20.4
|
|
1683
|
+
[1.20.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.20.3
|
|
1684
|
+
[1.20.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.20.2
|
|
1685
|
+
[1.20.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.20.1
|
|
1686
|
+
[1.20.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.20.0
|
|
1687
|
+
[1.19.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.19.2
|
|
1688
|
+
[1.19.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.19.1
|
|
1689
|
+
[1.19.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.19.0
|
|
1690
|
+
[1.18.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.18.0
|
|
1691
|
+
[1.17.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.17.0
|
|
1692
|
+
[1.16.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.16.0
|
|
1693
|
+
[1.15.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.15.0
|
|
1694
|
+
[1.14.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.14.0
|
|
1695
|
+
[1.13.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.13.0
|
|
1696
|
+
[1.12.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.12.1
|
|
1697
|
+
[1.12.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.12.0
|
|
1698
|
+
[1.11.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.11.2
|
|
1699
|
+
[1.11.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.11.0
|
|
1700
|
+
[1.10.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.10.1
|
|
1701
|
+
[1.10.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.10.0
|
|
1702
|
+
[1.9.12]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.12
|
|
1703
|
+
[1.9.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.11
|
|
1704
|
+
[1.9.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.10
|
|
1705
|
+
[1.9.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.9
|
|
1706
|
+
[1.9.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.8
|
|
1707
|
+
[1.9.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.7
|
|
1708
|
+
[1.9.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.6
|
|
1709
|
+
[1.9.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.5
|
|
1710
|
+
[1.9.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.4
|
|
1711
|
+
[1.9.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.2
|
|
1712
|
+
[1.9.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.9.0
|
|
1713
|
+
[1.8.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.8.0
|
|
1714
|
+
[1.7.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.7.1
|
|
1715
|
+
[1.7.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.7.0
|
|
1716
|
+
[1.6.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.6.4
|
|
1717
|
+
[1.6.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.6.3
|
|
1718
|
+
[1.6.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.6.2
|
|
1719
|
+
[1.6.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.6.1
|
|
1720
|
+
[1.6.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.6.0
|
|
1721
|
+
[1.5.30]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.30
|
|
1722
|
+
[1.5.29]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.29
|
|
1723
|
+
[1.5.28]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.28
|
|
1724
|
+
[1.5.27]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.27
|
|
1725
|
+
[1.5.26]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.26
|
|
1726
|
+
[1.5.25]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.25
|
|
1727
|
+
[1.5.24]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.24
|
|
1728
|
+
[1.5.23]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.23
|
|
1729
|
+
[1.5.22]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.22
|
|
1730
|
+
[1.5.21]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.21
|
|
1731
|
+
[1.5.20]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.20
|
|
1732
|
+
[1.5.19]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.19
|
|
1733
|
+
[1.5.18]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.18
|
|
1734
|
+
[1.5.17]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.17
|
|
1735
|
+
[1.5.16]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.16
|
|
1736
|
+
[1.5.15]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.15
|
|
1737
|
+
[1.5.14]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.14
|
|
1738
|
+
[1.5.13]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.13
|
|
1739
|
+
[1.5.12]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.12
|
|
1740
|
+
[1.5.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.11
|
|
1741
|
+
[1.5.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.10
|
|
1742
|
+
[1.5.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.9
|
|
1743
|
+
[1.5.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.8
|
|
1744
|
+
[1.5.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.7
|
|
1745
|
+
[1.5.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.6
|
|
1746
|
+
[1.5.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.5
|
|
1747
|
+
[1.5.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.4
|
|
1748
|
+
[1.5.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.3
|
|
1749
|
+
[1.5.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.2
|
|
1750
|
+
[1.5.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.1
|
|
1751
|
+
[1.5.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.5.0
|
|
1752
|
+
[1.4.29]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.29
|
|
1753
|
+
[1.4.28]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.28
|
|
1754
|
+
[1.4.27]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.27
|
|
1755
|
+
[1.4.26]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.26
|
|
1756
|
+
[1.4.25]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.25
|
|
1757
|
+
[1.4.24]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.24
|
|
1758
|
+
[1.4.23]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.23
|
|
1759
|
+
[1.4.22]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.22
|
|
1760
|
+
[1.4.21]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.21
|
|
1761
|
+
[1.4.20]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.20
|
|
1762
|
+
[1.4.19]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.19
|
|
1763
|
+
[1.4.18]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.18
|
|
1764
|
+
[1.4.17]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.17
|
|
1765
|
+
[1.4.16]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.16
|
|
1766
|
+
[1.4.15]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.15
|
|
1767
|
+
[1.4.14]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.14
|
|
1768
|
+
[1.4.13]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.13
|
|
1769
|
+
[1.4.12]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.12
|
|
1770
|
+
[1.4.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.11
|
|
1771
|
+
[1.4.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.10
|
|
1772
|
+
[1.4.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.9
|
|
1773
|
+
[1.4.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.8
|
|
1774
|
+
[1.4.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.7
|
|
1775
|
+
[1.4.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.6
|
|
1776
|
+
[1.4.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.5
|
|
1777
|
+
[1.4.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.4
|
|
1778
|
+
[1.4.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.3
|
|
1779
|
+
[1.4.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.2
|
|
1780
|
+
[1.4.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.1
|
|
1781
|
+
[1.4.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.4.0
|
|
1782
|
+
[1.3.34]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.34
|
|
1783
|
+
[1.3.33]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.33
|
|
1784
|
+
[1.3.32]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.32
|
|
1785
|
+
[1.3.31]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.31
|
|
1786
|
+
[1.3.30]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.30
|
|
1787
|
+
[1.3.29]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.29
|
|
1788
|
+
[1.3.28]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.28
|
|
1789
|
+
[1.3.27]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.27
|
|
1790
|
+
[1.3.26]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.26
|
|
1791
|
+
[1.3.25]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.25
|
|
1792
|
+
[1.3.24]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.24
|
|
1793
|
+
[1.3.23]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.23
|
|
1794
|
+
[1.3.22]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.22
|
|
1795
|
+
[1.3.21]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.21
|
|
1796
|
+
[1.3.20]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.20
|
|
1797
|
+
[1.3.19]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.19
|
|
1798
|
+
[1.3.18]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.18
|
|
1799
|
+
[1.3.17]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.17
|
|
1800
|
+
[1.3.16]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.16
|
|
1801
|
+
[1.3.15]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.15
|
|
1802
|
+
[1.3.14]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.14
|
|
1803
|
+
[1.3.13]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.13
|
|
1804
|
+
[1.3.12]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.12
|
|
1805
|
+
[1.3.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.11
|
|
1806
|
+
[1.3.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.10
|
|
1807
|
+
[1.3.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.9
|
|
1808
|
+
[1.3.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.8
|
|
1809
|
+
[1.3.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.7
|
|
1810
|
+
[1.3.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.6
|
|
1811
|
+
[1.3.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.5
|
|
1812
|
+
[1.3.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.4
|
|
1813
|
+
[1.3.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.3
|
|
1814
|
+
[1.3.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.2
|
|
1815
|
+
[1.3.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.1
|
|
1816
|
+
[1.3.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.3.0
|
|
1817
|
+
[1.2.13]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.13
|
|
1818
|
+
[1.2.12]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.12
|
|
1819
|
+
[1.2.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.11
|
|
1820
|
+
[1.2.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.10
|
|
1821
|
+
[1.2.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.9
|
|
1822
|
+
[1.2.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.8
|
|
1823
|
+
[1.2.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.7
|
|
1824
|
+
[1.2.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.6
|
|
1825
|
+
[1.2.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.5
|
|
1826
|
+
[1.2.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.4
|
|
1827
|
+
[1.2.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.3
|
|
1828
|
+
[1.2.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.2
|
|
1829
|
+
[1.2.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.1
|
|
1830
|
+
[1.2.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.2.0
|
|
1831
|
+
[1.1.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.1.2
|
|
1832
|
+
[1.1.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.1.1
|
|
1833
|
+
[1.1.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.1.0
|
|
1834
|
+
[1.0.11]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.11
|
|
1835
|
+
[1.0.10]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.10
|
|
1836
|
+
[1.0.9]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.9
|
|
1837
|
+
[1.0.8]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.8
|
|
1838
|
+
[1.0.7]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.7
|
|
1839
|
+
[1.0.6]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.6
|
|
1840
|
+
[1.0.5]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.5
|
|
1841
|
+
[1.0.4]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.4
|
|
1842
|
+
[1.0.3]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.3
|
|
1843
|
+
[1.0.2]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.2
|
|
1844
|
+
[1.0.1]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.1
|
|
1845
|
+
[1.0.0]: https://github.com/glittercowboy/get-shit-done/releases/tag/v1.0.0
|