avorelo 0.3.8 → 0.4.0-rc.2

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 (394) hide show
  1. package/LICENSE +16 -23
  2. package/README.md +62 -72
  3. package/bin/avorelo +9 -0
  4. package/package.json +147 -139
  5. package/scripts/README.md +40 -0
  6. package/scripts/avorelo-session-collision-guard.js +540 -0
  7. package/scripts/avorelo-workstream-preflight.js +918 -0
  8. package/scripts/cco-dashboard.js +346 -0
  9. package/scripts/cco-posttooluse.js +504 -0
  10. package/scripts/cco-pretooluse.js +381 -0
  11. package/scripts/cco-status.js +540 -0
  12. package/scripts/cco-stop.js +77 -0
  13. package/scripts/cco-userprompt-submit.js +83 -0
  14. package/scripts/lib/activation/account-state.js +37 -0
  15. package/scripts/lib/activation/activate-command.js +114 -0
  16. package/scripts/lib/activation/activation-runner.js +607 -0
  17. package/scripts/lib/activation/activation-self-healing.js +481 -0
  18. package/scripts/lib/activation/activation-state.js +96 -0
  19. package/scripts/lib/activation/activation-summary.js +241 -0
  20. package/scripts/lib/activation/adapters/claude-code.js +77 -0
  21. package/scripts/lib/activation/adapters/codex-cli.js +52 -0
  22. package/scripts/lib/activation/adapters/cursor.js +37 -0
  23. package/scripts/lib/activation/adapters/github-agent.js +39 -0
  24. package/scripts/lib/activation/adapters/terminal.js +42 -0
  25. package/scripts/lib/activation/adapters/vscode.js +39 -0
  26. package/scripts/lib/activation/adapters/windsurf.js +37 -0
  27. package/scripts/lib/activation/ai-surface-detector.js +151 -0
  28. package/scripts/lib/activation/connect-account.js +145 -0
  29. package/scripts/lib/activation/detect-environment.js +75 -0
  30. package/scripts/lib/activation/detect-hosts.js +62 -0
  31. package/scripts/lib/activation/format-activation-output.js +109 -0
  32. package/scripts/lib/activation/next-action.js +43 -0
  33. package/scripts/lib/activation/repair-engine.js +219 -0
  34. package/scripts/lib/activation/run-entry.js +346 -0
  35. package/scripts/lib/activation-distribution-readiness.js +507 -0
  36. package/scripts/lib/adapter-conformance.js +176 -0
  37. package/scripts/lib/adapter-readiness.js +428 -0
  38. package/scripts/lib/adapter-safety-boundaries.js +335 -0
  39. package/scripts/lib/adapter-technical-readiness-gate.js +205 -0
  40. package/scripts/lib/agent-access-governance.js +455 -0
  41. package/scripts/lib/agent-activation-readiness.js +878 -0
  42. package/scripts/lib/agent-enforcement.js +765 -0
  43. package/scripts/lib/agent-evolution-loop.js +479 -0
  44. package/scripts/lib/agent-policy-profile.js +210 -0
  45. package/scripts/lib/agent-security/action-evaluator.js +507 -0
  46. package/scripts/lib/agent-security/adapter-registry.js +98 -0
  47. package/scripts/lib/agent-security/auto-policy.js +139 -0
  48. package/scripts/lib/agent-security/bounded-scan.js +93 -0
  49. package/scripts/lib/agent-security/enforcement-adapter.js +174 -0
  50. package/scripts/lib/agent-security/enforcement-engine.js +1129 -0
  51. package/scripts/lib/agent-security/file-write-adapter.js +183 -0
  52. package/scripts/lib/agent-security/file-write-rules.js +178 -0
  53. package/scripts/lib/agent-security/index.js +3342 -0
  54. package/scripts/lib/agent-security/instruction-risk.js +181 -0
  55. package/scripts/lib/agent-security/mcp-action-adapter.js +185 -0
  56. package/scripts/lib/agent-security/mcp-action-rules.js +184 -0
  57. package/scripts/lib/agent-security/package-action-adapter.js +175 -0
  58. package/scripts/lib/agent-security/package-action-rules.js +233 -0
  59. package/scripts/lib/agent-security/performance.js +148 -0
  60. package/scripts/lib/agent-security/permission-minimizer.js +403 -0
  61. package/scripts/lib/agent-security/scan-cache.js +74 -0
  62. package/scripts/lib/agent-security/source-trust.js +146 -0
  63. package/scripts/lib/ai-efficiency-dogfood-pack.js +437 -0
  64. package/scripts/lib/ai-efficiency-eval.js +207 -0
  65. package/scripts/lib/ai-efficiency-guard-contract.js +209 -0
  66. package/scripts/lib/ai-efficiency-measured-value.js +106 -0
  67. package/scripts/lib/ai-install-prompt.js +293 -0
  68. package/scripts/lib/ai-task-inference.js +155 -0
  69. package/scripts/lib/ai-value-ledger.js +121 -0
  70. package/scripts/lib/ai-value-proof-table.js +151 -0
  71. package/scripts/lib/ai-work-efficiency-routing.js +623 -0
  72. package/scripts/lib/ai-workspace-hygiene.js +1499 -0
  73. package/scripts/lib/alpha-activation.js +520 -0
  74. package/scripts/lib/alpha-feedback.js +263 -0
  75. package/scripts/lib/alpha-readiness-gate.js +332 -0
  76. package/scripts/lib/anti-gaming.js +169 -0
  77. package/scripts/lib/artifact-health.js +431 -0
  78. package/scripts/lib/artifact-receipt-hygiene.js +619 -0
  79. package/scripts/lib/attribution.js +180 -0
  80. package/scripts/lib/audit.js +289 -0
  81. package/scripts/lib/avorelo-skill-registry.js +810 -0
  82. package/scripts/lib/batch-jobs.js +71 -0
  83. package/scripts/lib/brain-pack.js +578 -0
  84. package/scripts/lib/brand-boundary.js +424 -0
  85. package/scripts/lib/brand.js +74 -0
  86. package/scripts/lib/browser-capability.js +1048 -0
  87. package/scripts/lib/browser-proof-governed-workflow.js +1020 -0
  88. package/scripts/lib/browser-proof-preflight.js +321 -0
  89. package/scripts/lib/cache-readiness.js +296 -0
  90. package/scripts/lib/canonical-reentry.js +162 -0
  91. package/scripts/lib/capability-contract-validator.js +177 -0
  92. package/scripts/lib/capability-hygiene.js +504 -0
  93. package/scripts/lib/capability-intake-quarantine.js +789 -0
  94. package/scripts/lib/capability-kernel-registry.js +566 -0
  95. package/scripts/lib/capability-kernel.js +202 -0
  96. package/scripts/lib/capability-manifest.js +255 -0
  97. package/scripts/lib/capability-outcome-normalizer.js +104 -0
  98. package/scripts/lib/capability-packs.js +314 -0
  99. package/scripts/lib/capability-recommender.js +513 -0
  100. package/scripts/lib/capability-registry.js +1062 -0
  101. package/scripts/lib/carry-forward-surfacing.js +194 -0
  102. package/scripts/lib/ccusage-adapter.js +188 -0
  103. package/scripts/lib/claude-session-evidence/index.js +1027 -0
  104. package/scripts/lib/cli-output-sanitizer.js +118 -0
  105. package/scripts/lib/company-loop.js +1149 -0
  106. package/scripts/lib/config.js +641 -0
  107. package/scripts/lib/context-acquisition-plan.js +359 -0
  108. package/scripts/lib/context-authority-rules.js +138 -0
  109. package/scripts/lib/context-budget-guard.js +170 -0
  110. package/scripts/lib/context-budget-scanner.js +257 -0
  111. package/scripts/lib/context-budget.js +167 -0
  112. package/scripts/lib/context-claim-safety.js +116 -0
  113. package/scripts/lib/context-compiler.js +236 -0
  114. package/scripts/lib/context-optimizer.js +715 -0
  115. package/scripts/lib/context-packet.js +121 -0
  116. package/scripts/lib/context-receipt.js +57 -0
  117. package/scripts/lib/context-reduction-plan.js +179 -0
  118. package/scripts/lib/context-safety.js +88 -0
  119. package/scripts/lib/context-savings-engine.js +158 -0
  120. package/scripts/lib/context-source-registry.js +393 -0
  121. package/scripts/lib/context-task-profiles.js +147 -0
  122. package/scripts/lib/cost-abuse-guard.js +975 -0
  123. package/scripts/lib/cost-evidence.js +287 -0
  124. package/scripts/lib/cost-to-outcome-signals.js +639 -0
  125. package/scripts/lib/cross-host-install-plan.js +308 -0
  126. package/scripts/lib/cross-host-install-readiness.js +242 -0
  127. package/scripts/lib/cross-host-value-flow.js +268 -0
  128. package/scripts/lib/dashboard.js +1056 -0
  129. package/scripts/lib/data-permissions-guard.js +1187 -0
  130. package/scripts/lib/deployment-environment-guard.js +1236 -0
  131. package/scripts/lib/design-partner-feedback.js +346 -0
  132. package/scripts/lib/dogfood-evidence-freshness.js +567 -0
  133. package/scripts/lib/efficiency-receipt.js +354 -0
  134. package/scripts/lib/entitlements.js +100 -0
  135. package/scripts/lib/execution-packet.js +559 -0
  136. package/scripts/lib/execution-route-governor.js +179 -0
  137. package/scripts/lib/experimentation-events.js +547 -0
  138. package/scripts/lib/external-capability-compliance.js +107 -0
  139. package/scripts/lib/external-readiness/ai-visibility/ai-visibility-runner.js +322 -0
  140. package/scripts/lib/external-readiness/calibration/benchmark-site-catalog.js +121 -0
  141. package/scripts/lib/external-readiness/calibration/completion-gate.js +112 -0
  142. package/scripts/lib/external-readiness/calibration/real-site-benchmark-runner.js +284 -0
  143. package/scripts/lib/external-readiness/drift-detector.js +100 -0
  144. package/scripts/lib/external-readiness/endpoint-prober.js +332 -0
  145. package/scripts/lib/external-readiness/external-readiness-runner.js +112 -0
  146. package/scripts/lib/external-readiness/full-agent-readiness-scorer.js +220 -0
  147. package/scripts/lib/external-readiness/golden-path-runner.js +333 -0
  148. package/scripts/lib/external-readiness/inside-out-runner.js +118 -0
  149. package/scripts/lib/external-readiness/proof-receipt-writer.js +112 -0
  150. package/scripts/lib/external-readiness/safe-fix-executor.js +117 -0
  151. package/scripts/lib/external-readiness/skills/category-boundary-guard.js +30 -0
  152. package/scripts/lib/external-readiness/skills/pmm-positioning-guard.js +69 -0
  153. package/scripts/lib/external-readiness/skills/safe-fix-policy.js +35 -0
  154. package/scripts/lib/external-user-simulation.js +166 -0
  155. package/scripts/lib/failure-recovery-readiness.js +81 -0
  156. package/scripts/lib/failure-recovery.js +419 -0
  157. package/scripts/lib/feedback-intelligence.js +537 -0
  158. package/scripts/lib/feedback-signals.js +205 -0
  159. package/scripts/lib/file-integrity.js +68 -0
  160. package/scripts/lib/fsx.js +129 -0
  161. package/scripts/lib/full-readiness-gate.js +451 -0
  162. package/scripts/lib/governed-action-exposure-primitives.js +1514 -0
  163. package/scripts/lib/governed-exposure-planner.js +186 -0
  164. package/scripts/lib/governed-workspace-hygiene.js +946 -0
  165. package/scripts/lib/guard-suite-common.js +412 -0
  166. package/scripts/lib/guidance-builder.js +174 -0
  167. package/scripts/lib/hook-apply.js +1075 -0
  168. package/scripts/lib/hook-baseline.js +310 -0
  169. package/scripts/lib/hook-config-preview.js +275 -0
  170. package/scripts/lib/hook-contracts.js +290 -0
  171. package/scripts/lib/hook-safety-boundary-readiness.js +80 -0
  172. package/scripts/lib/host-capability-matrix.js +351 -0
  173. package/scripts/lib/host-support-context.js +254 -0
  174. package/scripts/lib/http-hook-action.js +538 -0
  175. package/scripts/lib/install-ai-readiness.js +84 -0
  176. package/scripts/lib/install-intake-risk.js +1051 -0
  177. package/scripts/lib/install-journey-intelligence.js +329 -0
  178. package/scripts/lib/intervention-guidance.js +57 -0
  179. package/scripts/lib/known-limitations.js +115 -0
  180. package/scripts/lib/l8-path-truth.js +146 -0
  181. package/scripts/lib/launch-hardening-gate.js +436 -0
  182. package/scripts/lib/launch-readiness.js +635 -0
  183. package/scripts/lib/learning-experimentation-foundation.js +1484 -0
  184. package/scripts/lib/learning-memory.js +686 -0
  185. package/scripts/lib/lifecycle-hooks.js +982 -0
  186. package/scripts/lib/local-package-smoke.js +436 -0
  187. package/scripts/lib/local-pricing.js +299 -0
  188. package/scripts/lib/mcp-enforcement.js +311 -0
  189. package/scripts/lib/mcp-least-privilege-policy.js +303 -0
  190. package/scripts/lib/mcp-tool-inventory.js +388 -0
  191. package/scripts/lib/mcp-tool-risk.js +0 -0
  192. package/scripts/lib/memory.js +335 -0
  193. package/scripts/lib/metrics.js +699 -0
  194. package/scripts/lib/micro-proof.js +133 -0
  195. package/scripts/lib/model-work-class-routing.js +79 -0
  196. package/scripts/lib/next-run-context.js +436 -0
  197. package/scripts/lib/next-run-continuity.js +1207 -0
  198. package/scripts/lib/observability-recovery-guard.js +1030 -0
  199. package/scripts/lib/operating-value.js +1662 -0
  200. package/scripts/lib/optimization-v3.js +122 -0
  201. package/scripts/lib/orchestration/adapters/_shared.js +49 -0
  202. package/scripts/lib/orchestration/adapters/aider.js +18 -0
  203. package/scripts/lib/orchestration/adapters/claude-code.js +35 -0
  204. package/scripts/lib/orchestration/adapters/codex.js +35 -0
  205. package/scripts/lib/orchestration/adapters/gemini-cli.js +18 -0
  206. package/scripts/lib/orchestration/adapters/git.js +25 -0
  207. package/scripts/lib/orchestration/adapters/index.js +31 -0
  208. package/scripts/lib/orchestration/adapters/lm-studio.js +18 -0
  209. package/scripts/lib/orchestration/adapters/ollama.js +18 -0
  210. package/scripts/lib/orchestration/adapters/opencode.js +18 -0
  211. package/scripts/lib/orchestration/adapters/openrouter.js +18 -0
  212. package/scripts/lib/orchestration/adapters/test-runner.js +25 -0
  213. package/scripts/lib/orchestration/cli.js +438 -0
  214. package/scripts/lib/orchestration/execution-manager.js +279 -0
  215. package/scripts/lib/orchestration/handoff.js +314 -0
  216. package/scripts/lib/orchestration/index.js +456 -0
  217. package/scripts/lib/orchestration/inventory.js +47 -0
  218. package/scripts/lib/orchestration/model-discovery.js +498 -0
  219. package/scripts/lib/orchestration/model-profiler.js +170 -0
  220. package/scripts/lib/orchestration/model-profiles.js +252 -0
  221. package/scripts/lib/orchestration/model-refresh-policy.js +72 -0
  222. package/scripts/lib/orchestration/proof-writer.js +349 -0
  223. package/scripts/lib/orchestration/provider-discovery/aider.js +49 -0
  224. package/scripts/lib/orchestration/provider-discovery/claude-code.js +56 -0
  225. package/scripts/lib/orchestration/provider-discovery/codex.js +49 -0
  226. package/scripts/lib/orchestration/provider-discovery/common.js +186 -0
  227. package/scripts/lib/orchestration/provider-discovery/gemini.js +106 -0
  228. package/scripts/lib/orchestration/provider-discovery/lm-studio.js +118 -0
  229. package/scripts/lib/orchestration/provider-discovery/models-dev.js +12 -0
  230. package/scripts/lib/orchestration/provider-discovery/ollama.js +100 -0
  231. package/scripts/lib/orchestration/provider-discovery/opencode.js +47 -0
  232. package/scripts/lib/orchestration/provider-discovery/openrouter.js +44 -0
  233. package/scripts/lib/orchestration/risk-classifier.js +130 -0
  234. package/scripts/lib/orchestration/routing-policy.js +486 -0
  235. package/scripts/lib/orchestration/settings.js +95 -0
  236. package/scripts/lib/orchestration/state.js +165 -0
  237. package/scripts/lib/orchestration/verification-manager.js +138 -0
  238. package/scripts/lib/outcome-evidence-stack.js +1083 -0
  239. package/scripts/lib/output-profiles.js +146 -0
  240. package/scripts/lib/package-content-audit.js +368 -0
  241. package/scripts/lib/package-runtime.js +278 -0
  242. package/scripts/lib/plan-surface.js +53 -0
  243. package/scripts/lib/plans.js +2327 -0
  244. package/scripts/lib/policy-provider.js +27 -0
  245. package/scripts/lib/prelaunch-activation-readiness.js +409 -0
  246. package/scripts/lib/prelaunch-evidence-store.js +816 -0
  247. package/scripts/lib/prelaunch-intelligence.js +869 -0
  248. package/scripts/lib/pricing-experiment.js +118 -0
  249. package/scripts/lib/pro-moment-events.js +77 -0
  250. package/scripts/lib/pro-moment-state.js +227 -0
  251. package/scripts/lib/pro-moments.js +1216 -0
  252. package/scripts/lib/product-home-receipt.js +1790 -0
  253. package/scripts/lib/product-learning-events.js +696 -0
  254. package/scripts/lib/production-confidence-control-tower.js +1209 -0
  255. package/scripts/lib/production-confidence.js +1858 -0
  256. package/scripts/lib/project-profile.js +555 -0
  257. package/scripts/lib/prompt-compiler-plan.js +94 -0
  258. package/scripts/lib/prompt-compiler.js +280 -0
  259. package/scripts/lib/prompt-lint.js +32 -0
  260. package/scripts/lib/prompt-suggestions.js +52 -0
  261. package/scripts/lib/proof-canonical.js +398 -0
  262. package/scripts/lib/proof-drilldown.js +383 -0
  263. package/scripts/lib/proof-e2e/promise-completion.js +141 -0
  264. package/scripts/lib/proof-e2e/promise-dashboard-claims.js +135 -0
  265. package/scripts/lib/proof-e2e/promise-local-proof.js +156 -0
  266. package/scripts/lib/proof-e2e/promise-provider-neutral.js +136 -0
  267. package/scripts/lib/proof-e2e/promise-registry.js +219 -0
  268. package/scripts/lib/proof-e2e/promise-security-trust.js +141 -0
  269. package/scripts/lib/proof-e2e/promise-skills-risk.js +163 -0
  270. package/scripts/lib/proof-e2e/promise-token-savings.js +112 -0
  271. package/scripts/lib/proof-e2e/promise-work-management.js +126 -0
  272. package/scripts/lib/proof-events.js +342 -0
  273. package/scripts/lib/proof-history.js +243 -0
  274. package/scripts/lib/proof-metrics.js +296 -0
  275. package/scripts/lib/proof-outcome-evidence.js +134 -0
  276. package/scripts/lib/proof-receipt.js +335 -0
  277. package/scripts/lib/proof-record.js +461 -0
  278. package/scripts/lib/proof-savings-report.js +1549 -0
  279. package/scripts/lib/public-activation-distribution-gate.js +266 -0
  280. package/scripts/lib/public-cli.js +5631 -0
  281. package/scripts/lib/public-distribution-truth.js +211 -0
  282. package/scripts/lib/public-distribution.js +73 -0
  283. package/scripts/lib/public-install-claim-checker.js +300 -0
  284. package/scripts/lib/publish-provenance-readiness.js +287 -0
  285. package/scripts/lib/readiness-delta.js +218 -0
  286. package/scripts/lib/readiness-evidence-closure.js +196 -0
  287. package/scripts/lib/reentry-memory-capture.js +241 -0
  288. package/scripts/lib/reentry-memory-retrieval.js +302 -0
  289. package/scripts/lib/reentry-memory-status.js +147 -0
  290. package/scripts/lib/reentry-memory-store.js +183 -0
  291. package/scripts/lib/reentry-state.js +66 -0
  292. package/scripts/lib/release-candidate-bundle.js +166 -0
  293. package/scripts/lib/remediation.js +81 -0
  294. package/scripts/lib/repo-map.js +391 -0
  295. package/scripts/lib/run-action-policy.js +104 -0
  296. package/scripts/lib/run-contract-receipt.js +48 -0
  297. package/scripts/lib/run-contract.js +288 -0
  298. package/scripts/lib/run-cost-to-verified-outcome.js +87 -0
  299. package/scripts/lib/run-improvements-lifecycle.js +330 -0
  300. package/scripts/lib/run-improvements.js +789 -0
  301. package/scripts/lib/run-proof-contract.js +116 -0
  302. package/scripts/lib/run-risk-classifier.js +131 -0
  303. package/scripts/lib/run-task-classifier.js +216 -0
  304. package/scripts/lib/runtime-decision-policy.js +387 -0
  305. package/scripts/lib/safe-path-engine.js +705 -0
  306. package/scripts/lib/safe-repair.js +877 -0
  307. package/scripts/lib/safe-run-controller.js +887 -0
  308. package/scripts/lib/scope-repair-before-approval.js +865 -0
  309. package/scripts/lib/score.js +262 -0
  310. package/scripts/lib/seamless-enforcement.js +329 -0
  311. package/scripts/lib/seamless-outcome.js +689 -0
  312. package/scripts/lib/seamless-reality-gate.js +5053 -0
  313. package/scripts/lib/security-confidence/activation-safety.js +78 -0
  314. package/scripts/lib/security-confidence/adapters/adapter-contract.js +125 -0
  315. package/scripts/lib/security-confidence/adapters/mock-claude-bughunter-adapter.js +36 -0
  316. package/scripts/lib/security-confidence/adapters/mock-decepticon-adapter.js +34 -0
  317. package/scripts/lib/security-confidence/adapters/mock-mcp-scan-adapter.js +35 -0
  318. package/scripts/lib/security-confidence/adapters/mock-snyk-agent-scan-adapter.js +35 -0
  319. package/scripts/lib/security-confidence/adapters/mock-tank-adapter.js +34 -0
  320. package/scripts/lib/security-confidence/adapters/reference-registry.js +63 -0
  321. package/scripts/lib/security-confidence/auth-rbac-plan.js +39 -0
  322. package/scripts/lib/security-confidence/component-inventory.js +151 -0
  323. package/scripts/lib/security-confidence/constants.js +191 -0
  324. package/scripts/lib/security-confidence/dependency-script-risk.js +95 -0
  325. package/scripts/lib/security-confidence/evidence-hygiene.js +127 -0
  326. package/scripts/lib/security-confidence/feature-impact-classifier.js +80 -0
  327. package/scripts/lib/security-confidence/file-utils.js +161 -0
  328. package/scripts/lib/security-confidence/finding-triage.js +90 -0
  329. package/scripts/lib/security-confidence/findings.js +115 -0
  330. package/scripts/lib/security-confidence/index.js +29 -0
  331. package/scripts/lib/security-confidence/permission-budget.js +93 -0
  332. package/scripts/lib/security-confidence/redaction.js +82 -0
  333. package/scripts/lib/security-confidence/redteam-fixtures.js +53 -0
  334. package/scripts/lib/security-confidence/reference-adoption.js +229 -0
  335. package/scripts/lib/security-confidence/reference-taxonomy.js +155 -0
  336. package/scripts/lib/security-confidence/report-quality.js +99 -0
  337. package/scripts/lib/security-confidence/report-writer.js +79 -0
  338. package/scripts/lib/security-confidence/risk-classifier.js +187 -0
  339. package/scripts/lib/security-confidence/runner.js +179 -0
  340. package/scripts/lib/security-confidence/schema.js +188 -0
  341. package/scripts/lib/security-confidence/secret-safety.js +74 -0
  342. package/scripts/lib/security-confidence/security-capability-router.js +98 -0
  343. package/scripts/lib/security-confidence/web-security-smoke-plan.js +46 -0
  344. package/scripts/lib/security-risk-classifier.js +511 -0
  345. package/scripts/lib/security-scan.js +396 -0
  346. package/scripts/lib/session-context-optimizer.js +1211 -0
  347. package/scripts/lib/session-timing.js +322 -0
  348. package/scripts/lib/skill-hygiene.js +805 -0
  349. package/scripts/lib/skill-packs.js +161 -0
  350. package/scripts/lib/skills-operating-layer-v1.js +1023 -0
  351. package/scripts/lib/skills-operating-layer.js +629 -0
  352. package/scripts/lib/smallest-safe-plan.js +214 -0
  353. package/scripts/lib/smart-routing-plan.js +115 -0
  354. package/scripts/lib/smart-work-routing.js +768 -0
  355. package/scripts/lib/source-catalog.js +1022 -0
  356. package/scripts/lib/status-value-summary.js +32 -0
  357. package/scripts/lib/supply-chain-dependency-guard.js +1333 -0
  358. package/scripts/lib/supply-chain-guard.js +219 -0
  359. package/scripts/lib/support-bundle.js +561 -0
  360. package/scripts/lib/support-redaction.js +66 -0
  361. package/scripts/lib/task-continuation.js +440 -0
  362. package/scripts/lib/test-helpers.js +15 -0
  363. package/scripts/lib/tier.js +38 -0
  364. package/scripts/lib/token-context-quality-gate.js +370 -0
  365. package/scripts/lib/token-cost-capture.js +187 -0
  366. package/scripts/lib/token-cost-evidence.js +862 -0
  367. package/scripts/lib/token-cost-intelligence.js +358 -0
  368. package/scripts/lib/token-efficiency-evidence.js +213 -0
  369. package/scripts/lib/token-efficiency-map.js +110 -0
  370. package/scripts/lib/token-evidence.js +703 -0
  371. package/scripts/lib/tokenish.js +17 -0
  372. package/scripts/lib/tool-output-sandbox.js +559 -0
  373. package/scripts/lib/trust-audit.js +136 -0
  374. package/scripts/lib/unified-events.js +396 -0
  375. package/scripts/lib/upgrade-interruption-recovery.js +407 -0
  376. package/scripts/lib/usage-ledger.js +201 -0
  377. package/scripts/lib/value-ledger.js +130 -0
  378. package/scripts/lib/value-proof-calibration.js +531 -0
  379. package/scripts/lib/visual-qa.js +231 -0
  380. package/scripts/lib/voice-alpha.js +29 -0
  381. package/scripts/lib/webhook-idempotency-guard.js +990 -0
  382. package/scripts/lib/work-aware-orchestration.js +976 -0
  383. package/scripts/lib/work-control-receipts.js +577 -0
  384. package/scripts/lib/work-ledger.js +1123 -0
  385. package/scripts/lib/work-panel-preview.js +352 -0
  386. package/scripts/lib/workflow-discipline.js +280 -0
  387. package/scripts/lib/workflow-intelligence-radar.js +804 -0
  388. package/scripts/lib/workflow-signals.js +419 -0
  389. package/scripts/lib/workspace-map.js +281 -0
  390. package/scripts/lib/workspace-registry.js +1367 -0
  391. package/scripts/lib/workspace-resolver.js +542 -0
  392. package/scripts/wuz-doctor.js +315 -0
  393. package/bin/avorelo.mjs +0 -7
  394. package/dist/avorelo.mjs +0 -24678
@@ -0,0 +1,865 @@
1
+ "use strict";
2
+
3
+ const path = require("path");
4
+
5
+ const { nowIso, safeReadJson, safeWriteJson } = require("./fsx");
6
+
7
+ const CONTRACT = "avorelo.scopeRepair.v1";
8
+ const REPORT_DIR_REL = ".claude/cco/orchestration/scope-repair";
9
+ const LATEST_REPORT_REL = `${REPORT_DIR_REL}/latest-report.json`;
10
+ const BOUNDARY_REPORT_REL = ".claude/cco/security/governed-action-exposure/latest-report.json";
11
+
12
+ const DEFAULT_BOUNDARY_IDS = new Set([
13
+ "boundary-action-file-read",
14
+ "boundary-action-file-write-source",
15
+ "boundary-action-command-run",
16
+ "boundary-action-public-content",
17
+ "boundary-exposure-local",
18
+ "boundary-exposure-repo",
19
+ "boundary-exposure-docs",
20
+ "boundary-exposure-package",
21
+ "boundary-tool-local-read",
22
+ "boundary-tool-local-write",
23
+ "boundary-tool-package-manager",
24
+ "boundary-tool-browser",
25
+ ]);
26
+
27
+ const DECISION_TYPES = Object.freeze([
28
+ "no_data",
29
+ "no_mismatch",
30
+ "mismatch_detected",
31
+ "repaired_to_requested_scope",
32
+ "downgraded_to_read_only",
33
+ "limited_to_local_target",
34
+ "package_install_removed_for_metadata_review",
35
+ "external_target_removed",
36
+ "split_safe_scope_from_review_scope",
37
+ "approval_avoided_after_repair",
38
+ "approval_still_required_after_repair",
39
+ "blocked_unrepairable_scope",
40
+ ]);
41
+
42
+ const TEXT_STATUS_LABELS = Object.freeze({
43
+ pass: "PASS",
44
+ warn: "WARN",
45
+ blocked: "BLOCKED",
46
+ no_data: "No Data",
47
+ });
48
+
49
+ function unique(values) {
50
+ return [...new Set((values || []).filter(Boolean))];
51
+ }
52
+
53
+ function sanitizeText(value, maxChars = 180) {
54
+ const text = String(value || "")
55
+ .replace(/\s+/g, " ")
56
+ .replace(/(?:sk-[A-Za-z0-9_-]{16,}|gh[ps]_[A-Za-z0-9]{12,}|npm_[A-Za-z0-9]{12,}|AKIA[0-9A-Z]{16})/g, "[redacted-token]")
57
+ .replace(/(bearer\s+)[A-Za-z0-9._-]{8,}/ig, "$1[redacted]")
58
+ .replace(/((?:api[_ -]?key|token|password|secret|authorization)\s*[:=]\s*)([^\s'"]+)/ig, "$1[redacted]")
59
+ .trim();
60
+ if (!text) return null;
61
+ if (/^\s*(?:system|user|assistant)\s*:/i.test(text)) return null;
62
+ if (/\b(?:function\s+\w+\s*\(|const\s+\w+\s*=|module\.exports\s*=|class\s+\w+)/.test(text) && /[{};]/.test(text)) {
63
+ return null;
64
+ }
65
+ return text.length > maxChars ? `${text.slice(0, maxChars - 3).trimEnd()}...` : text;
66
+ }
67
+
68
+ function normalizeList(value) {
69
+ return (Array.isArray(value) ? value : value ? [value] : [])
70
+ .map((item) => String(item || "").trim())
71
+ .filter(Boolean);
72
+ }
73
+
74
+ function toRelativeRedactedPath(cwd, value) {
75
+ const raw = String(value || "").trim();
76
+ if (!raw) return null;
77
+ if (/^https?:\/\//i.test(raw)) {
78
+ try {
79
+ return new URL(raw).hostname.toLowerCase();
80
+ } catch {
81
+ return null;
82
+ }
83
+ }
84
+ const absolute = path.isAbsolute(raw) ? raw : path.resolve(cwd, raw);
85
+ const relative = path.relative(cwd, absolute).replace(/\\/g, "/");
86
+ if (!relative || relative === "") return ".";
87
+ if (relative.startsWith("..") || path.isAbsolute(relative)) return "<outside-repo>";
88
+ return relative;
89
+ }
90
+
91
+ function normalizeFiles(cwd, files) {
92
+ return unique(normalizeList(files).map((item) => toRelativeRedactedPath(cwd, item))).filter(Boolean);
93
+ }
94
+
95
+ function normalizeTargets(cwd, targets) {
96
+ return unique(normalizeList(targets).map((item) => {
97
+ if (/^[A-Za-z]:\\/.test(item) || item.includes("\\") || item.startsWith("/")) {
98
+ return toRelativeRedactedPath(cwd, item);
99
+ }
100
+ return sanitizeText(item, 120);
101
+ })).filter(Boolean);
102
+ }
103
+
104
+ function normalizeActions(actions) {
105
+ return unique(normalizeList(actions).map((item) => sanitizeText(item, 80)?.toLowerCase())).filter(Boolean);
106
+ }
107
+
108
+ function inferIntentType(scope = {}) {
109
+ if (scope.intentType) return scope.intentType;
110
+ const actions = normalizeActions(scope.actions);
111
+ const files = normalizeList(scope.files).map((item) => item.replace(/\\/g, "/"));
112
+ const targets = normalizeList(scope.targets).map((item) => item.toLowerCase());
113
+
114
+ if (actions.length > 0) {
115
+ if (actions.every((item) => item === "file_read" || item === "read_only" || item === "inspect")) return "read_only";
116
+ if (actions.includes("package_review") || actions.includes("metadata_review")) return "package_review";
117
+ if (actions.includes("browser_local")) return "browser_local";
118
+ if (actions.some((item) => item.includes("write") || item.includes("change") || item.includes("edit"))) return "code_change";
119
+ }
120
+
121
+ if (targets.some((item) => /localhost|127\.0\.0\.1|0\.0\.0\.0/.test(item))) return "browser_local";
122
+ if (files.length > 0 && files.every((item) => item.startsWith("docs/") || item.endsWith(".md"))) return "docs_only";
123
+ if (files.length > 0) return "code_change";
124
+ return "unknown";
125
+ }
126
+
127
+ function computeRiskTier(scope = {}) {
128
+ const actions = normalizeActions(scope.actions);
129
+ const files = normalizeList(scope.files).map((item) => item.replace(/\\/g, "/").toLowerCase());
130
+ const targets = normalizeList(scope.targets).map((item) => item.toLowerCase());
131
+
132
+ const sensitiveFile = files.some((item) =>
133
+ /(^|\/)(?:\.env(?:\..*)?|secrets?|credentials?|auth|billing|payment|deploy|deployment|infra|terraform|k8s|docker|vercel|netlify|production|prod-config)/i.test(item)
134
+ );
135
+ const broadWrite = files.some((item) => /\*\*|\*$/.test(item)) || scope.repoWide === true;
136
+ const sensitiveAction = actions.some((item) =>
137
+ ["package_install", "package_publish", "deploy_action", "secret_access", "config_change"].includes(item)
138
+ );
139
+ const externalTarget = targets.some((item) => !/^(localhost|127\.0\.0\.1|0\.0\.0\.0|repo_internal|local_only|\.)/.test(item));
140
+
141
+ if (sensitiveFile || sensitiveAction) return "high";
142
+ if (broadWrite || externalTarget) return "high";
143
+ if (actions.some((item) => item.includes("write") || item.includes("change") || item.includes("browser"))) return "medium";
144
+ if (files.length > 0 || actions.length > 0 || targets.length > 0) return "low";
145
+ return "unknown";
146
+ }
147
+
148
+ function normalizeScope(cwd, scope = {}, kind) {
149
+ if (!scope || typeof scope !== "object") {
150
+ return {
151
+ source: "none",
152
+ intentType: "unknown",
153
+ files: [],
154
+ actions: [],
155
+ targets: [],
156
+ riskTier: "unknown",
157
+ };
158
+ }
159
+
160
+ const normalized = {
161
+ source: sanitizeText(scope.source, 40) || (kind === "requested" ? "provided" : "fixture"),
162
+ intentType: inferIntentType(scope),
163
+ files: normalizeFiles(cwd, scope.files || scope.paths),
164
+ actions: normalizeActions(scope.actions),
165
+ targets: normalizeTargets(cwd, scope.targets || scope.domains),
166
+ riskTier: scope.riskTier || computeRiskTier(scope),
167
+ };
168
+
169
+ if (normalized.actions.length === 0 && normalized.intentType === "read_only") {
170
+ normalized.actions = ["file_read"];
171
+ }
172
+ if (normalized.actions.length === 0 && normalized.intentType === "browser_local") {
173
+ normalized.actions = ["browser_local"];
174
+ }
175
+ if (normalized.actions.length === 0 && normalized.intentType === "package_review") {
176
+ normalized.actions = ["package_review"];
177
+ }
178
+ if (normalized.actions.length === 0 && normalized.files.length > 0) {
179
+ normalized.actions = normalized.intentType === "docs_only" ? ["docs_write"] : ["file_write"];
180
+ }
181
+ return normalized;
182
+ }
183
+
184
+ function mapBoundaryDecisionToScope(cwd, decision) {
185
+ const requested = normalizeScope(cwd, {
186
+ source: "inferred",
187
+ intentType: mapIntentTypeFromBoundary(decision, decision.requestedScope),
188
+ files: decision?.requestedScope?.paths,
189
+ actions: mapActionsFromBoundary(decision, decision.requestedScope),
190
+ targets: decision?.requestedScope?.domains,
191
+ riskTier: decision?.requestedScope?.riskTier,
192
+ }, "requested");
193
+ const planned = normalizeScope(cwd, {
194
+ source: "boundary",
195
+ intentType: mapIntentTypeFromBoundary(decision, decision.normalizedScope),
196
+ files: decision?.normalizedScope?.paths,
197
+ actions: mapActionsFromBoundary(decision, decision.normalizedScope),
198
+ targets: decision?.normalizedScope?.domains,
199
+ riskTier: decision?.normalizedScope?.riskTier,
200
+ }, "planned");
201
+
202
+ const repaired = decision?.minimalSafeScope
203
+ ? normalizeScope(cwd, {
204
+ source: "boundary",
205
+ intentType: mapIntentTypeFromBoundary(decision, decision.minimalSafeScope),
206
+ files: decision.minimalSafeScope.paths,
207
+ actions: mapActionsFromBoundary(decision, decision.minimalSafeScope),
208
+ targets: decision.minimalSafeScope.domains,
209
+ riskTier: decision.minimalSafeScope.riskTier,
210
+ }, "planned")
211
+ : null;
212
+
213
+ return { requested, planned, repaired };
214
+ }
215
+
216
+ function mapIntentTypeFromBoundary(decision, scope) {
217
+ const visibility = String(scope?.visibility || "").toLowerCase();
218
+ if (decision?.actionType === "file_read") return "read_only";
219
+ if (decision?.actionType === "package_install") return "package_review";
220
+ if (decision?.actionType === "browser_action") {
221
+ return visibility === "local_only" || (scope?.domains || []).some((item) => /localhost|127\.0\.0\.1/.test(String(item))) ? "browser_local" : "unknown";
222
+ }
223
+ if ((scope?.paths || []).every((item) => String(item).startsWith("docs/") || String(item).endsWith(".md"))) {
224
+ return "docs_only";
225
+ }
226
+ return visibility === "repo_internal" || (scope?.paths || []).length > 0 ? "code_change" : "unknown";
227
+ }
228
+
229
+ function mapActionsFromBoundary(decision, scope) {
230
+ if (decision?.actionType === "file_read") return ["file_read"];
231
+ if (decision?.actionType === "file_write") {
232
+ return (scope?.paths || []).every((item) => String(item).startsWith("docs/") || String(item).endsWith(".md"))
233
+ ? ["docs_write"]
234
+ : ["file_write"];
235
+ }
236
+ if (decision?.actionType === "package_install") return ["package_install"];
237
+ if (decision?.actionType === "browser_action") {
238
+ return (scope?.domains || []).some((item) => /localhost|127\.0\.0\.1/.test(String(item))) ? ["browser_local"] : ["browser_external"];
239
+ }
240
+ if (decision?.actionType) return [decision.actionType];
241
+ if (decision?.toolType === "local_read") return ["file_read"];
242
+ if (decision?.toolType === "local_write") return ["file_write"];
243
+ if (decision?.toolType === "browser") return ["browser_external"];
244
+ if (decision?.toolType === "package_manager") return ["package_install"];
245
+ if (decision?.exposureType === "local_only") return ["file_read"];
246
+ return [];
247
+ }
248
+
249
+ function derivePairFromBoundary(cwd, boundaryReport) {
250
+ const decisions = Array.isArray(boundaryReport?.decisions) ? boundaryReport.decisions : [];
251
+ if (!decisions.length) return null;
252
+ const nonDefault = decisions.filter((decision) => !DEFAULT_BOUNDARY_IDS.has(String(decision.id || "")));
253
+ const eligible = nonDefault.find((decision) =>
254
+ decision
255
+ && decision.requestedScope
256
+ && decision.normalizedScope
257
+ && (
258
+ decision.minimalSafeScope
259
+ || decision.decision === "auto_limit"
260
+ || decision.reasonCodes?.includes("safe_scope_available")
261
+ )
262
+ );
263
+ if (!eligible) return null;
264
+ return {
265
+ source: "boundary",
266
+ decision: eligible,
267
+ ...mapBoundaryDecisionToScope(cwd, eligible),
268
+ };
269
+ }
270
+
271
+ function loadDerivedPair(cwd, options = {}) {
272
+ if (options.requestedScope || options.plannedAction) {
273
+ return {
274
+ source: "provided",
275
+ requested: normalizeScope(cwd, { ...options.requestedScope, source: options.requestedScope?.source || "provided" }, "requested"),
276
+ planned: normalizeScope(cwd, { ...options.plannedAction, source: options.plannedAction?.source || "fixture" }, "planned"),
277
+ repairedSeed: options.repairedScope ? normalizeScope(cwd, options.repairedScope, "planned") : null,
278
+ };
279
+ }
280
+
281
+ const boundaryReport = options.boundaryReport || safeReadJson(cwd, BOUNDARY_REPORT_REL, null);
282
+ if (boundaryReport) {
283
+ const derived = derivePairFromBoundary(cwd, boundaryReport);
284
+ if (derived) {
285
+ return {
286
+ source: "boundary",
287
+ requested: derived.requested,
288
+ planned: derived.planned,
289
+ repairedSeed: derived.repaired,
290
+ };
291
+ }
292
+ }
293
+
294
+ return null;
295
+ }
296
+
297
+ function diffCount(left, right) {
298
+ const leftSet = new Set(left || []);
299
+ const rightSet = new Set(right || []);
300
+ let count = 0;
301
+ for (const item of leftSet) {
302
+ if (!rightSet.has(item)) count += 1;
303
+ }
304
+ return count;
305
+ }
306
+
307
+ function isSensitiveScope(scope = {}) {
308
+ return computeRiskTier(scope) === "high";
309
+ }
310
+
311
+ function computeApprovalState(scope = {}, options = {}) {
312
+ const riskTier = scope.riskTier || computeRiskTier(scope);
313
+ const actions = normalizeActions(scope.actions);
314
+ if (options.missingRequested && riskTier === "high") return "blocked";
315
+ if (actions.some((item) => ["package_install", "package_publish", "deploy_action", "secret_access"].includes(item))) {
316
+ return "approval_required";
317
+ }
318
+ if (riskTier === "high") return options.missingRequested ? "blocked" : "approval_required";
319
+ if (riskTier === "unknown") return "unknown";
320
+ return "not_required";
321
+ }
322
+
323
+ function buildNoDataReport() {
324
+ const safeNextAction = "Continue with bounded work and create proof.";
325
+ return {
326
+ schemaVersion: CONTRACT,
327
+ generatedAt: nowIso(),
328
+ status: "no_data",
329
+ redacted: true,
330
+ summary: {
331
+ mismatchesDetected: 0,
332
+ scopeRepairsApplied: 0,
333
+ approvalsAvoided: 0,
334
+ approvalsStillRequired: 0,
335
+ blockedAfterRepair: 0,
336
+ filesAvoided: 0,
337
+ actionsAvoided: 0,
338
+ safeNextAction,
339
+ },
340
+ requestedScope: {
341
+ source: "none",
342
+ intentType: "unknown",
343
+ files: [],
344
+ actions: [],
345
+ targets: [],
346
+ riskTier: "unknown",
347
+ },
348
+ plannedAction: {
349
+ source: "none",
350
+ files: [],
351
+ actions: [],
352
+ targets: [],
353
+ riskTier: "unknown",
354
+ approvalBeforeRepair: "unknown",
355
+ },
356
+ repairedScope: {
357
+ applied: false,
358
+ repairType: "none",
359
+ files: [],
360
+ actions: [],
361
+ targets: [],
362
+ riskTier: "unknown",
363
+ approvalAfterRepair: "unknown",
364
+ approvalAvoided: false,
365
+ },
366
+ decisions: ["no_data"],
367
+ reasonCodes: ["no_requested_scope_available", "no_planned_action_available", "safe_next_action_available"],
368
+ wasteSignals: {
369
+ scopeExpansionAvoided: false,
370
+ unnecessaryFilesAvoided: 0,
371
+ unnecessaryActionsAvoided: 0,
372
+ approvalAvoided: false,
373
+ confidence: "none",
374
+ },
375
+ carryForward: {
376
+ nextRunRefs: [],
377
+ boundaryRefs: [],
378
+ productHomeRefs: [],
379
+ evidenceRefs: [],
380
+ },
381
+ integrationRefs: {
382
+ boundary: [],
383
+ nextRun: [],
384
+ productHome: [],
385
+ status: [],
386
+ dashboard: [],
387
+ outcomeEvidence: [],
388
+ },
389
+ privacy: buildPrivacySection(),
390
+ claimSafety: buildClaimSafetySection(),
391
+ text: {
392
+ found: "no requested/planned scope pair available",
393
+ repaired: "none",
394
+ approval: "unknown",
395
+ },
396
+ };
397
+ }
398
+
399
+ function buildPrivacySection() {
400
+ return {
401
+ localOnly: true,
402
+ rawPromptStored: false,
403
+ rawCodeStored: false,
404
+ secretsStored: false,
405
+ screenshotsStored: false,
406
+ fullLogsStored: false,
407
+ privatePathsStored: false,
408
+ redacted: true,
409
+ };
410
+ }
411
+
412
+ function buildClaimSafetySection() {
413
+ return {
414
+ approvalAlwaysAvoided: false,
415
+ guaranteedSafe: false,
416
+ autonomousApproval: false,
417
+ fullPolicyEnforcement: false,
418
+ runtimeBoundaryRewrite: false,
419
+ savingsGuaranteed: false,
420
+ };
421
+ }
422
+
423
+ function compareScope(requested, planned) {
424
+ const reasonCodes = [];
425
+ const mismatches = [];
426
+
427
+ const requestedFiles = new Set(requested.files || []);
428
+ const plannedFiles = new Set(planned.files || []);
429
+ const requestedActions = new Set(requested.actions || []);
430
+ const plannedActions = new Set(planned.actions || []);
431
+ const requestedTargets = new Set(requested.targets || []);
432
+ const plannedTargets = new Set(planned.targets || []);
433
+
434
+ const extraFiles = [...plannedFiles].filter((item) => !requestedFiles.has(item));
435
+ const extraActions = [...plannedActions].filter((item) => !requestedActions.has(item));
436
+ const extraTargets = [...plannedTargets].filter((item) => !requestedTargets.has(item));
437
+
438
+ if (requested.files.length > 0 && extraFiles.length > 0) {
439
+ mismatches.push("file_scope");
440
+ reasonCodes.push("scope_expansion_detected", "file_scope_expanded");
441
+ }
442
+ if (requested.actions.length > 0 && extraActions.length > 0) {
443
+ mismatches.push("action_scope");
444
+ reasonCodes.push("scope_expansion_detected", "action_scope_expanded");
445
+ }
446
+ if (requested.targets.length > 0 && extraTargets.length > 0) {
447
+ mismatches.push("target_scope");
448
+ reasonCodes.push("scope_expansion_detected", "target_scope_expanded");
449
+ }
450
+
451
+ if (requested.intentType === "read_only" && planned.actions.some((item) => item !== "file_read" && item !== "read_only")) {
452
+ mismatches.push("read_only_violation");
453
+ reasonCodes.push("write_after_read_only_request");
454
+ }
455
+ if (requested.intentType === "docs_only" && planned.files.some((item) => !(item.startsWith("docs/") || item.endsWith(".md")))) {
456
+ mismatches.push("docs_violation");
457
+ reasonCodes.push("docs_request_expanded_to_source");
458
+ }
459
+ if (requested.intentType === "package_review" && planned.actions.includes("package_install")) {
460
+ mismatches.push("package_violation");
461
+ reasonCodes.push("package_install_after_review_request");
462
+ }
463
+ if (requested.intentType === "browser_local" && planned.targets.some((item) => !/^(localhost|127\.0\.0\.1|0\.0\.0\.0)/.test(item))) {
464
+ mismatches.push("external_target_violation");
465
+ reasonCodes.push("external_target_after_local_request");
466
+ }
467
+
468
+ return {
469
+ mismatches: unique(mismatches),
470
+ reasonCodes: unique(reasonCodes),
471
+ extraFiles,
472
+ extraActions,
473
+ extraTargets,
474
+ };
475
+ }
476
+
477
+ function repairScope(requested, planned, comparison, repairedSeed) {
478
+ if (!requested || !planned) {
479
+ return {
480
+ repaired: {
481
+ applied: false,
482
+ repairType: "none",
483
+ files: [],
484
+ actions: [],
485
+ targets: [],
486
+ riskTier: "unknown",
487
+ approvalAfterRepair: "unknown",
488
+ approvalAvoided: false,
489
+ },
490
+ decisions: [],
491
+ reasonCodes: [],
492
+ foundLine: "no requested/planned scope pair available",
493
+ repairedLine: "none",
494
+ approvalLine: "unknown",
495
+ };
496
+ }
497
+
498
+ if (requested.intentType === "unknown" && planned.riskTier === "high") {
499
+ return {
500
+ repaired: {
501
+ applied: false,
502
+ repairType: "blocked_unrepairable",
503
+ files: [],
504
+ actions: [],
505
+ targets: [],
506
+ riskTier: "high",
507
+ approvalAfterRepair: "blocked",
508
+ approvalAvoided: false,
509
+ },
510
+ decisions: ["mismatch_detected", "blocked_unrepairable_scope"],
511
+ reasonCodes: unique([...comparison.reasonCodes, "blocked_unrepairable_scope"]),
512
+ foundLine: "requested scope is missing and the planned action is too broad to repair safely",
513
+ repairedLine: "blocked as unrepairable without explicit scope",
514
+ approvalLine: "blocked",
515
+ };
516
+ }
517
+
518
+ let files = repairedSeed?.files?.length ? repairedSeed.files.slice() : planned.files.slice();
519
+ let actions = repairedSeed?.actions?.length ? repairedSeed.actions.slice() : planned.actions.slice();
520
+ let targets = repairedSeed?.targets?.length ? repairedSeed.targets.slice() : planned.targets.slice();
521
+ let repairType = "none";
522
+ const decisions = [];
523
+ const reasonCodes = [];
524
+
525
+ if (comparison.mismatches.length > 0) {
526
+ decisions.push("mismatch_detected");
527
+ } else {
528
+ decisions.push("no_mismatch");
529
+ return {
530
+ repaired: {
531
+ applied: false,
532
+ repairType,
533
+ files,
534
+ actions,
535
+ targets,
536
+ riskTier: computeRiskTier({ files, actions, targets }),
537
+ approvalAfterRepair: computeApprovalState({ files, actions, targets, riskTier: computeRiskTier({ files, actions, targets }) }),
538
+ approvalAvoided: false,
539
+ },
540
+ decisions,
541
+ reasonCodes: ["no_scope_mismatch_detected", "safe_next_action_available"],
542
+ foundLine: "planned action already matches the requested scope",
543
+ repairedLine: "none",
544
+ approvalLine: "not required",
545
+ };
546
+ }
547
+
548
+ if (requested.files.length > 0) {
549
+ files = requested.files.slice();
550
+ repairType = "reduce_files";
551
+ decisions.push("repaired_to_requested_scope");
552
+ reasonCodes.push("reduced_to_user_requested_scope");
553
+ }
554
+
555
+ if (requested.actions.length > 0) {
556
+ actions = requested.actions.slice();
557
+ }
558
+
559
+ if (requested.targets.length > 0) {
560
+ targets = requested.targets.slice();
561
+ }
562
+
563
+ if (requested.intentType === "read_only") {
564
+ actions = ["file_read"];
565
+ repairType = "downgrade_to_read_only";
566
+ decisions.push("downgraded_to_read_only");
567
+ reasonCodes.push("downgraded_to_read_only");
568
+ } else if (requested.intentType === "browser_local") {
569
+ actions = actions.includes("browser_local") ? ["browser_local"] : ["browser_local"];
570
+ targets = requested.targets.length > 0 ? requested.targets.slice() : targets.filter((item) => /^(localhost|127\.0\.0\.1|0\.0\.0\.0)/.test(item));
571
+ repairType = "limit_to_local";
572
+ decisions.push("limited_to_local_target");
573
+ if (comparison.extraTargets.length > 0) decisions.push("external_target_removed");
574
+ reasonCodes.push("limited_to_local_target", "external_target_removed");
575
+ } else if (requested.intentType === "package_review") {
576
+ actions = ["package_review"];
577
+ repairType = "remove_package_install";
578
+ decisions.push("package_install_removed_for_metadata_review");
579
+ reasonCodes.push("package_install_removed");
580
+ } else if (requested.intentType === "docs_only") {
581
+ files = requested.files.length > 0 ? requested.files.slice() : planned.files.filter((item) => item.startsWith("docs/") || item.endsWith(".md"));
582
+ actions = ["docs_write"];
583
+ repairType = repairType === "none" ? "reduce_files" : repairType;
584
+ decisions.push("repaired_to_requested_scope");
585
+ reasonCodes.push("reduced_to_user_requested_scope");
586
+ }
587
+
588
+ files = unique(files);
589
+ actions = unique(actions);
590
+ targets = unique(targets);
591
+
592
+ const riskTier = computeRiskTier({ files, actions, targets });
593
+ const approvalAfterRepair = computeApprovalState({ files, actions, targets, riskTier });
594
+ const approvalAvoided = approvalAfterRepair === "not_required";
595
+
596
+ return {
597
+ repaired: {
598
+ applied: true,
599
+ repairType,
600
+ files,
601
+ actions,
602
+ targets,
603
+ riskTier,
604
+ approvalAfterRepair,
605
+ approvalAvoided,
606
+ },
607
+ decisions,
608
+ reasonCodes: unique(reasonCodes),
609
+ foundLine: buildFoundLine(requested, planned, comparison),
610
+ repairedLine: buildRepairedLine(requested, planned, { files, actions, targets, repairType }),
611
+ approvalLine: approvalAfterRepair === "approval_required" && isSensitiveScope({ files, actions, targets, riskTier })
612
+ ? "still required because scoped work still touches a sensitive area"
613
+ : approvalAfterRepair === "blocked"
614
+ ? "blocked"
615
+ : approvalAvoided
616
+ ? "avoided"
617
+ : "not required",
618
+ };
619
+ }
620
+
621
+ function buildFoundLine(requested, planned, comparison) {
622
+ if (requested.intentType === "read_only" && comparison.mismatches.includes("read_only_violation")) {
623
+ return "planned write expanded beyond a read-only request";
624
+ }
625
+ if (requested.intentType === "docs_only" && comparison.mismatches.includes("docs_violation")) {
626
+ return "planned source changes expanded beyond the docs-only request";
627
+ }
628
+ if (requested.intentType === "package_review" && comparison.mismatches.includes("package_violation")) {
629
+ return "planned package install expanded beyond the metadata review request";
630
+ }
631
+ if (requested.intentType === "browser_local" && comparison.mismatches.includes("external_target_violation")) {
632
+ return "planned browser target expanded beyond local proof scope";
633
+ }
634
+ return "planned action expanded beyond requested scope";
635
+ }
636
+
637
+ function buildRepairedLine(requested, planned, repaired) {
638
+ if (repaired.repairType === "downgrade_to_read_only") {
639
+ return "downgraded planned write scope to read-only";
640
+ }
641
+ if (repaired.repairType === "limit_to_local") {
642
+ return "limited planned targets to local-only proof";
643
+ }
644
+ if (repaired.repairType === "remove_package_install") {
645
+ return "removed package install and kept metadata review only";
646
+ }
647
+ if (requested.files.length > 0 && planned.files.length > requested.files.length) {
648
+ return `reduced ${planned.files.length} planned files to ${requested.files.length} requested files`;
649
+ }
650
+ if (requested.actions.length > 0 && planned.actions.length > requested.actions.length) {
651
+ return `reduced ${planned.actions.length} planned actions to ${requested.actions.length} requested actions`;
652
+ }
653
+ if (requested.targets.length > 0 && planned.targets.length > requested.targets.length) {
654
+ return `reduced ${planned.targets.length} planned targets to ${requested.targets.length} requested targets`;
655
+ }
656
+ return "narrowed the planned action to the requested scope";
657
+ }
658
+
659
+ function buildSafeNextAction(requested, repaired, status) {
660
+ if (status === "no_data") return "Continue with bounded work and create proof.";
661
+ if (status === "blocked") return "Keep the action blocked and confirm the intended scope explicitly.";
662
+ if (repaired.approvalAfterRepair === "approval_required") {
663
+ if (requested.intentType === "read_only") return "Continue read-only or approve the scoped sensitive change.";
664
+ return "Approve only the scoped sensitive change or continue read-only.";
665
+ }
666
+ if (requested.intentType === "read_only") return "Continue with bounded read-only review.";
667
+ if (requested.intentType === "browser_local") return "Continue with localhost-only proof.";
668
+ return "Continue with bounded implementation.";
669
+ }
670
+
671
+ function buildReportFromPair(cwd, pair) {
672
+ if (!pair || !pair.requested || !pair.planned) {
673
+ return buildNoDataReport();
674
+ }
675
+
676
+ const requested = pair.requested;
677
+ const planned = pair.planned;
678
+ const comparison = compareScope(requested, planned);
679
+ const approvalBeforeRepair = computeApprovalState(planned, { missingRequested: requested.intentType === "unknown" });
680
+ const repairResult = repairScope(requested, planned, comparison, pair.repairedSeed);
681
+ const safeNextAction = buildSafeNextAction(requested, repairResult.repaired, repairResult.repaired.approvalAfterRepair === "blocked" ? "blocked" : null);
682
+ const filesAvoided = Math.max(0, diffCount(planned.files, repairResult.repaired.files));
683
+ const actionsAvoided = Math.max(0, diffCount(planned.actions, repairResult.repaired.actions));
684
+ const approvalAvoided = approvalBeforeRepair !== "not_required" && repairResult.repaired.approvalAfterRepair === "not_required";
685
+ const approvalsStillRequired = repairResult.repaired.approvalAfterRepair === "approval_required" ? 1 : 0;
686
+ const blockedAfterRepair = repairResult.repaired.approvalAfterRepair === "blocked" ? 1 : 0;
687
+
688
+ const status = blockedAfterRepair > 0
689
+ ? "blocked"
690
+ : comparison.mismatches.length > 0 || approvalsStillRequired > 0
691
+ ? "warn"
692
+ : "pass";
693
+
694
+ const decisions = unique([
695
+ ...repairResult.decisions,
696
+ ...(approvalAvoided ? ["approval_avoided_after_repair"] : []),
697
+ ...(approvalsStillRequired > 0 ? ["approval_still_required_after_repair"] : []),
698
+ ]);
699
+
700
+ const reasonCodes = unique([
701
+ ...comparison.reasonCodes,
702
+ ...repairResult.reasonCodes,
703
+ ...(approvalAvoided ? ["approval_avoided"] : []),
704
+ ...(approvalsStillRequired > 0 ? ["approval_still_required"] : []),
705
+ ...(filesAvoided > 0 ? ["unnecessary_files_avoided"] : []),
706
+ ...(actionsAvoided > 0 ? ["unnecessary_actions_avoided"] : []),
707
+ ...(comparison.mismatches.length > 0 ? ["safe_next_action_available"] : ["no_scope_mismatch_detected", "safe_next_action_available"]),
708
+ "raw_data_excluded",
709
+ ]);
710
+
711
+ const report = {
712
+ schemaVersion: CONTRACT,
713
+ generatedAt: nowIso(),
714
+ status,
715
+ redacted: true,
716
+ summary: {
717
+ mismatchesDetected: comparison.mismatches.length > 0 ? 1 : 0,
718
+ scopeRepairsApplied: repairResult.repaired.applied ? 1 : 0,
719
+ approvalsAvoided: approvalAvoided ? 1 : 0,
720
+ approvalsStillRequired,
721
+ blockedAfterRepair,
722
+ filesAvoided,
723
+ actionsAvoided,
724
+ safeNextAction,
725
+ },
726
+ requestedScope: requested,
727
+ plannedAction: {
728
+ ...planned,
729
+ approvalBeforeRepair,
730
+ },
731
+ repairedScope: {
732
+ ...repairResult.repaired,
733
+ approvalAfterRepair: repairResult.repaired.approvalAfterRepair,
734
+ approvalAvoided,
735
+ },
736
+ decisions,
737
+ reasonCodes,
738
+ wasteSignals: {
739
+ scopeExpansionAvoided: comparison.mismatches.length > 0 && repairResult.repaired.applied,
740
+ unnecessaryFilesAvoided: filesAvoided,
741
+ unnecessaryActionsAvoided: actionsAvoided,
742
+ approvalAvoided,
743
+ confidence: pair.source === "boundary" ? "estimated" : "measured",
744
+ },
745
+ carryForward: {
746
+ nextRunRefs: [LATEST_REPORT_REL],
747
+ boundaryRefs: pair.source === "boundary" ? [BOUNDARY_REPORT_REL] : [],
748
+ productHomeRefs: [LATEST_REPORT_REL],
749
+ evidenceRefs: [],
750
+ },
751
+ integrationRefs: {
752
+ boundary: pair.source === "boundary" ? [BOUNDARY_REPORT_REL] : [],
753
+ nextRun: [LATEST_REPORT_REL],
754
+ productHome: [LATEST_REPORT_REL],
755
+ status: [LATEST_REPORT_REL],
756
+ dashboard: [LATEST_REPORT_REL],
757
+ outcomeEvidence: [],
758
+ },
759
+ privacy: buildPrivacySection(),
760
+ claimSafety: buildClaimSafetySection(),
761
+ };
762
+
763
+ report.text = {
764
+ found: repairResult.foundLine,
765
+ repaired: repairResult.repairedLine,
766
+ approval: repairResult.approvalLine,
767
+ };
768
+
769
+ return report;
770
+ }
771
+
772
+ function buildScopeRepairReport(cwd = process.cwd(), options = {}) {
773
+ const pair = loadDerivedPair(cwd, options);
774
+ return buildReportFromPair(cwd, pair);
775
+ }
776
+
777
+ function writeScopeRepairReport(cwd, report) {
778
+ safeWriteJson(cwd, LATEST_REPORT_REL, report);
779
+ return LATEST_REPORT_REL;
780
+ }
781
+
782
+ function generateScopeRepairReport(cwd = process.cwd(), options = {}) {
783
+ const report = buildScopeRepairReport(cwd, options);
784
+ const written = options.write === false ? null : writeScopeRepairReport(cwd, report);
785
+ return {
786
+ report,
787
+ written: Boolean(written),
788
+ jsonPath: written,
789
+ };
790
+ }
791
+
792
+ function readLatestScopeRepairReport(cwd = process.cwd()) {
793
+ return safeReadJson(cwd, LATEST_REPORT_REL, null);
794
+ }
795
+
796
+ function formatScopeRepairText(report) {
797
+ const lines = [
798
+ "Avorelo Scope Repair",
799
+ `Status: ${TEXT_STATUS_LABELS[report.status] || String(report.status || "warn").toUpperCase()}`,
800
+ `Found: ${report.text?.found || "planned action already matches the requested scope"}`,
801
+ `Repaired: ${report.text?.repaired || "none"}`,
802
+ `Next: ${report.summary?.safeNextAction || "Continue with bounded work and create proof."}`,
803
+ ];
804
+ if (report.status !== "no_data") {
805
+ lines.splice(4, 0, `Approval: ${report.text?.approval || "not required"}`);
806
+ }
807
+ return lines.join("\n");
808
+ }
809
+
810
+ function buildDashboardCard(report) {
811
+ return {
812
+ title: "Scope Repair Before Approval",
813
+ statusLabel: TEXT_STATUS_LABELS[report.status] || String(report.status || "warn").toUpperCase(),
814
+ found: report.text?.found || "No scope mismatch detected.",
815
+ repaired: report.text?.repaired || "none",
816
+ approval: report.text?.approval || "not required",
817
+ safeNextAction: report.summary?.safeNextAction || "Continue with bounded work and create proof.",
818
+ };
819
+ }
820
+
821
+ function buildScopeRepairSurface(cwd = process.cwd(), options = {}) {
822
+ const report = readLatestScopeRepairReport(cwd)
823
+ || (options.buildIfMissing === true ? buildScopeRepairReport(cwd, { write: false }) : null);
824
+ if (!report) {
825
+ return {
826
+ status: "not_run",
827
+ showInStatus: false,
828
+ showInDashboard: false,
829
+ repairsApplied: 0,
830
+ approvalsAvoided: 0,
831
+ approvalsStillRequired: 0,
832
+ nextAction: "Run `avorelo scope-repair --text` when you have requested/planned scope evidence.",
833
+ latestReportPath: null,
834
+ statusLine: null,
835
+ dashboardCard: null,
836
+ };
837
+ }
838
+
839
+ return {
840
+ status: report.status,
841
+ showInStatus: true,
842
+ showInDashboard: true,
843
+ repairsApplied: Number(report.summary?.scopeRepairsApplied || 0),
844
+ approvalsAvoided: Number(report.summary?.approvalsAvoided || 0),
845
+ approvalsStillRequired: Number(report.summary?.approvalsStillRequired || 0),
846
+ nextAction: report.summary?.safeNextAction || "Continue with bounded work and create proof.",
847
+ latestReportPath: LATEST_REPORT_REL,
848
+ statusLine: `Scope repair: ${TEXT_STATUS_LABELS[report.status] || String(report.status || "warn").toUpperCase()} · repairs ${report.summary?.scopeRepairsApplied || 0} · avoided ${report.summary?.approvalsAvoided || 0} · review ${report.summary?.approvalsStillRequired || 0} · next: ${report.summary?.safeNextAction || "Continue with bounded work and create proof."}`,
849
+ dashboardCard: buildDashboardCard(report),
850
+ report,
851
+ };
852
+ }
853
+
854
+ module.exports = {
855
+ CONTRACT,
856
+ REPORT_DIR_REL,
857
+ LATEST_REPORT_REL,
858
+ DECISION_TYPES,
859
+ buildScopeRepairReport,
860
+ writeScopeRepairReport,
861
+ generateScopeRepairReport,
862
+ readLatestScopeRepairReport,
863
+ formatScopeRepairText,
864
+ buildScopeRepairSurface,
865
+ };