@planu/cli 5.0.0 → 5.2.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.
Files changed (112) hide show
  1. package/CHANGELOG.md +76 -1
  2. package/dist/cli/commands/doctor.d.ts +22 -0
  3. package/dist/cli/commands/doctor.js +176 -2
  4. package/dist/cli/commands/spec.js +10 -1
  5. package/dist/core/spec-validator.js +32 -18
  6. package/dist/engine/autopilot/bootstrap.js +27 -0
  7. package/dist/engine/core-bridge.d.ts +28 -0
  8. package/dist/engine/core-bridge.js +67 -0
  9. package/dist/engine/drift-monitor.js +16 -18
  10. package/dist/engine/evidence-gates/artifact-reader.d.ts +2 -0
  11. package/dist/engine/evidence-gates/artifact-reader.js +59 -2
  12. package/dist/engine/evidence-gates/evidence-autofill.d.ts +10 -0
  13. package/dist/engine/evidence-gates/evidence-autofill.js +148 -0
  14. package/dist/engine/evidence-gates/evidence-skeletons.d.ts +19 -0
  15. package/dist/engine/evidence-gates/evidence-skeletons.js +69 -0
  16. package/dist/engine/execution/operation-journal.js +10 -4
  17. package/dist/engine/living-spec/hash-tracker.js +26 -28
  18. package/dist/engine/minimality/policy-loader.js +247 -6
  19. package/dist/engine/planu-core.darwin-arm64.node.manifest.json +7 -7
  20. package/dist/engine/planu-core.darwin-arm64.node.sbom.json +14 -14
  21. package/dist/engine/planu-core.darwin-x64.node.manifest.json +7 -7
  22. package/dist/engine/planu-core.darwin-x64.node.sbom.json +14 -14
  23. package/dist/engine/planu-core.linux-arm64-gnu.node.manifest.json +7 -7
  24. package/dist/engine/planu-core.linux-arm64-gnu.node.sbom.json +14 -14
  25. package/dist/engine/planu-core.linux-arm64-musl.node.manifest.json +7 -7
  26. package/dist/engine/planu-core.linux-arm64-musl.node.sbom.json +14 -14
  27. package/dist/engine/planu-core.linux-x64-gnu.node.manifest.json +7 -7
  28. package/dist/engine/planu-core.linux-x64-gnu.node.sbom.json +14 -14
  29. package/dist/engine/planu-core.linux-x64-musl.node.manifest.json +7 -7
  30. package/dist/engine/planu-core.linux-x64-musl.node.sbom.json +14 -14
  31. package/dist/engine/planu-core.win32-arm64-msvc.node.manifest.json +7 -7
  32. package/dist/engine/planu-core.win32-arm64-msvc.node.sbom.json +14 -14
  33. package/dist/engine/planu-core.win32-x64-msvc.node.manifest.json +7 -7
  34. package/dist/engine/planu-core.win32-x64-msvc.node.sbom.json +14 -14
  35. package/dist/engine/reverse-engineer/api-detector.js +2 -13
  36. package/dist/engine/reverse-engineer/complexity-analyzer.js +2 -13
  37. package/dist/engine/reverse-engineer/config-analyzer.js +2 -13
  38. package/dist/engine/reverse-engineer/dependency-graph.js +2 -13
  39. package/dist/engine/reverse-engineer/test-analyzer.js +2 -13
  40. package/dist/engine/reverse-engineer/walk-ignore.d.ts +3 -0
  41. package/dist/engine/reverse-engineer/walk-ignore.js +26 -0
  42. package/dist/engine/spec-format/acceptance-criteria.js +13 -12
  43. package/dist/engine/spec-format/text-fences.js +20 -2
  44. package/dist/engine/spec-language/english-only.d.ts +14 -0
  45. package/dist/engine/spec-language/english-only.js +58 -0
  46. package/dist/engine/spec-migrator/criteria-scanner.js +11 -13
  47. package/dist/engine/spec-migrator/drift-detector.js +10 -12
  48. package/dist/engine/spec-state-syncer.js +1 -1
  49. package/dist/engine/timing/budget.js +5 -1
  50. package/dist/engine/vector-store/tfidf.d.ts +13 -9
  51. package/dist/engine/vector-store/tfidf.js +26 -0
  52. package/dist/engine/worker-config-loader.d.ts +1 -1
  53. package/dist/engine/worker-config-loader.js +1 -11
  54. package/dist/engine/workers/schema.d.ts +0 -8
  55. package/dist/engine/workers/schema.js +0 -1
  56. package/dist/i18n/index.d.ts +18 -0
  57. package/dist/i18n/index.js +40 -1
  58. package/dist/server/routes/specs.js +7 -5
  59. package/dist/storage/global-store.d.ts +9 -0
  60. package/dist/storage/global-store.js +23 -0
  61. package/dist/storage/semantic-index-store.d.ts +23 -0
  62. package/dist/storage/semantic-index-store.js +105 -0
  63. package/dist/storage/status-store/self-healing.js +15 -17
  64. package/dist/tools/challenge-spec/scenarios-utils.js +5 -1
  65. package/dist/tools/challenge-spec-helpers.d.ts +10 -1
  66. package/dist/tools/challenge-spec-helpers.js +63 -22
  67. package/dist/tools/challenge-spec.js +18 -3
  68. package/dist/tools/check-readiness.js +37 -13
  69. package/dist/tools/create-spec/spec-builder.d.ts +7 -0
  70. package/dist/tools/create-spec/spec-builder.js +19 -4
  71. package/dist/tools/create-spec.js +216 -101
  72. package/dist/tools/init-project/handler.js +78 -25
  73. package/dist/tools/learn.js +10 -8
  74. package/dist/tools/register-spec-tools/core-spec-tools.js +13 -12
  75. package/dist/tools/registry/auth.js +1 -11
  76. package/dist/tools/semantic-search-handler.js +5 -6
  77. package/dist/tools/status-handler.js +19 -6
  78. package/dist/tools/sync-spec-state-handler.js +49 -1
  79. package/dist/tools/update-status/batch.d.ts +6 -2
  80. package/dist/tools/update-status/batch.js +58 -1
  81. package/dist/tools/update-status/dod-gates.d.ts +16 -1
  82. package/dist/tools/update-status/dod-gates.js +191 -1
  83. package/dist/tools/update-status/done-receipt-verifier.d.ts +8 -0
  84. package/dist/tools/update-status/done-receipt-verifier.js +37 -2
  85. package/dist/tools/update-status/evidence-gate.d.ts +4 -0
  86. package/dist/tools/update-status/evidence-gate.js +67 -2
  87. package/dist/tools/update-status/file-sync.d.ts +2 -2
  88. package/dist/tools/update-status/index.d.ts +23 -1
  89. package/dist/tools/update-status/index.js +201 -24
  90. package/dist/tools/update-status/transition-guard.js +13 -1
  91. package/dist/tools/validation-loop-handler.js +16 -15
  92. package/dist/tools/workspace-dashboard-handler.js +38 -0
  93. package/dist/types/evidence-autofill.d.ts +34 -0
  94. package/dist/types/evidence-autofill.js +2 -0
  95. package/dist/types/index.d.ts +1 -0
  96. package/dist/types/index.js +1 -0
  97. package/dist/types/spec/core.d.ts +6 -0
  98. package/dist/types/spec/inputs.d.ts +7 -2
  99. package/dist/types/spec-format.d.ts +1 -1
  100. package/dist/types/spec-language-translation.d.ts +18 -0
  101. package/dist/types/spec-language-translation.js +5 -0
  102. package/dist/types/spec-registry.d.ts +0 -2
  103. package/dist/types/status.d.ts +2 -0
  104. package/dist/types/transition-log.d.ts +1 -1
  105. package/dist/types/validation.d.ts +8 -2
  106. package/dist/types/vector-store.d.ts +18 -0
  107. package/dist/types/workers.d.ts +0 -3
  108. package/package.json +11 -10
  109. package/planu-native.json +8 -29
  110. package/planu-plugin.json +1 -1
  111. package/dist/engine/security/cve-refresher.d.ts +0 -12
  112. package/dist/engine/security/cve-refresher.js +0 -128
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
- "cliVersion": "5.0.0",
4
- "engineVersion": "5.0.0",
5
- "buildId": "1-5.0.0-aarch64-unknown-linux-musl",
3
+ "cliVersion": "5.2.0",
4
+ "engineVersion": "5.2.0",
5
+ "buildId": "1-5.2.0-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": "fea7649aeed8d9e253c4f8203e1e4efabd448b97cac14f51cdfac8262d111da6",
19
+ "artifactSha256": "264f16f835f526770fc5cda53eb3eba3f5fa37c656a0e7759dd485d3500d1586",
20
20
  "sbom": {
21
21
  "format": "CycloneDX-1.5",
22
22
  "path": "planu-core.linux-arm64-musl.node.sbom.json",
23
- "sha256": "770904e97adcf9b269b46ad537a54c60edcb3d100cae7c3a97151459efa99af2"
23
+ "sha256": "67a2fcee3e745158d476fba6893d43b89861386e2e66c30af6a6db56e05909d5"
24
24
  },
25
25
  "provenance": {
26
26
  "builder": "scripts/build-rust-local.sh",
27
- "sourceCommit": "b0d7149aa13f1e9d4aebd7df741cf38d5726f376",
27
+ "sourceCommit": "121065e63e9fd2c067367e286ecba619ecc3f18a",
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": "ZPT2W5VFTMqaX03OICcWItwGZvPZbRKfS0MErWmFC8CpHgEEVMijf91gKmgyL1VGA5i6Ntk53nnLeAiCiIwsAw=="
36
+ "value": "/cAY9D72vw0NV5qgc9/xcy1dn9N+FSY39fzTGKsdz9ZJziYoROvuhjeb927Mm1oELvCQKBi198AVypNdzyUFDA=="
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.0.0",
7
+ "bom-ref": "pkg:cargo/planu-core@5.2.0",
8
8
  "type": "library",
9
9
  "name": "planu-core",
10
- "version": "5.0.0",
10
+ "version": "5.2.0",
11
11
  "hashes": [
12
12
  {
13
13
  "alg": "SHA-256",
14
- "content": "fea7649aeed8d9e253c4f8203e1e4efabd448b97cac14f51cdfac8262d111da6"
14
+ "content": "264f16f835f526770fc5cda53eb3eba3f5fa37c656a0e7759dd485d3500d1586"
15
15
  }
16
16
  ]
17
17
  }
@@ -291,9 +291,9 @@
291
291
  },
292
292
  {
293
293
  "type": "library",
294
- "bom-ref": "pkg:cargo/globset@0.4.19",
294
+ "bom-ref": "pkg:cargo/globset@0.4.20",
295
295
  "name": "globset",
296
- "version": "0.4.19",
296
+ "version": "0.4.20",
297
297
  "externalReferences": [
298
298
  {
299
299
  "type": "distribution",
@@ -529,9 +529,9 @@
529
529
  },
530
530
  {
531
531
  "type": "library",
532
- "bom-ref": "pkg:cargo/regex-automata@0.4.16",
532
+ "bom-ref": "pkg:cargo/regex-automata@0.4.18",
533
533
  "name": "regex-automata",
534
- "version": "0.4.16",
534
+ "version": "0.4.18",
535
535
  "externalReferences": [
536
536
  {
537
537
  "type": "distribution",
@@ -1046,12 +1046,12 @@
1046
1046
  ]
1047
1047
  },
1048
1048
  {
1049
- "ref": "pkg:cargo/globset@0.4.19",
1049
+ "ref": "pkg:cargo/globset@0.4.20",
1050
1050
  "dependsOn": [
1051
1051
  "pkg:cargo/aho-corasick@1.1.5",
1052
1052
  "pkg:cargo/bstr@1.13.0",
1053
1053
  "pkg:cargo/log@0.4.33",
1054
- "pkg:cargo/regex-automata@0.4.16",
1054
+ "pkg:cargo/regex-automata@0.4.18",
1055
1055
  "pkg:cargo/regex-syntax@0.8.11"
1056
1056
  ]
1057
1057
  },
@@ -1069,10 +1069,10 @@
1069
1069
  "ref": "pkg:cargo/ignore@0.4.25",
1070
1070
  "dependsOn": [
1071
1071
  "pkg:cargo/crossbeam-deque@0.8.7",
1072
- "pkg:cargo/globset@0.4.19",
1072
+ "pkg:cargo/globset@0.4.20",
1073
1073
  "pkg:cargo/log@0.4.33",
1074
1074
  "pkg:cargo/memchr@2.8.3",
1075
- "pkg:cargo/regex-automata@0.4.16",
1075
+ "pkg:cargo/regex-automata@0.4.18",
1076
1076
  "pkg:cargo/same-file@1.0.6",
1077
1077
  "pkg:cargo/walkdir@2.5.0",
1078
1078
  "pkg:cargo/winapi-util@0.1.11"
@@ -1106,7 +1106,7 @@
1106
1106
  "dependsOn": []
1107
1107
  },
1108
1108
  {
1109
- "ref": "pkg:cargo/planu-core@5.0.0",
1109
+ "ref": "pkg:cargo/planu-core@5.2.0",
1110
1110
  "dependsOn": [
1111
1111
  "pkg:cargo/core-foundation@0.10.1",
1112
1112
  "pkg:cargo/hmac@0.12.1",
@@ -1151,7 +1151,7 @@
1151
1151
  ]
1152
1152
  },
1153
1153
  {
1154
- "ref": "pkg:cargo/regex-automata@0.4.16",
1154
+ "ref": "pkg:cargo/regex-automata@0.4.18",
1155
1155
  "dependsOn": [
1156
1156
  "pkg:cargo/aho-corasick@1.1.5",
1157
1157
  "pkg:cargo/memchr@2.8.3",
@@ -1167,7 +1167,7 @@
1167
1167
  "dependsOn": [
1168
1168
  "pkg:cargo/aho-corasick@1.1.5",
1169
1169
  "pkg:cargo/memchr@2.8.3",
1170
- "pkg:cargo/regex-automata@0.4.16",
1170
+ "pkg:cargo/regex-automata@0.4.18",
1171
1171
  "pkg:cargo/regex-syntax@0.8.11"
1172
1172
  ]
1173
1173
  },
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
- "cliVersion": "5.0.0",
4
- "engineVersion": "5.0.0",
5
- "buildId": "1-5.0.0-x86_64-unknown-linux-gnu",
3
+ "cliVersion": "5.2.0",
4
+ "engineVersion": "5.2.0",
5
+ "buildId": "1-5.2.0-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": "f0f7d7d9663a50c1222fdbaa6d9042d54809b5110c27a8c7f9d89cf714270596",
19
+ "artifactSha256": "828e4ca1e0aac93c5a3ae1c4f8a306cc7eb306e765ea459cb323359075fe19ec",
20
20
  "sbom": {
21
21
  "format": "CycloneDX-1.5",
22
22
  "path": "planu-core.linux-x64-gnu.node.sbom.json",
23
- "sha256": "5af01b57aa3dde764685e53f0d7367563f8ce48df1871499e17bcdfacbeffb9a"
23
+ "sha256": "035c63d02524a08605052a620bdd97d27b07e08db791cd495a39274d74848013"
24
24
  },
25
25
  "provenance": {
26
26
  "builder": "scripts/build-rust-local.sh",
27
- "sourceCommit": "b0d7149aa13f1e9d4aebd7df741cf38d5726f376",
27
+ "sourceCommit": "121065e63e9fd2c067367e286ecba619ecc3f18a",
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": "iq7lkuC8LxDoMhoJ+FwacrbmYWeRyl5CmP3FUjA6ByJQqxLCjO+h+Y9JHWIn4e7dxzPWlyUQ0CMnmB9gG5qfDw=="
36
+ "value": "l1u8RhJUsZO4qDxupk9ePmsfzp1AoQ78Qjujkk6HuJ3/3SyFAYSoLVK8L3QnM2kOIzga7fgkHfnk9iz4ebMWDw=="
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.0.0",
7
+ "bom-ref": "pkg:cargo/planu-core@5.2.0",
8
8
  "type": "library",
9
9
  "name": "planu-core",
10
- "version": "5.0.0",
10
+ "version": "5.2.0",
11
11
  "hashes": [
12
12
  {
13
13
  "alg": "SHA-256",
14
- "content": "f0f7d7d9663a50c1222fdbaa6d9042d54809b5110c27a8c7f9d89cf714270596"
14
+ "content": "828e4ca1e0aac93c5a3ae1c4f8a306cc7eb306e765ea459cb323359075fe19ec"
15
15
  }
16
16
  ]
17
17
  }
@@ -291,9 +291,9 @@
291
291
  },
292
292
  {
293
293
  "type": "library",
294
- "bom-ref": "pkg:cargo/globset@0.4.19",
294
+ "bom-ref": "pkg:cargo/globset@0.4.20",
295
295
  "name": "globset",
296
- "version": "0.4.19",
296
+ "version": "0.4.20",
297
297
  "externalReferences": [
298
298
  {
299
299
  "type": "distribution",
@@ -529,9 +529,9 @@
529
529
  },
530
530
  {
531
531
  "type": "library",
532
- "bom-ref": "pkg:cargo/regex-automata@0.4.16",
532
+ "bom-ref": "pkg:cargo/regex-automata@0.4.18",
533
533
  "name": "regex-automata",
534
- "version": "0.4.16",
534
+ "version": "0.4.18",
535
535
  "externalReferences": [
536
536
  {
537
537
  "type": "distribution",
@@ -1046,12 +1046,12 @@
1046
1046
  ]
1047
1047
  },
1048
1048
  {
1049
- "ref": "pkg:cargo/globset@0.4.19",
1049
+ "ref": "pkg:cargo/globset@0.4.20",
1050
1050
  "dependsOn": [
1051
1051
  "pkg:cargo/aho-corasick@1.1.5",
1052
1052
  "pkg:cargo/bstr@1.13.0",
1053
1053
  "pkg:cargo/log@0.4.33",
1054
- "pkg:cargo/regex-automata@0.4.16",
1054
+ "pkg:cargo/regex-automata@0.4.18",
1055
1055
  "pkg:cargo/regex-syntax@0.8.11"
1056
1056
  ]
1057
1057
  },
@@ -1069,10 +1069,10 @@
1069
1069
  "ref": "pkg:cargo/ignore@0.4.25",
1070
1070
  "dependsOn": [
1071
1071
  "pkg:cargo/crossbeam-deque@0.8.7",
1072
- "pkg:cargo/globset@0.4.19",
1072
+ "pkg:cargo/globset@0.4.20",
1073
1073
  "pkg:cargo/log@0.4.33",
1074
1074
  "pkg:cargo/memchr@2.8.3",
1075
- "pkg:cargo/regex-automata@0.4.16",
1075
+ "pkg:cargo/regex-automata@0.4.18",
1076
1076
  "pkg:cargo/same-file@1.0.6",
1077
1077
  "pkg:cargo/walkdir@2.5.0",
1078
1078
  "pkg:cargo/winapi-util@0.1.11"
@@ -1106,7 +1106,7 @@
1106
1106
  "dependsOn": []
1107
1107
  },
1108
1108
  {
1109
- "ref": "pkg:cargo/planu-core@5.0.0",
1109
+ "ref": "pkg:cargo/planu-core@5.2.0",
1110
1110
  "dependsOn": [
1111
1111
  "pkg:cargo/core-foundation@0.10.1",
1112
1112
  "pkg:cargo/hmac@0.12.1",
@@ -1151,7 +1151,7 @@
1151
1151
  ]
1152
1152
  },
1153
1153
  {
1154
- "ref": "pkg:cargo/regex-automata@0.4.16",
1154
+ "ref": "pkg:cargo/regex-automata@0.4.18",
1155
1155
  "dependsOn": [
1156
1156
  "pkg:cargo/aho-corasick@1.1.5",
1157
1157
  "pkg:cargo/memchr@2.8.3",
@@ -1167,7 +1167,7 @@
1167
1167
  "dependsOn": [
1168
1168
  "pkg:cargo/aho-corasick@1.1.5",
1169
1169
  "pkg:cargo/memchr@2.8.3",
1170
- "pkg:cargo/regex-automata@0.4.16",
1170
+ "pkg:cargo/regex-automata@0.4.18",
1171
1171
  "pkg:cargo/regex-syntax@0.8.11"
1172
1172
  ]
1173
1173
  },
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
- "cliVersion": "5.0.0",
4
- "engineVersion": "5.0.0",
5
- "buildId": "1-5.0.0-x86_64-unknown-linux-musl",
3
+ "cliVersion": "5.2.0",
4
+ "engineVersion": "5.2.0",
5
+ "buildId": "1-5.2.0-x86_64-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": "x64",
18
18
  "libc": "musl",
19
- "artifactSha256": "195d342e649ee72c0087656276ffe4f64cedad620a4db59e4e37c6a9fe4320c1",
19
+ "artifactSha256": "ecca8121c6a5d0163641a2f612736adb2dfa19d2d576f189b827c802426d1c6d",
20
20
  "sbom": {
21
21
  "format": "CycloneDX-1.5",
22
22
  "path": "planu-core.linux-x64-musl.node.sbom.json",
23
- "sha256": "ddf754387b863bc53b5c4aa0e3c67388cd9b59a6b37476d9b4483d6fd53ca020"
23
+ "sha256": "fafb2001aba46875a02bf13be9ed6931dc79d2a3f47659914c4a8c8637f6cf49"
24
24
  },
25
25
  "provenance": {
26
26
  "builder": "scripts/build-rust-local.sh",
27
- "sourceCommit": "b0d7149aa13f1e9d4aebd7df741cf38d5726f376",
27
+ "sourceCommit": "121065e63e9fd2c067367e286ecba619ecc3f18a",
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": "15x3RaXVhSyuV4UudwJeE1Q/0rCd6kvv+MeQJ0xy1UHuXR/+8QFn9+a77WUMxjOf7VoSejV/NKdvLRGKqSYwBg=="
36
+ "value": "yy7pcnf8jJzWrYp8gYHwG+Gbncuzx8PKYDAmsqdeXPSFCDuwDlkK8os3Arr0fJZp+uVWH4oFbYY4xuhf4/VsAw=="
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.0.0",
7
+ "bom-ref": "pkg:cargo/planu-core@5.2.0",
8
8
  "type": "library",
9
9
  "name": "planu-core",
10
- "version": "5.0.0",
10
+ "version": "5.2.0",
11
11
  "hashes": [
12
12
  {
13
13
  "alg": "SHA-256",
14
- "content": "195d342e649ee72c0087656276ffe4f64cedad620a4db59e4e37c6a9fe4320c1"
14
+ "content": "ecca8121c6a5d0163641a2f612736adb2dfa19d2d576f189b827c802426d1c6d"
15
15
  }
16
16
  ]
17
17
  }
@@ -291,9 +291,9 @@
291
291
  },
292
292
  {
293
293
  "type": "library",
294
- "bom-ref": "pkg:cargo/globset@0.4.19",
294
+ "bom-ref": "pkg:cargo/globset@0.4.20",
295
295
  "name": "globset",
296
- "version": "0.4.19",
296
+ "version": "0.4.20",
297
297
  "externalReferences": [
298
298
  {
299
299
  "type": "distribution",
@@ -529,9 +529,9 @@
529
529
  },
530
530
  {
531
531
  "type": "library",
532
- "bom-ref": "pkg:cargo/regex-automata@0.4.16",
532
+ "bom-ref": "pkg:cargo/regex-automata@0.4.18",
533
533
  "name": "regex-automata",
534
- "version": "0.4.16",
534
+ "version": "0.4.18",
535
535
  "externalReferences": [
536
536
  {
537
537
  "type": "distribution",
@@ -1046,12 +1046,12 @@
1046
1046
  ]
1047
1047
  },
1048
1048
  {
1049
- "ref": "pkg:cargo/globset@0.4.19",
1049
+ "ref": "pkg:cargo/globset@0.4.20",
1050
1050
  "dependsOn": [
1051
1051
  "pkg:cargo/aho-corasick@1.1.5",
1052
1052
  "pkg:cargo/bstr@1.13.0",
1053
1053
  "pkg:cargo/log@0.4.33",
1054
- "pkg:cargo/regex-automata@0.4.16",
1054
+ "pkg:cargo/regex-automata@0.4.18",
1055
1055
  "pkg:cargo/regex-syntax@0.8.11"
1056
1056
  ]
1057
1057
  },
@@ -1069,10 +1069,10 @@
1069
1069
  "ref": "pkg:cargo/ignore@0.4.25",
1070
1070
  "dependsOn": [
1071
1071
  "pkg:cargo/crossbeam-deque@0.8.7",
1072
- "pkg:cargo/globset@0.4.19",
1072
+ "pkg:cargo/globset@0.4.20",
1073
1073
  "pkg:cargo/log@0.4.33",
1074
1074
  "pkg:cargo/memchr@2.8.3",
1075
- "pkg:cargo/regex-automata@0.4.16",
1075
+ "pkg:cargo/regex-automata@0.4.18",
1076
1076
  "pkg:cargo/same-file@1.0.6",
1077
1077
  "pkg:cargo/walkdir@2.5.0",
1078
1078
  "pkg:cargo/winapi-util@0.1.11"
@@ -1106,7 +1106,7 @@
1106
1106
  "dependsOn": []
1107
1107
  },
1108
1108
  {
1109
- "ref": "pkg:cargo/planu-core@5.0.0",
1109
+ "ref": "pkg:cargo/planu-core@5.2.0",
1110
1110
  "dependsOn": [
1111
1111
  "pkg:cargo/core-foundation@0.10.1",
1112
1112
  "pkg:cargo/hmac@0.12.1",
@@ -1151,7 +1151,7 @@
1151
1151
  ]
1152
1152
  },
1153
1153
  {
1154
- "ref": "pkg:cargo/regex-automata@0.4.16",
1154
+ "ref": "pkg:cargo/regex-automata@0.4.18",
1155
1155
  "dependsOn": [
1156
1156
  "pkg:cargo/aho-corasick@1.1.5",
1157
1157
  "pkg:cargo/memchr@2.8.3",
@@ -1167,7 +1167,7 @@
1167
1167
  "dependsOn": [
1168
1168
  "pkg:cargo/aho-corasick@1.1.5",
1169
1169
  "pkg:cargo/memchr@2.8.3",
1170
- "pkg:cargo/regex-automata@0.4.16",
1170
+ "pkg:cargo/regex-automata@0.4.18",
1171
1171
  "pkg:cargo/regex-syntax@0.8.11"
1172
1172
  ]
1173
1173
  },
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
- "cliVersion": "5.0.0",
4
- "engineVersion": "5.0.0",
5
- "buildId": "1-5.0.0-aarch64-pc-windows-msvc",
3
+ "cliVersion": "5.2.0",
4
+ "engineVersion": "5.2.0",
5
+ "buildId": "1-5.2.0-aarch64-pc-windows-msvc",
6
6
  "protocolAbi": 1,
7
7
  "capabilityAbi": 2,
8
8
  "nodeApiAbi": 4,
@@ -16,15 +16,15 @@
16
16
  "platform": "win32",
17
17
  "arch": "arm64",
18
18
  "libc": null,
19
- "artifactSha256": "5696047b01d24b95b0cf9b78460c1366d7f7e4b6b80021b9cdb5a962181e3cc1",
19
+ "artifactSha256": "1e69721c524c6f6a970d4644c5483529bc6ec17f8174f4f418a5b9191a3a99ef",
20
20
  "sbom": {
21
21
  "format": "CycloneDX-1.5",
22
22
  "path": "planu-core.win32-arm64-msvc.node.sbom.json",
23
- "sha256": "6fd9d30a3acc889495b4851008540412297f0236c99e88a1e3d10944414309e2"
23
+ "sha256": "bb526f914a2f60f431c01c953fe8cd0f02068f7faa5feb7d53289b4beb76e311"
24
24
  },
25
25
  "provenance": {
26
26
  "builder": "scripts/build-rust-local.sh",
27
- "sourceCommit": "b0d7149aa13f1e9d4aebd7df741cf38d5726f376",
27
+ "sourceCommit": "121065e63e9fd2c067367e286ecba619ecc3f18a",
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": "Wfe5vaWZpNGtB+9tgkHA607Gj14bZpPXNWCojw1isSRqsifn0M7peuyk6UW0ZHUuOa5wkr4267yrQZzTd4VVDQ=="
36
+ "value": "C/mDKI2Cq6Z/aMPgGQx5kESd4Ow363fsf/qzdtv/rLuAGMKeMy8ukvLyV7yYMB7BGrlNaGU4o1l5pD349v0UDw=="
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.0.0",
7
+ "bom-ref": "pkg:cargo/planu-core@5.2.0",
8
8
  "type": "library",
9
9
  "name": "planu-core",
10
- "version": "5.0.0",
10
+ "version": "5.2.0",
11
11
  "hashes": [
12
12
  {
13
13
  "alg": "SHA-256",
14
- "content": "5696047b01d24b95b0cf9b78460c1366d7f7e4b6b80021b9cdb5a962181e3cc1"
14
+ "content": "1e69721c524c6f6a970d4644c5483529bc6ec17f8174f4f418a5b9191a3a99ef"
15
15
  }
16
16
  ]
17
17
  }
@@ -291,9 +291,9 @@
291
291
  },
292
292
  {
293
293
  "type": "library",
294
- "bom-ref": "pkg:cargo/globset@0.4.19",
294
+ "bom-ref": "pkg:cargo/globset@0.4.20",
295
295
  "name": "globset",
296
- "version": "0.4.19",
296
+ "version": "0.4.20",
297
297
  "externalReferences": [
298
298
  {
299
299
  "type": "distribution",
@@ -529,9 +529,9 @@
529
529
  },
530
530
  {
531
531
  "type": "library",
532
- "bom-ref": "pkg:cargo/regex-automata@0.4.16",
532
+ "bom-ref": "pkg:cargo/regex-automata@0.4.18",
533
533
  "name": "regex-automata",
534
- "version": "0.4.16",
534
+ "version": "0.4.18",
535
535
  "externalReferences": [
536
536
  {
537
537
  "type": "distribution",
@@ -1046,12 +1046,12 @@
1046
1046
  ]
1047
1047
  },
1048
1048
  {
1049
- "ref": "pkg:cargo/globset@0.4.19",
1049
+ "ref": "pkg:cargo/globset@0.4.20",
1050
1050
  "dependsOn": [
1051
1051
  "pkg:cargo/aho-corasick@1.1.5",
1052
1052
  "pkg:cargo/bstr@1.13.0",
1053
1053
  "pkg:cargo/log@0.4.33",
1054
- "pkg:cargo/regex-automata@0.4.16",
1054
+ "pkg:cargo/regex-automata@0.4.18",
1055
1055
  "pkg:cargo/regex-syntax@0.8.11"
1056
1056
  ]
1057
1057
  },
@@ -1069,10 +1069,10 @@
1069
1069
  "ref": "pkg:cargo/ignore@0.4.25",
1070
1070
  "dependsOn": [
1071
1071
  "pkg:cargo/crossbeam-deque@0.8.7",
1072
- "pkg:cargo/globset@0.4.19",
1072
+ "pkg:cargo/globset@0.4.20",
1073
1073
  "pkg:cargo/log@0.4.33",
1074
1074
  "pkg:cargo/memchr@2.8.3",
1075
- "pkg:cargo/regex-automata@0.4.16",
1075
+ "pkg:cargo/regex-automata@0.4.18",
1076
1076
  "pkg:cargo/same-file@1.0.6",
1077
1077
  "pkg:cargo/walkdir@2.5.0",
1078
1078
  "pkg:cargo/winapi-util@0.1.11"
@@ -1106,7 +1106,7 @@
1106
1106
  "dependsOn": []
1107
1107
  },
1108
1108
  {
1109
- "ref": "pkg:cargo/planu-core@5.0.0",
1109
+ "ref": "pkg:cargo/planu-core@5.2.0",
1110
1110
  "dependsOn": [
1111
1111
  "pkg:cargo/core-foundation@0.10.1",
1112
1112
  "pkg:cargo/hmac@0.12.1",
@@ -1151,7 +1151,7 @@
1151
1151
  ]
1152
1152
  },
1153
1153
  {
1154
- "ref": "pkg:cargo/regex-automata@0.4.16",
1154
+ "ref": "pkg:cargo/regex-automata@0.4.18",
1155
1155
  "dependsOn": [
1156
1156
  "pkg:cargo/aho-corasick@1.1.5",
1157
1157
  "pkg:cargo/memchr@2.8.3",
@@ -1167,7 +1167,7 @@
1167
1167
  "dependsOn": [
1168
1168
  "pkg:cargo/aho-corasick@1.1.5",
1169
1169
  "pkg:cargo/memchr@2.8.3",
1170
- "pkg:cargo/regex-automata@0.4.16",
1170
+ "pkg:cargo/regex-automata@0.4.18",
1171
1171
  "pkg:cargo/regex-syntax@0.8.11"
1172
1172
  ]
1173
1173
  },
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
- "cliVersion": "5.0.0",
4
- "engineVersion": "5.0.0",
5
- "buildId": "1-5.0.0-x86_64-pc-windows-msvc",
3
+ "cliVersion": "5.2.0",
4
+ "engineVersion": "5.2.0",
5
+ "buildId": "1-5.2.0-x86_64-pc-windows-msvc",
6
6
  "protocolAbi": 1,
7
7
  "capabilityAbi": 2,
8
8
  "nodeApiAbi": 4,
@@ -16,15 +16,15 @@
16
16
  "platform": "win32",
17
17
  "arch": "x64",
18
18
  "libc": null,
19
- "artifactSha256": "fc9c98775c98b2f91d36ce9cb74567a547512ba5d11635052f230868af9ca9e3",
19
+ "artifactSha256": "bb7d31e5232b18f0ec9e03196cffdc57e48ac6993b6df064ff85b60c37804b93",
20
20
  "sbom": {
21
21
  "format": "CycloneDX-1.5",
22
22
  "path": "planu-core.win32-x64-msvc.node.sbom.json",
23
- "sha256": "1adc0d82e7f9abb24d3ff40fb2df3e685a9ce0172fa112c301b0e2cf09a9b449"
23
+ "sha256": "5c12145fab572d9432e20fda2e9d16ef0615db05c7c1b8c75448791f5442172b"
24
24
  },
25
25
  "provenance": {
26
26
  "builder": "scripts/build-rust-local.sh",
27
- "sourceCommit": "b0d7149aa13f1e9d4aebd7df741cf38d5726f376",
27
+ "sourceCommit": "121065e63e9fd2c067367e286ecba619ecc3f18a",
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": "J6/DywT15KIM0om6l62a3Nn4f5oXvrMdFXke7tEx/TgWpjEvJwfn83zbgryWMri3bXox1/w0bsEtI0s/bfHoDA=="
36
+ "value": "M7Szjm7IuOAy5X01ppGd4i2s7JZ3elesGf0vQcdpvAzIohLkXn5htr3w4F8kmAKy4GhB5YK/P7sjwXpc8SSTAg=="
37
37
  }
38
38
  }