@planu/cli 5.3.2 → 5.3.4

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.
Files changed (58) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/dist/config/runtime-policy.json +9 -0
  3. package/dist/engine/autopilot/action-registry.js +20 -2
  4. package/dist/engine/autopilot/complete-loop.js +4 -1
  5. package/dist/engine/constitution/sdd-rules-registry.js +8 -4
  6. package/dist/engine/drift/violation-resolver.js +30 -8
  7. package/dist/engine/evidence-gates/evidence-skeletons.js +9 -4
  8. package/dist/engine/execution/outbox-worker.d.ts +8 -0
  9. package/dist/engine/execution/outbox-worker.js +102 -31
  10. package/dist/engine/handoff-packager.js +10 -3
  11. package/dist/engine/implementation-contract/common.d.ts +13 -1
  12. package/dist/engine/implementation-contract/common.js +19 -3
  13. package/dist/engine/implementation-contract/evaluator.js +116 -35
  14. package/dist/engine/implementation-contract/renderer.js +62 -31
  15. package/dist/engine/planu-core.darwin-arm64.node.manifest.json +7 -7
  16. package/dist/engine/planu-core.darwin-arm64.node.sbom.json +4 -4
  17. package/dist/engine/planu-core.darwin-x64.node.manifest.json +7 -7
  18. package/dist/engine/planu-core.darwin-x64.node.sbom.json +4 -4
  19. package/dist/engine/planu-core.linux-arm64-gnu.node.manifest.json +7 -7
  20. package/dist/engine/planu-core.linux-arm64-gnu.node.sbom.json +4 -4
  21. package/dist/engine/planu-core.linux-arm64-musl.node.manifest.json +7 -7
  22. package/dist/engine/planu-core.linux-arm64-musl.node.sbom.json +4 -4
  23. package/dist/engine/planu-core.linux-x64-gnu.node.manifest.json +7 -7
  24. package/dist/engine/planu-core.linux-x64-gnu.node.sbom.json +4 -4
  25. package/dist/engine/planu-core.linux-x64-musl.node.manifest.json +7 -7
  26. package/dist/engine/planu-core.linux-x64-musl.node.sbom.json +4 -4
  27. package/dist/engine/planu-core.win32-arm64-msvc.node.manifest.json +7 -7
  28. package/dist/engine/planu-core.win32-arm64-msvc.node.sbom.json +4 -4
  29. package/dist/engine/planu-core.win32-x64-msvc.node.manifest.json +7 -7
  30. package/dist/engine/planu-core.win32-x64-msvc.node.sbom.json +4 -4
  31. package/dist/engine/runtime-policy.js +14 -0
  32. package/dist/engine/spec-format/unified-spec-builder.js +32 -8
  33. package/dist/engine/spec-generator/fallback-generator.js +5 -3
  34. package/dist/engine/spec-quality/generic-output-gate.d.ts +7 -1
  35. package/dist/engine/spec-quality/generic-output-gate.js +199 -8
  36. package/dist/engine/spec-quality-scorer.js +9 -5
  37. package/dist/engine/workers/handlers/auto-drift.js +22 -8
  38. package/dist/index.js +3 -1
  39. package/dist/storage/runtime-db.d.ts +23 -1
  40. package/dist/storage/runtime-db.js +79 -9
  41. package/dist/tools/create-spec/post-creation.js +7 -2
  42. package/dist/tools/create-spec/spec-created-outbox-consumer.d.ts +2 -0
  43. package/dist/tools/create-spec/spec-created-outbox-consumer.js +94 -6
  44. package/dist/tools/create-spec-helpers.d.ts +2 -2
  45. package/dist/tools/create-spec-helpers.js +2 -2
  46. package/dist/tools/create-spec.js +5 -0
  47. package/dist/tools/git/branch-ops.d.ts +7 -3
  48. package/dist/tools/git/branch-ops.js +68 -18
  49. package/dist/tools/update-status/evidence-gate.js +10 -17
  50. package/dist/tools/update-status/transition-guard.js +26 -14
  51. package/dist/tools/update-status-actions.js +4 -2
  52. package/dist/types/git.d.ts +4 -0
  53. package/dist/types/outbox-worker.d.ts +2 -0
  54. package/dist/types/runtime-policy.d.ts +9 -0
  55. package/dist/types/spec-quality.d.ts +6 -1
  56. package/package.json +9 -9
  57. package/planu-native.json +1 -1
  58. package/planu-plugin.json +1 -1
@@ -1,4 +1,4 @@
1
- import { extractTopLevelSection, IMPLEMENTATION_CONTRACT_SECTION, IMPLEMENTATION_CONTRACT_SUBSECTIONS, } from './common.js';
1
+ import { extractTopLevelSection, IMPLEMENTATION_CONTRACT_OPTIONAL_SUBSECTIONS, IMPLEMENTATION_CONTRACT_REQUIRED_SUBSECTIONS, IMPLEMENTATION_CONTRACT_SECTION, } from './common.js';
2
2
  const FILLER_PATTERNS = [
3
3
  /\bTBD\b/i,
4
4
  /\bN\/A\b/i,
@@ -8,6 +8,19 @@ const FILLER_PATTERNS = [
8
8
  ];
9
9
  const MANUAL_VERIFICATION_STEP_RE = /\b(given|when|then|step|observe|click|run)\b/i;
10
10
  const CONCRETE_MANUAL_EVIDENCE_RE = /`[^`]+`|\b(?:src|tests|docs|scripts|website|planu)\/[\w./-]+/i;
11
+ const OPTIONAL_SUBSECTIONS = new Set(IMPLEMENTATION_CONTRACT_OPTIONAL_SUBSECTIONS);
12
+ /**
13
+ * SPEC-1406 (DEFECT 1, round 2 — FALSE EVIDENCE fix): the old CONCRETE_MANUAL_EVIDENCE_RE
14
+ * accepted ANY backticked text, so a row whose evidence was `` `not-a-path` `` produced zero
15
+ * issues. Verification-row evidence must actually look like a test path (a `tests/` segment,
16
+ * or `.test.`/`.spec.` in the filename), a runnable test/typecheck/lint command, or a
17
+ * backticked command/path that names a real file or script (contains `/` or a file
18
+ * extension) — a bare backticked word with neither is not evidence.
19
+ */
20
+ const TEST_EVIDENCE_RE = /tests?\/[\w./-]+\.\w+|\.(?:test|spec)\.\w+|\b(?:pnpm|npm|npx|yarn)\s+(?:run\s+)?[\w:-]*(?:test|typecheck|lint)[\w:-]*\b|\bvitest\b|\bjest\b|\bpytest\b|\bgo test\b|\bcargo test\b|`[^`]*(?:[\\/]|\.[a-zA-Z]{1,10}\b)[^`]*`/i;
21
+ /** The shared row rendered by renderSharedVerificationRow when there are fewer test files
22
+ * than criteria — it covers every criterion at once rather than one row each. */
23
+ const SHARED_VERIFICATION_ROW_RE = /^-\s*All criteria are verified by:/;
11
24
  export function evaluateImplementationContract(specBody, acceptanceCriteria) {
12
25
  const contract = extractTopLevelSection(specBody, IMPLEMENTATION_CONTRACT_SECTION);
13
26
  if (contract.trim().length === 0) {
@@ -19,56 +32,77 @@ export function evaluateImplementationContract(specBody, acceptanceCriteria) {
19
32
  ];
20
33
  }
21
34
  const issues = [];
22
- const sections = new Map(IMPLEMENTATION_CONTRACT_SUBSECTIONS.map((section) => [
23
- section,
24
- extractSubsection(contract, section),
25
- ]));
35
+ const allSubsections = [
36
+ ...IMPLEMENTATION_CONTRACT_REQUIRED_SUBSECTIONS,
37
+ ...IMPLEMENTATION_CONTRACT_OPTIONAL_SUBSECTIONS,
38
+ ];
39
+ const sections = new Map(allSubsections.map((section) => [section, extractSubsection(contract, section)]));
26
40
  for (const [section, content] of sections.entries()) {
27
- if (content === null) {
41
+ issues.push(...evaluateSubsection(section, content));
42
+ }
43
+ const map = sections.get('Acceptance-To-Verification Map') ?? '';
44
+ const mapLines = map.split('\n').map((line) => line.trim());
45
+ const sharedRowCoversAll = mapLines.some((line) => SHARED_VERIFICATION_ROW_RE.test(line) && TEST_EVIDENCE_RE.test(line));
46
+ const useStrictIndex = hasCompleteAcLabeling(mapLines, acceptanceCriteria.length);
47
+ acceptanceCriteria.forEach((criterion, index) => {
48
+ if (sharedRowCoversAll) {
49
+ return;
50
+ }
51
+ if (!criterionHasVerification(criterion, index + 1, mapLines, useStrictIndex)) {
52
+ issues.push({
53
+ code: 'contract_unmapped_criterion',
54
+ message: `Acceptance criterion is not mapped to verification evidence: ${criterion}`,
55
+ });
56
+ }
57
+ });
58
+ if (/\bmanual verification\b/i.test(map) &&
59
+ !MANUAL_VERIFICATION_STEP_RE.test(map) &&
60
+ !CONCRETE_MANUAL_EVIDENCE_RE.test(map)) {
61
+ issues.push({
62
+ code: 'contract_manual_verification_vague',
63
+ message: 'Manual verification in the Implementation Contract must include exact observable steps.',
64
+ });
65
+ }
66
+ return issues;
67
+ }
68
+ /**
69
+ * SPEC-1406: optional subsections with no grounded content are omitted from the rendered
70
+ * body entirely — that is the intended fix, not a defect to flag.
71
+ */
72
+ function evaluateSubsection(section, content) {
73
+ const issues = [];
74
+ if (content === null) {
75
+ if (!OPTIONAL_SUBSECTIONS.has(section)) {
28
76
  issues.push({
29
77
  code: 'contract_subsection_missing',
30
78
  message: `Implementation Contract subsection "${section}" is missing.`,
31
79
  });
32
- continue;
33
80
  }
34
- const trimmed = content.trim();
35
- if (trimmed.length === 0) {
81
+ return issues;
82
+ }
83
+ const trimmed = content.trim();
84
+ if (trimmed.length === 0) {
85
+ if (!OPTIONAL_SUBSECTIONS.has(section)) {
36
86
  issues.push({
37
87
  code: 'contract_subsection_empty',
38
88
  message: `Implementation Contract subsection "${section}" is empty.`,
39
89
  });
40
90
  }
41
- for (const pattern of FILLER_PATTERNS) {
42
- if (pattern.test(trimmed)) {
43
- issues.push({
44
- code: 'contract_filler',
45
- message: `Implementation Contract subsection "${section}" contains filler text.`,
46
- });
47
- break;
48
- }
49
- }
50
- if (/\bNeeds decision:/i.test(trimmed)) {
51
- issues.push({
52
- code: 'contract_needs_decision',
53
- message: `Implementation Contract subsection "${section}" still has unresolved Needs decision items.`,
54
- });
55
- }
91
+ return issues;
56
92
  }
57
- const map = sections.get('Acceptance-To-Verification Map') ?? '';
58
- for (const criterion of acceptanceCriteria) {
59
- if (!criterionHasVerification(criterion, map)) {
93
+ for (const pattern of FILLER_PATTERNS) {
94
+ if (pattern.test(trimmed)) {
60
95
  issues.push({
61
- code: 'contract_unmapped_criterion',
62
- message: `Acceptance criterion is not mapped to verification evidence: ${criterion}`,
96
+ code: 'contract_filler',
97
+ message: `Implementation Contract subsection "${section}" contains filler text.`,
63
98
  });
99
+ break;
64
100
  }
65
101
  }
66
- if (/\bmanual verification\b/i.test(map) &&
67
- !MANUAL_VERIFICATION_STEP_RE.test(map) &&
68
- !CONCRETE_MANUAL_EVIDENCE_RE.test(map)) {
102
+ if (/\bNeeds decision:/i.test(trimmed)) {
69
103
  issues.push({
70
- code: 'contract_manual_verification_vague',
71
- message: 'Manual verification in the Implementation Contract must include exact observable steps.',
104
+ code: 'contract_needs_decision',
105
+ message: `Implementation Contract subsection "${section}" still has unresolved Needs decision items.`,
72
106
  });
73
107
  }
74
108
  return issues;
@@ -85,7 +119,54 @@ function extractSubsection(sectionBody, subsectionName) {
85
119
  const next = nextRe.exec(sectionBody);
86
120
  return sectionBody.slice(start, next ? next.index : sectionBody.length);
87
121
  }
88
- function criterionHasVerification(criterion, map) {
122
+ /**
123
+ * A map only qualifies for strict index-based matching when EVERY criterion 1..N has its
124
+ * own `AC{n}:` row — a partial or off-by-one labeling scheme (e.g. an extra `AB1:` row for
125
+ * a review-only criterion) is not the renderer's per-criterion output shape and must not
126
+ * be forced into it; fall back to the legacy whole-map match instead (see below).
127
+ */
128
+ function hasCompleteAcLabeling(mapLines, criteriaCount) {
129
+ if (criteriaCount === 0) {
130
+ return false;
131
+ }
132
+ for (let index = 1; index <= criteriaCount; index += 1) {
133
+ const rowRe = new RegExp(`^-\\s*AC${String(index)}:`);
134
+ if (!mapLines.some((line) => rowRe.test(line))) {
135
+ return false;
136
+ }
137
+ }
138
+ return true;
139
+ }
140
+ /**
141
+ * SPEC-1406 (DEFECT 1, round 2 — PREFIX COLLISION fix): the old lookup matched rows by
142
+ * `normalize(criterion).slice(0, 48)` and took the FIRST matching line — two criteria
143
+ * sharing the same first 48 normalized characters were both "certified" by AC1's row,
144
+ * so AC2 could be entirely unmapped and still pass. `AC{n}:` labels are only ever emitted
145
+ * by this renderer (renderPerCriterionRow), so when the map has a complete `AC1:`..`ACn:`
146
+ * sequence, match strictly on the labeled index instead of a truncated prefix.
147
+ *
148
+ * When the map does not have a complete AC-labeled sequence, it was authored by hand or by
149
+ * an older generator (bullet lists, GIVEN/WHEN/THEN prose, markdown tables, partial AC
150
+ * labeling — corpus-replay against all pre-SPEC-1406 persisted specs found no single
151
+ * positional or structural rule that covers every legacy shape without newly blocking specs
152
+ * that were previously readable). Falling back to the original whole-map prefix/keyword
153
+ * match preserves exact pre-fix behavior for that legacy corpus — the non-functional
154
+ * constraint that no already-persisted spec may gain a new blocker takes priority over
155
+ * tightening a shape this fix does not target.
156
+ */
157
+ function criterionHasVerification(criterion, index, mapLines, useStrictIndex) {
158
+ if (criterion.trim().length === 0) {
159
+ return true;
160
+ }
161
+ if (useStrictIndex) {
162
+ const rowRe = new RegExp(`^-\\s*AC${String(index)}:`);
163
+ const row = mapLines.find((line) => rowRe.test(line));
164
+ return row !== undefined && TEST_EVIDENCE_RE.test(row);
165
+ }
166
+ return legacyCriterionHasVerification(criterion, mapLines.join('\n'));
167
+ }
168
+ /** Pre-SPEC-1406 whole-map matcher, kept verbatim for maps with no `AC{n}:` labels. */
169
+ function legacyCriterionHasVerification(criterion, map) {
89
170
  const normalizedCriterion = normalize(criterion);
90
171
  if (normalizedCriterion.length === 0) {
91
172
  return true;
@@ -3,6 +3,9 @@ export function buildImplementationContractSection(input) {
3
3
  const criteria = input.criteria;
4
4
  const testFiles = input.files.test.map((file) => file.path);
5
5
  const verificationCommands = input.verificationCommands;
6
+ const verificationRows = renderVerificationRows(criteria, testFiles, verificationCommands);
7
+ const failureModes = renderFailureModes(criteria);
8
+ const nonGoals = renderNonGoals(input.outOfScope);
6
9
  const lines = [
7
10
  `## ${IMPLEMENTATION_CONTRACT_SECTION}`,
8
11
  '### User Outcome',
@@ -10,21 +13,16 @@ export function buildImplementationContractSection(input) {
10
13
  criteria[0]?.text ??
11
14
  'Needs decision: define the exact observable outcome this spec must deliver.',
12
15
  '',
13
- '### Behavior Contract',
14
- ...renderBehaviorContract(criteria),
15
- '',
16
16
  '### File-Level Work Plan',
17
17
  ...renderFilePlan(input.files, criteria.length > 0),
18
18
  '',
19
19
  '### Acceptance-To-Verification Map',
20
- ...criteria.map((criterion, index) => renderVerificationRow(criterion.text, index + 1, testFiles, verificationCommands)),
21
- '',
22
- '### Edge Cases And Failure Modes',
23
- ...renderFailureModes(criteria),
24
- '',
25
- '### Non-Goals And Forbidden Approaches',
26
- ...renderNonGoals(input.outOfScope),
20
+ ...verificationRows,
27
21
  '',
22
+ // SPEC-1406 (DEFECT 5): a subsection with no grounded content is omitted rather than
23
+ // filled with a restated-criterion placeholder — prefer omission over filler.
24
+ ...(failureModes.length > 0 ? ['### Edge Cases And Failure Modes', ...failureModes, ''] : []),
25
+ ...(nonGoals.length > 0 ? ['### Non-Goals And Forbidden Approaches', ...nonGoals, ''] : []),
28
26
  '### Verification Commands',
29
27
  ...(verificationCommands.length > 0
30
28
  ? verificationCommands.map((command) => `- \`${command}\``)
@@ -71,31 +69,64 @@ function renderFilePlan(files, hasGroundedBehavior) {
71
69
  ? ['- No file ownership was grounded for this behavior.']
72
70
  : ['- Needs decision: identify expected source and test files.'];
73
71
  }
74
- function renderBehaviorContract(criteria) {
75
- return criteria.length > 0
76
- ? criteria.map((criterion, index) => `- Expected behavior AC${String(index + 1)}: ${criterion.text}`)
77
- : ['- Needs decision: define at least one evidence-grounded acceptance criterion.'];
72
+ /**
73
+ * SPEC-1406 (DEFECT 1, round 2): renders the Acceptance-To-Verification Map body.
74
+ * There is no per-criterion test mapping anywhere in the pipeline (LeanCriterion is
75
+ * `{text, done}`, `files.test` is a flat list) positional `testFiles[index]` is only
76
+ * trustworthy when there are at least as many test files as criteria. When there are
77
+ * not enough test files to map one per criterion, emit ONE shared row naming every
78
+ * criterion's coverage instead of dropping rows (which used to make criteria 2..N
79
+ * invisible to the evaluator and promote them to false blockers).
80
+ */
81
+ function renderVerificationRows(criteria, testFiles, commands) {
82
+ if (criteria.length === 0) {
83
+ return ['- Needs decision: provide at least one acceptance criterion to verify.'];
84
+ }
85
+ if (testFiles.length >= criteria.length) {
86
+ const rows = [];
87
+ criteria.forEach((criterion, index) => {
88
+ const test = testFiles[index];
89
+ if (test !== undefined) {
90
+ rows.push(renderPerCriterionRow(criterion.text, index + 1, test, commands));
91
+ }
92
+ });
93
+ return rows;
94
+ }
95
+ if (testFiles.length === 0) {
96
+ return ['- No repository-supported verification evidence was grounded for these criteria.'];
97
+ }
98
+ return renderSharedVerificationRow(testFiles, commands);
99
+ }
100
+ function renderPerCriterionRow(criterion, index, test, commands) {
101
+ const command = commands[index - 1] ?? commands[0];
102
+ return command
103
+ ? `- AC${String(index)}: ${criterion} -> unit test \`${test}\` plus \`${command}\`.`
104
+ : `- AC${String(index)}: ${criterion} -> unit test \`${test}\`.`;
78
105
  }
79
- function renderVerificationRow(criterion, index, testFiles, commands) {
80
- const test = testFiles[0];
81
- if (test) {
82
- const command = commands[0];
83
- return command
84
- ? `- AC${String(index)}: ${criterion} -> unit test \`${test}\` plus \`${command}\`.`
85
- : `- AC${String(index)}: ${criterion} -> unit test \`${test}\`.`;
106
+ /**
107
+ * Emitted once when there are fewer declared test files than criteria — never repeat
108
+ * `commands[0]` per criterion (SPEC-1406 round 2 finding: N byte-identical rows).
109
+ */
110
+ function renderSharedVerificationRow(testFiles, commands) {
111
+ const fileList = testFiles.map((file) => `\`${file}\``).join(', ');
112
+ const lines = [`- All criteria are verified by: ${fileList}`];
113
+ const command = commands[0];
114
+ if (command) {
115
+ lines.push(`- Shared verification command: \`${command}\`.`);
86
116
  }
87
- return `- AC${String(index)}: ${criterion} -> verify the exact observable result declared by this criterion.`;
117
+ return lines;
88
118
  }
89
119
  function renderNonGoals(outOfScope) {
90
- return outOfScope.length > 0
91
- ? outOfScope.map((item) => `- ${item}`)
92
- : ['- No explicit non-goals were supplied.'];
120
+ return outOfScope.map((item) => `- ${item}`);
93
121
  }
94
- function renderFailureModes(criteria) {
95
- return criteria.length > 0
96
- ? criteria.map((criterion, index) => `- AC${String(index + 1)} failure: reject partial behavior that violates "${criterion.text}" and preserve the last valid observable state.`)
97
- : [
98
- '- Needs decision: identify criterion-specific failure modes from user input or project evidence.',
99
- ];
122
+ /**
123
+ * SPEC-1406 (DEFECT 5): there is no per-criterion failure-mode input — the previous
124
+ * implementation synthesized a constant restatement of the criterion text instead
125
+ * ("AC1 failure: reject partial behavior that violates \"<criterion>\"..."), which carries
126
+ * no information beyond the Acceptance-To-Verification Map. Prefer omission over filler:
127
+ * this subsection has nothing grounded to add, so it is always empty here.
128
+ */
129
+ function renderFailureModes(_criteria) {
130
+ return [];
100
131
  }
101
132
  //# sourceMappingURL=renderer.js.map
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
- "cliVersion": "5.3.2",
4
- "engineVersion": "5.3.2",
5
- "buildId": "1-5.3.2-aarch64-apple-darwin",
3
+ "cliVersion": "5.3.4",
4
+ "engineVersion": "5.3.4",
5
+ "buildId": "1-5.3.4-aarch64-apple-darwin",
6
6
  "protocolAbi": 1,
7
7
  "capabilityAbi": 2,
8
8
  "nodeApiAbi": 4,
@@ -17,15 +17,15 @@
17
17
  "platform": "darwin",
18
18
  "arch": "arm64",
19
19
  "libc": null,
20
- "artifactSha256": "d871c6912f7857fedb31608d895a4e80fbf550c18875d307cf068fa966412cb7",
20
+ "artifactSha256": "570521dc4b74de29cb0e40a5da5da31bb8a34851c7bbc632c40dfeba48400bfc",
21
21
  "sbom": {
22
22
  "format": "CycloneDX-1.5",
23
23
  "path": "planu-core.darwin-arm64.node.sbom.json",
24
- "sha256": "93613e9e650a12618265c467fd3007c96ad6c261dcf373ff321d70210c1fdf90"
24
+ "sha256": "6f82916e52c2ae01a71b3d55b2c9c6ac607d4f9b153512d349cf8decc632b309"
25
25
  },
26
26
  "provenance": {
27
27
  "builder": "scripts/build-rust-local.sh",
28
- "sourceCommit": "30226657c1e66411b6ff233c2ea82e47573d533a",
28
+ "sourceCommit": "7f78cd615083c4284cab36c05f11dc2ce76e5cbd",
29
29
  "sourceTreeDirty": false,
30
30
  "sourceDateEpoch": 1,
31
31
  "rustToolchain": "rustc 1.95.0 (59807616e 2026-04-14)",
@@ -34,6 +34,6 @@
34
34
  "signature": {
35
35
  "algorithm": "Ed25519",
36
36
  "keyId": "e2ee765cb5ad9fbdc433ece332bce26d746d5e350b3acde0721a4c8c6337ff7b",
37
- "value": "5A14AujfQn9F0F6V4dCbHhSlzyWfH43wAF+8tSzLXg0t7+yELQKNNH8XqNGSqL9qGHPVxSYeTu1nh/3qQECxBQ=="
37
+ "value": "VKMAa/cn3GxIH/tAv535J9ZCcXOT6tCmakcat6U6z9HyWkTb8fpBG9xYQoufyQ7GVt1GocbWIyyOVX2HV6JbCg=="
38
38
  }
39
39
  }
@@ -4,14 +4,14 @@
4
4
  "version": 1,
5
5
  "metadata": {
6
6
  "component": {
7
- "bom-ref": "pkg:cargo/planu-core@5.3.2",
7
+ "bom-ref": "pkg:cargo/planu-core@5.3.4",
8
8
  "type": "library",
9
9
  "name": "planu-core",
10
- "version": "5.3.2",
10
+ "version": "5.3.4",
11
11
  "hashes": [
12
12
  {
13
13
  "alg": "SHA-256",
14
- "content": "d871c6912f7857fedb31608d895a4e80fbf550c18875d307cf068fa966412cb7"
14
+ "content": "570521dc4b74de29cb0e40a5da5da31bb8a34851c7bbc632c40dfeba48400bfc"
15
15
  }
16
16
  ]
17
17
  }
@@ -1106,7 +1106,7 @@
1106
1106
  "dependsOn": []
1107
1107
  },
1108
1108
  {
1109
- "ref": "pkg:cargo/planu-core@5.3.2",
1109
+ "ref": "pkg:cargo/planu-core@5.3.4",
1110
1110
  "dependsOn": [
1111
1111
  "pkg:cargo/core-foundation@0.10.1",
1112
1112
  "pkg:cargo/hmac@0.12.1",
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
- "cliVersion": "5.3.2",
4
- "engineVersion": "5.3.2",
5
- "buildId": "1-5.3.2-x86_64-apple-darwin",
3
+ "cliVersion": "5.3.4",
4
+ "engineVersion": "5.3.4",
5
+ "buildId": "1-5.3.4-x86_64-apple-darwin",
6
6
  "protocolAbi": 1,
7
7
  "capabilityAbi": 2,
8
8
  "nodeApiAbi": 4,
@@ -17,15 +17,15 @@
17
17
  "platform": "darwin",
18
18
  "arch": "x64",
19
19
  "libc": null,
20
- "artifactSha256": "2e160dbfb5616b778ea6bc1b85b6663ae9618c664824498e0089a3b82353923e",
20
+ "artifactSha256": "0912425f86760d302fed2c7c81a1e6c41f46b143ba6e611120e1c9cffe4c7fe3",
21
21
  "sbom": {
22
22
  "format": "CycloneDX-1.5",
23
23
  "path": "planu-core.darwin-x64.node.sbom.json",
24
- "sha256": "b4aa09e9d3bc3d5f4d0d80953f4d32389aa40fafabcac6895ebd296c4a2f6873"
24
+ "sha256": "8b9b3ef32f117e9ca3cebbe8ccfc04f4be4250496a45dffc6e9afa03640a89c9"
25
25
  },
26
26
  "provenance": {
27
27
  "builder": "scripts/build-rust-local.sh",
28
- "sourceCommit": "30226657c1e66411b6ff233c2ea82e47573d533a",
28
+ "sourceCommit": "7f78cd615083c4284cab36c05f11dc2ce76e5cbd",
29
29
  "sourceTreeDirty": false,
30
30
  "sourceDateEpoch": 1,
31
31
  "rustToolchain": "rustc 1.95.0 (59807616e 2026-04-14)",
@@ -34,6 +34,6 @@
34
34
  "signature": {
35
35
  "algorithm": "Ed25519",
36
36
  "keyId": "e2ee765cb5ad9fbdc433ece332bce26d746d5e350b3acde0721a4c8c6337ff7b",
37
- "value": "xN3AVrLnDNmagcrLzUS+voWOuOHZhY4+i+nfep/66x39IdztoQEqh/jF1H/P5qxnIwGFuSztuCS3cG0pAsRqCw=="
37
+ "value": "f/aPrNL3a1yLv73UGSBLj+lnbA1N9L7YqjgWDERXxNPsv9xmK6//LgzZhXXMHQmcU9kV40J3Re3sVnCB56MHDQ=="
38
38
  }
39
39
  }
@@ -4,14 +4,14 @@
4
4
  "version": 1,
5
5
  "metadata": {
6
6
  "component": {
7
- "bom-ref": "pkg:cargo/planu-core@5.3.2",
7
+ "bom-ref": "pkg:cargo/planu-core@5.3.4",
8
8
  "type": "library",
9
9
  "name": "planu-core",
10
- "version": "5.3.2",
10
+ "version": "5.3.4",
11
11
  "hashes": [
12
12
  {
13
13
  "alg": "SHA-256",
14
- "content": "2e160dbfb5616b778ea6bc1b85b6663ae9618c664824498e0089a3b82353923e"
14
+ "content": "0912425f86760d302fed2c7c81a1e6c41f46b143ba6e611120e1c9cffe4c7fe3"
15
15
  }
16
16
  ]
17
17
  }
@@ -1106,7 +1106,7 @@
1106
1106
  "dependsOn": []
1107
1107
  },
1108
1108
  {
1109
- "ref": "pkg:cargo/planu-core@5.3.2",
1109
+ "ref": "pkg:cargo/planu-core@5.3.4",
1110
1110
  "dependsOn": [
1111
1111
  "pkg:cargo/core-foundation@0.10.1",
1112
1112
  "pkg:cargo/hmac@0.12.1",
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
- "cliVersion": "5.3.2",
4
- "engineVersion": "5.3.2",
5
- "buildId": "1-5.3.2-aarch64-unknown-linux-gnu",
3
+ "cliVersion": "5.3.4",
4
+ "engineVersion": "5.3.4",
5
+ "buildId": "1-5.3.4-aarch64-unknown-linux-gnu",
6
6
  "protocolAbi": 1,
7
7
  "capabilityAbi": 2,
8
8
  "nodeApiAbi": 4,
@@ -16,15 +16,15 @@
16
16
  "platform": "linux",
17
17
  "arch": "arm64",
18
18
  "libc": "glibc",
19
- "artifactSha256": "c688e223eaed377810f13b4fb59b95269c6ac386e9e22122012322aa20b4119f",
19
+ "artifactSha256": "0e815c9991af25c98c0d0de307b850385204b0e3eee7fd31ab40c5e77ebcd3d5",
20
20
  "sbom": {
21
21
  "format": "CycloneDX-1.5",
22
22
  "path": "planu-core.linux-arm64-gnu.node.sbom.json",
23
- "sha256": "05e6cde28bdf46282c2024bec9491908e67cf0875a1043a879533fe26e2acf6c"
23
+ "sha256": "bb4cdfbbd37c0990dc035253ccb275e109941ee3a9c169d520b4f1857ab6159b"
24
24
  },
25
25
  "provenance": {
26
26
  "builder": "scripts/build-rust-local.sh",
27
- "sourceCommit": "30226657c1e66411b6ff233c2ea82e47573d533a",
27
+ "sourceCommit": "7f78cd615083c4284cab36c05f11dc2ce76e5cbd",
28
28
  "sourceTreeDirty": false,
29
29
  "sourceDateEpoch": 1,
30
30
  "rustToolchain": "rustc 1.95.0 (59807616e 2026-04-14)",
@@ -33,6 +33,6 @@
33
33
  "signature": {
34
34
  "algorithm": "Ed25519",
35
35
  "keyId": "e2ee765cb5ad9fbdc433ece332bce26d746d5e350b3acde0721a4c8c6337ff7b",
36
- "value": "evvZQIYp2VmYUaaLu8nK5yLjTSms9hMRYoF4zM3qsCHwLLKRThOR+KrFgZ9ySZk6WRWx9CE8F/c+pKFRi/7nBg=="
36
+ "value": "bLVx5tLIU+AaTSOdP/kJeXAUtUOY+FqHpAX04NtahMzSz61CWs8YOEDhJzLWBNv7IeorjRSKasAq/5e8YG9YBA=="
37
37
  }
38
38
  }
@@ -4,14 +4,14 @@
4
4
  "version": 1,
5
5
  "metadata": {
6
6
  "component": {
7
- "bom-ref": "pkg:cargo/planu-core@5.3.2",
7
+ "bom-ref": "pkg:cargo/planu-core@5.3.4",
8
8
  "type": "library",
9
9
  "name": "planu-core",
10
- "version": "5.3.2",
10
+ "version": "5.3.4",
11
11
  "hashes": [
12
12
  {
13
13
  "alg": "SHA-256",
14
- "content": "c688e223eaed377810f13b4fb59b95269c6ac386e9e22122012322aa20b4119f"
14
+ "content": "0e815c9991af25c98c0d0de307b850385204b0e3eee7fd31ab40c5e77ebcd3d5"
15
15
  }
16
16
  ]
17
17
  }
@@ -1106,7 +1106,7 @@
1106
1106
  "dependsOn": []
1107
1107
  },
1108
1108
  {
1109
- "ref": "pkg:cargo/planu-core@5.3.2",
1109
+ "ref": "pkg:cargo/planu-core@5.3.4",
1110
1110
  "dependsOn": [
1111
1111
  "pkg:cargo/core-foundation@0.10.1",
1112
1112
  "pkg:cargo/hmac@0.12.1",
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
- "cliVersion": "5.3.2",
4
- "engineVersion": "5.3.2",
5
- "buildId": "1-5.3.2-aarch64-unknown-linux-musl",
3
+ "cliVersion": "5.3.4",
4
+ "engineVersion": "5.3.4",
5
+ "buildId": "1-5.3.4-aarch64-unknown-linux-musl",
6
6
  "protocolAbi": 1,
7
7
  "capabilityAbi": 2,
8
8
  "nodeApiAbi": 4,
@@ -16,15 +16,15 @@
16
16
  "platform": "linux",
17
17
  "arch": "arm64",
18
18
  "libc": "musl",
19
- "artifactSha256": "ffe6b8382aded44408171166a385d31d25fa6a95919c14ec73ca5197351da8ac",
19
+ "artifactSha256": "5189fb5c83e53a091b57c0cfd372455b6210ffc23919434a0cf7644455b60b77",
20
20
  "sbom": {
21
21
  "format": "CycloneDX-1.5",
22
22
  "path": "planu-core.linux-arm64-musl.node.sbom.json",
23
- "sha256": "6612f0831ad90d8d69aa88bbc53658d5dc55d5ff3e337e4253cb8943c7471aa5"
23
+ "sha256": "16fa655252e62f666d6a1ca041108685532d283622ed44bdd91838bf0953d7b2"
24
24
  },
25
25
  "provenance": {
26
26
  "builder": "scripts/build-rust-local.sh",
27
- "sourceCommit": "30226657c1e66411b6ff233c2ea82e47573d533a",
27
+ "sourceCommit": "7f78cd615083c4284cab36c05f11dc2ce76e5cbd",
28
28
  "sourceTreeDirty": false,
29
29
  "sourceDateEpoch": 1,
30
30
  "rustToolchain": "rustc 1.95.0 (59807616e 2026-04-14)",
@@ -33,6 +33,6 @@
33
33
  "signature": {
34
34
  "algorithm": "Ed25519",
35
35
  "keyId": "e2ee765cb5ad9fbdc433ece332bce26d746d5e350b3acde0721a4c8c6337ff7b",
36
- "value": "3AhxDy080JazcjbYv9SH3w6tpj4iKKLlhI95pAy1/VQ8c9iDEDLmTfFaQv4R1FXjEAUSqZ/hYZEAQ0A3XpQPCA=="
36
+ "value": "6QGtEc97VMTZiSeA8cROjxiO8GRssD0jak6OWFPzIQ+CG7xsnloT/6G7Yxyi0HVmoEShx2pnmSKpigEg5wQyCQ=="
37
37
  }
38
38
  }
@@ -4,14 +4,14 @@
4
4
  "version": 1,
5
5
  "metadata": {
6
6
  "component": {
7
- "bom-ref": "pkg:cargo/planu-core@5.3.2",
7
+ "bom-ref": "pkg:cargo/planu-core@5.3.4",
8
8
  "type": "library",
9
9
  "name": "planu-core",
10
- "version": "5.3.2",
10
+ "version": "5.3.4",
11
11
  "hashes": [
12
12
  {
13
13
  "alg": "SHA-256",
14
- "content": "ffe6b8382aded44408171166a385d31d25fa6a95919c14ec73ca5197351da8ac"
14
+ "content": "5189fb5c83e53a091b57c0cfd372455b6210ffc23919434a0cf7644455b60b77"
15
15
  }
16
16
  ]
17
17
  }
@@ -1106,7 +1106,7 @@
1106
1106
  "dependsOn": []
1107
1107
  },
1108
1108
  {
1109
- "ref": "pkg:cargo/planu-core@5.3.2",
1109
+ "ref": "pkg:cargo/planu-core@5.3.4",
1110
1110
  "dependsOn": [
1111
1111
  "pkg:cargo/core-foundation@0.10.1",
1112
1112
  "pkg:cargo/hmac@0.12.1",
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
- "cliVersion": "5.3.2",
4
- "engineVersion": "5.3.2",
5
- "buildId": "1-5.3.2-x86_64-unknown-linux-gnu",
3
+ "cliVersion": "5.3.4",
4
+ "engineVersion": "5.3.4",
5
+ "buildId": "1-5.3.4-x86_64-unknown-linux-gnu",
6
6
  "protocolAbi": 1,
7
7
  "capabilityAbi": 2,
8
8
  "nodeApiAbi": 4,
@@ -16,15 +16,15 @@
16
16
  "platform": "linux",
17
17
  "arch": "x64",
18
18
  "libc": "glibc",
19
- "artifactSha256": "c1aeb15763bf3ee0b2d37ac694340fe65cfc106f95f6813c2e188c099c826013",
19
+ "artifactSha256": "3fa9b1c9b4096bbf7628582e4f2fe62250836f6415000e402b67eb109aaf2d32",
20
20
  "sbom": {
21
21
  "format": "CycloneDX-1.5",
22
22
  "path": "planu-core.linux-x64-gnu.node.sbom.json",
23
- "sha256": "cd651b3c7af8a03fb3725d6342ee679dfef8272b65bc28e9f523dbfb88fa0ed8"
23
+ "sha256": "93bdc77c871c4e47c47becd9bfe65cf96970dbc17619ad9963c9ca901777b2fd"
24
24
  },
25
25
  "provenance": {
26
26
  "builder": "scripts/build-rust-local.sh",
27
- "sourceCommit": "30226657c1e66411b6ff233c2ea82e47573d533a",
27
+ "sourceCommit": "7f78cd615083c4284cab36c05f11dc2ce76e5cbd",
28
28
  "sourceTreeDirty": false,
29
29
  "sourceDateEpoch": 1,
30
30
  "rustToolchain": "rustc 1.95.0 (59807616e 2026-04-14)",
@@ -33,6 +33,6 @@
33
33
  "signature": {
34
34
  "algorithm": "Ed25519",
35
35
  "keyId": "e2ee765cb5ad9fbdc433ece332bce26d746d5e350b3acde0721a4c8c6337ff7b",
36
- "value": "T9ypzN3DZ+ks4rQIjeuMKqxHHxGc7Qm/ep9zyVEsU6BvzVjOaiZijDkJXsiaNS8AqfrZkmnr6I/HtWNCqiqjCw=="
36
+ "value": "ehdGAkoK/g0bywWm+yz+e6X3dZ5gmVCWjz6jip97SMkUysrPvgTiEWRJFa7DRcwLBNpmDr0M1iR3Dcktv4EpDg=="
37
37
  }
38
38
  }
@@ -4,14 +4,14 @@
4
4
  "version": 1,
5
5
  "metadata": {
6
6
  "component": {
7
- "bom-ref": "pkg:cargo/planu-core@5.3.2",
7
+ "bom-ref": "pkg:cargo/planu-core@5.3.4",
8
8
  "type": "library",
9
9
  "name": "planu-core",
10
- "version": "5.3.2",
10
+ "version": "5.3.4",
11
11
  "hashes": [
12
12
  {
13
13
  "alg": "SHA-256",
14
- "content": "c1aeb15763bf3ee0b2d37ac694340fe65cfc106f95f6813c2e188c099c826013"
14
+ "content": "3fa9b1c9b4096bbf7628582e4f2fe62250836f6415000e402b67eb109aaf2d32"
15
15
  }
16
16
  ]
17
17
  }
@@ -1106,7 +1106,7 @@
1106
1106
  "dependsOn": []
1107
1107
  },
1108
1108
  {
1109
- "ref": "pkg:cargo/planu-core@5.3.2",
1109
+ "ref": "pkg:cargo/planu-core@5.3.4",
1110
1110
  "dependsOn": [
1111
1111
  "pkg:cargo/core-foundation@0.10.1",
1112
1112
  "pkg:cargo/hmac@0.12.1",