@unerr-ai/unerr 0.1.0 → 0.1.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 (553) hide show
  1. package/dist/__tests__/architecture-guard.test.js +122 -0
  2. package/dist/__tests__/arg-validator.test.js +205 -0
  3. package/dist/__tests__/ast-extractor.test.js +203 -0
  4. package/dist/__tests__/auto-bootstrap.test.js +280 -0
  5. package/dist/__tests__/background-indexer.test.js +228 -0
  6. package/dist/__tests__/blast-radius-engine.test.js +200 -0
  7. package/dist/__tests__/bridge-isolation.test.js +37 -0
  8. package/dist/__tests__/budget-enforcer.test.js +53 -0
  9. package/dist/__tests__/cfg-test-detection-perf.test.js +82 -0
  10. package/dist/__tests__/change-narrative.test.js +190 -0
  11. package/dist/__tests__/check-commit.test.js +258 -0
  12. package/dist/__tests__/checksum.test.js +34 -0
  13. package/dist/__tests__/commit-watcher.test.js +154 -0
  14. package/dist/__tests__/community-detection.test.js +179 -0
  15. package/dist/__tests__/community-tools.test.js +299 -0
  16. package/dist/__tests__/components.test.js +449 -0
  17. package/dist/__tests__/compression-log.test.js +174 -0
  18. package/dist/__tests__/compression-quality-monitor.test.js +40 -0
  19. package/dist/__tests__/config-healer.test.js +165 -0
  20. package/dist/__tests__/context-ledger.test.js +58 -0
  21. package/dist/__tests__/convention-detector.test.js +99 -0
  22. package/dist/__tests__/convention-learner.test.js +86 -0
  23. package/dist/__tests__/correction-detector.test.js +330 -0
  24. package/dist/__tests__/daemon-autostart-install.test.js +283 -0
  25. package/dist/__tests__/daemon-bridge.test.js +222 -0
  26. package/dist/__tests__/daemon-dashboard.test.js +202 -0
  27. package/dist/__tests__/daemon-registry.test.js +240 -0
  28. package/dist/__tests__/daemon-supervisor.test.js +318 -0
  29. package/dist/__tests__/daemon-version-check.test.js +275 -0
  30. package/dist/__tests__/decision-point-detector.test.js +98 -0
  31. package/dist/__tests__/deep-link.test.js +143 -0
  32. package/dist/__tests__/disallowed-tools.test.js +115 -0
  33. package/dist/__tests__/drift-tracker.test.js +582 -0
  34. package/dist/__tests__/durability-scorer.test.js +152 -0
  35. package/dist/__tests__/efficiency-tracker.test.js +65 -0
  36. package/dist/__tests__/enrich.test.js +144 -0
  37. package/dist/__tests__/entity-rewind.test.js +248 -0
  38. package/dist/__tests__/ephemeral.test.js +111 -0
  39. package/dist/__tests__/exploration-cost.test.js +93 -0
  40. package/dist/__tests__/fact-generator.test.js +197 -0
  41. package/dist/__tests__/file-l0-graph.test.js +244 -0
  42. package/dist/__tests__/file-logger.test.js +82 -0
  43. package/dist/__tests__/file-outline.test.js +141 -0
  44. package/dist/__tests__/file-read-protocol.test.js +188 -0
  45. package/dist/__tests__/format-encoder.test.js +233 -0
  46. package/dist/__tests__/git-attribution.test.js +259 -0
  47. package/dist/__tests__/graph-temporal-joiner.test.js +219 -0
  48. package/dist/__tests__/health-grade-enhanced.test.js +138 -0
  49. package/dist/__tests__/health-map-data.test.js +173 -0
  50. package/dist/__tests__/helpers/mcp-harness.js +45 -0
  51. package/dist/__tests__/helpers/mcp-harness.test.js +68 -0
  52. package/dist/__tests__/hook-dedup.test.js +112 -0
  53. package/dist/__tests__/hook-runner.test.js +253 -0
  54. package/dist/__tests__/indexer-cfg.test.js +185 -0
  55. package/dist/__tests__/indexer-cross-file.test.js +172 -0
  56. package/dist/__tests__/indexer-extraction.test.js +245 -0
  57. package/dist/__tests__/indexer-incremental.test.js +232 -0
  58. package/dist/__tests__/indexer-language-expansion.test.js +165 -0
  59. package/dist/__tests__/init-push.test.js +131 -0
  60. package/dist/__tests__/instruction-writer.test.js +179 -0
  61. package/dist/__tests__/intelligence-integration.test.js +217 -0
  62. package/dist/__tests__/intent-correlator.test.js +175 -0
  63. package/dist/__tests__/intent-detector.test.js +235 -0
  64. package/dist/__tests__/intent-encoder.test.js +167 -0
  65. package/dist/__tests__/java-build-tool-detection.test.js +174 -0
  66. package/dist/__tests__/layer3-sprint-q.test.js +160 -0
  67. package/dist/__tests__/layer3-sprint-r.test.js +91 -0
  68. package/dist/__tests__/layer3-sprint-s.test.js +183 -0
  69. package/dist/__tests__/layer3-sprint-t.test.js +201 -0
  70. package/dist/__tests__/layer3-sprint-u.test.js +174 -0
  71. package/dist/__tests__/layer4-sprint-ba2.test.js +354 -0
  72. package/dist/__tests__/layer4-sprint-ba4.test.js +84 -0
  73. package/dist/__tests__/layer4-sprint-vs.test.js +105 -0
  74. package/dist/__tests__/ledger-chains.test.js +162 -0
  75. package/dist/__tests__/lifecycle-machine.test.js +226 -0
  76. package/dist/__tests__/local-chat-provider.test.js +170 -0
  77. package/dist/__tests__/local-convention-detector.test.js +308 -0
  78. package/dist/__tests__/local-embeddings.test.js +422 -0
  79. package/dist/__tests__/local-graph.test.js +540 -0
  80. package/dist/__tests__/local-indexer.test.js +228 -0
  81. package/dist/__tests__/local-intelligence-l3.test.js +332 -0
  82. package/dist/__tests__/local-llm.test.js +253 -0
  83. package/dist/__tests__/local-mode-offline.test.js +187 -0
  84. package/dist/__tests__/local-mode-stats.test.js +273 -0
  85. package/dist/__tests__/local-mode-tui.test.js +343 -0
  86. package/dist/__tests__/local-parse.test.js +199 -0
  87. package/dist/__tests__/log-tailer.test.js +208 -0
  88. package/dist/__tests__/loop-breaker.test.js +276 -0
  89. package/dist/__tests__/loop-miner.test.js +226 -0
  90. package/dist/__tests__/mcp-config.test.js +126 -0
  91. package/dist/__tests__/mcp-content-json.test.js +10 -0
  92. package/dist/__tests__/mcp-envelope.test.js +124 -0
  93. package/dist/__tests__/metrics-store.test.js +223 -0
  94. package/dist/__tests__/native-watcher.test.js +191 -0
  95. package/dist/__tests__/navigation-hooks-agent-aware.test.js +145 -0
  96. package/dist/__tests__/negative-knowledge.test.js +116 -0
  97. package/dist/__tests__/network-boundary.test.js +190 -0
  98. package/dist/__tests__/network-firewall.test.js +112 -0
  99. package/dist/__tests__/nudge-invariants.test.js +160 -0
  100. package/dist/__tests__/nudge-v2.test.js +225 -0
  101. package/dist/__tests__/offline-rewind.test.js +251 -0
  102. package/dist/__tests__/open-threads.test.js +89 -0
  103. package/dist/__tests__/output-compressor.test.js +93 -0
  104. package/dist/__tests__/pending-violations.test.js +112 -0
  105. package/dist/__tests__/persistence-effectiveness.test.js +143 -0
  106. package/dist/__tests__/provider-factory.test.js +42 -0
  107. package/dist/__tests__/providers.test.js +24 -0
  108. package/dist/__tests__/proxy.test.js +314 -0
  109. package/dist/__tests__/query-router.test.js +1018 -0
  110. package/dist/__tests__/reasoning-quality-route.test.js +138 -0
  111. package/dist/__tests__/redactor.test.js +120 -0
  112. package/dist/__tests__/resource-monitor.test.js +57 -0
  113. package/dist/__tests__/response-envelope.test.js +100 -0
  114. package/dist/__tests__/risk-classifier.test.js +101 -0
  115. package/dist/__tests__/risk-signal-scope.test.js +75 -0
  116. package/dist/__tests__/rule-evaluator.test.js +280 -0
  117. package/dist/__tests__/scip-decoder.test.js +49 -0
  118. package/dist/__tests__/scip-downloader.test.js +201 -0
  119. package/dist/__tests__/scip-merger.test.js +103 -0
  120. package/dist/__tests__/search-index.test.js +422 -0
  121. package/dist/__tests__/semantic-enrichment.test.js +360 -0
  122. package/dist/__tests__/session-brief-builder.test.js +187 -0
  123. package/dist/__tests__/session-context.test.js +221 -0
  124. package/dist/__tests__/session-continuity.test.js +144 -0
  125. package/dist/__tests__/session-dedup.test.js +74 -0
  126. package/dist/__tests__/session-event-wiring.test.js +206 -0
  127. package/dist/__tests__/session-events.test.js +149 -0
  128. package/dist/__tests__/session-legend.test.js +20 -0
  129. package/dist/__tests__/session-persistence.test.js +131 -0
  130. package/dist/__tests__/session-resume-block.test.js +107 -0
  131. package/dist/__tests__/session-resume.test.js +97 -0
  132. package/dist/__tests__/session-summary-writer.test.js +134 -0
  133. package/dist/__tests__/shadow-ledger.test.js +203 -0
  134. package/dist/__tests__/shell-classifier.test.js +151 -0
  135. package/dist/__tests__/shell-compression-floor.test.js +189 -0
  136. package/dist/__tests__/shell-compression-v2.test.js +339 -0
  137. package/dist/__tests__/shell-compressor.test.js +35 -0
  138. package/dist/__tests__/shell-hooks.test.js +128 -0
  139. package/dist/__tests__/shell-strategies.test.js +644 -0
  140. package/dist/__tests__/shell-tee.test.js +133 -0
  141. package/dist/__tests__/signal-dedup.test.js +158 -0
  142. package/dist/__tests__/signal-reinforcer.test.js +77 -0
  143. package/dist/__tests__/signal-scorer.test.js +251 -0
  144. package/dist/__tests__/signal-show-store.test.js +108 -0
  145. package/dist/__tests__/smart-truncate.test.js +215 -0
  146. package/dist/__tests__/snapshot-v2.test.js +113 -0
  147. package/dist/__tests__/sprint-l1-local-mode.test.js +130 -0
  148. package/dist/__tests__/sprint-l10-boot.test.js +220 -0
  149. package/dist/__tests__/sprint-l9-offline-commands.test.js +189 -0
  150. package/dist/__tests__/sprint-q-persistent-context.test.js +198 -0
  151. package/dist/__tests__/sprint-s1-wiring.test.js +215 -0
  152. package/dist/__tests__/sprint-s2-wiring.test.js +256 -0
  153. package/dist/__tests__/sprint-s3-wiring.test.js +195 -0
  154. package/dist/__tests__/sprint-s4-wiring.test.js +213 -0
  155. package/dist/__tests__/sprint-s6-hooks.test.js +222 -0
  156. package/dist/__tests__/sprint-s7-persistent.test.js +263 -0
  157. package/dist/__tests__/sprint-s8-value.test.js +167 -0
  158. package/dist/__tests__/sprint-s9-behavioral.test.js +179 -0
  159. package/dist/__tests__/sprint3-intelligence.test.js +297 -0
  160. package/dist/__tests__/sprint5-mcp-server.test.js +136 -0
  161. package/dist/__tests__/startup-display.test.js +302 -0
  162. package/dist/__tests__/startup-log-file.test.js +97 -0
  163. package/dist/__tests__/stash-manager.test.js +229 -0
  164. package/dist/__tests__/state-detector.test.js +92 -0
  165. package/dist/__tests__/status-dashboard.test.js +142 -0
  166. package/dist/__tests__/temporal-facts.test.js +292 -0
  167. package/dist/__tests__/temporal-routes.test.js +142 -0
  168. package/dist/__tests__/test-detector.test.js +174 -0
  169. package/dist/__tests__/theme.test.js +72 -0
  170. package/dist/__tests__/timeline-agents.test.js +122 -0
  171. package/dist/__tests__/timeline-bootstrap.test.js +176 -0
  172. package/dist/__tests__/timeline-filters.test.js +193 -0
  173. package/dist/__tests__/timeline-markers.test.js +151 -0
  174. package/dist/__tests__/timeline-routes.test.js +156 -0
  175. package/dist/__tests__/timeline-store.test.js +171 -0
  176. package/dist/__tests__/token-counter.test.js +86 -0
  177. package/dist/__tests__/token-estimator.test.js +96 -0
  178. package/dist/__tests__/token-flow-api.test.js +239 -0
  179. package/dist/__tests__/token-flow-instrumentation.test.js +437 -0
  180. package/dist/__tests__/token-flow-persistence.test.js +356 -0
  181. package/dist/__tests__/token-flow-routes.test.js +199 -0
  182. package/dist/__tests__/token-flow.test.js +695 -0
  183. package/dist/__tests__/tool-clusters.test.js +177 -0
  184. package/dist/__tests__/transport-mux.test.js +283 -0
  185. package/dist/__tests__/turn-segmenter.test.js +166 -0
  186. package/dist/__tests__/uninstall.test.js +141 -0
  187. package/dist/__tests__/warm-start-policy.test.js +271 -0
  188. package/dist/__tests__/wire-cap-nudge.test.js +77 -0
  189. package/dist/__tests__/worker-pool.test.js +101 -0
  190. package/dist/behaviors/agent-llm-bridge.js +166 -0
  191. package/dist/behaviors/architecture-guard.js +256 -0
  192. package/dist/behaviors/auto-doc.js +247 -0
  193. package/dist/behaviors/cascade-guard.js +289 -0
  194. package/dist/behaviors/change-narrative.js +270 -0
  195. package/dist/behaviors/convention-drift.js +290 -0
  196. package/dist/behaviors/framework.js +235 -0
  197. package/dist/behaviors/guard-formatter.js +44 -0
  198. package/dist/behaviors/incomplete-work.js +270 -0
  199. package/dist/behaviors/loop-breaker.js +300 -0
  200. package/dist/behaviors/session-continuity.js +208 -0
  201. package/dist/cli.js +996 -710
  202. package/dist/commands/branches.js +97 -0
  203. package/dist/commands/check-commit.js +225 -0
  204. package/dist/commands/compress-output.js +64 -0
  205. package/dist/commands/config-verify.js +243 -0
  206. package/dist/commands/daemon.js +905 -0
  207. package/dist/commands/dashboard.js +52 -0
  208. package/dist/commands/debug.js +200 -0
  209. package/dist/commands/enrich.js +184 -0
  210. package/dist/commands/exec.js +233 -0
  211. package/dist/commands/gain.js +156 -0
  212. package/dist/commands/hook.js +88 -0
  213. package/dist/commands/index.js +88 -0
  214. package/dist/commands/init.js +74 -0
  215. package/dist/commands/install.js +505 -0
  216. package/dist/commands/learn.js +116 -0
  217. package/dist/commands/manifest.js +193 -0
  218. package/dist/commands/rewind.js +103 -0
  219. package/dist/commands/serve.js +19 -0
  220. package/dist/commands/setup-wizard.js +414 -0
  221. package/dist/commands/skills.js +64 -0
  222. package/dist/commands/stats.js +20 -0
  223. package/dist/commands/status.js +654 -0
  224. package/dist/commands/timeline.js +139 -0
  225. package/dist/commands/uninstall.js +230 -0
  226. package/dist/components/App.js +109 -0
  227. package/dist/components/Banner.js +12 -0
  228. package/dist/components/ConfirmPrompt.js +25 -0
  229. package/dist/components/DriftSummary.js +23 -0
  230. package/dist/components/GradeBadge.js +15 -0
  231. package/dist/components/HealthCard.js +18 -0
  232. package/dist/components/InkSpinner.js +22 -0
  233. package/dist/components/InputBox.js +17 -0
  234. package/dist/components/KeyValue.js +13 -0
  235. package/dist/components/MessageList.js +14 -0
  236. package/dist/components/ProgressBar.js +26 -0
  237. package/dist/components/Section.js +16 -0
  238. package/dist/components/SessionSummaryCard.js +73 -0
  239. package/dist/components/StartupDisplay.js +24 -0
  240. package/dist/components/StatusDashboard.js +57 -0
  241. package/dist/components/StatusLine.js +8 -0
  242. package/dist/components/StepLine.js +22 -0
  243. package/dist/components/Theme.js +20 -0
  244. package/dist/components/ToolProgress.js +8 -0
  245. package/dist/components/ViolationList.js +21 -0
  246. package/dist/components/render.js +13 -0
  247. package/dist/config/agent-registry.js +237 -0
  248. package/dist/config/claude-settings-hooks.js +304 -0
  249. package/dist/config/hook-installer.js +65 -0
  250. package/dist/config/instruction-writer.js +388 -0
  251. package/dist/config/mcp-config-writer.js +266 -0
  252. package/dist/config/settings.js +174 -0
  253. package/dist/config/tool-detector.js +42 -0
  254. package/dist/config/value-surfacing.js +119 -0
  255. package/dist/core/context-assembly.js +108 -0
  256. package/dist/core/conversation.js +33 -0
  257. package/dist/core/local-chat-provider.js +475 -0
  258. package/dist/core/provider-factory.js +55 -0
  259. package/dist/core/providers.js +90 -0
  260. package/dist/core/query-engine.js +174 -0
  261. package/dist/daemon/api.js +312 -0
  262. package/dist/daemon/autostart.js +119 -0
  263. package/dist/daemon/bootstrap.js +39 -0
  264. package/dist/daemon/client.js +164 -0
  265. package/dist/daemon/detect-ci.js +81 -0
  266. package/dist/daemon/platform-linux.js +146 -0
  267. package/dist/daemon/platform-macos.js +134 -0
  268. package/dist/daemon/platform-windows.js +116 -0
  269. package/dist/daemon/process-manager.js +299 -0
  270. package/dist/daemon/protocol.js +23 -0
  271. package/dist/daemon/registry.js +270 -0
  272. package/dist/daemon/settings-schema.js +72 -0
  273. package/dist/daemon/system-health.js +134 -0
  274. package/dist/daemon/version-checker.js +262 -0
  275. package/dist/daemon/warm-start.js +223 -0
  276. package/dist/entrypoints/cli.js +1043 -0
  277. package/dist/entrypoints/daemon.js +380 -0
  278. package/dist/entrypoints/repl.js +147 -0
  279. package/dist/hooks/adapters/claude-code.js +90 -0
  280. package/dist/hooks/adapters/cline.js +100 -0
  281. package/dist/hooks/adapters/cursor.js +98 -0
  282. package/dist/hooks/hook-dedup.js +79 -0
  283. package/dist/hooks/hook-runner.js +113 -0
  284. package/dist/hooks/navigation-hooks.js +175 -0
  285. package/dist/hooks/prompt-hooks.js +63 -0
  286. package/dist/hooks/shell-hooks.js +47 -0
  287. package/dist/ignore.js +111 -0
  288. package/dist/intelligence/approach-suggester.js +61 -0
  289. package/dist/intelligence/ast-extractor.js +2615 -0
  290. package/dist/intelligence/ast-worker.js +34 -0
  291. package/dist/intelligence/background-indexer.js +121 -0
  292. package/dist/intelligence/blast-radius.js +200 -0
  293. package/dist/intelligence/community-detection.js +691 -0
  294. package/dist/intelligence/community-detector.js +184 -0
  295. package/dist/intelligence/computation-scheduler.js +75 -0
  296. package/dist/intelligence/confidence-propagation.js +47 -0
  297. package/dist/intelligence/convention-detector.js +242 -0
  298. package/dist/intelligence/convention-learner.js +205 -0
  299. package/dist/intelligence/convention-matcher.js +205 -0
  300. package/dist/intelligence/cozo-schema.js +376 -0
  301. package/dist/intelligence/decision-point-detector.js +90 -0
  302. package/dist/intelligence/deep-dive-tools.js +586 -0
  303. package/dist/intelligence/durability-scorer.js +84 -0
  304. package/dist/intelligence/exploration-cost.js +204 -0
  305. package/dist/intelligence/exploration-pattern-tracker.js +61 -0
  306. package/dist/intelligence/fact-generator.js +322 -0
  307. package/dist/intelligence/facts-schema.js +90 -0
  308. package/dist/intelligence/file-intelligence.js +59 -0
  309. package/dist/intelligence/graph-holder.js +220 -0
  310. package/dist/intelligence/graph-temporal-joiner.js +238 -0
  311. package/dist/intelligence/health-grade.js +423 -0
  312. package/dist/intelligence/health-grader.js +200 -0
  313. package/dist/intelligence/health-map-data.js +259 -0
  314. package/dist/intelligence/import-symbols.js +136 -0
  315. package/dist/intelligence/incremental-indexer.js +658 -0
  316. package/dist/intelligence/indexer/centrality.js +62 -0
  317. package/dist/intelligence/indexer/cfg-context.js +95 -0
  318. package/dist/intelligence/indexer/confidence.js +34 -0
  319. package/dist/intelligence/indexer/cross-file-resolver.js +104 -0
  320. package/dist/intelligence/indexer/edge-repair.js +89 -0
  321. package/dist/intelligence/indexer/entity-key.js +17 -0
  322. package/dist/intelligence/indexer/export-map.js +132 -0
  323. package/dist/intelligence/indexer/git-cochange.js +128 -0
  324. package/dist/intelligence/indexer/graph-patch.js +147 -0
  325. package/dist/intelligence/indexer/incremental.js +78 -0
  326. package/dist/intelligence/indexer/ingest.js +160 -0
  327. package/dist/intelligence/indexer/language-detect.js +226 -0
  328. package/dist/intelligence/indexer/metadata.js +63 -0
  329. package/dist/intelligence/indexer/mutation-tracker.js +79 -0
  330. package/dist/intelligence/indexer/orchestrator.js +155 -0
  331. package/dist/intelligence/indexer/plugin-interface.js +31 -0
  332. package/dist/intelligence/indexer/plugins/csharp.js +440 -0
  333. package/dist/intelligence/indexer/plugins/go.js +335 -0
  334. package/dist/intelligence/indexer/plugins/java.js +370 -0
  335. package/dist/intelligence/indexer/plugins/python.js +358 -0
  336. package/dist/intelligence/indexer/plugins/regex-fallback.js +82 -0
  337. package/dist/intelligence/indexer/plugins/ruby.js +290 -0
  338. package/dist/intelligence/indexer/plugins/rust.js +484 -0
  339. package/dist/intelligence/indexer/plugins/tier2-generic.js +310 -0
  340. package/dist/intelligence/indexer/plugins/typescript.js +456 -0
  341. package/dist/intelligence/indexer/resource-monitor.js +93 -0
  342. package/dist/intelligence/indexer/scip/decoder.js +253 -0
  343. package/dist/intelligence/indexer/scip/detector.js +232 -0
  344. package/dist/intelligence/indexer/scip/downloader.js +427 -0
  345. package/dist/intelligence/indexer/scip/fallback.js +34 -0
  346. package/dist/intelligence/indexer/scip/merger.js +109 -0
  347. package/dist/intelligence/indexer/scip/orchestrator.js +433 -0
  348. package/dist/intelligence/indexer/scip/runner.js +98 -0
  349. package/dist/intelligence/indexer/snapshot.js +66 -0
  350. package/dist/intelligence/indexer/test-detector.js +196 -0
  351. package/dist/intelligence/indexer/watch-integration.js +61 -0
  352. package/dist/intelligence/indexer/worker.js +85 -0
  353. package/dist/intelligence/local-convention-detector.js +437 -0
  354. package/dist/intelligence/local-embeddings.js +190 -0
  355. package/dist/intelligence/local-graph.js +1946 -0
  356. package/dist/intelligence/local-indexer.js +1575 -0
  357. package/dist/intelligence/local-llm.js +163 -0
  358. package/dist/intelligence/local-rule-generator.js +154 -0
  359. package/dist/intelligence/local-snapshot.js +213 -0
  360. package/dist/intelligence/negative-knowledge.js +103 -0
  361. package/dist/intelligence/persistent-db.js +85 -0
  362. package/dist/intelligence/query-router.js +2556 -0
  363. package/dist/intelligence/risk-classifier.js +116 -0
  364. package/dist/intelligence/rule-evaluator.js +380 -0
  365. package/dist/intelligence/rule-generator.js +49 -0
  366. package/dist/intelligence/search-index.js +173 -0
  367. package/dist/intelligence/semantic/docstring-extractor.js +67 -0
  368. package/dist/intelligence/semantic/embedding-store.js +52 -0
  369. package/dist/intelligence/semantic/enrichment-orchestrator.js +48 -0
  370. package/dist/intelligence/semantic/git-message-miner.js +114 -0
  371. package/dist/intelligence/semantic/identifier-tokenizer.js +51 -0
  372. package/dist/intelligence/semantic/node2vec-embeddings.js +71 -0
  373. package/dist/intelligence/semantic/node2vec-walks.js +103 -0
  374. package/dist/intelligence/semantic/path-domain-inference.js +112 -0
  375. package/dist/intelligence/semantic/similarity-engine.js +60 -0
  376. package/dist/intelligence/semantic/tfidf-vectors.js +88 -0
  377. package/dist/intelligence/session-brief-builder.js +159 -0
  378. package/dist/intelligence/session-context.js +221 -0
  379. package/dist/intelligence/session-health-monitor.js +211 -0
  380. package/dist/intelligence/session-narrative.js +197 -0
  381. package/dist/intelligence/session-pattern-analyzer.js +218 -0
  382. package/dist/intelligence/signal-scorer.js +390 -0
  383. package/dist/intelligence/signal-show-store.js +182 -0
  384. package/dist/intelligence/smart-truncate.js +158 -0
  385. package/dist/intelligence/subgraph-cache.js +88 -0
  386. package/dist/intelligence/temporal-facts.js +494 -0
  387. package/dist/intelligence/token-estimator.js +100 -0
  388. package/dist/intelligence/tool-injector.js +87 -0
  389. package/dist/intelligence/tree-sitter-loader.js +71 -0
  390. package/dist/intelligence/worker-pool.js +116 -0
  391. package/dist/proxy/arg-validator.js +79 -0
  392. package/dist/proxy/auto-bootstrap.js +167 -0
  393. package/dist/proxy/bridge.js +147 -0
  394. package/dist/proxy/budget-enforcer.js +70 -0
  395. package/dist/proxy/compression-quality-monitor.js +160 -0
  396. package/dist/proxy/compression-stats.js +51 -0
  397. package/dist/proxy/context-rot-detector.js +137 -0
  398. package/dist/proxy/drift-detector.js +139 -0
  399. package/dist/proxy/efficiency-tracker.js +79 -0
  400. package/dist/proxy/fact-ranking.js +154 -0
  401. package/dist/proxy/format-encoder.js +266 -0
  402. package/dist/proxy/http-transport.js +90 -0
  403. package/dist/proxy/lifecycle-actor.js +55 -0
  404. package/dist/proxy/lifecycle-machine.js +187 -0
  405. package/dist/proxy/log-tailer.js +265 -0
  406. package/dist/proxy/model-pricing.js +98 -0
  407. package/dist/proxy/network-firewall.js +141 -0
  408. package/dist/proxy/nudge-state.js +93 -0
  409. package/dist/proxy/output-compressor.js +185 -0
  410. package/dist/proxy/pid-lock.js +291 -0
  411. package/dist/proxy/proxy-context.js +11 -0
  412. package/dist/proxy/proxy.js +2633 -0
  413. package/dist/proxy/response-enrichment.js +32 -0
  414. package/dist/proxy/response-envelope.js +313 -0
  415. package/dist/proxy/session-dedup.js +82 -0
  416. package/dist/proxy/session-legend.js +30 -0
  417. package/dist/proxy/session-persistence.js +210 -0
  418. package/dist/proxy/session-resume.js +94 -0
  419. package/dist/proxy/session-stats.js +513 -0
  420. package/dist/proxy/shell-classifier.js +1346 -0
  421. package/dist/proxy/shell-compression-log.js +93 -0
  422. package/dist/proxy/shell-compressor.js +390 -0
  423. package/dist/proxy/shell-graph-boost.js +202 -0
  424. package/dist/proxy/shell-monitor-map.js +18 -0
  425. package/dist/proxy/shell-stats.js +54 -0
  426. package/dist/proxy/shell-strategies/cloud.js +215 -0
  427. package/dist/proxy/shell-strategies/diff.js +159 -0
  428. package/dist/proxy/shell-strategies/error-diagnostic.js +796 -0
  429. package/dist/proxy/shell-strategies/filter-dsl.js +358 -0
  430. package/dist/proxy/shell-strategies/git-status.js +177 -0
  431. package/dist/proxy/shell-strategies/key-value.js +193 -0
  432. package/dist/proxy/shell-strategies/log-text.js +154 -0
  433. package/dist/proxy/shell-strategies/omni.js +188 -0
  434. package/dist/proxy/shell-strategies/progress.js +55 -0
  435. package/dist/proxy/shell-strategies/redact.js +76 -0
  436. package/dist/proxy/shell-strategies/structured.js +241 -0
  437. package/dist/proxy/shell-strategies/tabular.js +243 -0
  438. package/dist/proxy/shell-strategies/test-results-types.js +13 -0
  439. package/dist/proxy/shell-strategies/test-results.js +784 -0
  440. package/dist/proxy/shell-strategies/tree-paths.js +144 -0
  441. package/dist/proxy/shell-strategies/yaml.js +182 -0
  442. package/dist/proxy/shell-tee.js +111 -0
  443. package/dist/proxy/signal-dedup.js +171 -0
  444. package/dist/proxy/startup-renderer.js +158 -0
  445. package/dist/proxy/task-token-display.js +38 -0
  446. package/dist/proxy/token-counter.js +61 -0
  447. package/dist/proxy/tool-clusters.js +273 -0
  448. package/dist/proxy/tool-definitions.js +525 -0
  449. package/dist/proxy/transport-mux.js +229 -0
  450. package/dist/proxy/wire-cap.js +268 -0
  451. package/dist/schemas/api/skills.js +19 -0
  452. package/dist/schemas/common/errors.js +7 -0
  453. package/dist/schemas/common/headers.js +5 -0
  454. package/dist/schemas/entities/edge.js +25 -0
  455. package/dist/schemas/entities/entity.js +22 -0
  456. package/dist/schemas/entities/rule.js +18 -0
  457. package/dist/schemas/index.js +14 -0
  458. package/dist/server/event-bus.js +59 -0
  459. package/dist/server/http.js +156 -0
  460. package/dist/server/middleware.js +70 -0
  461. package/dist/server/routes/drift.js +97 -0
  462. package/dist/server/routes/intelligence.js +1217 -0
  463. package/dist/server/routes/reasoning-quality.js +444 -0
  464. package/dist/server/routes/session.js +86 -0
  465. package/dist/server/routes/stream.js +120 -0
  466. package/dist/server/routes/system.js +73 -0
  467. package/dist/server/routes/temporal.js +170 -0
  468. package/dist/server/routes/timeline.js +232 -0
  469. package/dist/server/routes/token-flow.js +403 -0
  470. package/dist/skills/effectiveness-tracker.js +93 -0
  471. package/dist/skills/local-pack.js +380 -0
  472. package/dist/skills/resolver.js +495 -0
  473. package/dist/state-detector.js +83 -0
  474. package/dist/timeline/intent-detector.js +263 -0
  475. package/dist/timeline/loop-miner.js +140 -0
  476. package/dist/timeline/open-threads.js +49 -0
  477. package/dist/timeline/signal-reinforcer.js +62 -0
  478. package/dist/timeline/timeline-bootstrap.js +151 -0
  479. package/dist/timeline/timeline-store.js +618 -0
  480. package/dist/tools/coding/bash.js +49 -0
  481. package/dist/tools/coding/file-edit.js +72 -0
  482. package/dist/tools/coding/file-outline.js +227 -0
  483. package/dist/tools/coding/file-read-protocol.js +425 -0
  484. package/dist/tools/coding/file-read.js +35 -0
  485. package/dist/tools/coding/file-write.js +43 -0
  486. package/dist/tools/coding/glob-tool.js +109 -0
  487. package/dist/tools/coding/grep.js +162 -0
  488. package/dist/tools/coding/index.js +27 -0
  489. package/dist/tools/intelligence/index.js +269 -0
  490. package/dist/tools/intelligence/record-fact.js +48 -0
  491. package/dist/tools/intelligence/timeline-markers.js +130 -0
  492. package/dist/tools/registry.js +47 -0
  493. package/dist/tools/types.js +8 -0
  494. package/dist/tracking/auto-snapshot-triggers.js +246 -0
  495. package/dist/tracking/branch-context.js +115 -0
  496. package/dist/tracking/branch-snapshot.js +217 -0
  497. package/dist/tracking/causal-bridge.js +317 -0
  498. package/dist/tracking/circuit-breaker.js +147 -0
  499. package/dist/tracking/commit-watcher.js +114 -0
  500. package/dist/tracking/context-ledger.js +119 -0
  501. package/dist/tracking/correction-detector.js +324 -0
  502. package/dist/tracking/drift-tracker.js +874 -0
  503. package/dist/tracking/durability-tracker.js +94 -0
  504. package/dist/tracking/entity-rewind.js +200 -0
  505. package/dist/tracking/file-hash-state.js +114 -0
  506. package/dist/tracking/git-attribution.js +132 -0
  507. package/dist/tracking/git-trailers.js +171 -0
  508. package/dist/tracking/intelligence-counter.js +46 -0
  509. package/dist/tracking/intent-correlator.js +202 -0
  510. package/dist/tracking/intent-encoder.js +52 -0
  511. package/dist/tracking/intent-token-tracker.js +159 -0
  512. package/dist/tracking/ledger-archiver.js +94 -0
  513. package/dist/tracking/ledger-chains.js +245 -0
  514. package/dist/tracking/metrics-store.js +361 -0
  515. package/dist/tracking/native-watcher.js +131 -0
  516. package/dist/tracking/offline-rewind.js +295 -0
  517. package/dist/tracking/pending-violations.js +74 -0
  518. package/dist/tracking/persistence-effectiveness.js +167 -0
  519. package/dist/tracking/prompt-durability.js +202 -0
  520. package/dist/tracking/quality-signals.js +213 -0
  521. package/dist/tracking/redactor.js +73 -0
  522. package/dist/tracking/rewind-engine.js +161 -0
  523. package/dist/tracking/session-history.js +128 -0
  524. package/dist/tracking/session-receipt.js +88 -0
  525. package/dist/tracking/session-summary-writer.js +157 -0
  526. package/dist/tracking/shadow-ledger.js +321 -0
  527. package/dist/tracking/stash-manager.js +258 -0
  528. package/dist/tracking/timeline-fork.js +213 -0
  529. package/dist/tracking/timeline.js +69 -0
  530. package/dist/tracking/token-flow.js +276 -0
  531. package/dist/tracking/turn-segmenter.js +122 -0
  532. package/dist/tracking/weekly-accumulator.js +179 -0
  533. package/dist/tracking/working-snapshots.js +188 -0
  534. package/dist/tracking/workspace-manifest.js +176 -0
  535. package/dist/transport/http.js +102 -0
  536. package/dist/ui/assets/index-BsMTQdhX.js +10 -0
  537. package/dist/ui/index.html +1 -1
  538. package/dist/utils/counterfactual.js +65 -0
  539. package/dist/utils/deep-link.js +34 -0
  540. package/dist/utils/detect.js +193 -0
  541. package/dist/utils/exec.js +73 -0
  542. package/dist/utils/file-logger.js +87 -0
  543. package/dist/utils/format-error.js +29 -0
  544. package/dist/utils/git.js +181 -0
  545. package/dist/utils/log.js +57 -0
  546. package/dist/utils/logger.js +35 -0
  547. package/dist/utils/mcp-content-json.js +8 -0
  548. package/dist/utils/session-logger.js +154 -0
  549. package/dist/utils/startup-log.js +512 -0
  550. package/dist/utils/ui.js +56 -0
  551. package/package.json +5 -3
  552. package/scripts/postinstall.mjs +312 -0
  553. package/dist/ui/assets/index-B-0HTtUR.js +0 -10
@@ -0,0 +1,128 @@
1
+ /**
2
+ * Session History Persistence — one row per session in
3
+ * `.unerr/metrics.db` (`session_history`).
4
+ *
5
+ * T.8: Was append-only JSONL at `.unerr/state/session-history.jsonl`;
6
+ * migrated to SQLite for cross-session aggregations used by `unerr stats`.
7
+ * Same wire types — the table is a 1:1 mirror of the old record shape.
8
+ */
9
+ import { openMetricsStore } from "./metrics-store.js";
10
+ function rowToEntry(r) {
11
+ const entry = {
12
+ sessionId: r.session_id,
13
+ startedAt: r.started_at,
14
+ endedAt: r.ended_at,
15
+ durationMs: r.duration_ms,
16
+ toolCalls: r.tool_calls,
17
+ tokensSaved: r.tokens_saved,
18
+ tokensProcessed: r.tokens_processed,
19
+ efficiency: r.efficiency,
20
+ dollarsSaved: r.dollars_saved,
21
+ modelId: r.model_id,
22
+ entityCount: r.entity_count,
23
+ };
24
+ if (r.agent_name)
25
+ entry.agentName = r.agent_name;
26
+ if (r.token_flow_summary) {
27
+ try {
28
+ entry.tokenFlowSummary = JSON.parse(r.token_flow_summary);
29
+ }
30
+ catch {
31
+ /* malformed JSON — drop the summary field */
32
+ }
33
+ }
34
+ return entry;
35
+ }
36
+ /**
37
+ * Append (or upsert) a session entry to the history store.
38
+ * The store uses `session_id` as a unique key — re-recording the same
39
+ * session updates the existing row.
40
+ */
41
+ export function appendSessionHistory(unerrDir, entry) {
42
+ try {
43
+ const store = openMetricsStore(unerrDir);
44
+ store.upsertSessionHistory({
45
+ session_id: entry.sessionId,
46
+ started_at: entry.startedAt,
47
+ ended_at: entry.endedAt,
48
+ duration_ms: entry.durationMs,
49
+ tool_calls: entry.toolCalls,
50
+ tokens_saved: entry.tokensSaved,
51
+ tokens_processed: entry.tokensProcessed,
52
+ efficiency: entry.efficiency,
53
+ dollars_saved: entry.dollarsSaved,
54
+ model_id: entry.modelId,
55
+ entity_count: entry.entityCount,
56
+ agent_name: entry.agentName ?? null,
57
+ token_flow_summary: entry.tokenFlowSummary
58
+ ? JSON.stringify(entry.tokenFlowSummary)
59
+ : null,
60
+ });
61
+ }
62
+ catch {
63
+ /* best effort — session history is observability, never block exit */
64
+ }
65
+ }
66
+ /**
67
+ * Read all session history entries.
68
+ */
69
+ export function readSessionHistory(unerrDir) {
70
+ try {
71
+ return openMetricsStore(unerrDir).allSessionHistory().map(rowToEntry);
72
+ }
73
+ catch {
74
+ return [];
75
+ }
76
+ }
77
+ /**
78
+ * Aggregate stats for a time period.
79
+ */
80
+ export function aggregateStats(entries, periodLabel) {
81
+ if (entries.length === 0) {
82
+ return {
83
+ sessions: 0,
84
+ tokensSaved: 0,
85
+ dollarsSaved: 0,
86
+ avgEfficiency: 0,
87
+ totalToolCalls: 0,
88
+ periodLabel,
89
+ };
90
+ }
91
+ const tokensSaved = entries.reduce((s, e) => s + e.tokensSaved, 0);
92
+ const dollarsSaved = entries.reduce((s, e) => s + e.dollarsSaved, 0);
93
+ const totalToolCalls = entries.reduce((s, e) => s + e.toolCalls, 0);
94
+ const avgEfficiency = entries.reduce((s, e) => s + e.efficiency, 0) / entries.length;
95
+ return {
96
+ sessions: entries.length,
97
+ tokensSaved,
98
+ dollarsSaved,
99
+ avgEfficiency: Math.round(avgEfficiency),
100
+ totalToolCalls,
101
+ periodLabel,
102
+ };
103
+ }
104
+ /**
105
+ * Get stats for this week (last 7 days).
106
+ */
107
+ export function getWeeklyStats(unerrDir) {
108
+ const all = readSessionHistory(unerrDir);
109
+ const cutoff = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000).toISOString();
110
+ const thisWeek = all.filter((e) => e.startedAt >= cutoff);
111
+ return aggregateStats(thisWeek, "This week");
112
+ }
113
+ /**
114
+ * Get stats for this month (last 30 days).
115
+ */
116
+ export function getMonthlyStats(unerrDir) {
117
+ const all = readSessionHistory(unerrDir);
118
+ const cutoff = new Date(Date.now() - 30 * 24 * 60 * 60 * 1000).toISOString();
119
+ const thisMonth = all.filter((e) => e.startedAt >= cutoff);
120
+ return aggregateStats(thisMonth, "This month");
121
+ }
122
+ /**
123
+ * Get all-time stats.
124
+ */
125
+ export function getAllTimeStats(unerrDir) {
126
+ const all = readSessionHistory(unerrDir);
127
+ return aggregateStats(all, "All time");
128
+ }
@@ -0,0 +1,88 @@
1
+ /**
2
+ * Session Receipt — the viral artifact.
3
+ *
4
+ * Layer 10 TF-C.4: Produces a formatted, screenshot-worthy receipt on session
5
+ * disconnect showing token savings with full mechanism attribution.
6
+ *
7
+ * Output goes to stderr (stdout is MCP JSON-RPC only).
8
+ */
9
+ const DIM = "\x1b[2m";
10
+ const BOLD = "\x1b[1m";
11
+ const RESET = "\x1b[0m";
12
+ const EMERALD = "\x1b[38;2;52;211;153m";
13
+ const CYAN = "\x1b[38;2;34;211;238m";
14
+ const VIOLET = "\x1b[38;2;139;92;246m";
15
+ const MUTED = "\x1b[38;2;161;161;170m";
16
+ function formatTokens(n) {
17
+ if (n >= 1_000_000)
18
+ return `${(n / 1_000_000).toFixed(1)}M`;
19
+ if (n >= 1_000)
20
+ return `${(n / 1_000).toFixed(1)}K`;
21
+ return String(n);
22
+ }
23
+ function padRight(s, len) {
24
+ return s.length >= len ? s : s + " ".repeat(len - s.length);
25
+ }
26
+ /**
27
+ * Format a session receipt as a bordered box for stderr display.
28
+ * Returns the complete ANSI-formatted string.
29
+ */
30
+ export function formatSessionReceipt(input) {
31
+ const { summary, durationMs, toolCalls } = input;
32
+ const W = 47;
33
+ const durationMin = Math.max(1, Math.round(durationMs / 60_000));
34
+ const lines = [];
35
+ const border = (s) => ` ${DIM}│${RESET} ${s}${" ".repeat(Math.max(0, W - stripAnsi(s).length - 1))}${DIM}│${RESET}`;
36
+ const empty = () => border("");
37
+ lines.push(` ${DIM}┌${"─".repeat(W)}┐${RESET}`);
38
+ lines.push(border(`${VIOLET}${BOLD}unerr${RESET} session receipt`));
39
+ lines.push(empty());
40
+ lines.push(border(`Duration: ${CYAN}${durationMin} minutes${RESET}`));
41
+ lines.push(border(`Tool calls: ${CYAN}${toolCalls}${RESET}`));
42
+ lines.push(border(`Tokens saved: ${EMERALD}${formatTokens(summary.total_tokens_saved).padEnd(10)}${RESET}`));
43
+ lines.push(border(`Tokens delivered: ${CYAN}${formatTokens(summary.total_tokens_with).padEnd(10)}${RESET}`));
44
+ lines.push(border(`Efficiency: ${EMERALD}${summary.efficiency_pct}%${RESET}`));
45
+ lines.push(empty());
46
+ // Mechanism breakdown — top 4
47
+ const mechs = Object.entries(summary.by_mechanism)
48
+ .sort(([, a], [, b]) => b.tokens_saved - a.tokens_saved)
49
+ .slice(0, 4);
50
+ if (mechs.length > 0) {
51
+ lines.push(border(`${MUTED}Top savings:${RESET}`));
52
+ for (const [mech, data] of mechs) {
53
+ const pctStr = `(${Math.round(data.pct_of_total)}%)`;
54
+ lines.push(border(` ${padRight(mech, 20)} ${EMERALD}${formatTokens(data.tokens_saved).padStart(6)}${RESET} ${MUTED}${pctStr}${RESET}`));
55
+ }
56
+ lines.push(empty());
57
+ }
58
+ // Most efficient turn
59
+ if (summary.top_turns.length > 0) {
60
+ const top = summary.top_turns[0];
61
+ lines.push(border(`${MUTED}Most efficient:${RESET} ${BOLD}${top.tool}${RESET} ${MUTED}→${RESET} ${EMERALD}${formatTokens(top.tokens_saved)}${RESET} saved`));
62
+ }
63
+ // Weekly context
64
+ if (input.weeklyTokensSaved && input.weeklyTokensSaved > 0) {
65
+ const weekLabel = `This week: ${formatTokens(input.weeklyTokensSaved)} saved across ${input.weeklySessions ?? 0} sessions`;
66
+ lines.push(border(`${MUTED}${weekLabel}${RESET}`));
67
+ }
68
+ lines.push(` ${DIM}└${"─".repeat(W)}┘${RESET}`);
69
+ return `\n${lines.join("\n")}\n`;
70
+ }
71
+ /**
72
+ * Print the session receipt to stderr.
73
+ * Safe to call in shutdown — never throws.
74
+ */
75
+ export function printSessionReceipt(input) {
76
+ try {
77
+ const receipt = formatSessionReceipt(input);
78
+ process.stderr.write(receipt);
79
+ }
80
+ catch {
81
+ /* best effort — never block shutdown */
82
+ }
83
+ }
84
+ function stripAnsi(s) {
85
+ const ESC = "\x1b";
86
+ const CSI = new RegExp(`${ESC}\\[[0-9;?]*[A-Za-z~]`, "g");
87
+ return s.replace(CSI, "");
88
+ }
@@ -0,0 +1,157 @@
1
+ /**
2
+ * Session Summary Writer — SQLite persistence on session disconnect.
3
+ *
4
+ * Layer 9 PI-3/PI-4: When an --mcp session ends (stdin close / SIGTERM),
5
+ * this module upserts a structured summary into `.unerr/metrics.db`
6
+ * (`session_summaries` table — was JSONL at `.unerr/sessions/{id}.jsonl`).
7
+ *
8
+ * The daemon's fact generation pipeline (PI-5) reads these summaries to
9
+ * extract facts, detect patterns, and reinforce/contradict existing knowledge.
10
+ *
11
+ * Key invariant: `session_id` is the row PK. Re-running for the same session
12
+ * upserts (latest write wins) — matches the JSONL "append + last wins" model.
13
+ *
14
+ * Graceful degradation: if write fails, session data is lost but MCP
15
+ * connection closes cleanly without error.
16
+ */
17
+ import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
18
+ import { join } from "node:path";
19
+ import { extractChains } from "./ledger-chains.js";
20
+ import { openMetricsStore } from "./metrics-store.js";
21
+ // ── Public API ───────────────────────────────────────────────────────
22
+ /**
23
+ * Upsert a session summary into `.unerr/metrics.db` (session_summaries).
24
+ * Called on graceful shutdown of --mcp mode.
25
+ *
26
+ * Returns the written record on success, null on failure (silent degradation).
27
+ */
28
+ export function writeSessionSummary(unerrDir, ctx) {
29
+ if (ctx.entries.length === 0)
30
+ return null;
31
+ try {
32
+ const sorted = [...ctx.entries].sort((a, b) => new Date(a.ts).getTime() - new Date(b.ts).getTime());
33
+ const first = sorted[0];
34
+ const last = sorted[sorted.length - 1];
35
+ const chains = extractChains(sorted);
36
+ const files = new Set();
37
+ const entities = new Set();
38
+ const toolCounts = {};
39
+ const featureAreas = new Set();
40
+ let revertCount = 0;
41
+ for (const entry of sorted) {
42
+ toolCounts[entry.tool] = (toolCounts[entry.tool] ?? 0) + 1;
43
+ const filePath = extractFilePath(entry);
44
+ if (filePath)
45
+ files.add(filePath);
46
+ const entityKeys = extractEntityKeysFromEntry(entry);
47
+ for (const key of entityKeys)
48
+ entities.add(key);
49
+ if (entry.feature_area)
50
+ featureAreas.add(entry.feature_area);
51
+ }
52
+ for (const chain of chains) {
53
+ if (chain.outcome === "reverted")
54
+ revertCount++;
55
+ }
56
+ const record = {
57
+ session_id: ctx.sessionId,
58
+ written_at: new Date().toISOString(),
59
+ started_at: first.ts,
60
+ ended_at: last.ts,
61
+ duration_ms: new Date(last.ts).getTime() - new Date(first.ts).getTime(),
62
+ tool_calls: sorted.length,
63
+ chains: chains.length,
64
+ files_modified: [...files],
65
+ entities_touched: [...entities].slice(0, 50),
66
+ tools_used: toolCounts,
67
+ feature_areas: [...featureAreas],
68
+ facts_recorded: ctx.factsRecordedIds.length,
69
+ facts_surfaced: ctx.factsSurfacedIds.slice(0, 20),
70
+ revert_count: revertCount,
71
+ rot_score: ctx.rotScore,
72
+ token_estimate: ctx.tokenEstimate,
73
+ branch: last.branch ?? "unknown",
74
+ };
75
+ // Persist to .unerr/metrics.db (session_summaries) — was JSONL pre-Layer 12.
76
+ const store = openMetricsStore(unerrDir);
77
+ store.upsertSessionSummary({
78
+ session_id: record.session_id,
79
+ written_at: record.written_at,
80
+ started_at: record.started_at,
81
+ ended_at: record.ended_at,
82
+ duration_ms: record.duration_ms,
83
+ tool_calls: record.tool_calls,
84
+ chains: record.chains,
85
+ files_modified: JSON.stringify(record.files_modified),
86
+ entities_touched: JSON.stringify(record.entities_touched),
87
+ tools_used: JSON.stringify(record.tools_used),
88
+ feature_areas: JSON.stringify(record.feature_areas),
89
+ facts_recorded: record.facts_recorded,
90
+ facts_surfaced: JSON.stringify(record.facts_surfaced),
91
+ revert_count: record.revert_count,
92
+ rot_score: record.rot_score,
93
+ token_estimate: record.token_estimate,
94
+ branch: record.branch,
95
+ });
96
+ // last_session.json stays JSON — atomic single-file pointer, stable
97
+ // across daemon restarts, used by the "next session" resume strip.
98
+ writeLastSessionPointer(unerrDir, ctx.sessionId, record);
99
+ return record;
100
+ }
101
+ catch (err) {
102
+ process.stderr.write(`[unerr:session] WARN: Failed to write session summary: ${err instanceof Error ? err.message : String(err)}\n`);
103
+ return null;
104
+ }
105
+ }
106
+ /**
107
+ * Read the last session summary (from last_session.json pointer).
108
+ * Returns null if no prior session exists.
109
+ */
110
+ export function readLastSession(unerrDir) {
111
+ try {
112
+ const pointerPath = join(unerrDir, "state", "last_session.json");
113
+ if (!existsSync(pointerPath))
114
+ return null;
115
+ const content = readFileSync(pointerPath, "utf-8");
116
+ return JSON.parse(content);
117
+ }
118
+ catch {
119
+ return null;
120
+ }
121
+ }
122
+ // ── Internal ─────────────────────────────────────────────────────────
123
+ function writeLastSessionPointer(unerrDir, sessionId, record) {
124
+ try {
125
+ const stateDir = join(unerrDir, "state");
126
+ if (!existsSync(stateDir)) {
127
+ mkdirSync(stateDir, { recursive: true });
128
+ }
129
+ const pointerPath = join(stateDir, "last_session.json");
130
+ writeFileSync(pointerPath, JSON.stringify(record, null, 2), "utf-8");
131
+ }
132
+ catch {
133
+ // Non-critical — pointer failure doesn't affect session integrity
134
+ }
135
+ }
136
+ function extractFilePath(entry) {
137
+ const args = entry.args_summary;
138
+ if (typeof args.file_path === "string")
139
+ return args.file_path;
140
+ if (typeof args.path === "string")
141
+ return args.path;
142
+ if (typeof args.key === "string" && args.key.includes("/")) {
143
+ return args.key.includes("::") ? args.key.split("::")[0] : args.key;
144
+ }
145
+ return null;
146
+ }
147
+ function extractEntityKeysFromEntry(entry) {
148
+ const keys = [];
149
+ const args = entry.args_summary;
150
+ if (typeof args.key === "string" && args.key.length > 0) {
151
+ keys.push(args.key);
152
+ }
153
+ if (typeof args.entity === "string" && args.entity.length > 0) {
154
+ keys.push(args.entity);
155
+ }
156
+ return keys;
157
+ }
@@ -0,0 +1,321 @@
1
+ /**
2
+ * Shadow Ledger Writer — append-only JSONL intent journal.
3
+ *
4
+ * Every MCP tool call that passes through the proxy gets an intent entry appended
5
+ * to `.unerr/ledger/shadow.jsonl`. The in-memory buffer keeps the last 100 entries
6
+ * for correlation lookups (no full-file parse needed).
7
+ *
8
+ * Entry format: one JSON object per line (JSONL / newline-delimited JSON).
9
+ * On startup, the file is validated — partial writes are truncated to the last
10
+ * valid line.
11
+ *
12
+ * Performance: append is O(1) via fs.appendFileSync. Buffer is a fixed-size ring.
13
+ * All logging to stderr.
14
+ */
15
+ import { randomBytes } from "node:crypto";
16
+ import { appendFileSync, existsSync, mkdirSync, readFileSync, writeFileSync, } from "node:fs";
17
+ import { join } from "node:path";
18
+ import { redactArgs } from "./redactor.js";
19
+ import { TurnSegmenter } from "./turn-segmenter.js";
20
+ const MAX_BUFFER_SIZE = 100;
21
+ const CORRELATION_WINDOW_MS = 30_000; // 30 seconds
22
+ const MAX_ARG_VALUE_LENGTH = 200;
23
+ export class ShadowLedger {
24
+ ledgerDir;
25
+ filePath;
26
+ sessionId;
27
+ buffer = [];
28
+ lastEntryTime = 0;
29
+ currentRootId = null;
30
+ turnSegmenter;
31
+ constructor(unerrDir, options = {}) {
32
+ this.ledgerDir = join(unerrDir, "ledger");
33
+ this.filePath = join(this.ledgerDir, "shadow.jsonl");
34
+ this.sessionId = generateId();
35
+ this.turnSegmenter = options.turnSegmenter ?? new TurnSegmenter();
36
+ // Ensure directory exists
37
+ if (!existsSync(this.ledgerDir)) {
38
+ mkdirSync(this.ledgerDir, { recursive: true });
39
+ }
40
+ // Recover from corruption on startup
41
+ this.recoverFile();
42
+ // Load recent entries into buffer
43
+ this.loadRecentEntries();
44
+ }
45
+ /**
46
+ * Subscribers (e.g., the timeline subsystem) get the same segmenter so they
47
+ * can observe turn-close events to roll up turns into timeline.db.
48
+ */
49
+ getTurnSegmenter() {
50
+ return this.turnSegmenter;
51
+ }
52
+ /**
53
+ * Close the current turn for this ledger's session. Called by Stop hooks
54
+ * (Claude Code) or on shutdown. The next recorded entry will open a fresh
55
+ * turn with confidence "first_call".
56
+ */
57
+ closeTurn(reason = "stop_hook") {
58
+ this.turnSegmenter.closeTurn(this.sessionId, reason);
59
+ }
60
+ /**
61
+ * Record a tool call as a ledger entry.
62
+ */
63
+ record(tool, args, resultSummary, branch, headSha, promptContext) {
64
+ const now = Date.now();
65
+ const correlationId = this.computeCorrelation(tool, now);
66
+ const entry = {
67
+ id: generateId(),
68
+ ts: new Date(now).toISOString(),
69
+ tool,
70
+ // ST-6: redact known secret patterns BEFORE truncating so the regex
71
+ // catches whole values; then truncate any remaining long strings.
72
+ args_summary: truncateArgs(redactArgs(args)),
73
+ result_summary: resultSummary,
74
+ branch,
75
+ head_sha: headSha,
76
+ session_id: this.sessionId,
77
+ correlation_id: correlationId,
78
+ ...(promptContext?.planSummary
79
+ ? { plan_summary: promptContext.planSummary }
80
+ : {}),
81
+ ...(promptContext?.changeType
82
+ ? { change_type: promptContext.changeType }
83
+ : {}),
84
+ ...(promptContext?.featureArea
85
+ ? { feature_area: promptContext.featureArea }
86
+ : {}),
87
+ };
88
+ // ST-1: stamp turn_id / turn_confidence in place before persist.
89
+ this.turnSegmenter.observe(entry);
90
+ // Append to file
91
+ this.appendEntry(entry);
92
+ // Update in-memory buffer
93
+ this.buffer.push(entry);
94
+ if (this.buffer.length > MAX_BUFFER_SIZE) {
95
+ this.buffer.shift();
96
+ }
97
+ this.lastEntryTime = now;
98
+ return entry;
99
+ }
100
+ /**
101
+ * Get the last N entries from the in-memory buffer.
102
+ */
103
+ getRecentEntries(limit = 20) {
104
+ return this.buffer.slice(-limit);
105
+ }
106
+ /**
107
+ * Get the current root intent ID for correlation.
108
+ */
109
+ getCurrentRootId() {
110
+ return this.currentRootId;
111
+ }
112
+ /**
113
+ * Get the session ID.
114
+ */
115
+ getSessionId() {
116
+ return this.sessionId;
117
+ }
118
+ /**
119
+ * Get the timestamp (ms) of the last sync_local_diff call.
120
+ * Used by AI attribution heuristic to determine change origin.
121
+ * Returns 0 if no sync has been recorded this session.
122
+ */
123
+ getLastSyncTimestamp() {
124
+ for (let i = this.buffer.length - 1; i >= 0; i--) {
125
+ const entry = this.buffer[i];
126
+ if (entry?.tool === "sync_local_diff") {
127
+ return new Date(entry.ts).getTime();
128
+ }
129
+ }
130
+ return 0;
131
+ }
132
+ /**
133
+ * Get ledger stats for `unerr status`.
134
+ */
135
+ getStats() {
136
+ const lastEntry = this.buffer.length > 0 ? this.buffer[this.buffer.length - 1] : null;
137
+ return {
138
+ totalEntries: this.countEntries(),
139
+ bufferSize: this.buffer.length,
140
+ sessionId: this.sessionId,
141
+ lastEntryAt: lastEntry?.ts ?? null,
142
+ };
143
+ }
144
+ /**
145
+ * Get count of entries in the current session.
146
+ */
147
+ getSessionEntryCount() {
148
+ return this.buffer.filter((e) => e.session_id === this.sessionId).length;
149
+ }
150
+ /**
151
+ * Get count of pending correlations (entries with correlation_id that are roots).
152
+ */
153
+ getPendingRootCount() {
154
+ const roots = new Set();
155
+ for (const entry of this.buffer) {
156
+ if (entry.correlation_id === null) {
157
+ roots.add(entry.id);
158
+ }
159
+ }
160
+ return roots.size;
161
+ }
162
+ /**
163
+ * Flush the in-memory buffer to disk (for graceful shutdown).
164
+ * Since we appendFileSync on each record, this is mostly a no-op
165
+ * but ensures any pending state is consistent.
166
+ */
167
+ flush() {
168
+ // Buffer is already synced via appendFileSync — nothing to do
169
+ // This method exists for the shutdown contract
170
+ }
171
+ /**
172
+ * Get all entries (read from file). Used sparingly — prefer buffer.
173
+ */
174
+ readAllEntries() {
175
+ if (!existsSync(this.filePath))
176
+ return [];
177
+ try {
178
+ const content = readFileSync(this.filePath, "utf-8");
179
+ const lines = content.split("\n").filter((l) => l.trim().length > 0);
180
+ return lines.map((line) => JSON.parse(line));
181
+ }
182
+ catch {
183
+ return [];
184
+ }
185
+ }
186
+ // ── Internal ───────────────────────────────────────────────────
187
+ computeCorrelation(tool, now) {
188
+ const gap = now - this.lastEntryTime;
189
+ // sync_local_diff always correlates to active root
190
+ if (tool === "sync_local_diff" && this.currentRootId) {
191
+ return this.currentRootId;
192
+ }
193
+ // If gap > 30s or no previous entry → new root intent
194
+ if (gap > CORRELATION_WINDOW_MS || this.lastEntryTime === 0) {
195
+ this.currentRootId = null; // will be set to this entry's ID after creation
196
+ // Return null — this IS the root
197
+ return null;
198
+ }
199
+ // Within window → correlate to current root
200
+ return this.currentRootId;
201
+ }
202
+ appendEntry(entry) {
203
+ // If this is a root entry (correlation_id is null), update currentRootId
204
+ if (entry.correlation_id === null) {
205
+ this.currentRootId = entry.id;
206
+ }
207
+ try {
208
+ appendFileSync(this.filePath, `${JSON.stringify(entry)}\n`, "utf-8");
209
+ }
210
+ catch (err) {
211
+ process.stderr.write(`[unerr:ledger] WARN: Failed to append entry: ${err instanceof Error ? err.message : String(err)}\n`);
212
+ }
213
+ }
214
+ /**
215
+ * Recover from file corruption: truncate to last valid JSONL line.
216
+ */
217
+ recoverFile() {
218
+ if (!existsSync(this.filePath))
219
+ return;
220
+ try {
221
+ const content = readFileSync(this.filePath, "utf-8");
222
+ const lines = content.split("\n");
223
+ const validLines = [];
224
+ for (const line of lines) {
225
+ if (line.trim().length === 0)
226
+ continue;
227
+ try {
228
+ JSON.parse(line);
229
+ validLines.push(line);
230
+ }
231
+ catch {
232
+ // Invalid line — stop here (truncate from this point)
233
+ process.stderr.write(`[unerr:ledger] Recovered: truncated ${lines.length - validLines.length} corrupt line(s)\n`);
234
+ break;
235
+ }
236
+ }
237
+ // Rewrite file with only valid lines
238
+ if (validLines.length < lines.filter((l) => l.trim().length > 0).length) {
239
+ writeFileSync(this.filePath, validLines.join("\n") + (validLines.length > 0 ? "\n" : ""), "utf-8");
240
+ }
241
+ }
242
+ catch {
243
+ // File unreadable — start fresh
244
+ writeFileSync(this.filePath, "", "utf-8");
245
+ }
246
+ }
247
+ /**
248
+ * Load the most recent entries from the file into the buffer.
249
+ */
250
+ loadRecentEntries() {
251
+ if (!existsSync(this.filePath))
252
+ return;
253
+ try {
254
+ const content = readFileSync(this.filePath, "utf-8");
255
+ const lines = content.split("\n").filter((l) => l.trim().length > 0);
256
+ // Load last MAX_BUFFER_SIZE entries
257
+ const start = Math.max(0, lines.length - MAX_BUFFER_SIZE);
258
+ for (let i = start; i < lines.length; i++) {
259
+ try {
260
+ const line = lines[i];
261
+ if (!line)
262
+ continue;
263
+ const entry = JSON.parse(line);
264
+ this.buffer.push(entry);
265
+ }
266
+ catch {
267
+ // Skip invalid lines
268
+ }
269
+ }
270
+ // Restore correlation state from last root entry
271
+ for (let i = this.buffer.length - 1; i >= 0; i--) {
272
+ const entry = this.buffer[i];
273
+ if (!entry)
274
+ continue;
275
+ if (entry.correlation_id === null) {
276
+ this.currentRootId = entry.id;
277
+ this.lastEntryTime = new Date(entry.ts).getTime();
278
+ break;
279
+ }
280
+ }
281
+ }
282
+ catch {
283
+ // Start with empty buffer
284
+ }
285
+ }
286
+ /**
287
+ * Count total entries in the file.
288
+ */
289
+ countEntries() {
290
+ if (!existsSync(this.filePath))
291
+ return 0;
292
+ try {
293
+ const content = readFileSync(this.filePath, "utf-8");
294
+ return content.split("\n").filter((l) => l.trim().length > 0).length;
295
+ }
296
+ catch {
297
+ return 0;
298
+ }
299
+ }
300
+ }
301
+ /**
302
+ * Generate a 12-char hex ID (6 random bytes).
303
+ */
304
+ function generateId() {
305
+ return randomBytes(6).toString("hex");
306
+ }
307
+ /**
308
+ * Truncate argument values to prevent JSONL bloat.
309
+ */
310
+ function truncateArgs(args) {
311
+ const result = {};
312
+ for (const [key, value] of Object.entries(args)) {
313
+ if (typeof value === "string" && value.length > MAX_ARG_VALUE_LENGTH) {
314
+ result[key] = `${value.slice(0, MAX_ARG_VALUE_LENGTH)}...`;
315
+ }
316
+ else {
317
+ result[key] = value;
318
+ }
319
+ }
320
+ return result;
321
+ }