@planu/cli 5.3.40 → 5.3.42
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
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [5.3.42] - 2026-08-23
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
- fix(spec-1310): resolve relative --project-path at CLI boundary before lifecycle delegation
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## [5.3.41] - 2026-08-23
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
- fix(spec-1591): recognize relax-family verbs in scope-contradiction noun-overlap guard
|
|
11
|
+
|
|
12
|
+
|
|
1
13
|
## [5.3.40] - 2026-08-23
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// cli/commands/status.ts — planu status <specId> [--set implementing] (SPEC-124)
|
|
2
2
|
import { parseArgs } from 'node:util';
|
|
3
|
+
import { resolve } from 'node:path';
|
|
3
4
|
import { handleUpdateStatus } from '../../tools/update-status.js';
|
|
4
5
|
import { handleUpdateStatusBatch } from '../../tools/update-status/batch.js';
|
|
5
6
|
import { handlePlanStatus } from '../../tools/status-handler.js';
|
|
@@ -59,7 +60,11 @@ function parseStatusArgs(args) {
|
|
|
59
60
|
strict: false,
|
|
60
61
|
allowPositionals: true,
|
|
61
62
|
});
|
|
62
|
-
|
|
63
|
+
const values = parsed.values;
|
|
64
|
+
if (values['project-path']) {
|
|
65
|
+
values['project-path'] = resolve(values['project-path']);
|
|
66
|
+
}
|
|
67
|
+
return { values, positionals: parsed.positionals };
|
|
63
68
|
}
|
|
64
69
|
async function runProjectStatus(values, flags) {
|
|
65
70
|
const result = await handlePlanStatus({
|
|
@@ -100,7 +100,7 @@ function splitClauses(text) {
|
|
|
100
100
|
.map((clause) => clause.trim())
|
|
101
101
|
.filter(Boolean);
|
|
102
102
|
}
|
|
103
|
-
const AFFIRMATIVE_ACTION_VERBS = /\b(?:build(?:s|ing)?|chang(?:e|es|ing)|modif(?:y|ies|ying)|alter(?:s|ing)?|add(?:s|ing)?|introduc(?:e|es|ing)|implement(?:s|ing)?|enabl(?:e|es|ing)|expos(?:e|es|ing|ed)|mutat(?:e|es|ing)|rewrit(?:e|es|ing|ten)|remov(?:e|es|ing|ed)|forc(?:e|es|ing))\b/;
|
|
103
|
+
const AFFIRMATIVE_ACTION_VERBS = /\b(?:build(?:s|ing)?|chang(?:e|es|ing)|modif(?:y|ies|ying)|alter(?:s|ing)?|add(?:s|ing)?|introduc(?:e|es|ing)|implement(?:s|ing)?|enabl(?:e|es|ing)|expos(?:e|es|ing|ed)|mutat(?:e|es|ing)|rewrit(?:e|es|ing|ten)|remov(?:e|es|ing|ed)|relax(?:es|ing|ed)?|forc(?:e|es|ing))\b/;
|
|
104
104
|
function assertsForbiddenAction(text) {
|
|
105
105
|
return AFFIRMATIVE_ACTION_VERBS.test(normalize(text));
|
|
106
106
|
}
|
package/package.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.3.
|
|
5
|
+
"version": "5.3.42",
|
|
6
6
|
"icon": "assets/plugin/icon.svg",
|
|
7
7
|
"command": ["npx", "@planu/cli@latest"],
|
|
8
8
|
"packageName": "@planu/cli",
|