gsdd-cli 0.16.1 → 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.
- package/README.md +111 -61
- package/agents/README.md +1 -1
- package/bin/adapters/claude.mjs +8 -1
- package/bin/adapters/codex.mjs +5 -1
- package/bin/adapters/opencode.mjs +7 -1
- package/bin/gsdd.mjs +25 -20
- package/bin/lib/evidence-contract.mjs +112 -0
- package/bin/lib/health-truth.mjs +29 -31
- package/bin/lib/health.mjs +61 -106
- package/bin/lib/init-flow.mjs +91 -34
- package/bin/lib/init-runtime.mjs +46 -25
- package/bin/lib/init.mjs +3 -7
- package/bin/lib/lifecycle-preflight.mjs +333 -0
- package/bin/lib/lifecycle-state.mjs +476 -0
- package/bin/lib/manifest.mjs +24 -20
- package/bin/lib/phase.mjs +81 -26
- package/bin/lib/provenance.mjs +295 -54
- package/bin/lib/rendering.mjs +70 -12
- package/bin/lib/runtime-freshness.mjs +264 -0
- package/bin/lib/session-fingerprint.mjs +106 -0
- package/distilled/DESIGN.md +707 -13
- package/distilled/EVIDENCE-INDEX.md +166 -1
- package/distilled/README.md +44 -28
- package/distilled/SKILL.md +4 -4
- package/distilled/templates/agents.block.md +1 -1
- package/distilled/workflows/audit-milestone.md +50 -0
- package/distilled/workflows/complete-milestone.md +38 -2
- package/distilled/workflows/execute.md +16 -3
- package/distilled/workflows/map-codebase.md +15 -4
- package/distilled/workflows/new-milestone.md +53 -24
- package/distilled/workflows/new-project.md +44 -25
- package/distilled/workflows/pause.md +1 -1
- package/distilled/workflows/plan.md +187 -74
- package/distilled/workflows/progress.md +135 -31
- package/distilled/workflows/quick.md +20 -12
- package/distilled/workflows/resume.md +152 -65
- package/distilled/workflows/verify.md +55 -20
- package/docs/BROWNFIELD-PROOF.md +95 -0
- package/docs/RUNTIME-SUPPORT.md +77 -0
- package/docs/USER-GUIDE.md +443 -0
- package/docs/VERIFICATION-DISCIPLINE.md +59 -0
- package/docs/claude/context-monitor.md +98 -0
- package/docs/proof/consumer-node-cli/README.md +37 -0
- package/docs/proof/consumer-node-cli/ROADMAP.md +14 -0
- package/docs/proof/consumer-node-cli/SPEC.md +17 -0
- package/docs/proof/consumer-node-cli/brief.md +9 -0
- package/docs/proof/consumer-node-cli/phases/01-foundation/01-01-PLAN.md +34 -0
- package/docs/proof/consumer-node-cli/phases/01-foundation/01-01-SUMMARY.md +10 -0
- package/docs/proof/consumer-node-cli/phases/01-foundation/01-VERIFICATION.md +30 -0
- package/package.json +26 -20
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
phase: 01-foundation
|
|
3
|
+
plan: 01
|
|
4
|
+
runtime: codex-cli
|
|
5
|
+
assurance: self_checked
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Phase 1 Plan
|
|
9
|
+
|
|
10
|
+
## Objective
|
|
11
|
+
|
|
12
|
+
Ship the first runnable version of `hello-proof` and document how to run and test it.
|
|
13
|
+
|
|
14
|
+
## Tasks
|
|
15
|
+
|
|
16
|
+
<task id="01-01" type="code">
|
|
17
|
+
<files>
|
|
18
|
+
- CREATE: package.json
|
|
19
|
+
- CREATE: index.js
|
|
20
|
+
- CREATE: tests/cli.test.cjs
|
|
21
|
+
- CREATE: README.md
|
|
22
|
+
</files>
|
|
23
|
+
<action>
|
|
24
|
+
Create a minimal Node CLI with a default greeting, add one automated test command, and document how to run it.
|
|
25
|
+
</action>
|
|
26
|
+
<verify>
|
|
27
|
+
- `node index.js`
|
|
28
|
+
- `node index.js --name Ada`
|
|
29
|
+
- `npm test`
|
|
30
|
+
</verify>
|
|
31
|
+
<done>
|
|
32
|
+
The CLI runs locally, the test command is wired, and README explains the run/test path.
|
|
33
|
+
</done>
|
|
34
|
+
</task>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
phase: 01-foundation
|
|
3
|
+
plan: 01
|
|
4
|
+
runtime: codex-cli
|
|
5
|
+
assurance: self_checked
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Phase 1 Summary
|
|
9
|
+
|
|
10
|
+
Created the first runnable `hello-proof` CLI, added a fast Node test command, documented how to run and test the project, and completed the missing `--name` greeting path after verification caught it.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
phase: 01-foundation
|
|
3
|
+
runtime: codex-cli
|
|
4
|
+
assurance: self_checked
|
|
5
|
+
status: passed
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Phase 1 Verification
|
|
9
|
+
|
|
10
|
+
## Initial Verification
|
|
11
|
+
|
|
12
|
+
- `node index.js` -> `Hello, world!`
|
|
13
|
+
- `node index.js --name Ada` -> `Hello, world!`
|
|
14
|
+
- `npm test` -> passed, but only covered the default greeting
|
|
15
|
+
|
|
16
|
+
Result: failed. The phase goal required the named greeting path, and the implementation ignored the provided `--name` value.
|
|
17
|
+
|
|
18
|
+
## Fix Applied
|
|
19
|
+
|
|
20
|
+
- Updated `index.js` to read the value after `--name`
|
|
21
|
+
- Extended `tests/cli.test.cjs` to assert the named greeting path
|
|
22
|
+
- Updated the phase summary to reflect the verification-driven fix
|
|
23
|
+
|
|
24
|
+
## Re-Verification
|
|
25
|
+
|
|
26
|
+
- `node index.js` -> `Hello, world!`
|
|
27
|
+
- `node index.js --name Ada` -> `Hello, Ada!`
|
|
28
|
+
- `npm test` -> passed with both greeting paths covered
|
|
29
|
+
|
|
30
|
+
Result: passed. The phase now satisfies all three roadmap success criteria.
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gsdd-cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.18.1",
|
|
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": {
|
|
7
7
|
"gsdd": "bin/gsdd.mjs"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "npm run test:gsdd",
|
|
11
|
-
"test:gsdd": "node tests/gsdd.init.test.cjs && node tests/gsdd.models.test.cjs && node tests/gsdd.consumer-ceremony.test.cjs && node tests/gsdd.manifest.test.cjs && node tests/gsdd.plan.adapters.test.cjs && node tests/gsdd.audit-milestone.test.cjs && node tests/gsdd.invariants.test.cjs && node tests/gsdd.guards.test.cjs && node tests/gsdd.health.test.cjs && node tests/gsdd.scenarios.test.cjs && node tests/gsdd.cross-runtime.test.cjs"
|
|
11
|
+
"test:gsdd": "node tests/gsdd.init.test.cjs && node tests/gsdd.models.test.cjs && node tests/gsdd.consumer-ceremony.test.cjs && node tests/gsdd.manifest.test.cjs && node tests/gsdd.plan.adapters.test.cjs && node tests/gsdd.audit-milestone.test.cjs && node tests/gsdd.invariants.test.cjs && node tests/gsdd.guards.test.cjs && node tests/gsdd.health.test.cjs && node tests/gsdd.scenarios.test.cjs && node tests/gsdd.cross-runtime.test.cjs && node tests/phase.test.cjs && node tests/session-fingerprint.test.cjs"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@semantic-release/changelog": "^6.0.3",
|
|
@@ -17,39 +17,45 @@
|
|
|
17
17
|
"semantic-release": "^24.2.3"
|
|
18
18
|
},
|
|
19
19
|
"engines": {
|
|
20
|
-
"node": ">=
|
|
20
|
+
"node": ">=20"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"bin/adapters/",
|
|
24
24
|
"bin/lib/",
|
|
25
25
|
"bin/gsdd.mjs",
|
|
26
|
-
"distilled/",
|
|
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/",
|
|
27
33
|
"agents/*.md",
|
|
28
34
|
"agents/README.md"
|
|
29
35
|
],
|
|
30
36
|
"keywords": [
|
|
37
|
+
"workspine",
|
|
31
38
|
"gsdd",
|
|
32
|
-
"gsd-distilled",
|
|
33
|
-
"claude",
|
|
34
39
|
"claude-code",
|
|
40
|
+
"codex-cli",
|
|
41
|
+
"opencode",
|
|
35
42
|
"ai",
|
|
36
|
-
"meta-prompting",
|
|
37
|
-
"context-engineering",
|
|
38
43
|
"coding-agent",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
44
|
+
"software-delivery",
|
|
45
|
+
"multi-runtime",
|
|
46
|
+
"repo-native",
|
|
47
|
+
"verification",
|
|
41
48
|
"workflow",
|
|
42
|
-
"
|
|
43
|
-
"gemini-cli",
|
|
44
|
-
"cursor",
|
|
45
|
-
"codex",
|
|
46
|
-
"opencode",
|
|
47
|
-
"copilot"
|
|
49
|
+
"planning"
|
|
48
50
|
],
|
|
49
51
|
"author": "PatrickSys",
|
|
50
52
|
"license": "MIT",
|
|
51
53
|
"repository": {
|
|
52
54
|
"type": "git",
|
|
53
|
-
"url": "git+https://github.com/PatrickSys/
|
|
54
|
-
}
|
|
55
|
-
|
|
55
|
+
"url": "git+https://github.com/PatrickSys/workspine.git"
|
|
56
|
+
},
|
|
57
|
+
"bugs": {
|
|
58
|
+
"url": "https://github.com/PatrickSys/workspine/issues"
|
|
59
|
+
},
|
|
60
|
+
"homepage": "https://github.com/PatrickSys/workspine#readme"
|
|
61
|
+
}
|