@workflow-cannon/workspace-kit 0.5.0 → 0.6.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 +2 -1
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -63,7 +63,8 @@ This keeps automation adaptive without sacrificing safety, governance, or develo
|
|
|
63
63
|
|
|
64
64
|
- **Phase 0** and **Phase 1** (task engine, `v0.3.0`) are complete.
|
|
65
65
|
- **Phase 2** (layered config, policy gates, cutover docs, `v0.4.0`) is complete in-repo; see `docs/maintainers/TASKS.md` and `docs/maintainers/ROADMAP.md`.
|
|
66
|
-
- **Phase 2b** (policy + config UX, `v0.4.1`) and **Phase 3** (enhancement loop MVP, `v0.5.0`) are complete in-repo: evidence-driven **improvement** tasks, **`approvals`** (`review-item`), heuristic confidence, and append-only lineage.
|
|
66
|
+
- **Phase 2b** (policy + config UX, `v0.4.1`) and **Phase 3** (enhancement loop MVP, `v0.5.0`) are complete in-repo: evidence-driven **improvement** tasks, **`approvals`** (`review-item`), heuristic confidence, and append-only lineage.
|
|
67
|
+
- **Phase 4** (`v0.6.0`) is complete in-repo: compatibility matrix/gates, diagnostics/SLO baseline evidence, release-channel mapping, and planning-doc consistency checks.
|
|
67
68
|
|
|
68
69
|
## Goals
|
|
69
70
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workflow-cannon/workspace-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"packageManager": "pnpm@10.0.0",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,7 +24,13 @@
|
|
|
24
24
|
"test": "pnpm run build && node --test test/**/*.test.mjs",
|
|
25
25
|
"pack:dry-run": "pnpm run build && pnpm pack --pack-destination ./artifacts/workspace-kit-pack",
|
|
26
26
|
"check-release-metadata": "node scripts/check-release-metadata.mjs",
|
|
27
|
-
"parity": "node scripts/run-parity.mjs"
|
|
27
|
+
"parity": "node scripts/run-parity.mjs",
|
|
28
|
+
"check-compatibility": "pnpm run build && node scripts/check-compatibility.mjs",
|
|
29
|
+
"check-planning-consistency": "node scripts/check-planning-doc-consistency.mjs",
|
|
30
|
+
"check-release-channel": "node scripts/check-release-channel.mjs",
|
|
31
|
+
"generate-runtime-diagnostics": "node scripts/generate-runtime-diagnostics.mjs",
|
|
32
|
+
"prune-evidence": "node scripts/prune-evidence.mjs",
|
|
33
|
+
"phase4-gates": "pnpm run check-compatibility && pnpm run check-planning-consistency && pnpm run check-release-channel"
|
|
28
34
|
},
|
|
29
35
|
"devDependencies": {
|
|
30
36
|
"@types/node": "^25.5.0",
|