@planu/cli 5.2.0 → 5.3.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/CHANGELOG.md +44 -0
- package/dist/config/environment-schema.json +161 -21
- package/dist/config/hook-templates/planu-session-safeguard.sh +14 -4
- package/dist/config/release-policy.json +0 -8
- package/dist/engine/planu-core.darwin-arm64.node.manifest.json +7 -7
- package/dist/engine/planu-core.darwin-arm64.node.sbom.json +4 -4
- package/dist/engine/planu-core.darwin-x64.node.manifest.json +7 -7
- package/dist/engine/planu-core.darwin-x64.node.sbom.json +4 -4
- package/dist/engine/planu-core.linux-arm64-gnu.node.manifest.json +7 -7
- package/dist/engine/planu-core.linux-arm64-gnu.node.sbom.json +4 -4
- package/dist/engine/planu-core.linux-arm64-musl.node.manifest.json +7 -7
- package/dist/engine/planu-core.linux-arm64-musl.node.sbom.json +4 -4
- package/dist/engine/planu-core.linux-x64-gnu.node.manifest.json +7 -7
- package/dist/engine/planu-core.linux-x64-gnu.node.sbom.json +4 -4
- package/dist/engine/planu-core.linux-x64-musl.node.manifest.json +7 -7
- package/dist/engine/planu-core.linux-x64-musl.node.sbom.json +4 -4
- package/dist/engine/planu-core.win32-arm64-msvc.node.manifest.json +7 -7
- package/dist/engine/planu-core.win32-arm64-msvc.node.sbom.json +4 -4
- package/dist/engine/planu-core.win32-x64-msvc.node.manifest.json +7 -7
- package/dist/engine/planu-core.win32-x64-msvc.node.sbom.json +4 -4
- package/dist/engine/session-safeguard/autopush.js +8 -2
- package/dist/engine/validation/validation-freshness.d.ts +20 -1
- package/dist/engine/validation/validation-freshness.js +181 -21
- package/dist/engine/validator/analyzer.d.ts +5 -2
- package/dist/engine/validator/analyzer.js +81 -23
- package/dist/engine/validator/deep-code-checker.d.ts +10 -0
- package/dist/engine/validator/deep-code-checker.js +33 -0
- package/dist/engine/validator/test-evidence-grounding.d.ts +56 -0
- package/dist/engine/validator/test-evidence-grounding.js +187 -0
- package/dist/engine/validator.js +15 -4
- package/dist/tools/reconcile-session-safeguard-hook.js +14 -3
- package/dist/tools/validate.js +6 -2
- package/dist/types/analysis.d.ts +2 -0
- package/dist/types/validation-receipt.d.ts +7 -0
- package/package.json +20 -20
- package/planu-native.json +1 -1
- package/planu-plugin.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@planu/cli",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.1",
|
|
4
4
|
"description": "Planu — MCP Server for Spec Driven Development with native Rust acceleration for hot paths. Cross-platform (Linux/macOS/Windows, x64/arm64, glibc/musl).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
"packageName": "@planu/core"
|
|
36
36
|
},
|
|
37
37
|
"optionalDependencies": {
|
|
38
|
-
"@planu/core-darwin-arm64": "5.
|
|
39
|
-
"@planu/core-darwin-x64": "5.
|
|
40
|
-
"@planu/core-linux-arm64-gnu": "5.
|
|
41
|
-
"@planu/core-linux-arm64-musl": "5.
|
|
42
|
-
"@planu/core-linux-x64-gnu": "5.
|
|
43
|
-
"@planu/core-linux-x64-musl": "5.
|
|
44
|
-
"@planu/core-win32-arm64-msvc": "5.
|
|
45
|
-
"@planu/core-win32-x64-msvc": "5.
|
|
38
|
+
"@planu/core-darwin-arm64": "5.3.1",
|
|
39
|
+
"@planu/core-darwin-x64": "5.3.1",
|
|
40
|
+
"@planu/core-linux-arm64-gnu": "5.3.1",
|
|
41
|
+
"@planu/core-linux-arm64-musl": "5.3.1",
|
|
42
|
+
"@planu/core-linux-x64-gnu": "5.3.1",
|
|
43
|
+
"@planu/core-linux-x64-musl": "5.3.1",
|
|
44
|
+
"@planu/core-win32-arm64-msvc": "5.3.1",
|
|
45
|
+
"@planu/core-win32-x64-msvc": "5.3.1"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">=24.0.0"
|
|
@@ -161,8 +161,8 @@
|
|
|
161
161
|
"license": "SEE LICENSE IN LICENSE",
|
|
162
162
|
"dependencies": {
|
|
163
163
|
"@anthropic-ai/sdk": "^0.115.0",
|
|
164
|
-
"@hono/node-server": "2.0
|
|
165
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
164
|
+
"@hono/node-server": "2.1.0",
|
|
165
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
166
166
|
"glob": "^13.0.6",
|
|
167
167
|
"yaml": "^2.9.0",
|
|
168
168
|
"zod": "^4.4.3"
|
|
@@ -173,16 +173,16 @@
|
|
|
173
173
|
"@commitlint/config-conventional": "^21.2.0",
|
|
174
174
|
"@eslint/js": "^10.0.1",
|
|
175
175
|
"@lhci/cli": "0.15.1",
|
|
176
|
-
"@napi-rs/cli": "3.
|
|
176
|
+
"@napi-rs/cli": "3.8.2",
|
|
177
177
|
"@noble/hashes": "2.2.0",
|
|
178
|
-
"@playwright/test": "1.62.
|
|
178
|
+
"@playwright/test": "1.62.1",
|
|
179
179
|
"@scure/base": "2.2.0",
|
|
180
180
|
"@secretlint/secretlint-rule-no-homedir": "^13.0.4",
|
|
181
181
|
"@secretlint/secretlint-rule-preset-recommend": "^13.0.4",
|
|
182
182
|
"@stryker-mutator/core": "^9.6.1",
|
|
183
183
|
"@stryker-mutator/vitest-runner": "^9.6.1",
|
|
184
|
-
"@supabase/supabase-js": "^2.
|
|
185
|
-
"@types/node": "^26.1.
|
|
184
|
+
"@supabase/supabase-js": "^2.112.0",
|
|
185
|
+
"@types/node": "^26.1.2",
|
|
186
186
|
"@types/qrcode": "1.5.6",
|
|
187
187
|
"@typescript/native": "npm:typescript@^7.0.2",
|
|
188
188
|
"@vitejs/plugin-vue": "^6.0.8",
|
|
@@ -196,17 +196,17 @@
|
|
|
196
196
|
"husky": "^9.1.7",
|
|
197
197
|
"javascript-obfuscator": "^5.5.0",
|
|
198
198
|
"jiti": "2.7.0",
|
|
199
|
-
"knip": "^6.
|
|
200
|
-
"lint-staged": "^17.
|
|
199
|
+
"knip": "^6.31.0",
|
|
200
|
+
"lint-staged": "^17.3.0",
|
|
201
201
|
"madge": "^8.0.0",
|
|
202
202
|
"prettier": "^3.9.6",
|
|
203
203
|
"qrcode": "1.5.4",
|
|
204
204
|
"secretlint": "^13.0.4",
|
|
205
205
|
"tsc-alias": "^1.9.1",
|
|
206
|
-
"type-coverage": "^2.
|
|
206
|
+
"type-coverage": "^2.30.1",
|
|
207
207
|
"typescript": "npm:@typescript/typescript6@^6.0.2",
|
|
208
|
-
"typescript-eslint": "^8.
|
|
209
|
-
"vite": "^8.
|
|
208
|
+
"typescript-eslint": "^8.66.0",
|
|
209
|
+
"vite": "^8.2.0",
|
|
210
210
|
"vitest": "^4.1.10",
|
|
211
211
|
"vue": "^3.5.40"
|
|
212
212
|
}
|
package/planu-native.json
CHANGED
package/planu-plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "dev.planu.cli",
|
|
3
3
|
"displayName": "Planu — Spec Driven Development",
|
|
4
4
|
"description": "Manage software specs, estimations, and autonomous SDD workflows. Language-agnostic MCP server for Claude Code.",
|
|
5
|
-
"version": "5.
|
|
5
|
+
"version": "5.3.1",
|
|
6
6
|
"icon": "assets/plugin/icon.svg",
|
|
7
7
|
"command": ["npx", "@planu/cli@latest"],
|
|
8
8
|
"packageName": "@planu/cli",
|