mixdog 0.9.63 → 0.9.64

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 (403) hide show
  1. package/README.md +3 -0
  2. package/package.json +9 -2
  3. package/scripts/code-graph-description-contract.mjs +3 -3
  4. package/scripts/verify-release-assets.mjs +2 -2
  5. package/src/runtime/agent/orchestrator/agent-runtime/agent-dispatch.mjs +11 -14
  6. package/src/runtime/agent/orchestrator/agent-runtime/agent-progress-watchdog.mjs +6 -6
  7. package/src/runtime/agent/orchestrator/agent-runtime/cache-strategy.mjs +2 -2
  8. package/src/runtime/agent/orchestrator/agent-trace-format.mjs +1 -0
  9. package/src/runtime/agent/orchestrator/config.mjs +19 -124
  10. package/src/runtime/agent/orchestrator/context/collect.mjs +6 -6
  11. package/src/runtime/agent/orchestrator/dispatch-persist.mjs +2 -2
  12. package/src/runtime/agent/orchestrator/internal-agents.mjs +2 -2
  13. package/src/runtime/agent/orchestrator/mcp/child-tree.mjs +1 -1
  14. package/src/runtime/agent/orchestrator/mcp/client.mjs +4 -4
  15. package/src/runtime/agent/orchestrator/providers/admission-scheduler.mjs +2 -2
  16. package/src/runtime/agent/orchestrator/providers/anthropic-betas.mjs +4 -4
  17. package/src/runtime/agent/orchestrator/providers/anthropic-effort.mjs +2 -2
  18. package/src/runtime/agent/orchestrator/providers/anthropic-max-tokens.mjs +4 -4
  19. package/src/runtime/agent/orchestrator/providers/anthropic-messages.mjs +333 -0
  20. package/src/runtime/agent/orchestrator/providers/anthropic-model-resolve.mjs +2 -2
  21. package/src/runtime/agent/orchestrator/providers/anthropic-oauth-credentials.mjs +4 -4
  22. package/src/runtime/agent/orchestrator/providers/anthropic-oauth.mjs +1 -1
  23. package/src/runtime/agent/orchestrator/providers/anthropic.mjs +3 -277
  24. package/src/runtime/agent/orchestrator/providers/codex-client-meta.mjs +2 -2
  25. package/src/runtime/agent/orchestrator/providers/custom-tool-wire.mjs +1 -1
  26. package/src/runtime/agent/orchestrator/providers/gemini-cache.mjs +2 -2
  27. package/src/runtime/agent/orchestrator/providers/gemini-stream.mjs +6 -6
  28. package/src/runtime/agent/orchestrator/providers/grok-oauth-login.mjs +196 -0
  29. package/src/runtime/agent/orchestrator/providers/grok-oauth-tokens.mjs +460 -0
  30. package/src/runtime/agent/orchestrator/providers/grok-oauth.mjs +14 -593
  31. package/src/runtime/agent/orchestrator/providers/lib/anthropic-request-utils.mjs +1 -1
  32. package/src/runtime/agent/orchestrator/providers/media-normalization.mjs +1 -1
  33. package/src/runtime/agent/orchestrator/providers/openai-compat-wire.mjs +1 -1
  34. package/src/runtime/agent/orchestrator/providers/openai-compat-xai.mjs +4 -4
  35. package/src/runtime/agent/orchestrator/providers/openai-oauth-ws.mjs +2 -2
  36. package/src/runtime/agent/orchestrator/providers/openai-oauth.mjs +5 -280
  37. package/src/runtime/agent/orchestrator/providers/openai-responses-payload.mjs +357 -0
  38. package/src/runtime/agent/orchestrator/providers/openai-ws-headers.mjs +216 -0
  39. package/src/runtime/agent/orchestrator/providers/openai-ws-pool.mjs +2 -188
  40. package/src/runtime/agent/orchestrator/providers/openai-ws-stream.mjs +2 -2
  41. package/src/runtime/agent/orchestrator/providers/openai-ws.mjs +2 -2
  42. package/src/runtime/agent/orchestrator/providers/opencode-go.mjs +1 -1
  43. package/src/runtime/agent/orchestrator/providers/provider-catalog-cache.mjs +1 -1
  44. package/src/runtime/agent/orchestrator/providers/registry.mjs +1 -1
  45. package/src/runtime/agent/orchestrator/providers/retry-classifier.mjs +2 -2
  46. package/src/runtime/agent/orchestrator/providers/statusline-route-meta.mjs +1 -1
  47. package/src/runtime/agent/orchestrator/session/cache/prefetch-cache.mjs +1 -1
  48. package/src/runtime/agent/orchestrator/session/cache/scoped-cache.mjs +3 -3
  49. package/src/runtime/agent/orchestrator/session/compact/budget.mjs +2 -2
  50. package/src/runtime/agent/orchestrator/session/compact/file-reattach.mjs +2 -2
  51. package/src/runtime/agent/orchestrator/session/compact/summary-schema.mjs +1 -1
  52. package/src/runtime/agent/orchestrator/session/compact/summary.mjs +1 -1
  53. package/src/runtime/agent/orchestrator/session/compact/text-utils.mjs +2 -2
  54. package/src/runtime/agent/orchestrator/session/context-utils.mjs +4 -4
  55. package/src/runtime/agent/orchestrator/session/loop/deferred-call-through.mjs +1 -1
  56. package/src/runtime/agent/orchestrator/session/loop/pre-dispatch-deny.mjs +17 -0
  57. package/src/runtime/agent/orchestrator/session/loop/steering.mjs +1 -1
  58. package/src/runtime/agent/orchestrator/session/loop/stored-tool-args.mjs +18 -26
  59. package/src/runtime/agent/orchestrator/session/loop/termination.mjs +1 -1
  60. package/src/runtime/agent/orchestrator/session/loop/tool-classify.mjs +3 -3
  61. package/src/runtime/agent/orchestrator/session/manager/compaction-runner.mjs +1 -0
  62. package/src/runtime/agent/orchestrator/session/manager/context-meta.mjs +1 -1
  63. package/src/runtime/agent/orchestrator/session/manager/delivered-completions.mjs +1 -1
  64. package/src/runtime/agent/orchestrator/session/manager/status-telemetry.mjs +1 -1
  65. package/src/runtime/agent/orchestrator/session/store/live-state.mjs +49 -0
  66. package/src/runtime/agent/orchestrator/session/store/load-cache.mjs +49 -0
  67. package/src/runtime/agent/orchestrator/session/store/save-worker.mjs +260 -0
  68. package/src/runtime/agent/orchestrator/session/store/serialize.mjs +72 -0
  69. package/src/runtime/agent/orchestrator/session/store/summary-cache.mjs +163 -0
  70. package/src/runtime/agent/orchestrator/session/store/write-guards.mjs +1 -1
  71. package/src/runtime/agent/orchestrator/session/store-summary-index.mjs +1 -1
  72. package/src/runtime/agent/orchestrator/session/store-summary-reader.mjs +4 -1
  73. package/src/runtime/agent/orchestrator/session/store.mjs +9 -561
  74. package/src/runtime/agent/orchestrator/session/tool-envelope.mjs +1 -1
  75. package/src/runtime/agent/orchestrator/session/tool-result-offload.mjs +2 -2
  76. package/src/runtime/agent/orchestrator/stall-policy.mjs +11 -11
  77. package/src/runtime/agent/orchestrator/tools/bash-policy-scan.mjs +1 -1
  78. package/src/runtime/agent/orchestrator/tools/bash-session.mjs +2 -2
  79. package/src/runtime/agent/orchestrator/tools/builtin/advisory-lock.mjs +1 -1
  80. package/src/runtime/agent/orchestrator/tools/builtin/arg-guard.mjs +2 -2
  81. package/src/runtime/agent/orchestrator/tools/builtin/atomic-write.mjs +1 -1
  82. package/src/runtime/agent/orchestrator/tools/builtin/bash-tool.mjs +2 -154
  83. package/src/runtime/agent/orchestrator/tools/builtin/cache-layers.mjs +1 -1
  84. package/src/runtime/agent/orchestrator/tools/builtin/cwd-utils.mjs +1 -1
  85. package/src/runtime/agent/orchestrator/tools/builtin/fs-reachability.mjs +1 -1
  86. package/src/runtime/agent/orchestrator/tools/builtin/fuzzy-match.mjs +1 -1
  87. package/src/runtime/agent/orchestrator/tools/builtin/glob-walk.mjs +1 -1
  88. package/src/runtime/agent/orchestrator/tools/builtin/path-locks.mjs +1 -1
  89. package/src/runtime/agent/orchestrator/tools/builtin/path-utils.mjs +1 -1
  90. package/src/runtime/agent/orchestrator/tools/builtin/read-args.mjs +2 -2
  91. package/src/runtime/agent/orchestrator/tools/builtin/read-formatting.mjs +2 -3
  92. package/src/runtime/agent/orchestrator/tools/builtin/read-image-resize.mjs +4 -4
  93. package/src/runtime/agent/orchestrator/tools/builtin/read-open.mjs +1 -1
  94. package/src/runtime/agent/orchestrator/tools/builtin/read-streaming.mjs +1 -1
  95. package/src/runtime/agent/orchestrator/tools/builtin/rg-runner.mjs +2 -2
  96. package/src/runtime/agent/orchestrator/tools/builtin/search-path-diagnostics.mjs +5 -5
  97. package/src/runtime/agent/orchestrator/tools/builtin/shell-analysis.mjs +1 -1
  98. package/src/runtime/agent/orchestrator/tools/builtin/shell-job-paths.mjs +2 -2
  99. package/src/runtime/agent/orchestrator/tools/builtin/shell-job-process.mjs +2 -2
  100. package/src/runtime/agent/orchestrator/tools/builtin/shell-job-spawn.mjs +519 -0
  101. package/src/runtime/agent/orchestrator/tools/builtin/shell-jobs.mjs +5 -449
  102. package/src/runtime/agent/orchestrator/tools/builtin/snapshot-helpers.mjs +1 -1
  103. package/src/runtime/agent/orchestrator/tools/builtin/task-tool.mjs +212 -0
  104. package/src/runtime/agent/orchestrator/tools/builtin.mjs +1 -1
  105. package/src/runtime/agent/orchestrator/tools/code-graph/build.mjs +1 -7
  106. package/src/runtime/agent/orchestrator/tools/code-graph/disk-cache.mjs +9 -36
  107. package/src/runtime/agent/orchestrator/tools/code-graph/dispatch.mjs +15 -3
  108. package/src/runtime/agent/orchestrator/tools/code-graph/search-references.mjs +429 -0
  109. package/src/runtime/agent/orchestrator/tools/code-graph/search.mjs +2 -395
  110. package/src/runtime/agent/orchestrator/tools/code-graph/symbol-index.mjs +2 -2
  111. package/src/runtime/agent/orchestrator/tools/code-graph/text-mask.mjs +1 -1
  112. package/src/runtime/agent/orchestrator/tools/code-graph/trusted-roots.mjs +1 -1
  113. package/src/runtime/agent/orchestrator/tools/code-graph-prewarm-worker.mjs +1 -1
  114. package/src/runtime/agent/orchestrator/tools/code-graph-state.mjs +3 -3
  115. package/src/runtime/agent/orchestrator/tools/mutation-planner.mjs +5 -5
  116. package/src/runtime/agent/orchestrator/tools/next-call-utils.mjs +1 -1
  117. package/src/runtime/agent/orchestrator/tools/patch/dispatch.mjs +1 -1
  118. package/src/runtime/agent/orchestrator/tools/patch/matcher.mjs +7 -7
  119. package/src/runtime/agent/orchestrator/tools/patch/orchestrator.mjs +72 -9
  120. package/src/runtime/agent/orchestrator/tools/patch/parsing.mjs +4 -4
  121. package/src/runtime/agent/orchestrator/tools/patch/paths.mjs +1 -1
  122. package/src/runtime/agent/orchestrator/tools/patch/v4a-convert.mjs +1 -1
  123. package/src/runtime/agent/orchestrator/tools/patch-tool-defs.mjs +4 -4
  124. package/src/runtime/agent/orchestrator/tools/patch.mjs +1 -1
  125. package/src/runtime/agent/orchestrator/tools/result-compression.mjs +3 -3
  126. package/src/runtime/agent/orchestrator/tools/shell-command.mjs +2 -444
  127. package/src/runtime/agent/orchestrator/tools/shell-exec-output.mjs +505 -0
  128. package/src/runtime/agent/orchestrator/tools/shell-exec-policy.mjs +2 -2
  129. package/src/runtime/agent/orchestrator/tools/shell-snapshot.mjs +1 -1
  130. package/src/runtime/channels/lib/backend-dispatch.mjs +20 -5
  131. package/src/runtime/channels/lib/scheduler.mjs +1 -1
  132. package/src/runtime/channels/lib/telegram-format.mjs +1 -1
  133. package/src/runtime/channels/lib/voice-runtime-fetcher.mjs +4 -4
  134. package/src/runtime/channels/tool-defs.mjs +2 -3
  135. package/src/runtime/memory/index.mjs +1 -5
  136. package/src/runtime/memory/lib/core-memory-candidates.mjs +357 -0
  137. package/src/runtime/memory/lib/core-memory-store.mjs +7 -357
  138. package/src/runtime/memory/lib/cycle-signatures.mjs +1 -1
  139. package/src/runtime/memory/lib/embedding-model-config.mjs +1 -1
  140. package/src/runtime/memory/lib/embedding-provider.mjs +1 -5
  141. package/src/runtime/memory/lib/embedding-worker.mjs +1 -5
  142. package/src/runtime/memory/lib/ko-morph.mjs +2 -2
  143. package/src/runtime/memory/lib/memory-config-flags.mjs +2 -5
  144. package/src/runtime/memory/lib/memory-cycle-requests.mjs +3 -7
  145. package/src/runtime/memory/lib/memory-cycle1.mjs +4 -8
  146. package/src/runtime/memory/lib/memory-cycle2-gate.mjs +1 -1
  147. package/src/runtime/memory/lib/memory-cycle2-mutations.mjs +1 -1
  148. package/src/runtime/memory/lib/memory-cycle2-shared.mjs +2 -5
  149. package/src/runtime/memory/lib/memory-cycle3.mjs +1 -5
  150. package/src/runtime/memory/lib/memory-embed.mjs +2 -6
  151. package/src/runtime/memory/lib/memory-log.mjs +8 -0
  152. package/src/runtime/memory/lib/memory-ops-policy.mjs +4 -8
  153. package/src/runtime/memory/lib/memory-recall-scope-filter.mjs +1 -1
  154. package/src/runtime/memory/lib/memory-recall-store.mjs +2 -193
  155. package/src/runtime/memory/lib/memory-score.mjs +1 -1
  156. package/src/runtime/memory/lib/memory-text-utils.mjs +2 -2
  157. package/src/runtime/memory/lib/memory.mjs +2 -6
  158. package/src/runtime/memory/lib/pg/adapter.mjs +2 -6
  159. package/src/runtime/memory/lib/pg/process.mjs +1 -5
  160. package/src/runtime/memory/lib/pg/supervisor.mjs +1 -5
  161. package/src/runtime/memory/lib/recall-format.mjs +2 -2
  162. package/src/runtime/memory/lib/recall-scoring.mjs +195 -0
  163. package/src/runtime/memory/lib/runtime-fetcher.mjs +1 -5
  164. package/src/runtime/memory/lib/trace-store.mjs +2 -6
  165. package/src/runtime/search/lib/http-fetch.mjs +6 -6
  166. package/src/runtime/search/lib/web-tools.mjs +2 -2
  167. package/src/runtime/shared/buffered-appender.mjs +1 -1
  168. package/src/runtime/shared/child-guardian.mjs +1 -1
  169. package/src/runtime/shared/child-spawn-gate.mjs +1 -1
  170. package/src/runtime/shared/config.mjs +4 -4
  171. package/src/runtime/shared/launcher-control.mjs +9 -10
  172. package/src/runtime/shared/llm/index.mjs +5 -20
  173. package/src/runtime/shared/markdown-frontmatter.mjs +1 -1
  174. package/src/runtime/shared/memory-snapshot.mjs +4 -4
  175. package/src/runtime/shared/pristine-execution.mjs +1 -1
  176. package/src/runtime/shared/process-lifecycle.mjs +0 -1
  177. package/src/runtime/shared/process-shutdown.mjs +1 -1
  178. package/src/runtime/shared/resource-admission.mjs +2 -2
  179. package/src/runtime/shared/schedule-session-run.mjs +1 -1
  180. package/src/runtime/shared/schedules-db.mjs +1 -1
  181. package/src/runtime/shared/service-discovery.mjs +2 -2
  182. package/src/runtime/shared/staged-update.mjs +6 -6
  183. package/src/runtime/shared/tool-execution-contract.mjs +1 -1
  184. package/src/runtime/shared/tool-primitives.mjs +1 -1
  185. package/src/runtime/shared/tool-surface.mjs +2 -2
  186. package/src/runtime/shared/update-checker.mjs +1 -1
  187. package/src/runtime/shared/user-cwd.mjs +3 -3
  188. package/src/runtime/shared/user-data-guard.mjs +4 -4
  189. package/src/runtime/shared/workspace-router.mjs +5 -5
  190. package/src/session-runtime/config-helpers.mjs +2 -3
  191. package/src/session-runtime/config-lifecycle.mjs +1 -1
  192. package/src/session-runtime/hitch-profile.mjs +1 -1
  193. package/src/session-runtime/lifecycle-api.mjs +6 -4
  194. package/src/session-runtime/model-recency.mjs +5 -5
  195. package/src/session-runtime/plugin-mcp.mjs +1 -1
  196. package/src/session-runtime/provider-request-snapshot.mjs +338 -0
  197. package/src/session-runtime/session-text.mjs +4 -4
  198. package/src/session-runtime/tool-catalog-schema.mjs +197 -0
  199. package/src/session-runtime/tool-catalog.mjs +6 -483
  200. package/src/session-runtime/tool-defs.mjs +1 -1
  201. package/src/standalone/agent-task-status.mjs +1 -1
  202. package/src/standalone/agent-tool/helpers.mjs +2 -2
  203. package/src/standalone/channel-admin.mjs +4 -4
  204. package/src/standalone/explore-tool.mjs +3 -3
  205. package/src/standalone/hook-bus/config.mjs +1 -1
  206. package/src/standalone/hook-bus/constants.mjs +1 -1
  207. package/src/standalone/hook-bus/rules.mjs +1 -1
  208. package/src/standalone/projects.mjs +1 -1
  209. package/src/standalone/provider-admin.mjs +2 -2
  210. package/src/tui/app/app-format.mjs +2 -2
  211. package/src/tui/app/clipboard.mjs +3 -3
  212. package/src/tui/app/input-parsers.mjs +1 -1
  213. package/src/tui/app/text-layout.mjs +1 -1
  214. package/src/tui/app/transcript-row-estimate.mjs +360 -0
  215. package/src/tui/app/transcript-window.mjs +5 -347
  216. package/src/tui/app/use-mouse-input.mjs +1 -1
  217. package/src/tui/app/use-prompt-handlers.mjs +1 -1
  218. package/src/tui/components/tool-execution/surface-detail.mjs +9 -9
  219. package/src/tui/components/tool-execution/text-format.mjs +2 -2
  220. package/src/tui/components/tool-output-format.mjs +7 -7
  221. package/src/tui/display-width.mjs +4 -4
  222. package/src/tui/dist/index.mjs +63 -97
  223. package/src/tui/engine/agent-envelope.mjs +5 -5
  224. package/src/tui/engine/notification-plan.mjs +1 -1
  225. package/src/tui/engine/queue-helpers.mjs +3 -3
  226. package/src/tui/engine/render-timing.mjs +4 -5
  227. package/src/tui/engine/session-api-ext.mjs +3 -3
  228. package/src/tui/engine/tool-result-status.mjs +5 -5
  229. package/src/tui/engine/tool-result-text.mjs +1 -1
  230. package/src/tui/engine/transcript-spill.mjs +585 -0
  231. package/src/tui/engine/tui-steering-persist.mjs +1 -1
  232. package/src/tui/engine.mjs +2 -474
  233. package/src/tui/lib/voice-setup.mjs +1 -1
  234. package/src/tui/markdown/format-token.mjs +1 -1
  235. package/src/tui/markdown/render-ansi.mjs +1 -1
  236. package/src/tui/markdown/table-layout.mjs +4 -4
  237. package/src/tui/paste-attachments.mjs +1 -1
  238. package/src/tui/prompt-history-store.mjs +3 -3
  239. package/src/tui/statusline-ansi-bridge.mjs +2 -2
  240. package/src/tui/theme.mjs +1 -1
  241. package/src/tui/transcript-tool-failures.mjs +2 -2
  242. package/src/ui/ansi.mjs +0 -9
  243. package/src/ui/statusline-format.mjs +2 -4
  244. package/scripts/_bench-cwc.json +0 -20
  245. package/scripts/_jitter-fuzz.jsx +0 -42
  246. package/scripts/_jitter-fuzz2.jsx +0 -30
  247. package/scripts/_jitter-probe.jsx +0 -35
  248. package/scripts/_jp2.jsx +0 -16
  249. package/scripts/_smoke_wd.mjs +0 -7
  250. package/scripts/abort-recovery-test.mjs +0 -175
  251. package/scripts/agent-dispatch-abort-compose-test.mjs +0 -31
  252. package/scripts/agent-live-arg-guard-smoke.mjs +0 -20
  253. package/scripts/agent-live-path-suffix-smoke.mjs +0 -34
  254. package/scripts/agent-live-toolcall-args-smoke.mjs +0 -45
  255. package/scripts/agent-loop-policy-test.mjs +0 -37
  256. package/scripts/agent-model-liveness-test.mjs +0 -763
  257. package/scripts/agent-parallel-smoke.mjs +0 -435
  258. package/scripts/agent-route-batch-test.mjs +0 -40
  259. package/scripts/agent-tag-reuse-smoke.mjs +0 -441
  260. package/scripts/agent-terminal-reap-test.mjs +0 -252
  261. package/scripts/agent-trace-io-test.mjs +0 -133
  262. package/scripts/ansi-color-capability-test.mjs +0 -90
  263. package/scripts/anthropic-admission-retry-integration-test.mjs +0 -119
  264. package/scripts/anthropic-maxtokens-test.mjs +0 -119
  265. package/scripts/anthropic-oauth-refresh-race-test.mjs +0 -397
  266. package/scripts/anthropic-transport-policy-test.mjs +0 -726
  267. package/scripts/apply-patch-edit-smoke.mjs +0 -71
  268. package/scripts/arg-guard-test.mjs +0 -93
  269. package/scripts/async-notify-settlement-test.mjs +0 -99
  270. package/scripts/atomic-lock-tryonce-test.mjs +0 -125
  271. package/scripts/background-task-meta-smoke.mjs +0 -38
  272. package/scripts/bench-run.mjs +0 -508
  273. package/scripts/boot-smoke.mjs +0 -137
  274. package/scripts/build-runtime-windows.ps1 +0 -242
  275. package/scripts/channel-daemon-smoke.mjs +0 -1103
  276. package/scripts/code-graph-aggregate-cwd-test.mjs +0 -158
  277. package/scripts/code-graph-disk-hit-test.mjs +0 -290
  278. package/scripts/code-graph-dispatch-test.mjs +0 -96
  279. package/scripts/code-graph-root-federation-test.mjs +0 -273
  280. package/scripts/compact-active-turn-test.mjs +0 -68
  281. package/scripts/compact-file-reattach-test.mjs +0 -88
  282. package/scripts/compact-pressure-test.mjs +0 -788
  283. package/scripts/compact-prior-context-flatten-test.mjs +0 -252
  284. package/scripts/compact-recall-digest-test.mjs +0 -57
  285. package/scripts/compact-smoke.mjs +0 -1017
  286. package/scripts/compact-trigger-migration-smoke.mjs +0 -261
  287. package/scripts/compacted-placeholder-scrub-test.mjs +0 -63
  288. package/scripts/context-mcp-metering-test.mjs +0 -1406
  289. package/scripts/debounced-skills-async-save-test.mjs +0 -57
  290. package/scripts/deferred-tool-loading-test.mjs +0 -250
  291. package/scripts/desktop-session-bridge-test.mjs +0 -1013
  292. package/scripts/dispatch-persist-recovery-test.mjs +0 -141
  293. package/scripts/embedding-worker-exit-test.mjs +0 -76
  294. package/scripts/execution-completion-dedup-test.mjs +0 -205
  295. package/scripts/execution-pending-resume-kick-test.mjs +0 -151
  296. package/scripts/execution-resume-esc-integration-test.mjs +0 -176
  297. package/scripts/explore-bench-tmp.mjs +0 -36
  298. package/scripts/explore-bench.mjs +0 -248
  299. package/scripts/explore-prompt-policy-test.mjs +0 -256
  300. package/scripts/explore-timeout-cancel-test.mjs +0 -345
  301. package/scripts/find-fuzzy-hidden-test.mjs +0 -267
  302. package/scripts/forwarder-rebind-tail-test.mjs +0 -67
  303. package/scripts/freevar-smoke.mjs +0 -98
  304. package/scripts/gemini-provider-test.mjs +0 -1448
  305. package/scripts/generate-oc-icons.mjs +0 -11
  306. package/scripts/grok-oauth-refresh-race-test.mjs +0 -273
  307. package/scripts/headless-pristine-execution-test.mjs +0 -614
  308. package/scripts/hook-bus-test.mjs +0 -552
  309. package/scripts/ingest-pure-conversation-smoke.mjs +0 -175
  310. package/scripts/internal-comms-bench-test.mjs +0 -226
  311. package/scripts/internal-comms-bench.mjs +0 -853
  312. package/scripts/internal-comms-smoke.mjs +0 -277
  313. package/scripts/internal-tools-normalization-test.mjs +0 -62
  314. package/scripts/interrupted-turn-history-test.mjs +0 -399
  315. package/scripts/lead-workflow-smoke.mjs +0 -592
  316. package/scripts/lifecycle-api-test.mjs +0 -137
  317. package/scripts/live-share-test.mjs +0 -148
  318. package/scripts/live-worker-smoke.mjs +0 -333
  319. package/scripts/log-writer-guard-smoke.mjs +0 -131
  320. package/scripts/maintenance-default-routes-test.mjs +0 -164
  321. package/scripts/max-output-recovery-persist-test.mjs +0 -81
  322. package/scripts/max-output-recovery-test.mjs +0 -368
  323. package/scripts/mcp-client-normalization-test.mjs +0 -45
  324. package/scripts/mcp-grace-deferred-test.mjs +0 -225
  325. package/scripts/memory-core-input-test.mjs +0 -167
  326. package/scripts/memory-cycle-routing-test.mjs +0 -111
  327. package/scripts/memory-meta-concurrency-test.mjs +0 -20
  328. package/scripts/memory-pg-recovery-test.mjs +0 -59
  329. package/scripts/memory-rule-contract-test.mjs +0 -93
  330. package/scripts/model-list-sanitize-test.mjs +0 -37
  331. package/scripts/mouse-tracking-restore-smoke.mjs +0 -107
  332. package/scripts/native-edit-wire-test.mjs +0 -152
  333. package/scripts/notify-completion-mirror-test.mjs +0 -73
  334. package/scripts/openai-oauth-refresh-race-test.mjs +0 -120
  335. package/scripts/openai-oauth-ws-1006-retry-test.mjs +0 -954
  336. package/scripts/openai-ws-early-settle-test.mjs +0 -216
  337. package/scripts/output-style-bench.mjs +0 -292
  338. package/scripts/output-style-smoke.mjs +0 -145
  339. package/scripts/parent-abort-link-test.mjs +0 -90
  340. package/scripts/patch-binary-cache-test.mjs +0 -181
  341. package/scripts/path-suffix-test.mjs +0 -57
  342. package/scripts/pending-completion-drop-test.mjs +0 -239
  343. package/scripts/pending-messages-lock-nonblocking-test.mjs +0 -62
  344. package/scripts/pretool-ask-runtime-test.mjs +0 -54
  345. package/scripts/process-lifecycle-test.mjs +0 -461
  346. package/scripts/prompt-immediate-render-test.mjs +0 -89
  347. package/scripts/prompt-input-parity-test.mjs +0 -145
  348. package/scripts/provider-admission-scheduler-test.mjs +0 -681
  349. package/scripts/provider-contract-test.mjs +0 -632
  350. package/scripts/provider-stream-stall-test.mjs +0 -276
  351. package/scripts/provider-toolcall-test.mjs +0 -3063
  352. package/scripts/reactive-compact-persist-smoke.mjs +0 -203
  353. package/scripts/recall-bench.mjs +0 -359
  354. package/scripts/resource-admission-test.mjs +0 -792
  355. package/scripts/result-classification-test.mjs +0 -75
  356. package/scripts/rg-runner-test.mjs +0 -240
  357. package/scripts/routing-corpus-test.mjs +0 -349
  358. package/scripts/sanitize-tool-pairs-test.mjs +0 -260
  359. package/scripts/session-bench-cache-break-test.mjs +0 -102
  360. package/scripts/session-bench.mjs +0 -1708
  361. package/scripts/session-context-bench.mjs +0 -344
  362. package/scripts/session-heartbeat-lifecycle-test.mjs +0 -68
  363. package/scripts/session-ingest-compaction-smoke.mjs +0 -279
  364. package/scripts/session-ingest-smoke.mjs +0 -177
  365. package/scripts/session-orphan-sweep-test.mjs +0 -109
  366. package/scripts/set-effort-config-test.mjs +0 -41
  367. package/scripts/shell-failure-diagnostics-test.mjs +0 -280
  368. package/scripts/shell-hardening-test.mjs +0 -209
  369. package/scripts/shell-jobs-windows-hide-test.mjs +0 -164
  370. package/scripts/ship-mode-test.mjs +0 -98
  371. package/scripts/smoke-loop-failure-summary-test.mjs +0 -38
  372. package/scripts/smoke-loop-failure-summary.mjs +0 -16
  373. package/scripts/smoke-loop-report.mjs +0 -221
  374. package/scripts/smoke-loop.mjs +0 -202
  375. package/scripts/smoke-runtime-negative.ps1 +0 -106
  376. package/scripts/statusline-quota-hysteresis-test.mjs +0 -62
  377. package/scripts/steering-drain-buckets-test.mjs +0 -467
  378. package/scripts/steering-fold-provenance-test.mjs +0 -71
  379. package/scripts/streaming-tail-window-test.mjs +0 -175
  380. package/scripts/submit-commandbusy-race-test.mjs +0 -257
  381. package/scripts/task-bench.mjs +0 -205
  382. package/scripts/terminal-bench-isolation-guards-test.mjs +0 -102
  383. package/scripts/termio-input-smoke.mjs +0 -199
  384. package/scripts/tool-result-hook-test.mjs +0 -48
  385. package/scripts/tool-smoke.mjs +0 -2453
  386. package/scripts/tool-tui-presentation-test.mjs +0 -286
  387. package/scripts/toolcall-args-test.mjs +0 -239
  388. package/scripts/tui-ambiguous-width-test.mjs +0 -113
  389. package/scripts/tui-background-failure-smoke.mjs +0 -73
  390. package/scripts/tui-perf-run.ps1 +0 -26
  391. package/scripts/tui-render-smoke.mjs +0 -90
  392. package/scripts/tui-runtime-load-bench-entry.jsx +0 -608
  393. package/scripts/tui-runtime-load-bench.mjs +0 -50
  394. package/scripts/tui-store-frame-batch-test.mjs +0 -99
  395. package/scripts/tui-transcript-jitter-harness-entry.jsx +0 -383
  396. package/scripts/tui-transcript-perf-test.mjs +0 -934
  397. package/scripts/usage-metrics-epoch-smoke.mjs +0 -114
  398. package/scripts/verify-release-assets-test.mjs +0 -281
  399. package/scripts/web-fetch-routing-test.mjs +0 -158
  400. package/scripts/webhook-smoke.mjs +0 -201
  401. package/scripts/windows-hide-spawn-options-test.mjs +0 -19
  402. package/scripts/worker-notify-rejection-test.mjs +0 -51
  403. package/scripts/write-backpressure-test.mjs +0 -147
@@ -1,8 +1,5 @@
1
- const __mixdogMemoryStderrWrite = process.stderr.write.bind(process.stderr);
2
- function __mixdogMemoryLog(...args) {
3
- if (process.env.MIXDOG_QUIET_MEMORY_LOG) return true;
4
- return __mixdogMemoryStderrWrite(...args);
5
- }
1
+ import { __mixdogMemoryLog } from './memory-log.mjs';
2
+ export { __mixdogMemoryLog };
6
3
 
7
4
  // User-curated core memory store — native PG-backed via core_entries table.
8
5
  // Per-project entries distinguished by project_id column (NULL = COMMON).
@@ -28,10 +25,10 @@ const VALID_CAT = new Set([
28
25
  // than cycle2's tier-1 (0.78) on purpose: LLM verdict is authoritative so
29
26
  // the recall side can afford broader recall.
30
27
  const SIM_RECALL = 0.65
31
- const CORE_DEDUP_TOP_K = 5
28
+ export const CORE_DEDUP_TOP_K = 5
32
29
 
33
30
  export const CORE_SUMMARY_MAX = 100
34
- export const CORE_ELEMENT_MAX = 40
31
+ const CORE_ELEMENT_MAX = 40
35
32
 
36
33
  function trimOrNull(v) {
37
34
  if (v == null) return null
@@ -62,7 +59,7 @@ export function normalizeCoreInput(input = {}, options = {}) {
62
59
  return { element, summary, category, suppliedCategory, errors }
63
60
  }
64
61
 
65
- function _getDb(dataDir) {
62
+ export function _getDb(dataDir) {
66
63
  if (!dataDir) throw new Error('core-memory: dataDir required')
67
64
  const db = getDatabase(dataDir)
68
65
  if (!db) throw new Error('core-memory: database not open — call openDatabase first')
@@ -79,7 +76,7 @@ async function _embedFor(db, element, summary) {
79
76
  // Lazy repair of NULL embeddings on existing rows. Runs once per boot or
80
77
  // whenever a NULL slips back in via direct SQL. SELECT WHERE embedding IS NULL
81
78
  // returns 0 rows on a fully-populated table, so this is a fast no-op.
82
- function throwIfAborted(signal) {
79
+ export function throwIfAborted(signal) {
83
80
  if (signal?.aborted) throw signal.reason ?? new Error('aborted')
84
81
  }
85
82
 
@@ -567,352 +564,5 @@ export async function reclassifyCore(dataDir, id, newProjectId, expect = null) {
567
564
  }
568
565
 
569
566
  // ─── Core-candidate promotion pipeline (proposal mode) ───────────────────────
570
- //
571
- // nominateCoreCandidates flags strong active entries as core-memory
572
- // candidates. NEVER auto-inserts into core_entries — a user approves each via
573
- // listCoreCandidates → promoteCoreCandidate. Durable-signal driven:
574
- // - category grade: only durable knowledge types (rule/constraint/decision/
575
- // preference/goal/fact) — transient task/issue never nominated.
576
- // - score >= CANDIDATE_MIN_SCORE: survived age-decay / repeated gate reviews.
577
- // - reviewed_at survival: entry has been through >= 1 gate review (reviewed_at
578
- // set) so freshly-promoted noise is excluded.
579
- // - core_overlap skip: entries whose embedding sits near an existing
580
- // core_entries row (sim >= CANDIDATE_OVERLAP_SIM) are already covered by a
581
- // user rule — skip to avoid duplicate promotion. Reuses the same cosine
582
- // recall shape as cycle2 phase_merge core_overlap.
583
- // Terminal states ('promoted'/'dismissed') are never re-nominated. Caps at
584
- // CANDIDATE_CAP total live candidates.
585
-
586
- const CANDIDATE_CAP = 10
587
- // Durable categories worth surfacing for user-curated core memory. Mirrors the
588
- // high end of CATEGORY_GRADE (memory-score.mjs) — task/issue excluded.
589
- const CANDIDATE_CATEGORIES = new Set(['rule', 'constraint', 'decision', 'preference', 'goal', 'fact'])
590
- // Score floor: preference grade is 1.4, fact 1.6 — require the entry to still
591
- // be near its grade ceiling (i.e. survived decay), not a stale low-score root.
592
- const CANDIDATE_MIN_SCORE = 1.3
593
- // Embedding sim at/above which the active entry is considered already covered
594
- // by an existing core row → skip nomination. Matches cycle2 TIER1_THRESHOLD.
595
- const CANDIDATE_OVERLAP_SIM = 0.78
596
- // A promote left mid-flight ('promoting') longer than this is treated as a
597
- // crashed promotion and reverted to a live candidate by recoverStalePromotions.
598
- // Worst-case addCore duration bounds this: it runs up to CORE_DEDUP_TOP_K (5)
599
- // sequential LLM merge-judge calls at 30s timeout each (~150s) plus embedding
600
- // generation — call it ~3min worst case. 15min gives >5x margin so a slow-but-
601
- // live promote is never mistaken for a crash, while still recovering a genuine
602
- // crash within one hourly cycle2 pass. The finalize path ALSO tolerates a
603
- // racing recovery (rowCount=0 → re-claim, see promoteCoreCandidate) so an
604
- // over-tight cutoff can't corrupt state — this margin is defense-in-depth.
605
- const PROMOTING_STALE_MS = 15 * 60_000
606
-
607
- function _candidateReason(row) {
608
- return `${row.category} grade, score ${Number(row.score).toFixed(2)}, survived gate review`
609
- }
610
-
611
- // Post-gate nomination pass. Cheap: one scan over durable high-score active
612
- // roots not already candidate/promoted/dismissed, one core-overlap cosine
613
- // probe per row, capped at CANDIDATE_CAP net-new. Returns count nominated.
614
- export async function nominateCoreCandidates(dataDir, options = {}) {
615
- const signal = options?.signal
616
- const db = _getDb(dataDir)
617
- throwIfAborted(signal)
618
- // Recover crashed promotions first: a root stuck in 'promoting' past
619
- // PROMOTING_STALE_MS (claim tx committed but the process died before finalize)
620
- // is reverted to a live candidate here, so it re-enters the pool below.
621
- try {
622
- await recoverStalePromotions(dataDir, { signal })
623
- throwIfAborted(signal)
624
- } catch (err) {
625
- if (signal?.aborted) throw signal.reason ?? err
626
- __mixdogMemoryLog(`[core-memory] stale-promotion recovery failed: ${err.message}\n`)
627
- }
628
- // Live candidate headroom: never exceed CANDIDATE_CAP total pending. Count
629
- // only ACTIVE candidate roots — a candidate archived by cycle2 core_overlap
630
- // between nomination and now must not eat headroom (it is also excluded from
631
- // listCoreCandidates by the same status='active' guard).
632
- const liveRes = await db.query(
633
- `SELECT COUNT(*)::int AS n FROM entries WHERE is_root = 1 AND status = 'active' AND core_candidate_status = 'candidate'`,
634
- )
635
- const live = Number(liveRes.rows[0]?.n ?? 0)
636
- const headroom = CANDIDATE_CAP - live
637
- if (headroom <= 0) return 0
638
-
639
- // Pull the strongest eligible roots that have never been nominated (status
640
- // NULL) and have been through a gate review (reviewed_at set). Terminal
641
- // 'promoted'/'dismissed' rows are excluded by the NULL predicate.
642
- const cats = [...CANDIDATE_CATEGORIES]
643
- const eligibleRes = await db.query(
644
- `SELECT id, element, summary, category, score, project_id,
645
- (embedding IS NOT NULL) AS has_embedding
646
- FROM entries
647
- WHERE is_root = 1 AND status = 'active'
648
- AND core_candidate_status IS NULL
649
- AND reviewed_at IS NOT NULL
650
- AND category = ANY($1::text[])
651
- AND score >= $2
652
- ORDER BY score DESC, last_seen_at DESC, id ASC
653
- LIMIT $3`,
654
- [cats, CANDIDATE_MIN_SCORE, headroom * 3],
655
- )
656
- throwIfAborted(signal)
657
-
658
- const now = Date.now()
659
- let nominated = 0
660
- for (const row of eligibleRes.rows) {
661
- throwIfAborted(signal)
662
- if (nominated >= headroom) break
663
- // core_overlap skip: is this entry already covered by an existing core row?
664
- // Compute similarity fully in SQL against the entry's own embedding
665
- // (referenced by id) so no halfvec value round-trips through JS — mirrors
666
- // the cycle2 phase_merge core_overlap probe shape. Same-pool + COMMON core
667
- // are eligible matches.
668
- if (row.has_embedding) {
669
- const ov = await db.query(
670
- `SELECT 1 - (e.embedding <=> c.embedding) AS sim
671
- FROM entries e
672
- CROSS JOIN LATERAL (
673
- SELECT inner_c.embedding
674
- FROM core_entries inner_c
675
- WHERE inner_c.embedding IS NOT NULL
676
- AND (inner_c.status IS NULL OR inner_c.status = 'active')
677
- AND (inner_c.project_id IS NULL OR inner_c.project_id IS NOT DISTINCT FROM e.project_id)
678
- ORDER BY inner_c.embedding <=> e.embedding
679
- LIMIT 1
680
- ) c
681
- WHERE e.id = $1 AND e.embedding IS NOT NULL`,
682
- [Number(row.id)],
683
- )
684
- throwIfAborted(signal)
685
- if (ov.rows.length > 0 && Number(ov.rows[0].sim) >= CANDIDATE_OVERLAP_SIM) continue
686
- }
687
- const r = await db.query(
688
- `UPDATE entries SET core_candidate_status = 'candidate', core_candidate_at = $1
689
- WHERE id = $2 AND is_root = 1 AND core_candidate_status IS NULL`,
690
- [now, Number(row.id)],
691
- )
692
- if (Number(r.rowCount ?? r.affectedRows ?? 0) > 0) nominated++
693
- }
694
- if (nominated > 0) {
695
- __mixdogMemoryLog(`[core-memory] nominated ${nominated} core candidate(s)\n`)
696
- }
697
- return nominated
698
- }
699
-
700
- // List live candidates for the UI. Shape matches the deliver spec:
701
- // {id, element, summary, category, score, reason}.
702
- // `scope`: null → COMMON pool only (project_id NULL); '*' → all pools;
703
- // slug → that project's pool + COMMON. Mirrors the add/edit/delete + list
704
- // project isolation so an unscoped call can't leak another project's
705
- // candidates. status='active' guard: a candidate root archived by cycle2
706
- // core_overlap between nomination and listing must NOT stay listed (it also
707
- // no longer counts against CANDIDATE_CAP — see nominateCoreCandidates).
708
- export async function listCoreCandidates(dataDir, scope = null) {
709
- const db = _getDb(dataDir)
710
- let scopeClause = ''
711
- const params = []
712
- if (scope === '*') {
713
- scopeClause = ''
714
- } else if (scope == null) {
715
- scopeClause = 'AND project_id IS NULL'
716
- } else {
717
- scopeClause = 'AND (project_id IS NULL OR project_id = $1)'
718
- params.push(scope)
719
- }
720
- const r = await db.query(
721
- `SELECT id, element, summary, category, score, project_id
722
- FROM entries
723
- WHERE is_root = 1 AND status = 'active' AND core_candidate_status = 'candidate'
724
- ${scopeClause}
725
- ORDER BY score DESC, core_candidate_at DESC, id ASC`,
726
- params,
727
- )
728
- return r.rows.map(row => ({
729
- id: Number(row.id),
730
- element: row.element,
731
- summary: row.summary,
732
- category: row.category,
733
- score: row.score == null ? null : Number(row.score),
734
- project_id: row.project_id ?? null,
735
- reason: _candidateReason(row),
736
- }))
737
- }
738
-
739
- // Promote a candidate via a two-phase claim → insert → finalize with a
740
- // recoverable intermediate state ('promoting'), so a process crash at ANY point
741
- // is recoverable by the cycle2 recovery sweep (recoverStalePromotions).
742
- //
743
- // Phase 1 (claim tx): status='archived', core_candidate_status='promoting'.
744
- // The embedding is NOT nulled here — deferred to finalize — so recovery can
745
- // restore the row to active WITHOUT needing to re-embed. Archived-with-
746
- // embedding for the brief promoting window is harmless: the recall scope
747
- // filter excludes BOTH 'promoted' AND 'promoting' rows (and their members).
748
- // Phase 2: addCore (its own tx — advisory locks can't join an outer tx).
749
- // Phase 3 (finalize tx): core_candidate_status='promoted', embedding=NULL.
750
- //
751
- // Crash matrix:
752
- // - crash after phase 1, before addCore commits → row is archived+'promoting'
753
- // with NO core row → recovery sweep (stale > PROMOTING_STALE_MS) reverts it
754
- // to active+'candidate' (embedding intact) → clean retry.
755
- // - addCore threw → synchronous compensation reverts immediately (same shape).
756
- // - crash after addCore commits, before finalize → core row exists + row is
757
- // 'promoting' → recovery reverts the ROOT to candidate, but the core row now
758
- // exists, so the retry's addCore merge-judge/unique-index folds back into the
759
- // same core row (element unchanged) → converges (no duplicate). This is the
760
- // one window where a retry relies on addCore dedup, but it is bounded and
761
- // self-healing rather than a permanent orphan+stuck-root.
762
- // - finalize committed → terminal 'promoted', embedding NULL → done.
763
- //
764
- // `scope` (from the index handler) enforces project isolation: the candidate
765
- // must belong to the resolved scope or COMMON — never another project's pool.
766
- export async function promoteCoreCandidate(dataDir, id, options = {}) {
767
- const numId = Number(id)
768
- if (!Number.isInteger(numId) || numId <= 0) throw new Error('integer id > 0 required')
769
- const db = _getDb(dataDir)
770
- // Require BOTH active status and a live candidate flag (finding #2): a stale
771
- // archived/merged root must not be promotable by direct id.
772
- const cur = (await db.query(
773
- `SELECT id, element, summary, category, project_id, core_candidate_status
774
- FROM entries WHERE id = $1 AND is_root = 1 AND status = 'active'`,
775
- [numId],
776
- )).rows[0]
777
- if (!cur) throw new Error(`no active root entry with id=${numId} (already archived, merged, or deleted)`)
778
- if (cur.core_candidate_status !== 'candidate') {
779
- throw new Error(`entry id=${numId} is not a live core candidate (status=${cur.core_candidate_status ?? 'none'})`)
780
- }
781
- // Project-scope guard: reject cross-project promotion. scope null == COMMON;
782
- // a scoped candidate is only promotable within its own pool (or if it is a
783
- // COMMON candidate). Mirrors add/edit/delete project isolation.
784
- const scope = options?.scope ?? null
785
- const rowPid = cur.project_id ?? null
786
- if (rowPid != null && rowPid !== scope) {
787
- throw new Error(`candidate id=${numId} belongs to project "${rowPid}", not the resolved scope "${scope ?? 'common'}"`)
788
- }
789
- // Core summary cap: candidate summaries may exceed CORE_SUMMARY_MAX. Prefer
790
- // the explicit override, else compress by truncation so addCore accepts it.
791
- const summary = options?.summary ?? cur.summary
792
- const cappedSummary = summary && String(summary).length > CORE_SUMMARY_MAX
793
- ? String(summary).slice(0, CORE_SUMMARY_MAX)
794
- : summary
795
- const now = Date.now()
796
- // Phase 1 — claim (active+candidate guarded so a concurrent archive/promote
797
- // loses the race → 0 rows → nothing to promote). Embedding NOT nulled here
798
- // (deferred to finalize) so recovery needs no re-embed.
799
- const claim = await db.transaction(async (tx) => {
800
- const r = await tx.query(
801
- `UPDATE entries SET core_candidate_status = 'promoting', core_candidate_at = $1, status = 'archived'
802
- WHERE id = $2 AND is_root = 1 AND status = 'active' AND core_candidate_status = 'candidate'`,
803
- [now, numId],
804
- )
805
- return Number(r.rowCount ?? r.affectedRows ?? 0)
806
- })
807
- if (claim === 0) {
808
- throw new Error(`candidate id=${numId} was concurrently promoted/archived — nothing to do`)
809
- }
810
- // Phase 2 — insert into core_entries. addCore's own tx commits independently.
811
- let entry
812
- try {
813
- entry = await addCore(
814
- dataDir,
815
- { element: cur.element, summary: cappedSummary, category: cur.category },
816
- rowPid,
817
- )
818
- } catch (err) {
819
- // Synchronous compensation: revert the 'promoting' claim to the live-
820
- // candidate state so a retry is clean and no core row was created. Embedding
821
- // is intact (never nulled), so no re-embed needed.
822
- try {
823
- await db.transaction(async (tx) => {
824
- await tx.query(
825
- `UPDATE entries SET core_candidate_status = 'candidate', core_candidate_at = $1, status = 'active'
826
- WHERE id = $2 AND is_root = 1 AND core_candidate_status = 'promoting' AND status = 'archived'`,
827
- [Date.now(), numId],
828
- )
829
- })
830
- } catch (compErr) {
831
- __mixdogMemoryLog(`[core-memory] promote compensation failed id=${numId}: ${compErr.message} (root left 'promoting' — recovery sweep will revert)\n`)
832
- }
833
- throw err
834
- }
835
- // Phase 3 — finalize: terminal 'promoted' + null the embedding (now safe: the
836
- // core row is committed, so nulling can't strand a recoverable row without its
837
- // fact). Guarded on 'promoting'. If a racing recoverStalePromotions (slow
838
- // addCore that overran PROMOTING_STALE_MS) already reverted the row to
839
- // 'candidate'+active, this affects 0 rows — but the core row IS committed, so
840
- // we must NOT return success while the root is still a live candidate (user
841
- // would see success + the candidate re-listed). Re-claim from the recovered
842
- // 'candidate' state (finding #2). If THAT also affects 0 rows, another actor
843
- // changed the row (genuine re-promote, dismiss, archive) — don't clobber;
844
- // log and still return the entry (the core row exists either way).
845
- const finalize = await db.transaction(async (tx) => {
846
- const r1 = await tx.query(
847
- `UPDATE entries SET core_candidate_status = 'promoted', core_candidate_at = $1, embedding = NULL
848
- WHERE id = $2 AND is_root = 1 AND core_candidate_status = 'promoting'`,
849
- [Date.now(), numId],
850
- )
851
- if (Number(r1.rowCount ?? r1.affectedRows ?? 0) > 0) return 'finalized'
852
- // Row was recovered back to candidate mid-flight — re-claim it (core row
853
- // already committed). Guard on the exact recovery state (active+candidate).
854
- const r2 = await tx.query(
855
- `UPDATE entries SET core_candidate_status = 'promoted', core_candidate_at = $1, status = 'archived', embedding = NULL
856
- WHERE id = $2 AND is_root = 1 AND status = 'active' AND core_candidate_status = 'candidate'`,
857
- [Date.now(), numId],
858
- )
859
- return Number(r2.rowCount ?? r2.affectedRows ?? 0) > 0 ? 'reclaimed' : 'unchanged'
860
- })
861
- if (finalize === 'reclaimed') {
862
- __mixdogMemoryLog(`[core-memory] promote id=${numId} finalized after a racing recovery revert (re-claimed)\n`)
863
- } else if (finalize === 'unchanged') {
864
- __mixdogMemoryLog(`[core-memory] promote id=${numId}: root changed by another actor before finalize; core row committed, root state left as-is\n`)
865
- }
866
- return entry
867
- }
868
-
869
- // Recovery sweep for crashed promotions: a root left in 'promoting' (claim tx
870
- // committed but the process died before finalize) is reverted to the live
871
- // candidate state (status='active', core_candidate_status='candidate') once it
872
- // is older than PROMOTING_STALE_MS. Embedding was never nulled in the claim, so
873
- // no re-embed is required. Runs from nominateCoreCandidates (hourly cycle2).
874
- // Idempotent: 0 stale rows → fast no-op. Returns count recovered.
875
- export async function recoverStalePromotions(dataDir, options = {}) {
876
- const signal = options?.signal
877
- const db = _getDb(dataDir)
878
- throwIfAborted(signal)
879
- const cutoff = Date.now() - PROMOTING_STALE_MS
880
- const r = await db.query(
881
- `UPDATE entries SET core_candidate_status = 'candidate', core_candidate_at = $1, status = 'active'
882
- WHERE is_root = 1 AND core_candidate_status = 'promoting'
883
- AND core_candidate_at IS NOT NULL AND core_candidate_at < $2`,
884
- [Date.now(), cutoff],
885
- )
886
- const n = Number(r.rowCount ?? r.affectedRows ?? 0)
887
- if (n > 0) __mixdogMemoryLog(`[core-memory] recovered ${n} stale 'promoting' root(s) → candidate\n`)
888
- return n
889
- }
890
567
 
891
- // Dismiss a candidate: mark terminal so the nomination pass never re-nominates
892
- // the same root. Leaves status/score untouched — the entry stays active in
893
- // generated memory, it just won't be re-surfaced as a core candidate.
894
- // `scope` enforces project isolation (mirrors promote): a scoped caller can
895
- // only dismiss candidates in its own pool or COMMON.
896
- export async function dismissCoreCandidate(dataDir, id, options = {}) {
897
- const numId = Number(id)
898
- if (!Number.isInteger(numId) || numId <= 0) throw new Error('integer id > 0 required')
899
- const db = _getDb(dataDir)
900
- const scope = options?.scope ?? null
901
- const cur = (await db.query(
902
- `SELECT project_id, core_candidate_status FROM entries WHERE id = $1 AND is_root = 1`,
903
- [numId],
904
- )).rows[0]
905
- if (!cur) throw new Error(`no root entry with id=${numId}`)
906
- const rowPid = cur.project_id ?? null
907
- if (rowPid != null && rowPid !== scope) {
908
- throw new Error(`candidate id=${numId} belongs to project "${rowPid}", not the resolved scope "${scope ?? 'common'}"`)
909
- }
910
- const r = await db.query(
911
- `UPDATE entries SET core_candidate_status = 'dismissed', core_candidate_at = $1
912
- WHERE id = $2 AND is_root = 1 AND core_candidate_status = 'candidate'
913
- RETURNING id, element, category`,
914
- [Date.now(), numId],
915
- )
916
- if (r.rows.length === 0) throw new Error(`no live core candidate with id=${numId}`)
917
- return r.rows[0]
918
- }
568
+ export { nominateCoreCandidates, listCoreCandidates, promoteCoreCandidate, recoverStalePromotions, dismissCoreCandidate } from './core-memory-candidates.mjs';
@@ -20,7 +20,7 @@ export function scheduledCycle2Signature(config) {
20
20
  })
21
21
  }
22
22
 
23
- export function scheduledCycle3ApplyMode(config) {
23
+ function scheduledCycle3ApplyMode(config) {
24
24
  const raw = String(config?.cycle3?.applyMode || 'conservative').trim().toLowerCase()
25
25
  return (raw === 'proposal' || raw === 'dry-run' || raw === 'dryrun') ? 'proposal' : 'conservative'
26
26
  }
@@ -24,7 +24,7 @@ export function getConfiguredEmbeddingModelId() {
24
24
  return clean(process.env.MIXDOG_EMBED_MODEL) || DEFAULT_MODEL_ID
25
25
  }
26
26
 
27
- export function getEmbeddingModelProfile(modelId = getConfiguredEmbeddingModelId()) {
27
+ function getEmbeddingModelProfile(modelId = getConfiguredEmbeddingModelId()) {
28
28
  return MODEL_PROFILES[clean(modelId)] || null
29
29
  }
30
30
 
@@ -1,8 +1,4 @@
1
- const __mixdogMemoryStderrWrite = process.stderr.write.bind(process.stderr);
2
- function __mixdogMemoryLog(...args) {
3
- if (process.env.MIXDOG_QUIET_MEMORY_LOG) return true;
4
- return __mixdogMemoryStderrWrite(...args);
5
- }
1
+ import { __mixdogMemoryLog } from './memory-log.mjs';
6
2
 
7
3
  /**
8
4
  * embedding-provider.mjs — Embedding provider with worker_threads isolation.
@@ -1,8 +1,4 @@
1
- const __mixdogMemoryStderrWrite = process.stderr.write.bind(process.stderr);
2
- function __mixdogMemoryLog(...args) {
3
- if (process.env.MIXDOG_QUIET_MEMORY_LOG) return true;
4
- return __mixdogMemoryStderrWrite(...args);
5
- }
1
+ import { __mixdogMemoryLog } from './memory-log.mjs';
6
2
 
7
3
  import { parentPort } from 'worker_threads'
8
4
  import { createRequire } from 'module'
@@ -27,7 +27,7 @@ import zlib from 'node:zlib'
27
27
  // 0.23.0: its base model ships CoNg (72MB, ~940MB RSS after build) vs
28
28
  // KnLM's 35MB download / ~560MB build peak, and recall stemming gains
29
29
  // nothing from the CoNg accuracy delta.
30
- export const KIWI_MODEL_VERSION = 'v0.21.0'
30
+ const KIWI_MODEL_VERSION = 'v0.21.0'
31
31
  const KIWI_MODEL_ASSET = `kiwi_model_${KIWI_MODEL_VERSION}_base.tgz`
32
32
  const KIWI_MODEL_URL = `https://github.com/bab2min/Kiwi/releases/download/${KIWI_MODEL_VERSION}/${KIWI_MODEL_ASSET}`
33
33
 
@@ -52,7 +52,7 @@ let _initMs = 0
52
52
 
53
53
  export function isReady() { return _state === 'ready' && _kiwi != null }
54
54
  export function state() { return _state }
55
- export function initLatencyMs() { return _initMs }
55
+ function initLatencyMs() { return _initMs }
56
56
 
57
57
  function modelDir(dataDir) {
58
58
  return path.join(dataDir, 'kiwi-model', KIWI_MODEL_VERSION)
@@ -16,8 +16,8 @@ export function readMainConfig() {
16
16
  // default true) — the same file the session runtime persists via
17
17
  // saveConfigAndAdopt. The memory daemon runs as a detached cross-process HTTP
18
18
  // worker, so it re-reads this section from disk each cycle tick (poll-on-use)
19
- // rather than relying on IPC. A legacy `agent.modules.memory === false` flag is
20
- // still honored as recap off (migration folds it on the session-runtime side).
19
+ // rather than relying on IPC.
20
+
21
21
  export function readRecapEnabled() {
22
22
  try {
23
23
  let agent = readSection('agent')
@@ -28,9 +28,6 @@ export function readRecapEnabled() {
28
28
  if (agent?.agent && agent.agent.providers) agent = agent.agent
29
29
  const recap = agent?.recap
30
30
  if (recap && typeof recap === 'object' && recap.enabled === false) return false
31
- const legacyMemory = agent?.modules?.memory
32
- if (legacyMemory === false) return false
33
- if (legacyMemory && typeof legacyMemory === 'object' && legacyMemory.enabled === false) return false
34
31
  return true
35
32
  } catch {
36
33
  return true
@@ -1,8 +1,4 @@
1
- const __mixdogMemoryStderrWrite = process.stderr.write.bind(process.stderr);
2
- function __mixdogMemoryLog(...args) {
3
- if (process.env.MIXDOG_QUIET_MEMORY_LOG) return true;
4
- return __mixdogMemoryStderrWrite(...args);
5
- }
1
+ import { __mixdogMemoryLog } from './memory-log.mjs';
6
2
 
7
3
  const VALID_CYCLES = new Set(['cycle1', 'cycle2', 'cycle3'])
8
4
  const KEY_PREFIX = 'cycle_request.'
@@ -54,7 +50,7 @@ function cycleScheduleKey(kind, signature = 'default') {
54
50
  return `cycle_schedule.${normalized}.${sig}`
55
51
  }
56
52
 
57
- export async function claimScheduledCycle(db, kind, intervalMs, signature = 'default', options = {}) {
53
+ async function claimScheduledCycle(db, kind, intervalMs, signature = 'default', options = {}) {
58
54
  const key = cycleScheduleKey(kind, signature)
59
55
  const now = Number.isFinite(Number(options?.now)) ? Number(options.now) : Date.now()
60
56
  const spacingMsRaw = Number.isFinite(Number(options?.spacingMs)) ? Number(options.spacingMs) : Number(intervalMs)
@@ -230,7 +226,7 @@ export function resolveCoalesceMaxDrains(config, fallback = 1) {
230
226
  return Math.max(0, Math.min(10, Math.floor(value)))
231
227
  }
232
228
 
233
- export function resolveCoalesceRetryDelayMs(config, fallback = 1000) {
229
+ function resolveCoalesceRetryDelayMs(config, fallback = 1000) {
234
230
  const direct = Number(config?.coalesce_retry_delay_ms)
235
231
  const nested = Number(config?.coalesce?.retry_delay_ms)
236
232
  const env = Number(process.env.MIXDOG_MEMORY_CYCLE_COALESCE_RETRY_MS)
@@ -1,8 +1,4 @@
1
- const __mixdogMemoryStderrWrite = process.stderr.write.bind(process.stderr);
2
- function __mixdogMemoryLog(...args) {
3
- if (process.env.MIXDOG_QUIET_MEMORY_LOG) return true;
4
- return __mixdogMemoryStderrWrite(...args);
5
- }
1
+ import { __mixdogMemoryLog } from './memory-log.mjs';
6
2
 
7
3
  import { cleanMemoryText } from './memory.mjs'
8
4
  import { resolveMaintenancePreset } from '../../shared/llm/index.mjs'
@@ -113,7 +109,7 @@ function selectRootId(members) {
113
109
  return rootId
114
110
  }
115
111
 
116
- export function buildEntriesText(entries) {
112
+ function buildEntriesText(entries) {
117
113
  // @N is a 1-based prompt-local index; cycle1-agent answers with @N indexes.
118
114
  return entries.map((e, i) => {
119
115
  const content = cleanMemoryText(String(e.content ?? '')).slice(0, 400)
@@ -135,14 +131,14 @@ const DEFAULT_CYCLE1_RULES = [
135
131
  `First character of your response must be a digit. Use bare @N indexes without @ in output.`,
136
132
  ]
137
133
 
138
- export function buildCycle1ChunkPrompt(rows, customRules = null) {
134
+ function buildCycle1ChunkPrompt(rows, customRules = null) {
139
135
  const rules = Array.isArray(customRules) && customRules.length > 0
140
136
  ? customRules
141
137
  : DEFAULT_CYCLE1_RULES
142
138
  return [...rules, '', buildEntriesText(rows)].join('\n')
143
139
  }
144
140
 
145
- export function parseCycle1LineFormat(raw) {
141
+ function parseCycle1LineFormat(raw) {
146
142
  if (raw == null) return null
147
143
  const text = String(raw).trim()
148
144
  if (!text) return null
@@ -85,7 +85,7 @@ function formatUserCoreForPrompt(rows, pidMap) {
85
85
  // Returns { actions, rejected } or null when no parseable lines.
86
86
  // True when some entry id K in 1..N is also the row-ordinal label for a different
87
87
  // entry (token K is ambiguous between id K and "row K").
88
- export function batchOrdinalIdCollides(statusById, ordinalToId, rowCount) {
88
+ function batchOrdinalIdCollides(statusById, ordinalToId, rowCount) {
89
89
  const n = Math.max(0, Number(rowCount) || 0)
90
90
  for (let k = 1; k <= n; k++) {
91
91
  if (!statusById.has(k)) continue
@@ -45,7 +45,7 @@ const TRANSIENT_SNAPSHOT_RE = new RegExp(
45
45
  // task/issue block by category. Durable knowledge categories are trusted and
46
46
  // skip the content scan. Everything else (e.g. 'fact') is content-scanned so
47
47
  // snapshots mis-categorized as durable are still blocked.
48
- export function isTransientPromotion(row) {
48
+ function isTransientPromotion(row) {
49
49
  if (!row) return false
50
50
  const cat = String(row.category ?? '').toLowerCase()
51
51
  if (TRANSIENT_PROMOTE_CATEGORIES.has(cat)) return true
@@ -3,11 +3,8 @@
3
3
  // No cycle2 business logic; safe to import from any cycle2 sub-module.
4
4
  import { fileURLToPath } from 'url'
5
5
 
6
- const __mixdogMemoryStderrWrite = process.stderr.write.bind(process.stderr)
7
- export function __mixdogMemoryLog(...args) {
8
- if (process.env.MIXDOG_QUIET_MEMORY_LOG) return true
9
- return __mixdogMemoryStderrWrite(...args)
10
- }
6
+ import { __mixdogMemoryLog } from './memory-log.mjs'
7
+ export { __mixdogMemoryLog }
11
8
 
12
9
  export function throwIfAborted(signal) {
13
10
  if (signal?.aborted) throw signal.reason ?? new Error('aborted')
@@ -1,8 +1,4 @@
1
- const __mixdogMemoryStderrWrite = process.stderr.write.bind(process.stderr);
2
- function __mixdogMemoryLog(...args) {
3
- if (process.env.MIXDOG_QUIET_MEMORY_LOG) return true;
4
- return __mixdogMemoryStderrWrite(...args);
5
- }
1
+ import { __mixdogMemoryLog } from './memory-log.mjs';
6
2
 
7
3
  // Cycle 3 — user-curated core memory review.
8
4
  //
@@ -1,8 +1,4 @@
1
- const __mixdogMemoryStderrWrite = process.stderr.write.bind(process.stderr);
2
- function __mixdogMemoryLog(...args) {
3
- if (process.env.MIXDOG_QUIET_MEMORY_LOG) return true;
4
- return __mixdogMemoryStderrWrite(...args);
5
- }
1
+ import { __mixdogMemoryLog } from './memory-log.mjs';
6
2
 
7
3
  import { embedTexts, getEmbeddingModelId } from './embedding-provider.mjs'
8
4
  import { embeddingToSql } from './memory.mjs'
@@ -116,7 +112,7 @@ const RAW_EMBED_EXCLUDE_NON_CONVERSATION_CONTENT_RES = [
116
112
  ]
117
113
  const RAW_EMBED_CONVERSATION_ROLES = new Set(['user', 'assistant'])
118
114
 
119
- export function isRawEmbeddable(role, content) {
115
+ function isRawEmbeddable(role, content) {
120
116
  const normRole = String(role ?? '').trim().toLowerCase()
121
117
  if (RAW_EMBED_EXCLUDE_ROLES.has(normRole)) return false
122
118
  const text = typeof content === 'string' ? content : ''
@@ -0,0 +1,8 @@
1
+ // Shared memory-daemon stderr logger. The write is captured at import time so
2
+ // memory output stays visible even when a TUI log guard swaps
3
+ // process.stderr.write later; MIXDOG_QUIET_MEMORY_LOG mutes it entirely.
4
+ const __mixdogMemoryStderrWrite = process.stderr.write.bind(process.stderr);
5
+ export function __mixdogMemoryLog(...args) {
6
+ if (process.env.MIXDOG_QUIET_MEMORY_LOG) return true;
7
+ return __mixdogMemoryStderrWrite(...args);
8
+ }
@@ -1,8 +1,4 @@
1
- const __mixdogMemoryStderrWrite = process.stderr.write.bind(process.stderr);
2
- function __mixdogMemoryLog(...args) {
3
- if (process.env.MIXDOG_QUIET_MEMORY_LOG) return true;
4
- return __mixdogMemoryStderrWrite(...args);
5
- }
1
+ import { __mixdogMemoryLog } from './memory-log.mjs';
6
2
 
7
3
  import fs from 'node:fs'
8
4
  import path from 'node:path'
@@ -24,7 +20,7 @@ function normalizeBackfillScope(value) {
24
20
  return 'all'
25
21
  }
26
22
 
27
- export function resolveBackfillSinceMs(windowValue, now = Date.now()) {
23
+ function resolveBackfillSinceMs(windowValue, now = Date.now()) {
28
24
  const normalized = normalizeBackfillWindow(windowValue)
29
25
  if (normalized === '1d') return now - (1 * 24 * 60 * 60 * 1000)
30
26
  if (normalized === '3d') return now - (3 * 24 * 60 * 60 * 1000)
@@ -33,7 +29,7 @@ export function resolveBackfillSinceMs(windowValue, now = Date.now()) {
33
29
  return null
34
30
  }
35
31
 
36
- export async function countUnclassified(db) {
32
+ async function countUnclassified(db) {
37
33
  if (!db) return 0
38
34
  try {
39
35
  const row = (await db.query(`SELECT COUNT(*) c FROM entries WHERE chunk_root IS NULL`, [])).rows[0]
@@ -43,7 +39,7 @@ export async function countUnclassified(db) {
43
39
  }
44
40
  }
45
41
 
46
- export function selectBackfillTranscripts({ sinceMs = null, limit = null, projectsRoot = null } = {}) {
42
+ function selectBackfillTranscripts({ sinceMs = null, limit = null, projectsRoot = null } = {}) {
47
43
  const root = projectsRoot || path.join(mixdogHome(), 'projects')
48
44
  if (!fs.existsSync(root)) return []
49
45
  const files = []