gsdd-cli 0.18.0 → 0.18.2
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 +7 -6
- package/bin/gsdd.mjs +17 -14
- package/bin/lib/health-truth.mjs +8 -8
- package/bin/lib/health.mjs +29 -26
- package/bin/lib/init-flow.mjs +93 -34
- package/bin/lib/init-runtime.mjs +5 -4
- package/bin/lib/lifecycle-state.mjs +211 -28
- package/bin/lib/manifest.mjs +24 -20
- package/bin/lib/provenance.mjs +281 -59
- package/bin/lib/rendering.mjs +110 -23
- package/bin/lib/runtime-freshness.mjs +44 -21
- package/distilled/DESIGN.md +314 -6
- package/distilled/EVIDENCE-INDEX.md +70 -10
- package/distilled/README.md +2 -2
- package/distilled/workflows/audit-milestone.md +1 -1
- package/distilled/workflows/complete-milestone.md +1 -1
- package/distilled/workflows/execute.md +5 -5
- package/distilled/workflows/map-codebase.md +11 -11
- package/distilled/workflows/new-milestone.md +40 -24
- package/distilled/workflows/new-project.md +43 -26
- package/distilled/workflows/pause.md +1 -1
- package/distilled/workflows/plan.md +184 -73
- package/distilled/workflows/progress.md +103 -54
- package/distilled/workflows/quick.md +11 -10
- package/distilled/workflows/resume.md +140 -66
- package/distilled/workflows/verify.md +5 -5
- package/docs/RUNTIME-SUPPORT.md +2 -2
- package/docs/USER-GUIDE.md +11 -5
- package/package.json +19 -20
package/docs/RUNTIME-SUPPORT.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Runtime Support Matrix
|
|
2
2
|
|
|
3
|
-
Workspine is
|
|
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
|
|
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**
|
package/docs/USER-GUIDE.md
CHANGED
|
@@ -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
|
-
|
|
196
|
+
| `gsdd help` | Show all commands |
|
|
197
|
+
|
|
198
|
+
`init` generates a local `.planning/bin/gsdd*` helper surface. Workflow-embedded helper commands still use `node .planning/bin/gsdd.mjs ...` as the portable contract, 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,12 @@ 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
|
-
|
|
406
|
+
config.json # Project configuration
|
|
407
|
+
bin/
|
|
408
|
+
gsdd # POSIX shim for the local helper surface
|
|
409
|
+
gsdd.cmd # Windows shim for the local helper surface
|
|
410
|
+
gsdd.mjs # Canonical local workflow-helper launcher
|
|
411
|
+
generation-manifest.json # SHA-256 hashes for template versioning
|
|
406
412
|
.continue-here.md # Session checkpoint (created by pause, consumed by resume)
|
|
407
413
|
research/ # Domain research outputs
|
|
408
414
|
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.
|
|
3
|
+
"version": "0.18.2",
|
|
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
|
+
}
|