avorelo 0.1.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 (258) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +56 -0
  3. package/bin/avorelo +9 -0
  4. package/package.json +135 -0
  5. package/scripts/README.md +40 -0
  6. package/scripts/cco-dashboard.js +252 -0
  7. package/scripts/cco-status.js +430 -0
  8. package/scripts/lib/activation/account-state.js +37 -0
  9. package/scripts/lib/activation/activation-runner.js +546 -0
  10. package/scripts/lib/activation/activation-self-healing.js +480 -0
  11. package/scripts/lib/activation/activation-state.js +83 -0
  12. package/scripts/lib/activation/activation-summary.js +191 -0
  13. package/scripts/lib/activation/adapters/claude-code.js +77 -0
  14. package/scripts/lib/activation/adapters/codex-cli.js +52 -0
  15. package/scripts/lib/activation/adapters/cursor.js +37 -0
  16. package/scripts/lib/activation/adapters/github-agent.js +39 -0
  17. package/scripts/lib/activation/adapters/terminal.js +42 -0
  18. package/scripts/lib/activation/adapters/vscode.js +39 -0
  19. package/scripts/lib/activation/adapters/windsurf.js +37 -0
  20. package/scripts/lib/activation/ai-surface-detector.js +151 -0
  21. package/scripts/lib/activation/connect-account.js +145 -0
  22. package/scripts/lib/activation/detect-environment.js +75 -0
  23. package/scripts/lib/activation/detect-hosts.js +62 -0
  24. package/scripts/lib/activation/format-activation-output.js +109 -0
  25. package/scripts/lib/activation/next-action.js +43 -0
  26. package/scripts/lib/activation/repair-engine.js +219 -0
  27. package/scripts/lib/activation-distribution-readiness.js +507 -0
  28. package/scripts/lib/adapter-conformance.js +176 -0
  29. package/scripts/lib/adapter-readiness.js +417 -0
  30. package/scripts/lib/adapter-safety-boundaries.js +335 -0
  31. package/scripts/lib/adapter-technical-readiness-gate.js +205 -0
  32. package/scripts/lib/agent-access-governance.js +455 -0
  33. package/scripts/lib/agent-enforcement.js +765 -0
  34. package/scripts/lib/agent-policy-profile.js +210 -0
  35. package/scripts/lib/agent-security/action-evaluator.js +507 -0
  36. package/scripts/lib/agent-security/adapter-registry.js +98 -0
  37. package/scripts/lib/agent-security/auto-policy.js +139 -0
  38. package/scripts/lib/agent-security/bounded-scan.js +93 -0
  39. package/scripts/lib/agent-security/enforcement-adapter.js +174 -0
  40. package/scripts/lib/agent-security/enforcement-engine.js +1129 -0
  41. package/scripts/lib/agent-security/file-write-adapter.js +183 -0
  42. package/scripts/lib/agent-security/file-write-rules.js +178 -0
  43. package/scripts/lib/agent-security/index.js +3342 -0
  44. package/scripts/lib/agent-security/instruction-risk.js +181 -0
  45. package/scripts/lib/agent-security/mcp-action-adapter.js +185 -0
  46. package/scripts/lib/agent-security/mcp-action-rules.js +184 -0
  47. package/scripts/lib/agent-security/package-action-adapter.js +175 -0
  48. package/scripts/lib/agent-security/package-action-rules.js +233 -0
  49. package/scripts/lib/agent-security/performance.js +148 -0
  50. package/scripts/lib/agent-security/permission-minimizer.js +403 -0
  51. package/scripts/lib/agent-security/scan-cache.js +74 -0
  52. package/scripts/lib/agent-security/source-trust.js +146 -0
  53. package/scripts/lib/ai-install-prompt.js +288 -0
  54. package/scripts/lib/ai-workspace-hygiene.js +1499 -0
  55. package/scripts/lib/alpha-activation.js +520 -0
  56. package/scripts/lib/alpha-feedback.js +263 -0
  57. package/scripts/lib/alpha-readiness-gate.js +332 -0
  58. package/scripts/lib/anti-gaming.js +169 -0
  59. package/scripts/lib/artifact-health.js +431 -0
  60. package/scripts/lib/attribution.js +180 -0
  61. package/scripts/lib/audit.js +289 -0
  62. package/scripts/lib/avorelo-skill-registry.js +810 -0
  63. package/scripts/lib/batch-jobs.js +71 -0
  64. package/scripts/lib/brain-pack.js +578 -0
  65. package/scripts/lib/brand-boundary.js +424 -0
  66. package/scripts/lib/brand.js +74 -0
  67. package/scripts/lib/browser-capability.js +1048 -0
  68. package/scripts/lib/browser-proof-preflight.js +321 -0
  69. package/scripts/lib/cache-readiness.js +187 -0
  70. package/scripts/lib/canonical-reentry.js +162 -0
  71. package/scripts/lib/capability-packs.js +314 -0
  72. package/scripts/lib/capability-recommender.js +512 -0
  73. package/scripts/lib/capability-registry.js +1059 -0
  74. package/scripts/lib/carry-forward-surfacing.js +194 -0
  75. package/scripts/lib/ccusage-adapter.js +188 -0
  76. package/scripts/lib/company-loop.js +1149 -0
  77. package/scripts/lib/config.js +637 -0
  78. package/scripts/lib/context-acquisition-plan.js +287 -0
  79. package/scripts/lib/context-budget-guard.js +170 -0
  80. package/scripts/lib/context-budget-scanner.js +257 -0
  81. package/scripts/lib/context-optimizer.js +715 -0
  82. package/scripts/lib/context-reduction-plan.js +178 -0
  83. package/scripts/lib/context-safety.js +88 -0
  84. package/scripts/lib/context-savings-engine.js +158 -0
  85. package/scripts/lib/cost-evidence.js +254 -0
  86. package/scripts/lib/cross-host-install-plan.js +308 -0
  87. package/scripts/lib/cross-host-install-readiness.js +237 -0
  88. package/scripts/lib/cross-host-value-flow.js +268 -0
  89. package/scripts/lib/dashboard.js +900 -0
  90. package/scripts/lib/design-partner-feedback.js +346 -0
  91. package/scripts/lib/entitlements.js +100 -0
  92. package/scripts/lib/execution-packet.js +559 -0
  93. package/scripts/lib/experimentation-events.js +547 -0
  94. package/scripts/lib/external-capability-compliance.js +107 -0
  95. package/scripts/lib/external-user-simulation.js +166 -0
  96. package/scripts/lib/failure-recovery-readiness.js +81 -0
  97. package/scripts/lib/failure-recovery.js +419 -0
  98. package/scripts/lib/feedback-intelligence.js +537 -0
  99. package/scripts/lib/feedback-signals.js +205 -0
  100. package/scripts/lib/file-integrity.js +68 -0
  101. package/scripts/lib/fsx.js +127 -0
  102. package/scripts/lib/full-readiness-gate.js +451 -0
  103. package/scripts/lib/guidance-builder.js +174 -0
  104. package/scripts/lib/hook-apply.js +1019 -0
  105. package/scripts/lib/hook-baseline.js +310 -0
  106. package/scripts/lib/hook-config-preview.js +275 -0
  107. package/scripts/lib/hook-contracts.js +290 -0
  108. package/scripts/lib/hook-safety-boundary-readiness.js +80 -0
  109. package/scripts/lib/host-capability-matrix.js +351 -0
  110. package/scripts/lib/host-support-context.js +254 -0
  111. package/scripts/lib/http-hook-action.js +538 -0
  112. package/scripts/lib/install-ai-readiness.js +84 -0
  113. package/scripts/lib/install-intake-risk.js +1037 -0
  114. package/scripts/lib/install-journey-intelligence.js +329 -0
  115. package/scripts/lib/intervention-guidance.js +57 -0
  116. package/scripts/lib/known-limitations.js +115 -0
  117. package/scripts/lib/l8-path-truth.js +146 -0
  118. package/scripts/lib/launch-hardening-gate.js +436 -0
  119. package/scripts/lib/launch-readiness.js +628 -0
  120. package/scripts/lib/learning-memory.js +686 -0
  121. package/scripts/lib/lifecycle-hooks.js +802 -0
  122. package/scripts/lib/local-package-smoke.js +423 -0
  123. package/scripts/lib/local-pricing.js +299 -0
  124. package/scripts/lib/mcp-enforcement.js +311 -0
  125. package/scripts/lib/mcp-least-privilege-policy.js +303 -0
  126. package/scripts/lib/mcp-tool-inventory.js +388 -0
  127. package/scripts/lib/mcp-tool-risk.js +0 -0
  128. package/scripts/lib/memory.js +335 -0
  129. package/scripts/lib/metrics.js +699 -0
  130. package/scripts/lib/micro-proof.js +133 -0
  131. package/scripts/lib/next-run-context.js +436 -0
  132. package/scripts/lib/operating-value.js +1648 -0
  133. package/scripts/lib/optimization-v3.js +122 -0
  134. package/scripts/lib/orchestration/adapters/_shared.js +49 -0
  135. package/scripts/lib/orchestration/adapters/aider.js +18 -0
  136. package/scripts/lib/orchestration/adapters/claude-code.js +35 -0
  137. package/scripts/lib/orchestration/adapters/codex.js +35 -0
  138. package/scripts/lib/orchestration/adapters/gemini-cli.js +18 -0
  139. package/scripts/lib/orchestration/adapters/git.js +25 -0
  140. package/scripts/lib/orchestration/adapters/index.js +31 -0
  141. package/scripts/lib/orchestration/adapters/lm-studio.js +18 -0
  142. package/scripts/lib/orchestration/adapters/ollama.js +18 -0
  143. package/scripts/lib/orchestration/adapters/opencode.js +18 -0
  144. package/scripts/lib/orchestration/adapters/openrouter.js +18 -0
  145. package/scripts/lib/orchestration/adapters/test-runner.js +25 -0
  146. package/scripts/lib/orchestration/cli.js +438 -0
  147. package/scripts/lib/orchestration/execution-manager.js +279 -0
  148. package/scripts/lib/orchestration/handoff.js +314 -0
  149. package/scripts/lib/orchestration/index.js +456 -0
  150. package/scripts/lib/orchestration/inventory.js +47 -0
  151. package/scripts/lib/orchestration/model-discovery.js +498 -0
  152. package/scripts/lib/orchestration/model-profiler.js +170 -0
  153. package/scripts/lib/orchestration/model-profiles.js +252 -0
  154. package/scripts/lib/orchestration/model-refresh-policy.js +72 -0
  155. package/scripts/lib/orchestration/proof-writer.js +349 -0
  156. package/scripts/lib/orchestration/provider-discovery/aider.js +49 -0
  157. package/scripts/lib/orchestration/provider-discovery/claude-code.js +56 -0
  158. package/scripts/lib/orchestration/provider-discovery/codex.js +49 -0
  159. package/scripts/lib/orchestration/provider-discovery/common.js +186 -0
  160. package/scripts/lib/orchestration/provider-discovery/gemini.js +106 -0
  161. package/scripts/lib/orchestration/provider-discovery/lm-studio.js +118 -0
  162. package/scripts/lib/orchestration/provider-discovery/models-dev.js +12 -0
  163. package/scripts/lib/orchestration/provider-discovery/ollama.js +100 -0
  164. package/scripts/lib/orchestration/provider-discovery/opencode.js +47 -0
  165. package/scripts/lib/orchestration/provider-discovery/openrouter.js +44 -0
  166. package/scripts/lib/orchestration/risk-classifier.js +130 -0
  167. package/scripts/lib/orchestration/routing-policy.js +486 -0
  168. package/scripts/lib/orchestration/settings.js +112 -0
  169. package/scripts/lib/orchestration/state.js +165 -0
  170. package/scripts/lib/orchestration/verification-manager.js +138 -0
  171. package/scripts/lib/output-profiles.js +146 -0
  172. package/scripts/lib/package-content-audit.js +368 -0
  173. package/scripts/lib/package-runtime.js +278 -0
  174. package/scripts/lib/plan-surface.js +53 -0
  175. package/scripts/lib/plans.js +2318 -0
  176. package/scripts/lib/policy-provider.js +27 -0
  177. package/scripts/lib/prelaunch-activation-readiness.js +409 -0
  178. package/scripts/lib/prelaunch-evidence-store.js +816 -0
  179. package/scripts/lib/prelaunch-intelligence.js +869 -0
  180. package/scripts/lib/pricing-experiment.js +118 -0
  181. package/scripts/lib/pro-moment-events.js +77 -0
  182. package/scripts/lib/pro-moment-state.js +227 -0
  183. package/scripts/lib/pro-moments.js +1216 -0
  184. package/scripts/lib/product-learning-events.js +629 -0
  185. package/scripts/lib/project-profile.js +555 -0
  186. package/scripts/lib/prompt-compiler.js +280 -0
  187. package/scripts/lib/prompt-lint.js +32 -0
  188. package/scripts/lib/prompt-suggestions.js +52 -0
  189. package/scripts/lib/proof-canonical.js +398 -0
  190. package/scripts/lib/proof-drilldown.js +383 -0
  191. package/scripts/lib/proof-events.js +342 -0
  192. package/scripts/lib/proof-history.js +243 -0
  193. package/scripts/lib/proof-metrics.js +296 -0
  194. package/scripts/lib/proof-outcome-evidence.js +134 -0
  195. package/scripts/lib/proof-receipt.js +335 -0
  196. package/scripts/lib/proof-record.js +461 -0
  197. package/scripts/lib/public-activation-distribution-gate.js +258 -0
  198. package/scripts/lib/public-cli.js +3891 -0
  199. package/scripts/lib/public-distribution-truth.js +211 -0
  200. package/scripts/lib/public-install-claim-checker.js +294 -0
  201. package/scripts/lib/publish-provenance-readiness.js +283 -0
  202. package/scripts/lib/readiness-delta.js +218 -0
  203. package/scripts/lib/readiness-evidence-closure.js +196 -0
  204. package/scripts/lib/reentry-memory-capture.js +241 -0
  205. package/scripts/lib/reentry-memory-retrieval.js +302 -0
  206. package/scripts/lib/reentry-memory-status.js +146 -0
  207. package/scripts/lib/reentry-memory-store.js +178 -0
  208. package/scripts/lib/reentry-state.js +66 -0
  209. package/scripts/lib/release-candidate-bundle.js +166 -0
  210. package/scripts/lib/remediation.js +81 -0
  211. package/scripts/lib/repo-map.js +391 -0
  212. package/scripts/lib/run-improvements-lifecycle.js +330 -0
  213. package/scripts/lib/run-improvements.js +789 -0
  214. package/scripts/lib/runtime-decision-policy.js +387 -0
  215. package/scripts/lib/safe-path-engine.js +705 -0
  216. package/scripts/lib/safe-run-controller.js +887 -0
  217. package/scripts/lib/score.js +262 -0
  218. package/scripts/lib/seamless-enforcement.js +329 -0
  219. package/scripts/lib/seamless-outcome.js +689 -0
  220. package/scripts/lib/seamless-reality-gate.js +5043 -0
  221. package/scripts/lib/security-risk-classifier.js +511 -0
  222. package/scripts/lib/security-scan.js +384 -0
  223. package/scripts/lib/session-context-optimizer.js +1211 -0
  224. package/scripts/lib/session-timing.js +315 -0
  225. package/scripts/lib/skill-hygiene.js +805 -0
  226. package/scripts/lib/skill-packs.js +161 -0
  227. package/scripts/lib/skills-operating-layer.js +580 -0
  228. package/scripts/lib/smart-work-routing.js +768 -0
  229. package/scripts/lib/source-catalog.js +700 -0
  230. package/scripts/lib/status-value-summary.js +32 -0
  231. package/scripts/lib/support-bundle.js +578 -0
  232. package/scripts/lib/task-continuation.js +440 -0
  233. package/scripts/lib/test-helpers.js +15 -0
  234. package/scripts/lib/tier.js +38 -0
  235. package/scripts/lib/token-context-quality-gate.js +370 -0
  236. package/scripts/lib/token-cost-capture.js +187 -0
  237. package/scripts/lib/token-cost-intelligence.js +358 -0
  238. package/scripts/lib/token-efficiency-evidence.js +213 -0
  239. package/scripts/lib/token-evidence.js +699 -0
  240. package/scripts/lib/tokenish.js +17 -0
  241. package/scripts/lib/tool-output-sandbox.js +304 -0
  242. package/scripts/lib/trust-audit.js +136 -0
  243. package/scripts/lib/unified-events.js +396 -0
  244. package/scripts/lib/upgrade-interruption-recovery.js +407 -0
  245. package/scripts/lib/usage-ledger.js +201 -0
  246. package/scripts/lib/value-ledger.js +130 -0
  247. package/scripts/lib/value-proof-calibration.js +531 -0
  248. package/scripts/lib/visual-qa.js +231 -0
  249. package/scripts/lib/voice-alpha.js +29 -0
  250. package/scripts/lib/work-aware-orchestration.js +976 -0
  251. package/scripts/lib/work-control-receipts.js +577 -0
  252. package/scripts/lib/work-ledger.js +1123 -0
  253. package/scripts/lib/work-panel-preview.js +352 -0
  254. package/scripts/lib/workflow-discipline.js +280 -0
  255. package/scripts/lib/workflow-signals.js +419 -0
  256. package/scripts/lib/workspace-map.js +281 -0
  257. package/scripts/lib/workspace-registry.js +1367 -0
  258. package/scripts/lib/workspace-resolver.js +480 -0
@@ -0,0 +1,166 @@
1
+ "use strict";
2
+
3
+ // ── External User Simulation ──────────────────────────────────────────────────
4
+ // Contract: avorelo.externalUserSimulation.v1
5
+ // Simulates an external user's first experience across 10 key scenarios.
6
+ // Does NOT modify user config, apply hooks, patch MCP, or run destructive commands.
7
+
8
+ const fs = require("fs");
9
+ const path = require("path");
10
+ const { nowIso } = require("./fsx");
11
+ const { appendProductLearningEvent } = require("./product-learning-events");
12
+
13
+ const CONTRACT = "avorelo.externalUserSimulation.v1";
14
+ const SCHEMA_VERSION = 1;
15
+ const SIM_DIR_REL = ".claude/cco/orchestration/full-readiness";
16
+ const ARTIFACT_REL = SIM_DIR_REL + "/latest-external-user-simulation.json";
17
+
18
+ function safeReadJson(absPath) {
19
+ try {
20
+ if (!fs.existsSync(absPath)) return null;
21
+ return JSON.parse(fs.readFileSync(absPath, "utf8").replace(/^/, ""));
22
+ } catch { return null; }
23
+ }
24
+
25
+ function buildExternalUserScenarios(cwd, options) {
26
+ options = options || {};
27
+ return [
28
+ { id: "scenario_1_see_install_prompt", title: "Fresh user sees install-ai prompt", description: "A new user runs `avorelo install-ai --prompt` and sees the one-prompt AI install experience.", expectedBehavior: "Compact prompt text appears. Approval boundaries are visible. No auto-apply.", safetyConstraints: ["no_config_modification", "no_auto_apply"] },
29
+ { id: "scenario_2_run_ai_install", title: "User runs AI install prompt in simulated order", description: "User follows the AI install prompt steps: install-ai, prelaunch-readiness, first-value-check.", expectedBehavior: "Each step returns a compact JSON result. Journey steps complete in order.", safetyConstraints: ["no_destructive_commands", "no_prod_deploy"] },
30
+ { id: "scenario_3_hooks_not_applied", title: "User has hooks not applied", description: "User runs `avorelo hooks doctor` and sees hooks are not yet applied.", expectedBehavior: "Doctor shows hooks_not_applied warning. safeNextAction points to `hooks apply --yes`.", safetyConstraints: ["no_auto_hook_apply", "requires_explicit_approval"] },
31
+ { id: "scenario_4_mcp_governance_warning", title: "User sees MCP governance warning", description: "User runs `avorelo mcp doctor` and sees MCP servers inventoried with risk scores.", expectedBehavior: "Inventory shows servers and risk levels. Policy is preview-only — no auto-patch.", safetyConstraints: ["no_mcp_config_patch", "preview_only"] },
32
+ { id: "scenario_5_token_cost_not_available", title: "User sees token/cost not_available", description: "User runs `avorelo token-cost` before completing any tasks.", expectedBehavior: "Status is not_available. Caveats explain estimates vs exact. No exact savings claimed.", safetyConstraints: ["no_exact_savings_claim", "caveats_required"] },
33
+ { id: "scenario_6_support_bundle", title: "User needs support bundle", description: "User runs `avorelo support-bundle --json` to get a redacted support bundle.", expectedBehavior: "Bundle is redacted. No raw prompts, code, secrets, or PII. Safe to share.", safetyConstraints: ["redacted", "no_raw_prompts", "no_raw_code", "no_secrets"] },
34
+ { id: "scenario_7_missing_proof_outcome", title: "User hits missing proof/outcome", description: "User runs `avorelo proof` before completing any task — no proof available.", expectedBehavior: "Compact message: no proof available. safeNextAction: run a task first.", safetyConstraints: ["no_false_proof_claim", "safeNextAction_required"] },
35
+ { id: "scenario_8_known_limitations", title: "User reads known limitations", description: "User runs `avorelo known-limitations --json` and reads the limitations register.", expectedBehavior: "Limitations are honest, categorized, and include mitigations. No hidden limitations.", safetyConstraints: ["honest_limitations", "no_hidden_limitations"] },
36
+ { id: "scenario_9_see_next_action", title: "User sees next action", description: "User runs `avorelo full-readiness --json` and sees a clear safeNextAction.", expectedBehavior: "safeNextAction is specific and actionable. No vague or generic next step.", safetyConstraints: ["specific_next_action", "actionable"] },
37
+ { id: "scenario_10_blocked_action_safe_next", title: "User gets blocked action with safeNextAction", description: "User attempts an action that is blocked. safeNextAction guides recovery.", expectedBehavior: "Blocked action shows safeNextAction. User is not left without guidance.", safetyConstraints: ["every_blocker_has_safeNextAction", "no_silent_failure"] },
38
+ ];
39
+ }
40
+
41
+ function evaluateExternalUserScenario(cwd, scenario, options) {
42
+ options = options || {};
43
+ function read(rel) { return safeReadJson(path.join(cwd, rel)); }
44
+ var status = "pass";
45
+ var finding = null;
46
+ var evidence = null;
47
+
48
+ switch (scenario.id) {
49
+ case "scenario_1_see_install_prompt": {
50
+ var ip = read(".claude/cco/orchestration/ai-install/latest-prompt.json");
51
+ if (!ip) { status = "warn"; finding = "AI install prompt not generated. Run: node bin/avorelo install-ai --json"; }
52
+ else if (!ip.requiresApprovalFor || ip.requiresApprovalFor.length === 0) { status = "warn"; finding = "Approval boundaries not explicitly listed in install prompt."; }
53
+ else { finding = "Install prompt present with approval boundaries."; evidence = { artifactPath: ".claude/cco/orchestration/ai-install/latest-prompt.json" }; }
54
+ break;
55
+ }
56
+ case "scenario_2_run_ai_install": {
57
+ var ip2 = read(".claude/cco/orchestration/ai-install/latest-prompt.json");
58
+ var pr = read(".claude/cco/orchestration/prelaunch-readiness/latest-activation-readiness.json");
59
+ var steps = [ip2, pr].filter(Boolean).length;
60
+ if (steps < 2) { status = "warn"; finding = "Only " + steps + "/2 journey steps have receipts."; }
61
+ else finding = "Core install journey steps have receipts.";
62
+ break;
63
+ }
64
+ case "scenario_3_hooks_not_applied": {
65
+ var hd = read(".claude/cco/orchestration/hook-doctor/latest-doctor.json");
66
+ if (!hd) { status = "warn"; finding = "Hooks doctor not run. Run: node bin/avorelo hooks doctor --json"; }
67
+ else {
68
+ var hasApprovalCheck = (hd.checks || []).some(function(c) { return c.id === "no_global_config_modified"; });
69
+ if (!hasApprovalCheck) { status = "warn"; finding = "Hooks doctor missing explicit approval boundary check."; }
70
+ else finding = "Hooks doctor present. Approval required before hooks apply.";
71
+ }
72
+ break;
73
+ }
74
+ case "scenario_4_mcp_governance_warning": {
75
+ var mp = read(".claude/cco/orchestration/mcp-tool-governance/latest-policy.json");
76
+ if (!mp) { status = "warn"; finding = "MCP governance not run. Run: node bin/avorelo mcp doctor --json"; }
77
+ else if (!mp.note || (Array.isArray(mp.note) ? !mp.note.join(" ").includes("preview") : !mp.note.includes("preview"))) { status = "warn"; finding = "MCP policy does not explicitly state preview-only mode."; }
78
+ else finding = "MCP governance present and preview-only note confirmed.";
79
+ break;
80
+ }
81
+ case "scenario_5_token_cost_not_available": {
82
+ var tc = read(".claude/cco/orchestration/prelaunch-intelligence/latest-token-cost-intelligence.json");
83
+ if (!tc) { status = "warn"; finding = "Token/cost intelligence not run. Run: node bin/avorelo token-cost --json"; }
84
+ else if (tc.noExactSavingsClaim !== true) { status = "blocked"; finding = "Token cost intelligence does not have noExactSavingsClaim=true."; }
85
+ else finding = "Token cost status: " + (tc.status || tc.evidenceLevel) + ". Caveats present.";
86
+ break;
87
+ }
88
+ case "scenario_6_support_bundle": {
89
+ var sb = read(".claude/cco/support/latest-support-bundle.json");
90
+ if (!sb) { status = "warn"; finding = "Support bundle not generated. Run: node bin/avorelo support-bundle --json"; }
91
+ else if (sb.redacted !== true) { status = "blocked"; finding = "Support bundle is not marked redacted — safety violation."; }
92
+ else finding = "Support bundle present and redacted.";
93
+ break;
94
+ }
95
+ case "scenario_7_missing_proof_outcome": {
96
+ var vs = read(".claude/cco/orchestration/seamless-outcome/latest-value-summary.json");
97
+ finding = vs ? "Proof/value summary present from prior task." : "No proof available (expected). CLI shows clear message: run a task first.";
98
+ break;
99
+ }
100
+ case "scenario_8_known_limitations": {
101
+ var kl = read(".claude/cco/orchestration/full-readiness/latest-known-limitations.json");
102
+ if (!kl) { status = "warn"; finding = "Known limitations register not yet built. Run: node bin/avorelo known-limitations --json"; }
103
+ else if (!kl.limitations || kl.limitations.length === 0) { status = "warn"; finding = "Known limitations register is empty — limitations must be documented."; }
104
+ else {
105
+ var allMit = kl.limitations.every(function(l) { return l.mitigation && l.mitigation.length > 0; });
106
+ if (!allMit) { status = "warn"; finding = "Some limitations are missing mitigation documentation."; }
107
+ else finding = "Known limitations: " + kl.limitations.length + " documented with mitigations.";
108
+ }
109
+ break;
110
+ }
111
+ case "scenario_9_see_next_action": {
112
+ var gate = read(".claude/cco/orchestration/full-readiness/latest-gate.json");
113
+ if (!gate) { status = "warn"; finding = "Full readiness gate not yet run. Run: node bin/avorelo full-readiness --json"; }
114
+ else if (!gate.safeNextAction || gate.safeNextAction.length < 10) { status = "warn"; finding = "safeNextAction is missing or too vague."; }
115
+ else finding = "safeNextAction present: \"" + gate.safeNextAction.slice(0, 60) + "...\"";
116
+ break;
117
+ }
118
+ case "scenario_10_blocked_action_safe_next": {
119
+ var gate2 = read(".claude/cco/orchestration/full-readiness/latest-gate.json");
120
+ if (!gate2) { status = "warn"; finding = "Full readiness gate not run — cannot verify blocked action handling."; }
121
+ else {
122
+ var allHaveSN = (gate2.blockers || []).every(function(b) { return b.safeNextAction && b.safeNextAction.length > 0; });
123
+ if (!allHaveSN && (gate2.blockers || []).length > 0) { status = "blocked"; finding = "Some blockers are missing safeNextAction."; }
124
+ else finding = gate2.blockers && gate2.blockers.length > 0 ? "All " + gate2.blockers.length + " blockers have safeNextAction." : "No blockers — safeNextAction pattern not needed.";
125
+ }
126
+ break;
127
+ }
128
+ default: status = "warn"; finding = "Unknown scenario: " + scenario.id;
129
+ }
130
+
131
+ return Object.assign({}, scenario, { result: status, finding: finding, evidence: evidence || null, safetyConstraintsVerified: scenario.safetyConstraints, configModified: false, hooksApplied: false, mcpPatched: false, destructiveCommandRun: false });
132
+ }
133
+
134
+ function runExternalUserSimulation(cwd, options) {
135
+ options = options || {};
136
+ var scenarios = buildExternalUserScenarios(cwd, options);
137
+ var evaluated = scenarios.map(function(s) { return evaluateExternalUserScenario(cwd, s, options); });
138
+ var passed = evaluated.filter(function(s) { return s.result === "pass"; }).length;
139
+ var warned = evaluated.filter(function(s) { return s.result === "warn"; }).length;
140
+ var blocked = evaluated.filter(function(s) { return s.result === "blocked"; }).length;
141
+ var overallStatus = blocked > 0 ? "blocked" : warned > 0 ? "warn" : "pass";
142
+ var simulation = { contract: CONTRACT, schemaVersion: SCHEMA_VERSION, createdAt: nowIso(), status: overallStatus, totalScenarios: scenarios.length, passed: passed, warned: warned, blocked: blocked, scenarios: evaluated, safetyGuarantees: { configModified: false, hooksApplied: false, mcpPatched: false, destructiveCommandRun: false, publicLaunchClaimed: false }, redacted: true };
143
+ try { appendProductLearningEvent(cwd, { eventName: "external_user_simulation_run", category: "full_readiness", status: overallStatus, passed: passed, warned: warned, blocked: blocked }); } catch (e) {}
144
+ return simulation;
145
+ }
146
+
147
+ function writeExternalUserSimulation(cwd, simulation) {
148
+ var dir = path.join(cwd, SIM_DIR_REL);
149
+ if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
150
+ fs.writeFileSync(path.join(cwd, ARTIFACT_REL), JSON.stringify(simulation, null, 2));
151
+ return simulation;
152
+ }
153
+
154
+ function formatExternalUserSimulationText(simulation, options) {
155
+ options = options || {};
156
+ var lines = [];
157
+ lines.push("External user simulation: " + simulation.status + " (" + simulation.passed + "/" + simulation.totalScenarios + " pass)");
158
+ if (simulation.blocked > 0 || simulation.warned > 0) {
159
+ lines.push(""); lines.push("Issues:");
160
+ simulation.scenarios.filter(function(s) { return s.result !== "pass"; }).forEach(function(s) { lines.push(" [" + s.result + "] " + s.title); lines.push(" " + s.finding); });
161
+ }
162
+ lines.push(""); lines.push("Safety: no config modified, no hooks applied, no MCP patched.");
163
+ return lines.join("\n");
164
+ }
165
+
166
+ module.exports = { CONTRACT, SCHEMA_VERSION, ARTIFACT_REL, runExternalUserSimulation, buildExternalUserScenarios, evaluateExternalUserScenario, writeExternalUserSimulation, formatExternalUserSimulationText };
@@ -0,0 +1,81 @@
1
+ "use strict";
2
+
3
+ const fs = require("fs");
4
+ const path = require("path");
5
+
6
+ const { nowIso } = require("./fsx");
7
+
8
+ const CONTRACT = "avorelo.failureRecoveryReadiness.v1";
9
+ const SCHEMA_VERSION = 1;
10
+ const RECEIPT_REL = ".claude/cco/orchestration/failure-recovery/latest-recovery.json";
11
+
12
+ function safeReadJson(absPath) {
13
+ try {
14
+ if (!fs.existsSync(absPath)) return null;
15
+ return JSON.parse(fs.readFileSync(absPath, "utf8").replace(/^\uFEFF/, ""));
16
+ } catch {
17
+ return null;
18
+ }
19
+ }
20
+
21
+ function buildFailureRecoveryReadiness(cwd) {
22
+ const receipt = safeReadJson(path.join(cwd, RECEIPT_REL));
23
+ const launchHardening = safeReadJson(path.join(cwd, ".claude/cco/orchestration/launch-hardening/latest-gate.json"));
24
+ const supportBundle = safeReadJson(path.join(cwd, ".claude/cco/support/latest-support-bundle.json"));
25
+ const knownLimitations = safeReadJson(path.join(cwd, ".claude/cco/orchestration/full-readiness/latest-known-limitations.json"));
26
+
27
+ let moduleAvailable = false;
28
+ try {
29
+ const mod = require("./failure-recovery");
30
+ moduleAvailable = typeof mod.buildRecoveryPlan === "function" || typeof mod.buildFailureRecoveryReceipt === "function";
31
+ } catch {
32
+ moduleAvailable = false;
33
+ }
34
+
35
+ const missingEvidence = [];
36
+ const safeNextActions = [];
37
+
38
+ if (!moduleAvailable) {
39
+ missingEvidence.push("Failure recovery module is not loadable.");
40
+ safeNextActions.push("Inspect: scripts/lib/failure-recovery.js");
41
+ }
42
+ if (!launchHardening) {
43
+ missingEvidence.push("Launch hardening gate artifact is missing.");
44
+ safeNextActions.push("Run: node bin/avorelo launch-hardening --json");
45
+ }
46
+ if (!supportBundle || supportBundle.redacted !== true) {
47
+ missingEvidence.push("Redacted support bundle is missing.");
48
+ safeNextActions.push("Run: node bin/avorelo support-bundle --json");
49
+ }
50
+ if (!knownLimitations) {
51
+ missingEvidence.push("Known limitations register is missing.");
52
+ safeNextActions.push("Run: node bin/avorelo full-readiness --json");
53
+ }
54
+
55
+ const status = missingEvidence.length === 0 ? "pass" : "warn";
56
+ const safeNextAction = safeNextActions[0] || "Run: node bin/avorelo full-readiness --json";
57
+
58
+ return {
59
+ contract: CONTRACT,
60
+ schemaVersion: SCHEMA_VERSION,
61
+ createdAt: nowIso(),
62
+ status,
63
+ receiptAvailable: receipt !== null,
64
+ moduleAvailable,
65
+ launchHardeningAvailable: launchHardening !== null,
66
+ supportBundleAvailable: supportBundle?.redacted === true,
67
+ knownLimitationsAvailable: knownLimitations !== null,
68
+ artifactPath: RECEIPT_REL,
69
+ missingEvidence,
70
+ safeNextActions: safeNextActions.length ? safeNextActions : [safeNextAction],
71
+ safeNextAction,
72
+ redacted: true,
73
+ };
74
+ }
75
+
76
+ module.exports = {
77
+ CONTRACT,
78
+ SCHEMA_VERSION,
79
+ RECEIPT_REL,
80
+ buildFailureRecoveryReadiness,
81
+ };
@@ -0,0 +1,419 @@
1
+ "use strict";
2
+
3
+ // ── Failure Recovery ──────────────────────────────────────────────────────────
4
+ //
5
+ // Contract: avorelo.failureRecovery.v1
6
+ //
7
+ // Classifies every failure mode with a safe next action, severity, and
8
+ // recoverability flag. No raw logs, prompts, code, or secrets in receipts.
9
+
10
+ const fs = require("fs");
11
+ const path = require("path");
12
+ const { ensureCcoDirs, nowIso } = require("./fsx");
13
+
14
+ const CONTRACT = "avorelo.failureRecovery.v1";
15
+ const SCHEMA_VERSION = 1;
16
+
17
+ const RECOVERY_DIR_REL = ".claude/cco/orchestration/failure-recovery";
18
+ const LATEST_RECOVERY_REL = `${RECOVERY_DIR_REL}/latest-recovery.json`;
19
+
20
+ // ── Failure type constants ────────────────────────────────────────────────────
21
+
22
+ const FAILURE_TYPES = Object.freeze({
23
+ CONFIG_INVALID: "CONFIG_INVALID",
24
+ CONFIG_BACKUP_MISSING: "CONFIG_BACKUP_MISSING",
25
+ HOOKS_NOT_APPLIED: "HOOKS_NOT_APPLIED",
26
+ HOOK_DOCTOR_FAILED: "HOOK_DOCTOR_FAILED",
27
+ RECURSION_GUARD_ACTIVE: "RECURSION_GUARD_ACTIVE",
28
+ PROJECT_PROFILE_UNKNOWN: "PROJECT_PROFILE_UNKNOWN",
29
+ SAFE_RUN_BLOCKED: "SAFE_RUN_BLOCKED",
30
+ PROOF_UNAVAILABLE: "PROOF_UNAVAILABLE",
31
+ PROOF_FAILED: "PROOF_FAILED",
32
+ TOKEN_GATE_FAILED: "TOKEN_GATE_FAILED",
33
+ SUPPORT_BUNDLE_REDACTION_FAILED: "SUPPORT_BUNDLE_REDACTION_FAILED",
34
+ STALE_ARTIFACTS: "STALE_ARTIFACTS",
35
+ CORRUPT_ARTIFACT: "CORRUPT_ARTIFACT",
36
+ PERMISSION_DENIED: "PERMISSION_DENIED",
37
+ MISSING_TOOL: "MISSING_TOOL",
38
+ PATH_NOT_FOUND: "PATH_NOT_FOUND",
39
+ WINDOWS_PATH_ISSUE: "WINDOWS_PATH_ISSUE",
40
+ MONOREPO_SCOPE_UNKNOWN: "MONOREPO_SCOPE_UNKNOWN",
41
+ FLAKY_TEST_SUSPECTED: "FLAKY_TEST_SUSPECTED",
42
+ DEPENDENCY_RESOLUTION_FAILED: "DEPENDENCY_RESOLUTION_FAILED",
43
+ NETWORK_DISABLED_EXPECTED: "NETWORK_DISABLED_EXPECTED",
44
+ ARTIFACT_WRITE_FAILED: "ARTIFACT_WRITE_FAILED",
45
+ JSON_OUTPUT_INVALID: "JSON_OUTPUT_INVALID",
46
+ });
47
+
48
+ // ── Failure classification table ──────────────────────────────────────────────
49
+
50
+ const FAILURE_CLASSIFICATION = Object.freeze({
51
+ CONFIG_INVALID: {
52
+ status: "blocked",
53
+ severity: "error",
54
+ recoverable: false,
55
+ userMessage: "The Avorelo config is invalid or cannot be parsed.",
56
+ safeNextAction: "Run `avorelo doctor` to identify and fix config issues.",
57
+ debugHint: "Check .claude/cco/state/ for config artifacts.",
58
+ },
59
+ CONFIG_BACKUP_MISSING: {
60
+ status: "needs_review",
61
+ severity: "warn",
62
+ recoverable: true,
63
+ userMessage: "No config backup found before hook apply.",
64
+ safeNextAction: "Run `avorelo hooks apply --dry-run` to preview hook changes. Review backup artifacts before applying.",
65
+ debugHint: "Check .claude/cco/orchestration/hook-apply/ for backup artifacts.",
66
+ },
67
+ HOOKS_NOT_APPLIED: {
68
+ status: "recoverable",
69
+ severity: "warn",
70
+ recoverable: true,
71
+ userMessage: "Avorelo hooks are not applied to this project.",
72
+ safeNextAction: "Run `avorelo hooks apply --dry-run` to preview, then `avorelo hooks apply --yes` to apply.",
73
+ debugHint: "Check .claude/cco/orchestration/hook-apply/latest-apply.json.",
74
+ },
75
+ HOOK_DOCTOR_FAILED: {
76
+ status: "blocked",
77
+ severity: "error",
78
+ recoverable: false,
79
+ userMessage: "Hook validation failed. Avorelo hooks may not be functioning correctly.",
80
+ safeNextAction: "Run `avorelo hooks doctor` for details, then `avorelo hooks rollback` to restore previous config.",
81
+ debugHint: "Check .claude/cco/orchestration/hook-apply/latest-doctor.json.",
82
+ },
83
+ RECURSION_GUARD_ACTIVE: {
84
+ status: "recoverable",
85
+ severity: "warn",
86
+ recoverable: true,
87
+ userMessage: "Avorelo recursion guard prevented a nested invocation.",
88
+ safeNextAction: "Wait for the current Avorelo run to complete, then retry.",
89
+ debugHint: "Recursion guard is expected in nested Claude Code sessions.",
90
+ },
91
+ PROJECT_PROFILE_UNKNOWN: {
92
+ status: "recoverable",
93
+ severity: "warn",
94
+ recoverable: true,
95
+ userMessage: "Avorelo could not detect the project profile.",
96
+ safeNextAction: "Run `avorelo project-profile` to detect or configure the project profile.",
97
+ debugHint: "Check .claude/cco/orchestration/project-profile/latest-profile.json.",
98
+ },
99
+ SAFE_RUN_BLOCKED: {
100
+ status: "blocked",
101
+ severity: "warn",
102
+ recoverable: true,
103
+ userMessage: "A safe run step was blocked due to scope or risk level.",
104
+ safeNextAction: "Review the blocking reason in `avorelo run --json` output. Narrow scope or get approval.",
105
+ debugHint: "Check .claude/cco/orchestration/safe-run/latest-run.json.",
106
+ },
107
+ PROOF_UNAVAILABLE: {
108
+ status: "recoverable",
109
+ severity: "warn",
110
+ recoverable: true,
111
+ userMessage: "No proof artifact is available for this operation.",
112
+ safeNextAction: "Run `avorelo outcome` to generate a proof artifact.",
113
+ debugHint: "Check .claude/cco/orchestration/seamless-outcome/.",
114
+ },
115
+ PROOF_FAILED: {
116
+ status: "blocked",
117
+ severity: "error",
118
+ recoverable: false,
119
+ userMessage: "Proof validation failed. Outcome integrity cannot be confirmed.",
120
+ safeNextAction: "Run `avorelo outcome --json` to see the proof failure details. Review and rerun the failing step.",
121
+ debugHint: "Check .claude/cco/orchestration/seamless-outcome/latest-reality-gate.json.",
122
+ },
123
+ TOKEN_GATE_FAILED: {
124
+ status: "needs_review",
125
+ severity: "error",
126
+ recoverable: false,
127
+ userMessage: "Token context quality gate failed.",
128
+ safeNextAction: "Run `avorelo token-efficiency --json` to see the quality gate details and reduce context.",
129
+ debugHint: "Check .claude/cco/orchestration/token-efficiency/latest-quality-gate.json.",
130
+ },
131
+ SUPPORT_BUNDLE_REDACTION_FAILED: {
132
+ status: "blocked",
133
+ severity: "critical",
134
+ recoverable: false,
135
+ userMessage: "Support bundle redaction failed. Bundle may contain sensitive data.",
136
+ safeNextAction: "Do not share the support bundle. Contact support@avorelo.com for a safe bundle procedure.",
137
+ debugHint: "Check support-bundle.js redaction logic.",
138
+ },
139
+ STALE_ARTIFACTS: {
140
+ status: "recoverable",
141
+ severity: "info",
142
+ recoverable: true,
143
+ userMessage: "Some Avorelo artifacts are stale and may not reflect current state.",
144
+ safeNextAction: "Run `avorelo artifacts health` to review stale artifacts, then `avorelo artifacts cleanup --dry-run` to plan cleanup.",
145
+ debugHint: "Check .claude/cco/orchestration/artifact-health/latest-health.json.",
146
+ },
147
+ CORRUPT_ARTIFACT: {
148
+ status: "needs_review",
149
+ severity: "error",
150
+ recoverable: false,
151
+ userMessage: "A corrupt artifact was detected. The artifact cannot be parsed.",
152
+ safeNextAction: "Run `avorelo artifacts health` to identify corrupt artifacts. Delete and regenerate corrupt artifacts.",
153
+ debugHint: "Check .claude/cco/orchestration/artifact-health/latest-health.json for corrupt file paths.",
154
+ },
155
+ PERMISSION_DENIED: {
156
+ status: "blocked",
157
+ severity: "error",
158
+ recoverable: false,
159
+ userMessage: "Permission denied when accessing a required file or directory.",
160
+ safeNextAction: "Check file permissions for .claude/cco/ and ensure the current user can read/write this directory.",
161
+ debugHint: "Check OS-level permissions for .claude/cco/.",
162
+ },
163
+ MISSING_TOOL: {
164
+ status: "blocked",
165
+ severity: "error",
166
+ recoverable: false,
167
+ userMessage: "A required tool is missing from PATH.",
168
+ safeNextAction: "Install the required tool and ensure it is available in PATH. Run `avorelo doctor` to re-check.",
169
+ debugHint: "Run `avorelo doctor` to see which tools are required.",
170
+ },
171
+ PATH_NOT_FOUND: {
172
+ status: "blocked",
173
+ severity: "error",
174
+ recoverable: false,
175
+ userMessage: "A required path does not exist.",
176
+ safeNextAction: "Verify the path exists and the workspace is correctly configured. Run `avorelo doctor` to check.",
177
+ debugHint: "Check that cwd is set to the correct project root.",
178
+ },
179
+ WINDOWS_PATH_ISSUE: {
180
+ status: "needs_review",
181
+ severity: "warn",
182
+ recoverable: true,
183
+ userMessage: "A Windows path issue was detected (spaces, backslashes, or drive letter handling).",
184
+ safeNextAction: "Ensure all paths use path.join() and avoid string concatenation. Move the project to a path without spaces if needed.",
185
+ debugHint: "Check for hardcoded path separators or unquoted paths with spaces.",
186
+ },
187
+ MONOREPO_SCOPE_UNKNOWN: {
188
+ status: "recoverable",
189
+ severity: "warn",
190
+ recoverable: true,
191
+ userMessage: "Avorelo could not determine the monorepo scope.",
192
+ safeNextAction: "Run `avorelo project-profile` to detect the monorepo structure and configure scope.",
193
+ debugHint: "Check .claude/cco/orchestration/project-profile/latest-profile.json.",
194
+ },
195
+ FLAKY_TEST_SUSPECTED: {
196
+ status: "recoverable",
197
+ severity: "warn",
198
+ recoverable: true,
199
+ userMessage: "A flaky test failure was suspected. The test may pass on retry.",
200
+ safeNextAction: "Retry the failing test in isolation. If it fails consistently, investigate the test for environmental dependencies.",
201
+ debugHint: "Check test output for timing-related or environment-specific failures.",
202
+ },
203
+ DEPENDENCY_RESOLUTION_FAILED: {
204
+ status: "blocked",
205
+ severity: "error",
206
+ recoverable: false,
207
+ userMessage: "Dependency resolution failed. Package install may be needed.",
208
+ safeNextAction: "Run `npm install` (or the project package manager) to restore dependencies.",
209
+ debugHint: "Check package.json and lockfile for inconsistencies.",
210
+ },
211
+ NETWORK_DISABLED_EXPECTED: {
212
+ status: "recoverable",
213
+ severity: "info",
214
+ recoverable: true,
215
+ userMessage: "Network is disabled. Avorelo is running in local-only mode.",
216
+ safeNextAction: "No action needed — Avorelo operates fully locally. Network access is not required.",
217
+ debugHint: "All Avorelo operations are local-first. No network access is expected.",
218
+ },
219
+ ARTIFACT_WRITE_FAILED: {
220
+ status: "needs_review",
221
+ severity: "warn",
222
+ recoverable: true,
223
+ userMessage: "An Avorelo artifact could not be written.",
224
+ safeNextAction: "Check disk space and .claude/cco/ write permissions. Run `avorelo doctor` to check local state writability.",
225
+ debugHint: "Check for disk full or permission errors on .claude/cco/.",
226
+ },
227
+ JSON_OUTPUT_INVALID: {
228
+ status: "needs_review",
229
+ severity: "error",
230
+ recoverable: false,
231
+ userMessage: "A command produced invalid JSON output.",
232
+ safeNextAction: "Run the command again with --json flag. Check for mixed stdout/stderr contaminating JSON output.",
233
+ debugHint: "Ensure all log output goes to stderr, not stdout.",
234
+ },
235
+ });
236
+
237
+ // ── Helpers ───────────────────────────────────────────────────────────────────
238
+
239
+ function safeReadJson(absPath) {
240
+ try {
241
+ if (!fs.existsSync(absPath)) return null;
242
+ return JSON.parse(fs.readFileSync(absPath, "utf8").replace(/^/, ""));
243
+ } catch {
244
+ return null;
245
+ }
246
+ }
247
+
248
+ function bestEffortWrite(absPath, obj) {
249
+ try {
250
+ fs.mkdirSync(path.dirname(absPath), { recursive: true });
251
+ fs.writeFileSync(absPath, JSON.stringify(obj, null, 2), "utf8");
252
+ } catch {}
253
+ }
254
+
255
+ // ── classifyFailure ───────────────────────────────────────────────────────────
256
+
257
+ function classifyFailure(errorOrSignal, options = {}) {
258
+ const failureType = options.failureType || detectFailureType(errorOrSignal);
259
+ const classification = FAILURE_CLASSIFICATION[failureType] || {
260
+ status: "unknown",
261
+ severity: "warn",
262
+ recoverable: true,
263
+ userMessage: "An unknown error occurred.",
264
+ safeNextAction: "Run `avorelo doctor` for diagnostics.",
265
+ debugHint: null,
266
+ };
267
+
268
+ const exitCode = options.exitCode != null ? options.exitCode : (errorOrSignal?.exitCode ?? 1);
269
+
270
+ return {
271
+ contract: CONTRACT,
272
+ schemaVersion: SCHEMA_VERSION,
273
+ status: classification.status,
274
+ failureType,
275
+ severity: classification.severity,
276
+ recoverable: classification.recoverable,
277
+ userMessage: classification.userMessage,
278
+ safeNextAction: classification.safeNextAction,
279
+ debugHint: options.includeDebugHint !== false ? classification.debugHint : undefined,
280
+ artifactRefs: options.artifactRefs || [],
281
+ exitCode,
282
+ redacted: true,
283
+ };
284
+ }
285
+
286
+ function detectFailureType(errorOrSignal) {
287
+ if (!errorOrSignal) return "JSON_OUTPUT_INVALID";
288
+ const msg = String(errorOrSignal.message || errorOrSignal.code || errorOrSignal || "").toLowerCase();
289
+ if (/recursion.guard|recursion_guard/i.test(msg)) return FAILURE_TYPES.RECURSION_GUARD_ACTIVE;
290
+ if (/EACCES|permission.denied/i.test(msg)) return FAILURE_TYPES.PERMISSION_DENIED;
291
+ if (/ENOENT|path.not.found|no such file/i.test(msg)) return FAILURE_TYPES.PATH_NOT_FOUND;
292
+ if (/windows|backslash|drive.letter/i.test(msg)) return FAILURE_TYPES.WINDOWS_PATH_ISSUE;
293
+ if (/flaky|flaky.test/i.test(msg)) return FAILURE_TYPES.FLAKY_TEST_SUSPECTED;
294
+ if (/network|ECONNREFUSED|ENETUNREACH/i.test(msg)) return FAILURE_TYPES.NETWORK_DISABLED_EXPECTED;
295
+ if (/config.invalid|parse.error|SyntaxError/i.test(msg)) return FAILURE_TYPES.CONFIG_INVALID;
296
+ if (/hook.doctor/i.test(msg)) return FAILURE_TYPES.HOOK_DOCTOR_FAILED;
297
+ if (/proof.failed/i.test(msg)) return FAILURE_TYPES.PROOF_FAILED;
298
+ if (/token.gate/i.test(msg)) return FAILURE_TYPES.TOKEN_GATE_FAILED;
299
+ if (/redaction.failed/i.test(msg)) return FAILURE_TYPES.SUPPORT_BUNDLE_REDACTION_FAILED;
300
+ if (/corrupt/i.test(msg)) return FAILURE_TYPES.CORRUPT_ARTIFACT;
301
+ if (/stale/i.test(msg)) return FAILURE_TYPES.STALE_ARTIFACTS;
302
+ if (/missing.tool|command.not.found/i.test(msg)) return FAILURE_TYPES.MISSING_TOOL;
303
+ if (/dependency|npm.install/i.test(msg)) return FAILURE_TYPES.DEPENDENCY_RESOLUTION_FAILED;
304
+ if (/artifact.write/i.test(msg)) return FAILURE_TYPES.ARTIFACT_WRITE_FAILED;
305
+ return "JSON_OUTPUT_INVALID";
306
+ }
307
+
308
+ // ── buildRecoveryPlan ─────────────────────────────────────────────────────────
309
+
310
+ function buildRecoveryPlan(cwd, failure, options = {}) {
311
+ const action = buildRecoveryAction(cwd, failure.failureType || "JSON_OUTPUT_INVALID", options);
312
+ const receipt = {
313
+ contract: CONTRACT,
314
+ schemaVersion: SCHEMA_VERSION,
315
+ status: failure.status || "unknown",
316
+ failureType: failure.failureType,
317
+ severity: failure.severity || "warn",
318
+ recoverable: failure.recoverable !== undefined ? failure.recoverable : true,
319
+ userMessage: failure.userMessage || "An error occurred.",
320
+ safeNextAction: failure.safeNextAction || action.command || "Run `avorelo doctor`.",
321
+ debugHint: failure.debugHint || null,
322
+ artifactRefs: failure.artifactRefs || [],
323
+ exitCode: failure.exitCode != null ? failure.exitCode : 1,
324
+ recoveryAction: action,
325
+ createdAt: nowIso(),
326
+ redacted: true,
327
+ };
328
+ return receipt;
329
+ }
330
+
331
+ // ── buildRecoveryAction ───────────────────────────────────────────────────────
332
+
333
+ function buildRecoveryAction(cwd, failureType, options = {}) {
334
+ const classification = FAILURE_CLASSIFICATION[failureType];
335
+ if (!classification) {
336
+ return {
337
+ failureType,
338
+ command: "avorelo doctor",
339
+ rationale: "Run diagnostics to identify and recover from this failure.",
340
+ automated: false,
341
+ };
342
+ }
343
+
344
+ return {
345
+ failureType,
346
+ command: classification.safeNextAction,
347
+ rationale: classification.userMessage,
348
+ automated: false,
349
+ severity: classification.severity,
350
+ recoverable: classification.recoverable,
351
+ };
352
+ }
353
+
354
+ // ── writeFailureRecoveryReceipt ───────────────────────────────────────────────
355
+
356
+ function writeFailureRecoveryReceipt(cwd, receipt) {
357
+ const absPath = path.join(cwd, LATEST_RECOVERY_REL);
358
+ bestEffortWrite(absPath, receipt);
359
+ }
360
+
361
+ // ── buildFailureRecoverySurface ───────────────────────────────────────────────
362
+
363
+ function buildFailureRecoverySurface(cwd, options = {}) {
364
+ const absPath = path.join(cwd, LATEST_RECOVERY_REL);
365
+ const latest = safeReadJson(absPath);
366
+
367
+ if (!latest) {
368
+ return {
369
+ contract: CONTRACT,
370
+ status: "no_failure_recorded",
371
+ failureType: null,
372
+ severity: null,
373
+ recoverable: null,
374
+ safeNextAction: "No failure recovery receipt found. Run any avorelo command to generate state.",
375
+ latestRecoveryPath: null,
376
+ };
377
+ }
378
+
379
+ return {
380
+ contract: CONTRACT,
381
+ status: latest.status,
382
+ failureType: latest.failureType,
383
+ severity: latest.severity,
384
+ recoverable: latest.recoverable,
385
+ safeNextAction: latest.safeNextAction,
386
+ latestRecoveryPath: LATEST_RECOVERY_REL,
387
+ };
388
+ }
389
+
390
+ // ── formatFailureRecoveryText ─────────────────────────────────────────────────
391
+
392
+ function formatFailureRecoveryText(receipt, options = {}) {
393
+ if (!receipt) return "No failure recovery data available.";
394
+ const lines = [];
395
+ lines.push(`Failure Recovery: ${receipt.failureType || "unknown"}`);
396
+ lines.push(`Status: ${receipt.status || "unknown"} | Severity: ${receipt.severity || "unknown"} | Recoverable: ${receipt.recoverable ? "yes" : "no"}`);
397
+ lines.push("");
398
+ lines.push(receipt.userMessage || "No details available.");
399
+ lines.push("");
400
+ lines.push(`Next step: ${receipt.safeNextAction || "Run avorelo doctor."}`);
401
+ if (options.debug && receipt.debugHint) {
402
+ lines.push(`Debug: ${receipt.debugHint}`);
403
+ }
404
+ return lines.join("\n");
405
+ }
406
+
407
+ module.exports = {
408
+ CONTRACT,
409
+ SCHEMA_VERSION,
410
+ FAILURE_TYPES,
411
+ FAILURE_CLASSIFICATION,
412
+ LATEST_RECOVERY_REL,
413
+ classifyFailure,
414
+ buildRecoveryPlan,
415
+ buildRecoveryAction,
416
+ writeFailureRecoveryReceipt,
417
+ buildFailureRecoverySurface,
418
+ formatFailureRecoveryText,
419
+ };