gsdd-cli 0.24.0 → 0.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,11 @@
2
2
 
3
3
  # Workspine
4
4
 
5
- **AI development that stays consistent across agents and sessions.** Plans are checked, work is verified, and progress is tracked in the repo.
5
+ Workspine is a repo-native delivery spine for AI-assisted software work: planning, checking, execution, verification, and handoff live in the repo so any agent or runtime can pick up where the last one stopped.
6
+
7
+ Directly validated today: Claude Code, Codex CLI, OpenCode. Qualified support: Cursor, Copilot, Gemini.
8
+
9
+ The public product name is Workspine. The retained technical contracts remain `gsdd-cli`, `gsdd`, `gsdd-*`, and `.planning/`.
6
10
 
7
11
  [![npm version](https://img.shields.io/npm/v/gsdd-cli?style=for-the-badge&logo=npm&logoColor=white&color=CB3837)](https://www.npmjs.com/package/gsdd-cli)
8
12
  [![License](https://img.shields.io/badge/license-MIT-blue?style=for-the-badge)](LICENSE)
@@ -11,623 +15,170 @@
11
15
  npx -y gsdd-cli init
12
16
  ```
13
17
 
14
- **Directly validated today:** Claude Code, Codex CLI, and OpenCode.
15
- **Qualified support:** Cursor, Copilot, and Gemini CLI can use the shared `.agents/skills/` surface when their skill or slash discovery sees it; this release does not claim the same runtime proof or ergonomics.
18
+ Use `npx -y gsdd-cli init` for repo-local setup. Use `npx -y gsdd-cli install --global` to install reusable Workspine skills and native runtime surfaces into your agent homes so they are available across repos.
16
19
 
17
20
  </div>
18
21
 
19
- One repo-native spine for planning, checking, execution, verification, and handoff — so AI-assisted work survives cold starts, runtime switches, and session loss.
20
-
21
- ---
22
-
23
- ## What This Is
24
-
25
- Workspine is a repo-native delivery spine for long-horizon AI-assisted software work. It keeps planning, execution, verification, handoff, and progress state in the repo so work survives cold starts, runtime switches, and session loss.
26
-
27
- Workspine is the product name. The package, CLI commands, workflow prefixes, and workspace directory remain `gsdd-cli`, `gsdd`, `gsdd-*`, and `.planning/` — these are retained technical contracts, not rename residue.
28
-
29
- ### Lineage
30
-
31
- Workspine began as a fork of [Get Shit Done](https://github.com/gsd-build/get-shit-done), whose long-horizon delivery spine proved the problem was real. Since the fork, upstream GSD has continued evolving into a broad multi-runtime framework — as of April 2026, GSD v1 documents 81 commands and 78 workflows across 33 agents. Workspine took a different path: 14 public workflow surfaces, generated runtime adapters from a portable core, evidence-gated closure, and provenance-aware continuity. The trade-off is deliberate: a narrower surface with stricter closure and fewer moving parts for the human operator.
22
+ Tracked consumer proof pack: [docs/proof/consumer-node-cli/README.md](docs/proof/consumer-node-cli/README.md)
32
23
 
33
24
  ---
34
25
 
35
- ## What's Different
36
-
37
- ### Context survives cold starts, tool switches, and session loss
38
-
39
- Planning, phase artifacts, verification reports, and handoff checkpoints live in `.planning/`. When you switch runtimes or come back after a week, the repo still knows what was planned, what was executed, what was verified, and where you stopped.
40
-
41
- <details>
42
- <summary>How it works</summary>
43
-
44
- Three-layer continuity model: durable project truth (SPEC, ROADMAP, design decisions), live workflow state (phase plans, summaries, checkpoints), and compressed judgment (active constraints, anti-regression rules). Pause/resume workflows write and read these layers explicitly. No session memory required.
45
-
46
- </details>
47
-
48
- ### Done means verified, not merely generated
49
-
50
- Verification is a separate workflow with a separate context window, not a checkbox at the end of execution. It checks three levels — do the files exist, is the code substantive (not stubs), and is it actually wired into the system — plus an anti-pattern scan.
51
-
52
- <details>
53
- <summary>How it works</summary>
26
+ ## How it works
54
27
 
55
- `gsdd-verify` runs after execution and produces a typed verification report. `gsdd-audit-milestone` checks cross-phase integration, requirement coverage, and end-to-end flows. Evidence-gated closure prevents marking work done without the right evidence kinds (code, test, runtime, delivery, human).
28
+ `init` places workflow skills in `.agents/skills/` and optionally native adapters for your runtime. Then you run workflows through your agent each one writes files to the repo:
56
29
 
57
- </details>
30
+ | Workflow | Writes | What for |
31
+ |----------|--------|----------|
32
+ | `gsdd-new-project` | `.planning/SPEC.md`, `ROADMAP.md` | Define the project and phases |
33
+ | `gsdd-plan` | `.planning/phases/N/PLAN.md` | Research and review before any code gets written |
34
+ | `gsdd-execute` | `.planning/phases/N/SUMMARY.md` | Implement the approved plan, nothing more |
35
+ | `gsdd-verify` | `.planning/phases/N/VERIFICATION.md` | Confirm the plan's claims are actually true |
58
36
 
59
- ### Rules that must be consistent are enforced by code, not by memory
37
+ The discipline: plan first, execute only what's approved, verify before closing. Each phase summary carries forward what was decided, so the next session starts with context instead of from scratch.
60
38
 
61
- Named regression suites guard properties that PRs repeatedly broke: delegate-role reference integrity, workflow vendor-API cleanliness, artifact schema consistency, plan-checker dimension coverage, and cross-document drift.
39
+ For agent continuity across long sessions, `gsdd next` reads `.work/` plus repo truth and emits the next coherent action as a structured packet. Use `gsdd next --init` to bootstrap `.work`; plain `gsdd next` is read-only. Captured stdout defaults to JSON; use `gsdd next --format human` for the compact supervisor card.
62
40
 
63
- <details>
64
- <summary>How it works</summary>
41
+ `gsdd next` keeps the human surface tight and the agent surface structured. JSON packets include typed `next_action` values for CLI commands, workflow skills, manual review, and user-question gates. Blocking questions, decisions, graph rebuilds, and dogfood findings use explicit subcommands; duplicate question, decision, and dogfood IDs replay as unchanged when the content matches and fail unless `--replace` is passed when the content differs. The continuity graph records answer and supersession edges so future agents can reconstruct decision history without rereading raw transcripts.
65
42
 
66
- Invariant suites (I-series), guard suites (G-series), and scenario suites (S-series) run on every change. Each assertion includes a `FIX:` instruction so failures are actionable. `distilled/DESIGN.md` records the rationale with evidence trails.
43
+ Workspine ships 14 workflows. The package and CLI are `gsdd-cli` / `gsdd-*` retained as the technical contract under the Workspine product name.
67
44
 
68
- </details>
69
-
70
- ### Smaller surface, stricter closure
71
-
72
- 4 main workflows, 14 public workflow surfaces, 10 roles, one CLI. The daily spine is `new-project -> plan -> execute -> verify`; milestone, quick, pause/resume, progress, audit, and mapping surfaces support that spine. Lifecycle progression goes through deterministic preflight gates — not conversational inference. Plans are checked by a separate agent in a separate context before execution begins. Closure requires evidence, not just file existence.
73
-
74
- <details>
75
- <summary>How it works</summary>
45
+ ---
76
46
 
77
- `gsdd-plan` is terminal: it writes planning artifacts and stops. Execution requires an explicit `gsdd-execute` transition. `lifecycle-preflight` evaluates eligibility from repo artifacts before allowing state changes. `phase-status` is the only explicit ROADMAP mutator. `progress` is read-only.
47
+ ## What This Is
78
48
 
79
- </details>
49
+ Workspine gives coding agents a durable workflow spine for work that spans sessions, agents, or runtimes. It does not host a control plane; it writes portable planning and proof artifacts into the repo.
80
50
 
81
- **Target user:** Developer or small team that wants one durable delivery spine across coding runtimes, with explicit checks and repo-native proof instead of a dashboard or orchestration control plane.
51
+ Workspine began as a fork of Get Shit Done and keeps the verification-first delivery spine while stripping runtime lock-in.
82
52
 
83
53
  ---
84
54
 
85
55
  ## Getting Started
86
56
 
57
+ ### Quickstart
58
+
87
59
  ```bash
88
60
  npx -y gsdd-cli init
89
61
  ```
90
62
 
91
- This creates:
92
-
93
- 1. `.planning/` — durable workspace with templates, role contracts, and config
94
- 2. `.agents/skills/gsdd-*` — compact open-standard workflow entrypoints for agents
95
- 3. `.planning/bin/gsdd.mjs` — repo-local helper runtime for deterministic workflow commands inside generated skills (run helper commands from the repo root)
96
- 4. Optional tool-specific adapters you choose in the install wizard (Claude skills/commands/agents, OpenCode commands/agents, Codex CLI agents, optional governance)
97
-
98
- Then pick the first workflow lane that matches your situation:
99
-
100
- - `gsdd-new-project` for greenfield work, fuzzy brownfield work, or milestone-shaped work
101
- - `gsdd-quick` for a concrete bounded brownfield change
102
- - `gsdd-map-codebase` first when the repo is unfamiliar, risky, or needs a deeper baseline before choosing a lane
103
-
104
- In a terminal, `npx -y gsdd-cli init` opens a guided install wizard. If you installed the package globally, `gsdd init` is the equivalent shorthand:
105
-
106
- - Step 1: select the runtimes/vendors you want to support
107
- - Step 2: decide separately whether repo-wide `AGENTS.md` governance is worth installing
108
- - Step 3: configure planning defaults in the same guided flow
109
-
110
- Portable `.agents/skills/gsdd-*` skills and the repo-local `.planning/bin/gsdd.mjs` helper runtime are always generated. The wizard controls extra native adapters and optional governance, not the portable baseline. Workflow helper commands assume the repo root as the current working directory.
111
- When those generated surfaces exist locally, `npx -y gsdd-cli health` checks them against current render output instead of asking you to trust manual review. If installed globally, `gsdd health` is equivalent.
112
-
113
- ### Launch Proof Status
114
-
115
- - **Directly validated:** Claude Code, Codex CLI, and OpenCode have recorded `plan -> execute -> verify` evidence for the core lifecycle.
116
- - **Qualified support:** Cursor, Copilot, and Gemini CLI can use the shared `.agents/skills/` surface when their skill or slash discovery sees it; this release does not claim the same runtime proof or ergonomics.
117
- - **Runtime-surface freshness:** Installed generated skills and native adapters are renderer-checked locally; repair stays deterministic through `npx -y gsdd-cli update` or, when globally installed, `gsdd update`.
118
-
119
- Start with the public proof pack:
120
-
121
- - [Brownfield proof](docs/BROWNFIELD-PROOF.md)
122
- - [Exported consumer proof pack](docs/proof/consumer-node-cli/README.md)
123
- - [Runtime support matrix](docs/RUNTIME-SUPPORT.md)
124
- - [Verification discipline](docs/VERIFICATION-DISCIPLINE.md)
125
-
126
- ### Quickstart (after init)
63
+ `init` is the guided install wizard for repo-local setup. It creates `.agents/skills/gsdd-*` workflow entrypoints and the `.planning/bin/gsdd*` helper runtime in the current repo; optional runtime adapters improve native discovery.
127
64
 
128
- Runtime floor: Node 20+.
65
+ Invoke after init:
129
66
 
130
- Your tool determines how you invoke workflows after `npx gsdd-cli init`:
67
+ - Claude Code / OpenCode: slash commands such as `/gsdd-plan`.
68
+ - Codex CLI: portable `gsdd-plan` skill reference (`$gsdd-plan`), with `.codex/agents/gsdd-plan-checker.toml` for native checker isolation.
69
+ - Cursor / Copilot / Gemini: Use slash commands if your tool discovers `.agents/skills`; if it does not, open `.agents/skills/gsdd-<workflow>/SKILL.md`.
131
70
 
132
- - **Claude Code / OpenCode:** Use native slash commands directly — `/gsdd-new-project`, `/gsdd-plan`, etc.
133
- - **Codex CLI:** Use skill references — `$gsdd-new-project`, `$gsdd-plan`, etc. `$gsdd-plan` writes the plan and stops; start a separate `$gsdd-execute` run when you want implementation to begin.
134
- - **Codex VS Code extension / Codex app:** Do not assume Codex CLI skill discovery. If slash/skill discovery is unavailable, open `.agents/skills/gsdd-<workflow>/SKILL.md` and paste or follow it in the agent chat.
135
- - **Cursor / Copilot / Gemini:** Use slash commands if your tool discovers `.agents/skills/`; if it does not, open `.agents/skills/gsdd-<workflow>/SKILL.md` and paste or follow the instructions.
136
- - **Other AI tools:** Open `.agents/skills/gsdd-<workflow>/SKILL.md` and follow the instructions.
137
-
138
- | Runtime | Preferred invocation | Fallback |
139
- |----------|----------------------|----------|
140
- | Claude Code / OpenCode | `/gsdd-plan` via native slash command | Open `.agents/skills/gsdd-plan/SKILL.md` |
141
- | Codex CLI | `$gsdd-plan` skill reference | Open `.agents/skills/gsdd-plan/SKILL.md` |
142
- | Codex VS Code / app | Native discovery if available | Open or paste `.agents/skills/gsdd-plan/SKILL.md` |
143
- | Cursor / Copilot / Gemini | `/gsdd-plan` when skill/slash discovery is available | Open or paste `.agents/skills/gsdd-plan/SKILL.md` |
144
-
145
- If you generate the root `AGENTS.md` block, it adds the framework's behavioral governance. For Cursor, Copilot, and Gemini, that governance is optional discipline on top of skills or slash discovery — not the mechanism that makes workflows discoverable. The clean prompt/token-saving story is the compact `.agents/skills/` entrypoints plus repo artifacts; native adapters and governance surfaces are optional conveniences, not required runtime bulk.
146
-
147
- ### Choose Your Starting Workflow
148
-
149
- | Situation | Start here | Why |
150
- |----------|------------|-----|
151
- | Greenfield project, or brownfield work that is fuzzy / broad / milestone-shaped | `gsdd-new-project` | This is the full initializer. On brownfield repos it will run codebase mapping internally when it needs it. |
152
- | Brownfield repo and the bounded change is already concrete | `gsdd-quick` | This is the bounded-change lane. It can use existing codebase maps when present and otherwise builds a just-enough inline brownfield baseline. |
153
- | Brownfield repo is unfamiliar, risky, or you want a deeper baseline before choosing the lane | `gsdd-map-codebase` | This is the deeper orientation pass. Use it when the inline quick baseline would be too weak, then continue with `gsdd-quick` or `gsdd-new-project`. |
154
-
155
- ### Platform Adapters
156
-
157
- Workspine generates adapters for whichever tools you use:
71
+ Headless setup is available for CI or scripted installs:
158
72
 
159
73
  ```bash
160
- npx -y gsdd-cli init # Guided install wizard (detected runtimes preselected)
161
- npx -y gsdd-cli init --tools claude # Claude Code: .claude/skills + commands + agents
162
- npx -y gsdd-cli init --tools opencode # OpenCode: .opencode/commands + agents
163
- npx -y gsdd-cli init --tools codex # Codex CLI: portable skills + .codex/agents checker
164
- npx -y gsdd-cli init --tools agents # Root AGENTS.md governance fallback
165
- npx -y gsdd-cli init --tools cursor # Backward-compatible AGENTS.md governance alias
166
- npx -y gsdd-cli init --tools all # All of the above
74
+ npx -y gsdd-cli init --auto --tools all
75
+ npx -y gsdd-cli init --auto --tools codex --brief path/to/brief.md
167
76
  ```
168
77
 
169
- | Platform | Public claim | What's generated |
170
- |----------|--------------|-----------------|
171
- | **All** (default) | Shared portable surface | `.agents/skills/gsdd-*/SKILL.md` plus `.planning/bin/gsdd.mjs` — portable workflow entrypoints and repo-local helper runtime (always generated) |
172
- | **Claude Code** | Directly validated | `.claude/skills/`, `.claude/commands/`, `.claude/agents/` — native workflow surfaces, freshness-checked when generated locally |
173
- | **OpenCode** | Directly validated | `.opencode/commands/`, `.opencode/agents/` — native workflow surfaces, freshness-checked when generated locally |
174
- | **Codex CLI** | Directly validated | Portable `gsdd-plan` skill entry plus `.planning/bin/gsdd.mjs` and `.codex/agents/gsdd-plan-checker.toml`; planning stays locked until explicit `$gsdd-execute`, and installed surfaces are freshness-checked locally |
175
- | **Codex VS Code / app** | Fallback only | Open or paste `.agents/skills/gsdd-*/SKILL.md` unless that product surface exposes compatible skill discovery; not claimed as Codex CLI validation |
176
- | **Cursor / Copilot / Gemini** | Qualified support | Uses `.agents/skills/` when skill/slash discovery is available; optional root `AGENTS.md` block adds behavioral governance, and the generated skill surface is freshness-checked locally |
177
- | **Other AI tools** | Fallback only | Open `.agents/skills/gsdd-*/SKILL.md` directly |
78
+ ### Global Agent Install
178
79
 
179
- ### Updating And Repair
80
+ If `gsdd-cli` is installed globally, install reusable Workspine surfaces into your agent homes:
180
81
 
181
82
  ```bash
182
- npx -y gsdd-cli update # Regenerate adapters from latest sources
183
- npx -y gsdd-cli update --tools claude # Update specific platform only
184
- npx -y gsdd-cli update --templates # Refresh .planning/templates/ and role contracts from framework source
83
+ npx -y gsdd-cli install --global
84
+ npx -y gsdd-cli install --global --tools claude,opencode,codex,copilot
185
85
  ```
186
86
 
187
- Use `gsdd health` first when you want a status check. Use `npx gsdd-cli update` when the generated runtime-facing surfaces are missing, drifted, or you want the latest generated output. If a runtime is only in the qualified-support tier, `health` and `update` still cover generated-surface drift; they do not imply parity-level runtime proof.
87
+ When run in a TTY without `--tools`, `install --global` lets you select which agents to install. It does not create `.planning/` in the current repo. It writes Workspine-managed skills, native agent surfaces, and per-runtime manifests under the selected agent homes:
188
88
 
189
- ### Non-Interactive Mode (CI / Automation)
89
+ | Target | Global surfaces |
90
+ |--------|-----------------|
91
+ | Claude Code | `~/.claude/skills`, `~/.claude/commands`, `~/.claude/agents` |
92
+ | OpenCode | `~/.agents/skills`, `~/.config/opencode/commands`, `~/.config/opencode/agents` |
93
+ | Codex CLI | `~/.agents/skills`, `~/.codex/agents` |
94
+ | GitHub Copilot CLI | `~/.agents/skills`, `~/.copilot/agents` |
190
95
 
191
- For non-interactive environments:
96
+ Install availability is not a parity claim. Claude Code, OpenCode, and Codex CLI remain the directly validated runtimes; GitHub Copilot CLI is available as a qualified global target.
192
97
 
193
- ```bash
194
- npx -y gsdd-cli init --auto --tools claude
195
- npx -y gsdd-cli init --auto --tools claude --brief path/to/PRD.md
196
- ```
98
+ OpenCode honors `OPENCODE_CONFIG_DIR` for commands and agents; Workspine installs portable skills once in the shared agent-compatible global root.
197
99
 
198
- `--auto` skips the interactive install wizard and uses default configuration. It does **not** run downstream workflows (`new-project`, `plan`, `execute`, `verify`) — those are always explicit. `--brief` copies a project document to `.planning/PROJECT_BRIEF.md` for `new-project` to consume.
100
+ ### Which workflow to start with
199
101
 
200
- If you already know exactly what to generate, `--tools ...` remains the manual path. The wizard is the primary onboarding UX; flags remain the advanced/headless contract.
102
+ | Situation | Start here |
103
+ |-----------|------------|
104
+ | New project, or brownfield work that's broad / milestone-shaped | `gsdd-new-project` — full initializer, runs codebase mapping internally when needed |
105
+ | Existing repo, and the change you want to make is already concrete | `gsdd-quick` — bounded-change lane, lighter ceremony |
106
+ | Existing repo is unfamiliar or risky and you want a baseline first | `gsdd-map-codebase` — orientation pass before choosing the above |
201
107
 
202
108
  ### Team Use
203
109
 
204
- - **Shared state:** Set `commitDocs: true` (default) `.planning/` is tracked in git. Everyone sees the same spec, roadmap, and phase plans.
205
- - **Onboarding:** After cloning, run `npx -y gsdd-cli init` to generate tool-specific adapters. `.planning/` is already tracked — no re-initialization needed.
206
- - **Governance is explicit:** The wizard asks separately whether to install repo-wide `AGENTS.md` rules, and explains why you may care before writing to the repo root.
207
- - **Session handoff:** Use `gsdd-pause` / `gsdd-resume` to hand off work. The checkpoint (`.planning/.continue-here.md`) captures context for the next person.
208
- - **Adapter isolation:** Each developer runs `npx -y gsdd-cli init --tools <their-tool>` (or `gsdd init --tools <their-tool>` when globally installed). Adapter files don't conflict across tools.
209
-
210
- For detailed workflow diagrams, recovery procedures, and extended examples, see the [User Guide](docs/USER-GUIDE.md).
211
-
212
- ---
213
-
214
- ## How It Works
215
-
216
- ### The Core Loop
217
-
218
- ```
219
- init → [plan → execute → verify] × N phases → audit-milestone → done
220
- ↕ pause/resume (any point)
221
- ```
222
-
223
- ### 1. Initialize Project
224
-
225
- Run the `gsdd-new-project` workflow. The system:
226
-
227
- 1. **Questions** — asks until it understands your idea (goals, constraints, tech, edge cases)
228
- 2. **Codebase map** — if brownfield and a deeper baseline is needed, maps the codebase across stack, architecture, conventions, and concerns; users do not need to pre-run `map-codebase` before `new-project`
229
- 3. **Research** — spawns parallel researchers to investigate the domain (configurable depth: fast/balanced/deep)
230
- 4. **Spec + Roadmap** — produces `SPEC.md` (living specification) and `ROADMAP.md` (phased delivery plan)
231
-
232
- **Creates:** `.planning/SPEC.md`, `.planning/ROADMAP.md`
233
-
234
- ---
235
-
236
- ### 2. Plan Phase
237
-
238
- Run `gsdd-plan` for the current phase. The system:
239
-
240
- 1. **Researches** — investigates how to implement this phase (if `workflow.research` is enabled)
241
- 2. **Plans** — creates atomic task plans with XML structure
242
- 3. **Checks** — a separate agent in a fresh context window reviews the plan against 7 dimensions (requirement coverage, task completeness, dependency correctness, key-link completeness, scope sanity, must-have quality, context compliance). If the plan fails, it revises and re-checks — up to 3 cycles before escalating to the human. Output is typed JSON so orchestration is machine-parseable, not prompt-dependent.
243
-
244
- Each plan is small enough to execute in a fresh context window. The checker runs in a separate context from the planner — this is the [ICLR-validated](https://arxiv.org/abs/2310.01798) pattern for catching blind spots the planner inherits from its own reasoning.
245
-
246
- `gsdd-plan` is terminal for the current run: it writes planning artifacts only. Execution begins only after an explicit `gsdd-execute` / `/gsdd-execute` / `$gsdd-execute` transition, depending on the runtime.
247
-
248
- **Creates:** Phase plans in `.planning/phases/`
249
-
250
- ---
251
-
252
- ### 3. Execute Phase
253
-
254
- Run `gsdd-execute`. The system:
255
-
256
- 1. **Runs plans in waves** — parallel where possible, sequential when dependent
257
- 2. **Fresh context per plan** — 200k tokens purely for implementation
258
- 3. **Clean commits** — follows repo conventions, no framework-imposed commit format
259
- 4. **Creates summaries** — records what happened for verification
260
-
261
- **Creates:** Phase summaries in `.planning/phases/`
262
-
263
- ---
264
-
265
- ### 4. Verify Phase
266
-
267
- Run `gsdd-verify`. The system checks three levels:
268
-
269
- 1. **Exists** — do the expected files exist?
270
- 2. **Substantive** — is the code real, not stubs?
271
- 3. **Wired** — is it connected and functional?
272
-
273
- Plus anti-pattern scan (TODO/FIXME/HACK markers, empty catches).
274
-
275
- **Creates:** Phase verification report in `.planning/phases/`
276
-
277
- ---
278
-
279
- ### 5. Repeat and Audit
280
-
281
- Loop **plan → execute → verify** for each phase in the roadmap.
282
-
283
- When all phases are done, run `gsdd-audit-milestone` to verify:
284
-
285
- - Cross-phase integration (do the pieces connect?)
286
- - Requirements coverage (did we deliver what SPEC.md promised?)
287
- - E2E flows (do user workflows complete end-to-end?)
288
-
289
- ---
290
-
291
- ### Quick Mode
292
-
293
- - `Claude Code / OpenCode`: `/gsdd-quick`
294
- - `Codex CLI`: `$gsdd-quick`
295
- - `Cursor / Copilot / Gemini`: `/gsdd-quick` when skill/slash discovery is available; otherwise open `.agents/skills/gsdd-quick/SKILL.md`
296
- - `Other AI tools`: open `.agents/skills/gsdd-quick/SKILL.md`
297
-
298
- For sub-hour tasks that don't need the full phase cycle:
299
-
300
- - Same roles: planner + executor, conditional verifier
301
- - Skips research: no researcher, no synthesizer
302
- - Separate tracking: lives in `.planning/quick/`, logged in `LOG.md`
303
- - Advisory git: follows repo conventions, no framework-imposed commit format
304
-
305
- Use for: bug fixes, small features, config changes, one-off tasks.
306
-
307
- **Creates:** `.planning/quick/NNN-slug/PLAN.md`, `SUMMARY.md`, updates `LOG.md`
308
-
309
- ---
310
-
311
- ## Workflows
312
-
313
- Workspine has 14 workflows, run via generated skills or adapters:
314
-
315
- | Workflow | What it does |
316
- |----------|--------------|
317
- | `gsdd-new-project` | Full initialization: questioning, brownfield audit when needed, research, spec, roadmap |
318
- | `gsdd-map-codebase` | Deeper brownfield orientation and refresh before `quick` or `new-project` |
319
- | `gsdd-plan` | Research + plan + check for a phase |
320
- | `gsdd-execute` | Execute phase plan: implement tasks, verify changes |
321
- | `gsdd-verify` | Verify completed phase: 3-level checks, anti-pattern scan |
322
- | `gsdd-verify-work` | Conversational UAT testing: validate user-facing behavior with structured gap tracking |
323
- | `gsdd-audit-milestone` | Audit milestone: cross-phase integration, requirements coverage, E2E flows |
324
- | `gsdd-complete-milestone` | Archive shipped milestone, evolve spec, collapse roadmap |
325
- | `gsdd-new-milestone` | Start next milestone: gather goals, define requirements, create roadmap phases |
326
- | `gsdd-plan-milestone-gaps` | Create gap-closure phases from audit results |
327
- | `gsdd-quick` | Quick task: bounded brownfield change lane with inline baseline when full mapping is unnecessary |
328
- | `gsdd-pause` | Pause work: save session context to checkpoint for seamless resumption |
329
- | `gsdd-resume` | Resume work: restore context from artifacts and route to next action |
330
- | `gsdd-progress` | Show project status and route to next action |
331
-
332
- Workflows are agent skills or commands, not plain shell utilities. How you invoke them depends on your platform:
333
-
334
- | Platform | How to invoke workflows |
335
- |----------|------------------------|
336
- | Claude Code | `/gsdd-plan` (slash command, works immediately after init) |
337
- | OpenCode | `/gsdd-plan` (slash command, works immediately after init) |
338
- | Codex CLI | `$gsdd-plan` (skill reference, works immediately after init) |
339
- | Cursor / Copilot / Gemini | `/gsdd-plan` when skill/slash discovery is available. If the root `AGENTS.md` block is present, it adds governance, not workflow discovery. |
340
- | Other AI tools | Open `.agents/skills/gsdd-plan/SKILL.md` and paste or reference its content. |
341
-
342
- ## CLI Commands
343
-
344
- | Command | What it does |
345
- |---------|--------------|
346
- | `npx -y gsdd-cli init [--tools <platform>]` | Set up `.planning/`, generate skills/adapters |
347
- | `npx -y gsdd-cli update [--tools <platform>] [--templates]` | Regenerate skills/adapters and refresh the repo-local helper runtime; `--templates` refreshes `.planning/templates/` and role contracts |
348
- | `npx -y gsdd-cli health [--json]` | Check workspace integrity and generated-surface freshness (healthy/degraded/broken) |
349
- | `npx -y gsdd-cli control-map [--json] [--with-ignored]` | Report computed repo/worktree/planning state, dirty buckets, optional ignored-path scan, local annotations, and safe next interventions |
350
- | `npx -y gsdd-cli ui-proof validate <path> [--claim <public\|publication\|tracked\|delivery\|release>]` | Validate UI proof bundle metadata without requiring browser tooling; use `--claim` only when validating that stronger proof use |
351
- | `npx -y gsdd-cli file-op <copy\|delete\|regex-sub>` | Run deterministic workspace-confined file copy, delete, and regex substitution |
352
- | `npx -y gsdd-cli find-phase [N]` | Show phase info as JSON (for agent consumption) |
353
- | `npx -y gsdd-cli phase-status <N> <status>` | Update a single ROADMAP phase status through the status-aware helper |
354
- | `npx -y gsdd-cli session-fingerprint write` | Refresh the local planning-state drift baseline |
355
- | `npx -y gsdd-cli verify <N>` | Run artifact checks for phase N |
356
- | `npx -y gsdd-cli scaffold phase <N> [name]` | Create a new phase plan file |
357
- | `npx -y gsdd-cli models [show\|profile\|set\|...]` | Inspect and manage model profile propagation |
358
- | `npx -y gsdd-cli help` | Show all commands |
359
-
360
- Use the shorter bare `gsdd ...` CLI form only when `gsdd-cli` is globally installed. Generated workflows call deterministic helpers through `node .planning/bin/gsdd.mjs ...` from the repo root, not through an ambient global binary.
361
-
362
- ---
363
-
364
- ## Architecture
365
-
366
- ### Roles (10 canonical)
367
-
368
- Workspine consolidates GSD's agent surface into 10 roles with durable contracts:
369
-
370
- | Role | Responsibility |
371
- |------|---------------|
372
- | **Mapper** | Codebase analysis — produces STACK, ARCHITECTURE, CONVENTIONS, CONCERNS |
373
- | **Researcher** | Domain investigation — merges GSD's project + phase researcher |
374
- | **Synthesizer** | Research consolidation (conditional — skipped in fast mode) |
375
- | **Planner** | Phase planning — absorbs plan-checking responsibility |
376
- | **Executor** | Task implementation |
377
- | **Verifier** | Phase verification — Exists/Substantive/Wired gate |
378
- | **Roadmapper** | Roadmap generation from spec |
379
- | **Integration Checker** | Cross-phase wiring, API coverage, auth protection, E2E flows |
380
- | **Approach Explorer** | Implementation approach alignment before planning begins |
381
- | **Debugger** | Utility role for systematic debugging |
382
-
383
- ### Two-Layer Architecture
384
-
385
- - **Role contracts** (`agents/*.md`) — durable, contain the full behavioral specification
386
- - **Delegates** (`distilled/templates/delegates/*.md`) — thin wrappers that reference roles and provide task-specific context
387
-
388
- Delegates cover mapper, researcher, synthesizer, plan-checker, and approach-explorer work. Workflows use `<delegate>` blocks to dispatch work. For detailed GSD-to-GSDD role distillation rationale, see [`agents/DISTILLATION.md`](agents/DISTILLATION.md).
389
-
390
- ### Adapter Architecture
391
-
392
- Workspine generates vendor-specific files from vendor-agnostic markdown — it does not convert from one vendor format to another. This means every adapter gets first-class output shaped to its platform's native capabilities.
393
-
394
- | Adapter | Evidence posture | Strategy |
395
- |---------|------------------|----------|
396
- | **Claude Code** | Directly validated | Skill-primary plan surface, thin command alias, native `gsdd-plan-checker` agent |
397
- | **OpenCode** | Directly validated | Specialized `/gsdd-plan` command (`subtask: false`), hidden `gsdd-plan-checker` subagent (`mode: subagent`) |
398
- | **Codex CLI** | Directly validated | Portable skill as entry surface, `.codex/agents/gsdd-plan-checker.toml` (read-only, high reasoning effort), explicit `$gsdd-execute` unlock |
399
- | **Cursor / Copilot / Gemini** | Qualified support | Uses `.agents/skills/` when skill/slash discovery is available; optional root `AGENTS.md` block adds behavioral governance only |
400
- | **agents** (`--tools agents`) | Governance-only helper | Root `AGENTS.md` block for tools that benefit from governance or need open-standard fallback guidance |
401
-
402
- All adapters render the plan-checker from a single source (`distilled/templates/delegates/plan-checker.md`). Each adapter shapes the output to its platform's native mechanics, and the portable skill remains the shared workflow source.
403
-
404
- Cursor, Copilot, and Gemini CLI generate the same root `AGENTS.md` governance block as `--tools agents`, but that file is governance only. Use their slash-command path when `.agents/skills/` discovery is available; otherwise open the relevant generated `SKILL.md` file.
405
-
406
- Model IDs pass through a two-layer injection guard: a regex whitelist (`/^[a-zA-Z0-9._\/:@-]+$/`) at the CLI boundary, plus format-specific escaping (TOML string escaping, triple-quote break prevention) at the adapter layer.
407
-
408
- ### Artifacts
409
-
410
- | File | Purpose |
411
- |------|---------|
412
- | `.planning/SPEC.md` | Living specification — replaces GSD's separate PROJECT.md + REQUIREMENTS.md |
413
- | `.planning/ROADMAP.md` | Phased delivery plan with inline status — replaces STATE.md |
414
- | `.planning/config.json` | Project configuration (research depth, workflow toggles, git protocol) |
415
- | `.planning/phases/` | Plans, summaries, and verification reports per phase |
416
- | `.planning/research/` | Research outputs |
417
- | `.planning/codebase/` | Codebase maps (4 files) |
418
- | `.planning/quick/` | Quick task tracking |
419
- | `.planning/.local/` | Local-only operational annotations such as control-map intent; never product truth |
420
- | `.planning/.continue-here.md` | Session checkpoint (created by pause, consumed by resume) |
421
-
422
- ### Advisory Git Protocol
423
-
424
- Workspine does not impose commit formats, branch naming, or one-commit-per-task rules. Git guidance is advisory — repository and team conventions take precedence:
425
-
426
- - **Branching** — follow existing repo conventions
427
- - **Commits** — group changes logically, no framework-imposed format
428
- - **PRs** — follow existing repo review workflow
429
-
430
- Defaults configurable in `.planning/config.json` under `gitProtocol`.
110
+ Commit `.planning/` so the team shares specs, roadmaps, phase plans, and verification reports. Use `commitDocs` in `.planning/config.json` to control whether documentation changes are expected as part of workflow execution. Each developer runs `init --tools <their-tool>` for their own repo-local runtime adapters without changing the shared delivery artifacts.
431
111
 
432
112
  ### What to Track in Git
433
113
 
434
- | Path | Track? | Why |
435
- |------|--------|-----|
436
- | `.planning/` | Yes (default) | Shared project state — spec, roadmap, phase plans. Controlled by `commitDocs` in config. |
437
- | `.agents/skills/` | Yes | Portable workflow entrypoints. Generated, safe to track. |
438
- | `.claude/`, `.opencode/`, `.codex/` | Yes | Tool-specific adapters. Don't conflict across tools. |
439
- | `AGENTS.md` (root) | Yes (if generated) | Governance block. Uses bounded upsert — won't overwrite existing content. |
440
-
441
- No secrets or credentials are generated. Set `commitDocs: false` for local-only planning state.
442
-
443
- ### Context Isolation
444
-
445
- Orchestrators stay thin. Delegates write documents to disk and return summaries — the orchestrator never accumulates full research or plan content in its context window. This keeps the main session fast and responsive even during deep phases.
114
+ Track `.planning/`, `.agents/skills/`, and any selected runtime adapters that are part of the team workflow. Track durable `.work/` contract and research files when they define shared milestone truth. Do not track `.planning/.local/` or mutable `.work` runtime files such as `state.json`, graph logs, open questions, evidence manifests, handoff notes, or raw dogfood drafts unless you deliberately export or sanitize them.
446
115
 
447
116
  ---
448
117
 
449
118
  ## Configuration
450
119
 
451
- `npx -y gsdd-cli init` creates `.planning/config.json` interactively (or with defaults in non-interactive mode).
452
-
453
- | Setting | Options | Default | What it controls |
454
- |---------|---------|---------|------------------|
455
- | `researchDepth` | `fast`, `balanced`, `deep` | `balanced` | Research thoroughness per phase |
456
- | `parallelization` | `true`, `false` | `true` | Run independent agents simultaneously |
457
- | `commitDocs` | `true`, `false` | `true` | Track `.planning/` in git |
458
- | `modelProfile` | `balanced`, `quality`, `budget` | `balanced` | Portable semantic model tier |
459
-
460
- **When to use each profile:**
461
- - **`quality`** — maximize plan-checking rigor. Use for production milestones or security-sensitive work.
462
- - **`balanced`** (default) — good checking at reasonable cost. Suitable for most development.
463
- - **`budget`** — minimize cost. Use for prototyping or familiar domains where you'll review plans manually.
464
-
465
- The profile only affects the plan-checker agent. Disable `workflow.planCheck` entirely to skip checking.
466
-
467
- Optional model-control keys:
468
-
469
- | Setting | What it controls |
470
- |---------|------------------|
471
- | `agentModelProfiles.<agent>` | Per-agent semantic override. Current supported agent id: `plan-checker`. |
472
- | `runtimeModelOverrides.<runtime>.<agent>` | Exact runtime-native model override. Supported targets: `claude.plan-checker`, `opencode.plan-checker`, `codex.plan-checker`. |
473
-
474
- Runtime behavior:
475
- - Claude translates semantic tiers to native aliases for the checker agent.
476
- - OpenCode inherits its runtime model by default; Workspine only injects an exact OpenCode `model:` when you set an explicit runtime override.
477
- - Codex inherits its session model by default; Workspine only injects an explicit `model` in the TOML when you set an explicit runtime override.
120
+ Use model profiles to tune cost and rigor:
478
121
 
479
- CLI:
480
- - `npx -y gsdd-cli models show`
481
- - `npx -y gsdd-cli models profile <quality|balanced|budget>`
482
- - `npx -y gsdd-cli models agent-profile --agent plan-checker --profile <quality|balanced|budget>`
483
- - `npx -y gsdd-cli models clear-agent-profile --agent plan-checker`
484
- - `npx -y gsdd-cli models set --runtime <claude|opencode|codex> --agent plan-checker --model <id>`
485
- - `npx -y gsdd-cli models clear --runtime <claude|opencode|codex> --agent plan-checker`
486
-
487
- ### Workflow Toggles
488
-
489
- Each adds quality but costs tokens and time:
490
-
491
- | Setting | Default | What it does |
492
- |---------|---------|--------------|
493
- | `workflow.research` | `true` | Research domain before planning each phase |
494
- | `workflow.planCheck` | `true` | Verify plans achieve goals before execution |
495
- | `workflow.verifier` | `true` | Verify phase deliverables after execution |
496
-
497
- ### Git Protocol
498
-
499
- Advisory defaults, overridden by repo conventions:
500
-
501
- | Setting | Default |
502
- |---------|---------|
503
- | `gitProtocol.branch` | Follow existing repo conventions |
504
- | `gitProtocol.commit` | Logical grouping, no phase/task IDs |
505
- | `gitProtocol.pr` | Follow existing review workflow |
506
-
507
- ---
122
+ ```bash
123
+ npx -y gsdd-cli models profile quality # maximize rigor
124
+ npx -y gsdd-cli models profile balanced # default balance
125
+ npx -y gsdd-cli models profile budget # minimize cost
126
+ ```
508
127
 
509
128
  ## Troubleshooting
510
129
 
511
- **First step:** Run `npx -y gsdd-cli health` it checks workspace integrity and prints actionable fix instructions.
512
-
513
- | Problem | What to do |
514
- |---------|------------|
515
- | Workspace feels broken | `npx -y gsdd-cli health` — checks errors, warnings, info |
516
- | Health reports generated runtime-surface drift | `npx -y gsdd-cli update` (including `--tools <runtime>` when needed) — regenerates installed skills/adapters from current render output |
517
- | Lost track of progress | Run `gsdd-progress` — reads artifacts, shows status |
518
- | Need context from last session | Run `gsdd-resume` — restores state, routes to next action |
519
- | Plans seem wrong | Check `workflow.research: true` in config |
520
- | Execution produces stubs | Re-plan with smaller scope (2-5 tasks per plan) |
521
- | Templates out of date | `npx -y gsdd-cli update --templates` — warns before overwriting |
522
- | Model costs too high | `npx -y gsdd-cli models profile budget` + disable `workflow.planCheck` |
523
-
524
- For detailed troubleshooting and recovery procedures, see the [User Guide](docs/USER-GUIDE.md#troubleshooting).
130
+ Inside a repo-local `.planning/` workspace, start with `npx -y gsdd-cli health`. It checks local generated runtime surfaces against current render output and reports whether `npx -y gsdd-cli update` can repair drift. To repair or refresh a personal global install, rerun `npx -y gsdd-cli install --global --tools <targets>`. For details, see the [User Guide](docs/USER-GUIDE.md).
525
131
 
526
132
  ---
527
133
 
528
- ## Design Decisions
134
+ ## Where it fits
135
+
136
+ Use Workspine when a feature takes more than one session, or when you need to switch between Claude, Codex, and Cursor without losing the thread. Skip it for quick, obvious edits — direct prompting is cheaper when the risk is small.
529
137
 
530
- This repo records documented design decisions relative to GSD, each with evidence from source files and external research. See [`distilled/DESIGN.md`](distilled/DESIGN.md) for the full rationale.
138
+ | Tool | Good for | vs Workspine |
139
+ |------|----------|--------------|
140
+ | **Workspine** | Work that spans sessions, agents, or runtimes where plans and proof need to stay in the repo | — |
141
+ | [GSD](https://github.com/gsd-build/get-shit-done) | Broad AI prompting suite — 81 commands, 78 workflows, 33 agents | Workspine is narrower: 14 workflows, fewer moving parts for the human in the loop |
142
+ | [OpenSpec](https://openspec.dev/) | Living spec + change proposals in a lightweight format | Workspine adds the execution, verification, and handoff layer on top of planning |
143
+ | [LeanSpec](https://www.lean-spec.dev/docs/guide/first-principles) | Minimal specs that fit LLM context | Workspine adds workflow gates and runtime entrypoints for when you need the full structure |
144
+ | [GitHub Spec Kit](https://github.com/github/spec-kit) | Spec-first planning workflows in `.specify/` | Similar space; Workspine is one CLI with one delivery loop instead of a broader ecosystem |
145
+ | [Kiro](https://kiro.dev/docs/) | IDE-native agent dev with specs, steering, hooks, and MCP | Kiro is IDE-only; Workspine works across terminal and IDE agents that can read repo files |
146
+ | [Tessl](https://tessl.io/enterprise/) | Hosted platform for distributing agent skills across teams | Tessl needs a control plane; Workspine is local-first with no hosted infrastructure |
531
147
 
532
- Key choices:
533
- - **4-file codebase standard** — drop state that rots (STRUCTURE, INTEGRATIONS, TESTING), keep rules that don't
534
- - **Agent consolidation** — 10 roles from GSD's 11, with explicit reduced-assurance mode when independent checking isn't available
535
- - **Adapter generation over conversion** — generate vendor-specific files from vendor-agnostic markdown instead of converting from Claude-first
536
- - **Advisory git** — repo conventions over framework defaults
537
- - **Context isolation** — summaries up, documents to disk
538
- - **Mechanical invariant enforcement** — structural properties guarded by assertions, not code review
539
- - **Model profile propagation** — semantic tiers (`quality`/`balanced`/`budget`) translated to native model IDs per runtime
540
- - **Template versioning** — SHA-256 generation manifest detects user modifications before overwriting
541
- - **CLI composition root boundary** — 100-line facade delegates to extracted modules
542
- - **Codex CLI native adapter** — portable skill entry + TOML checker agent, documented platform gaps tracked against upstream issues
148
+ <sub>Based on each tool's public docs as of May 2026. Open an issue if anything reads inaccurately.</sub>
543
149
 
544
150
  ---
545
151
 
546
- ## Testing
547
-
548
- The framework has named regression suites that guard properties PRs repeatedly fixed manually. These are not unit tests for application code; they are invariant checks on the specification itself.
549
-
550
- ### Invariant Suites (I-series)
551
-
552
- Structural contracts that prevent drift between roles, delegates, workflows, and artifacts:
553
-
554
- | Suite | What it guards |
555
- |-------|---------------|
556
- | **I1** | Delegate-role reference integrity — 11 delegates resolve to existing role contracts |
557
- | **I2** | Role section structure — 10 roles have role def, scope, output format, success criteria |
558
- | **I3** | Delegate thinness — no leaked role-contract sections in delegates |
559
- | **I3-gate** | New-project approval gates — required human checkpoints present |
560
- | **I4** | Workflow references — 14 workflows, all delegate/role refs resolve |
561
- | **I5** | Session management — no vendor APIs, no STATE.md, checkpoint contract |
562
- | **I5b** | Session workflow scope boundaries |
563
- | **I6** | Artifact schema definitions |
564
- | **I7** | Plan-checker dimension integrity — 7 dimensions present and correctly structured |
565
- | **I8** | Workflow vendor API cleanliness — no platform-specific calls in portable workflows |
566
- | **I9** | No deprecated content — no vendor paths, dropped files, legacy tooling |
567
- | **I10** | Mandatory context-intake enforcement on hardened lifecycle roles |
568
- | **S13** | STATE.md elimination — D7 compliance verified across all artifacts |
569
-
570
- ### Guard Suites (G-series)
571
-
572
- Mechanical enforcement that catches cross-document inconsistencies:
573
-
574
- | Suite | What it guards |
575
- |-------|---------------|
576
- | **G1** | Cross-document schema consistency |
577
- | **G3** | File size guards — role contracts and delegates within bounds |
578
- | **G4** | XML section well-formedness across all workflows |
579
- | **G5** | Artifact lifecycle chain — plan → execute → verify → audit linkage |
580
- | **G6** | DESIGN.md decision registry — ToC matches actual decisions |
581
- | **G7** | Delegate thinness (mechanical) |
582
- | **G8** | Auto-mode contract |
583
- | **G9** | Generation manifest contract |
584
- | **G10** | CLI module boundary — composition root stays thin |
585
- | **G11** | Codex doc contract — no deprecated references |
586
- | **G12** | Documentation accuracy — decision counts, workflow counts, CLI commands, ghost commands |
587
- | **G13** | Models pre-init safety — mutation commands guard uninitialized workspaces |
588
- | **G14** | Health module contract — export, command wiring, help text, fix instructions |
589
- | **G15** | OWASP authorization matrix — template format, integration-checker Step 4a, backwards compat |
590
- | **G16** | Distillation ledger — DISTILLATION.md role coverage, merger table, D22 registration |
591
- | **G17** | Mapper output quantification — template sections, delegate instructions, D23 registration |
592
- | **G18** | Consumer governance completeness — agents.block.md workflow coverage, CHANGELOG accuracy |
593
- | **G19** | Consumer first-run accuracy — honest platform tiers, per-platform invocation guidance, Quickstart section |
594
- | **G20** | Session continuity contract — pause checkpoint format, resume routing, progress detection, cross-workflow paths |
595
-
596
- ### Scenario Suites (S-series)
597
-
598
- Golden-path eval tests that verify artifact-chain contracts across end-to-end workflows:
599
-
600
- | Suite | What it covers |
601
- |-------|---------------|
602
- | **S1** | Greenfield golden path — init → new-project → plan → execute → verify → audit-milestone |
603
- | **S2** | Brownfield path — map-codebase delegates, codebase map references, mapper role |
604
- | **S3** | Quick-task path — isolation from ROADMAP/research, role references |
605
- | **S4** | Native runtime chain — Claude + Codex checker completeness, 7 dimensions |
606
- | **S5** | Config-to-content propagation — default config values reflected in generated artifacts |
607
-
608
- ### Functional Test Suites
609
-
610
- | Suite | What it covers |
611
- |-------|---------------|
612
- | Init & update | Planning structure, config, templates, adapters, idempotency, auto mode |
613
- | Models | Profile propagation, runtime overrides, CLI commands, injection prevention |
614
- | Generation manifest | SHA-256 hashing, modification detection, dry-run mode |
615
- | Plan adapters | Portable skill neutrality, TOML format, triple-quote escaping |
616
- | Audit milestone | Integration checking contract |
617
- | Health | Pre-init guard, all check categories, verdict logic, JSON/human output |
152
+ ## CLI
618
153
 
619
154
  ```bash
620
- npm test
155
+ npx -y gsdd-cli health # workspace integrity check
156
+ npx -y gsdd-cli update # regenerate stale runtime surfaces
157
+ npx -y gsdd-cli update --templates # refresh runtime surfaces and template payloads
158
+ npx -y gsdd-cli next --json # read .work continuity and emit the next action packet
159
+ npx -y gsdd-cli next --format human # show the compact supervisor card
160
+ npx -y gsdd-cli next --init # bootstrap .work continuity state explicitly
161
+ npx -y gsdd-cli rigor # run planning/document guardrails
162
+ npx -y gsdd-cli file-op # deterministic repo-local copy/delete helper
163
+ npx -y gsdd-cli models profile quality # maximize review rigor
164
+ npx -y gsdd-cli models profile budget # minimize cost
165
+ npx -y gsdd-cli session-fingerprint # capture session continuity metadata
166
+ npx -y gsdd-cli ui-proof # collect UI proof artifacts
167
+ npx -y gsdd-cli control-map # repo and planning state at a glance
168
+ npx -y gsdd-cli closeout-report # summarize closeout evidence
169
+ npx -y gsdd-cli find-phase # locate a roadmap phase
170
+ npx -y gsdd-cli phase-status # inspect or update phase status
171
+ npx -y gsdd-cli verify # run verification discipline checks
172
+ npx -y gsdd-cli scaffold # scaffold planning surfaces
173
+ npx -y gsdd-cli help # print command help
621
174
  ```
622
175
 
176
+ Full reference: [User Guide](docs/USER-GUIDE.md) · [Runtime Support](docs/RUNTIME-SUPPORT.md) · [Verification Discipline](docs/VERIFICATION-DISCIPLINE.md)
177
+
623
178
  ---
624
179
 
625
180
  ## Credits
626
181
 
627
- Workspine is a fork of [Get Shit Done](https://github.com/gsd-build/get-shit-done) by [Lex Christopherson](https://github.com/glittercowboy), licensed under MIT. Original git history is retained for attribution.
628
-
629
- ---
630
-
631
- ## License
182
+ Fork of [Get Shit Done](https://github.com/gsd-build/get-shit-done) by [Lex Christopherson](https://github.com/glittercowboy), MIT licensed. Original git history retained.
632
183
 
633
184
  MIT License. See [LICENSE](LICENSE) for details.