gsdd-cli 0.18.0 → 0.18.1

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.
@@ -1,6 +1,6 @@
1
1
  # Runtime Support Matrix
2
2
 
3
- Workspine is designed as a portable multi-runtime delivery framework, but the proof bar is not the same for every runtime today.
3
+ Workspine is a repo-native delivery spine with portable multi-runtime workflow surfaces, but the proof bar is not the same for every runtime today.
4
4
 
5
5
  This matrix is the release-floor truth surface.
6
6
 
@@ -18,7 +18,7 @@ These are the strongest public runtime claims.
18
18
 
19
19
  ### Same core workflow
20
20
 
21
- These runtimes use the same portable workflow surfaces, but this release does not claim equal runtime proof or equal ergonomics:
21
+ These runtimes use the same portable workflow surfaces, but they do not carry equal runtime proof or equal ergonomics today:
22
22
 
23
23
  - **Cursor**
24
24
  - **GitHub Copilot**
@@ -193,9 +193,11 @@ The 7 check dimensions: requirement coverage, task completeness, dependency corr
193
193
  | `gsdd models agent-profile --agent <id> --profile <tier>` | Per-agent semantic override |
194
194
  | `gsdd models set --runtime <rt> --agent <id> --model <id>` | Exact runtime model override |
195
195
  | `gsdd models clear --runtime <rt> --agent <id>` | Remove runtime override |
196
- | `gsdd help` | Show all commands |
197
-
198
- ### Platform flags for `--tools`
196
+ | `gsdd help` | Show all commands |
197
+
198
+ Workflow-embedded helper commands use `node .planning/bin/gsdd.mjs ...`, so lifecycle preflight, file-op, and phase-status mechanics do not depend on a global `gsdd` binary after init.
199
+
200
+ ### Platform flags for `--tools`
199
201
 
200
202
  | Flag | What's generated |
201
203
  |------|-----------------|
@@ -401,8 +403,10 @@ Switch to budget profile: `gsdd models profile budget`. Disable research and pla
401
403
  .planning/
402
404
  SPEC.md # Living specification (goals, constraints, decisions)
403
405
  ROADMAP.md # Phased delivery plan with inline status
404
- config.json # Project configuration
405
- generation-manifest.json # SHA-256 hashes for template versioning
406
+ config.json # Project configuration
407
+ bin/
408
+ gsdd.mjs # Local workflow-helper launcher for embedded CLI mechanics
409
+ generation-manifest.json # SHA-256 hashes for template versioning
406
410
  .continue-here.md # Session checkpoint (created by pause, consumed by resume)
407
411
  research/ # Domain research outputs
408
412
  codebase/ # Codebase maps (4 files: STACK, ARCHITECTURE, CONVENTIONS, CONCERNS)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gsdd-cli",
3
- "version": "0.18.0",
3
+ "version": "0.18.1",
4
4
  "description": "Workspine — a repo-native delivery spine for long-horizon AI-assisted work, with directly validated support for Claude Code, Codex CLI, and OpenCode, published as gsdd-cli.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,27 +16,26 @@
16
16
  "@semantic-release/git": "^10.0.1",
17
17
  "semantic-release": "^24.2.3"
18
18
  },
19
- "engines": {
20
- "node": ">=20"
21
- },
22
- "files": [
23
- "bin/adapters/",
24
- "bin/lib/",
25
- "bin/gsdd.mjs",
26
- "distilled/DESIGN.md",
27
- "distilled/EVIDENCE-INDEX.md",
28
- "distilled/README.md",
29
- "distilled/SKILL.md",
30
- "distilled/templates/",
31
- "distilled/workflows/",
32
- "docs/",
33
- "agents/*.md",
34
- "agents/README.md"
35
- ],
19
+ "engines": {
20
+ "node": ">=20"
21
+ },
22
+ "files": [
23
+ "bin/adapters/",
24
+ "bin/lib/",
25
+ "bin/gsdd.mjs",
26
+ "distilled/DESIGN.md",
27
+ "distilled/EVIDENCE-INDEX.md",
28
+ "distilled/README.md",
29
+ "distilled/SKILL.md",
30
+ "distilled/templates/",
31
+ "distilled/workflows/",
32
+ "docs/",
33
+ "agents/*.md",
34
+ "agents/README.md"
35
+ ],
36
36
  "keywords": [
37
37
  "workspine",
38
38
  "gsdd",
39
- "gsd-distilled",
40
39
  "claude-code",
41
40
  "codex-cli",
42
41
  "opencode",
@@ -59,4 +58,4 @@
59
58
  "url": "https://github.com/PatrickSys/workspine/issues"
60
59
  },
61
60
  "homepage": "https://github.com/PatrickSys/workspine#readme"
62
- }
61
+ }