mixdog 0.9.63 → 0.9.65
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.
- package/README.md +3 -0
- package/package.json +9 -2
- package/scripts/code-graph-description-contract.mjs +3 -3
- package/scripts/verify-release-assets.mjs +2 -2
- package/src/runtime/agent/orchestrator/agent-runtime/agent-dispatch.mjs +11 -14
- package/src/runtime/agent/orchestrator/agent-runtime/agent-progress-watchdog.mjs +6 -6
- package/src/runtime/agent/orchestrator/agent-runtime/cache-strategy.mjs +2 -2
- package/src/runtime/agent/orchestrator/agent-trace-format.mjs +1 -0
- package/src/runtime/agent/orchestrator/config.mjs +19 -124
- package/src/runtime/agent/orchestrator/context/collect.mjs +6 -6
- package/src/runtime/agent/orchestrator/dispatch-persist.mjs +2 -2
- package/src/runtime/agent/orchestrator/internal-agents.mjs +2 -2
- package/src/runtime/agent/orchestrator/mcp/child-tree.mjs +1 -1
- package/src/runtime/agent/orchestrator/mcp/client.mjs +4 -4
- package/src/runtime/agent/orchestrator/providers/admission-scheduler.mjs +2 -2
- package/src/runtime/agent/orchestrator/providers/anthropic-betas.mjs +4 -4
- package/src/runtime/agent/orchestrator/providers/anthropic-effort.mjs +2 -2
- package/src/runtime/agent/orchestrator/providers/anthropic-max-tokens.mjs +4 -4
- package/src/runtime/agent/orchestrator/providers/anthropic-messages.mjs +333 -0
- package/src/runtime/agent/orchestrator/providers/anthropic-model-resolve.mjs +2 -2
- package/src/runtime/agent/orchestrator/providers/anthropic-oauth-credentials.mjs +4 -4
- package/src/runtime/agent/orchestrator/providers/anthropic-oauth.mjs +1 -1
- package/src/runtime/agent/orchestrator/providers/anthropic.mjs +3 -277
- package/src/runtime/agent/orchestrator/providers/codex-client-meta.mjs +2 -2
- package/src/runtime/agent/orchestrator/providers/custom-tool-wire.mjs +1 -1
- package/src/runtime/agent/orchestrator/providers/gemini-cache.mjs +2 -2
- package/src/runtime/agent/orchestrator/providers/gemini-stream.mjs +6 -6
- package/src/runtime/agent/orchestrator/providers/grok-oauth-login.mjs +196 -0
- package/src/runtime/agent/orchestrator/providers/grok-oauth-tokens.mjs +460 -0
- package/src/runtime/agent/orchestrator/providers/grok-oauth.mjs +14 -593
- package/src/runtime/agent/orchestrator/providers/lib/anthropic-request-utils.mjs +1 -1
- package/src/runtime/agent/orchestrator/providers/media-normalization.mjs +1 -1
- package/src/runtime/agent/orchestrator/providers/openai-compat-wire.mjs +1 -1
- package/src/runtime/agent/orchestrator/providers/openai-compat-xai.mjs +4 -4
- package/src/runtime/agent/orchestrator/providers/openai-oauth-ws.mjs +2 -2
- package/src/runtime/agent/orchestrator/providers/openai-oauth.mjs +5 -280
- package/src/runtime/agent/orchestrator/providers/openai-responses-payload.mjs +357 -0
- package/src/runtime/agent/orchestrator/providers/openai-ws-headers.mjs +216 -0
- package/src/runtime/agent/orchestrator/providers/openai-ws-pool.mjs +2 -188
- package/src/runtime/agent/orchestrator/providers/openai-ws-stream.mjs +2 -2
- package/src/runtime/agent/orchestrator/providers/openai-ws.mjs +2 -2
- package/src/runtime/agent/orchestrator/providers/opencode-go.mjs +1 -1
- package/src/runtime/agent/orchestrator/providers/provider-catalog-cache.mjs +1 -1
- package/src/runtime/agent/orchestrator/providers/registry.mjs +1 -1
- package/src/runtime/agent/orchestrator/providers/retry-classifier.mjs +2 -2
- package/src/runtime/agent/orchestrator/providers/statusline-route-meta.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/cache/prefetch-cache.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/cache/scoped-cache.mjs +3 -3
- package/src/runtime/agent/orchestrator/session/compact/budget.mjs +2 -2
- package/src/runtime/agent/orchestrator/session/compact/file-reattach.mjs +2 -2
- package/src/runtime/agent/orchestrator/session/compact/summary-schema.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/compact/summary.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/compact/text-utils.mjs +2 -2
- package/src/runtime/agent/orchestrator/session/context-utils.mjs +4 -4
- package/src/runtime/agent/orchestrator/session/loop/deferred-call-through.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/loop/pre-dispatch-deny.mjs +17 -0
- package/src/runtime/agent/orchestrator/session/loop/steering.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/loop/stored-tool-args.mjs +18 -26
- package/src/runtime/agent/orchestrator/session/loop/termination.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/loop/tool-classify.mjs +3 -3
- package/src/runtime/agent/orchestrator/session/manager/compaction-runner.mjs +1 -0
- package/src/runtime/agent/orchestrator/session/manager/context-meta.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/manager/delivered-completions.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/manager/status-telemetry.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/store/live-state.mjs +49 -0
- package/src/runtime/agent/orchestrator/session/store/load-cache.mjs +49 -0
- package/src/runtime/agent/orchestrator/session/store/save-worker.mjs +260 -0
- package/src/runtime/agent/orchestrator/session/store/serialize.mjs +72 -0
- package/src/runtime/agent/orchestrator/session/store/summary-cache.mjs +163 -0
- package/src/runtime/agent/orchestrator/session/store/write-guards.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/store-summary-index.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/store-summary-reader.mjs +4 -1
- package/src/runtime/agent/orchestrator/session/store.mjs +9 -561
- package/src/runtime/agent/orchestrator/session/tool-envelope.mjs +1 -1
- package/src/runtime/agent/orchestrator/session/tool-result-offload.mjs +2 -2
- package/src/runtime/agent/orchestrator/stall-policy.mjs +11 -11
- package/src/runtime/agent/orchestrator/tools/bash-policy-scan.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/bash-session.mjs +2 -2
- package/src/runtime/agent/orchestrator/tools/builtin/advisory-lock.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/arg-guard.mjs +2 -2
- package/src/runtime/agent/orchestrator/tools/builtin/atomic-write.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/bash-tool.mjs +2 -154
- package/src/runtime/agent/orchestrator/tools/builtin/cache-layers.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/cwd-utils.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/fs-reachability.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/fuzzy-match.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/glob-walk.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/path-locks.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/path-utils.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/read-args.mjs +2 -2
- package/src/runtime/agent/orchestrator/tools/builtin/read-formatting.mjs +2 -3
- package/src/runtime/agent/orchestrator/tools/builtin/read-image-resize.mjs +4 -4
- package/src/runtime/agent/orchestrator/tools/builtin/read-open.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/read-streaming.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/rg-runner.mjs +2 -2
- package/src/runtime/agent/orchestrator/tools/builtin/search-path-diagnostics.mjs +5 -5
- package/src/runtime/agent/orchestrator/tools/builtin/shell-analysis.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/shell-job-paths.mjs +2 -2
- package/src/runtime/agent/orchestrator/tools/builtin/shell-job-process.mjs +2 -2
- package/src/runtime/agent/orchestrator/tools/builtin/shell-job-spawn.mjs +519 -0
- package/src/runtime/agent/orchestrator/tools/builtin/shell-jobs.mjs +5 -449
- package/src/runtime/agent/orchestrator/tools/builtin/snapshot-helpers.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/builtin/task-tool.mjs +212 -0
- package/src/runtime/agent/orchestrator/tools/builtin.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/code-graph/build.mjs +1 -7
- package/src/runtime/agent/orchestrator/tools/code-graph/disk-cache.mjs +9 -36
- package/src/runtime/agent/orchestrator/tools/code-graph/dispatch.mjs +15 -3
- package/src/runtime/agent/orchestrator/tools/code-graph/search-references.mjs +429 -0
- package/src/runtime/agent/orchestrator/tools/code-graph/search.mjs +2 -395
- package/src/runtime/agent/orchestrator/tools/code-graph/symbol-index.mjs +2 -2
- package/src/runtime/agent/orchestrator/tools/code-graph/text-mask.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/code-graph/trusted-roots.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/code-graph-prewarm-worker.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/code-graph-state.mjs +3 -3
- package/src/runtime/agent/orchestrator/tools/mutation-planner.mjs +5 -5
- package/src/runtime/agent/orchestrator/tools/next-call-utils.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/patch/dispatch.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/patch/matcher.mjs +7 -7
- package/src/runtime/agent/orchestrator/tools/patch/orchestrator.mjs +72 -9
- package/src/runtime/agent/orchestrator/tools/patch/parsing.mjs +4 -4
- package/src/runtime/agent/orchestrator/tools/patch/paths.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/patch/v4a-convert.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/patch-tool-defs.mjs +4 -4
- package/src/runtime/agent/orchestrator/tools/patch.mjs +1 -1
- package/src/runtime/agent/orchestrator/tools/result-compression.mjs +3 -3
- package/src/runtime/agent/orchestrator/tools/shell-command.mjs +2 -444
- package/src/runtime/agent/orchestrator/tools/shell-exec-output.mjs +505 -0
- package/src/runtime/agent/orchestrator/tools/shell-exec-policy.mjs +2 -2
- package/src/runtime/agent/orchestrator/tools/shell-snapshot.mjs +1 -1
- package/src/runtime/channels/lib/backend-dispatch.mjs +20 -5
- package/src/runtime/channels/lib/scheduler.mjs +1 -1
- package/src/runtime/channels/lib/telegram-format.mjs +1 -1
- package/src/runtime/channels/lib/voice-runtime-fetcher.mjs +4 -4
- package/src/runtime/channels/tool-defs.mjs +2 -3
- package/src/runtime/memory/index.mjs +1 -5
- package/src/runtime/memory/lib/core-memory-candidates.mjs +357 -0
- package/src/runtime/memory/lib/core-memory-store.mjs +7 -357
- package/src/runtime/memory/lib/cycle-signatures.mjs +1 -1
- package/src/runtime/memory/lib/embedding-model-config.mjs +1 -1
- package/src/runtime/memory/lib/embedding-provider.mjs +1 -5
- package/src/runtime/memory/lib/embedding-worker.mjs +1 -5
- package/src/runtime/memory/lib/ko-morph.mjs +2 -2
- package/src/runtime/memory/lib/memory-config-flags.mjs +2 -5
- package/src/runtime/memory/lib/memory-cycle-requests.mjs +3 -7
- package/src/runtime/memory/lib/memory-cycle1.mjs +4 -8
- package/src/runtime/memory/lib/memory-cycle2-gate.mjs +1 -1
- package/src/runtime/memory/lib/memory-cycle2-mutations.mjs +1 -1
- package/src/runtime/memory/lib/memory-cycle2-shared.mjs +2 -5
- package/src/runtime/memory/lib/memory-cycle3.mjs +1 -5
- package/src/runtime/memory/lib/memory-embed.mjs +2 -6
- package/src/runtime/memory/lib/memory-log.mjs +8 -0
- package/src/runtime/memory/lib/memory-ops-policy.mjs +4 -8
- package/src/runtime/memory/lib/memory-recall-scope-filter.mjs +1 -1
- package/src/runtime/memory/lib/memory-recall-store.mjs +2 -193
- package/src/runtime/memory/lib/memory-score.mjs +1 -1
- package/src/runtime/memory/lib/memory-text-utils.mjs +2 -2
- package/src/runtime/memory/lib/memory.mjs +2 -6
- package/src/runtime/memory/lib/pg/adapter.mjs +2 -6
- package/src/runtime/memory/lib/pg/process.mjs +1 -5
- package/src/runtime/memory/lib/pg/supervisor.mjs +1 -5
- package/src/runtime/memory/lib/recall-format.mjs +2 -2
- package/src/runtime/memory/lib/recall-scoring.mjs +195 -0
- package/src/runtime/memory/lib/runtime-fetcher.mjs +1 -5
- package/src/runtime/memory/lib/trace-store.mjs +2 -6
- package/src/runtime/search/lib/http-fetch.mjs +6 -6
- package/src/runtime/search/lib/web-tools.mjs +2 -2
- package/src/runtime/shared/buffered-appender.mjs +1 -1
- package/src/runtime/shared/child-guardian.mjs +1 -1
- package/src/runtime/shared/child-spawn-gate.mjs +1 -1
- package/src/runtime/shared/config.mjs +4 -4
- package/src/runtime/shared/launcher-control.mjs +9 -10
- package/src/runtime/shared/llm/index.mjs +5 -20
- package/src/runtime/shared/markdown-frontmatter.mjs +1 -1
- package/src/runtime/shared/memory-snapshot.mjs +4 -4
- package/src/runtime/shared/pristine-execution.mjs +1 -1
- package/src/runtime/shared/process-lifecycle.mjs +0 -1
- package/src/runtime/shared/process-shutdown.mjs +1 -1
- package/src/runtime/shared/resource-admission.mjs +2 -2
- package/src/runtime/shared/schedule-session-run.mjs +1 -1
- package/src/runtime/shared/schedules-db.mjs +1 -1
- package/src/runtime/shared/service-discovery.mjs +2 -2
- package/src/runtime/shared/staged-update.mjs +6 -6
- package/src/runtime/shared/tool-execution-contract.mjs +1 -1
- package/src/runtime/shared/tool-primitives.mjs +1 -1
- package/src/runtime/shared/tool-surface.mjs +2 -2
- package/src/runtime/shared/turn-snapshot.mjs +184 -0
- package/src/runtime/shared/update-checker.mjs +1 -1
- package/src/runtime/shared/user-cwd.mjs +3 -3
- package/src/runtime/shared/user-data-guard.mjs +4 -4
- package/src/runtime/shared/workspace-router.mjs +5 -5
- package/src/session-runtime/config-helpers.mjs +2 -3
- package/src/session-runtime/config-lifecycle.mjs +1 -1
- package/src/session-runtime/hitch-profile.mjs +1 -1
- package/src/session-runtime/lifecycle-api.mjs +6 -4
- package/src/session-runtime/model-recency.mjs +5 -5
- package/src/session-runtime/plugin-mcp.mjs +1 -1
- package/src/session-runtime/provider-request-snapshot.mjs +338 -0
- package/src/session-runtime/runtime-core.mjs +4 -0
- package/src/session-runtime/session-text.mjs +4 -4
- package/src/session-runtime/session-turn-api.mjs +7 -0
- package/src/session-runtime/tool-catalog-schema.mjs +197 -0
- package/src/session-runtime/tool-catalog.mjs +6 -483
- package/src/session-runtime/tool-defs.mjs +1 -1
- package/src/standalone/agent-task-status.mjs +1 -1
- package/src/standalone/agent-tool/helpers.mjs +2 -2
- package/src/standalone/channel-admin.mjs +4 -4
- package/src/standalone/explore-tool.mjs +3 -3
- package/src/standalone/hook-bus/config.mjs +1 -1
- package/src/standalone/hook-bus/constants.mjs +1 -1
- package/src/standalone/hook-bus/rules.mjs +1 -1
- package/src/standalone/projects.mjs +1 -1
- package/src/standalone/provider-admin.mjs +2 -2
- package/src/tui/App.jsx +1 -1
- package/src/tui/app/app-format.mjs +2 -2
- package/src/tui/app/clipboard.mjs +3 -3
- package/src/tui/app/input-parsers.mjs +1 -1
- package/src/tui/app/text-layout.mjs +1 -1
- package/src/tui/app/transcript-row-estimate.mjs +360 -0
- package/src/tui/app/transcript-window.mjs +5 -347
- package/src/tui/app/use-mouse-input.mjs +1 -1
- package/src/tui/app/use-prompt-handlers.mjs +1 -1
- package/src/tui/components/tool-execution/surface-detail.mjs +9 -9
- package/src/tui/components/tool-execution/text-format.mjs +2 -2
- package/src/tui/components/tool-output-format.mjs +7 -7
- package/src/tui/display-width.mjs +4 -4
- package/src/tui/dist/index.mjs +187 -99
- package/src/tui/engine/agent-envelope.mjs +5 -5
- package/src/tui/engine/live-share.mjs +100 -0
- package/src/tui/engine/notification-plan.mjs +1 -1
- package/src/tui/engine/queue-helpers.mjs +3 -3
- package/src/tui/engine/render-timing.mjs +4 -5
- package/src/tui/engine/session-api-ext.mjs +6 -3
- package/src/tui/engine/tool-result-status.mjs +5 -5
- package/src/tui/engine/tool-result-text.mjs +1 -1
- package/src/tui/engine/transcript-spill.mjs +585 -0
- package/src/tui/engine/tui-steering-persist.mjs +1 -1
- package/src/tui/engine.mjs +29 -474
- package/src/tui/lib/voice-setup.mjs +1 -1
- package/src/tui/markdown/format-token.mjs +1 -1
- package/src/tui/markdown/render-ansi.mjs +1 -1
- package/src/tui/markdown/table-layout.mjs +4 -4
- package/src/tui/paste-attachments.mjs +1 -1
- package/src/tui/prompt-history-store.mjs +3 -3
- package/src/tui/statusline-ansi-bridge.mjs +2 -2
- package/src/tui/theme.mjs +1 -1
- package/src/tui/transcript-tool-failures.mjs +2 -2
- package/src/ui/ansi.mjs +0 -9
- package/src/ui/statusline-format.mjs +2 -4
- package/scripts/_bench-cwc.json +0 -20
- package/scripts/_jitter-fuzz.jsx +0 -42
- package/scripts/_jitter-fuzz2.jsx +0 -30
- package/scripts/_jitter-probe.jsx +0 -35
- package/scripts/_jp2.jsx +0 -16
- package/scripts/_smoke_wd.mjs +0 -7
- package/scripts/abort-recovery-test.mjs +0 -175
- package/scripts/agent-dispatch-abort-compose-test.mjs +0 -31
- package/scripts/agent-live-arg-guard-smoke.mjs +0 -20
- package/scripts/agent-live-path-suffix-smoke.mjs +0 -34
- package/scripts/agent-live-toolcall-args-smoke.mjs +0 -45
- package/scripts/agent-loop-policy-test.mjs +0 -37
- package/scripts/agent-model-liveness-test.mjs +0 -763
- package/scripts/agent-parallel-smoke.mjs +0 -435
- package/scripts/agent-route-batch-test.mjs +0 -40
- package/scripts/agent-tag-reuse-smoke.mjs +0 -441
- package/scripts/agent-terminal-reap-test.mjs +0 -252
- package/scripts/agent-trace-io-test.mjs +0 -133
- package/scripts/ansi-color-capability-test.mjs +0 -90
- package/scripts/anthropic-admission-retry-integration-test.mjs +0 -119
- package/scripts/anthropic-maxtokens-test.mjs +0 -119
- package/scripts/anthropic-oauth-refresh-race-test.mjs +0 -397
- package/scripts/anthropic-transport-policy-test.mjs +0 -726
- package/scripts/apply-patch-edit-smoke.mjs +0 -71
- package/scripts/arg-guard-test.mjs +0 -93
- package/scripts/async-notify-settlement-test.mjs +0 -99
- package/scripts/atomic-lock-tryonce-test.mjs +0 -125
- package/scripts/background-task-meta-smoke.mjs +0 -38
- package/scripts/bench-run.mjs +0 -508
- package/scripts/boot-smoke.mjs +0 -137
- package/scripts/build-runtime-windows.ps1 +0 -242
- package/scripts/channel-daemon-smoke.mjs +0 -1103
- package/scripts/code-graph-aggregate-cwd-test.mjs +0 -158
- package/scripts/code-graph-disk-hit-test.mjs +0 -290
- package/scripts/code-graph-dispatch-test.mjs +0 -96
- package/scripts/code-graph-root-federation-test.mjs +0 -273
- package/scripts/compact-active-turn-test.mjs +0 -68
- package/scripts/compact-file-reattach-test.mjs +0 -88
- package/scripts/compact-pressure-test.mjs +0 -788
- package/scripts/compact-prior-context-flatten-test.mjs +0 -252
- package/scripts/compact-recall-digest-test.mjs +0 -57
- package/scripts/compact-smoke.mjs +0 -1017
- package/scripts/compact-trigger-migration-smoke.mjs +0 -261
- package/scripts/compacted-placeholder-scrub-test.mjs +0 -63
- package/scripts/context-mcp-metering-test.mjs +0 -1406
- package/scripts/debounced-skills-async-save-test.mjs +0 -57
- package/scripts/deferred-tool-loading-test.mjs +0 -250
- package/scripts/desktop-session-bridge-test.mjs +0 -1013
- package/scripts/dispatch-persist-recovery-test.mjs +0 -141
- package/scripts/embedding-worker-exit-test.mjs +0 -76
- package/scripts/execution-completion-dedup-test.mjs +0 -205
- package/scripts/execution-pending-resume-kick-test.mjs +0 -151
- package/scripts/execution-resume-esc-integration-test.mjs +0 -176
- package/scripts/explore-bench-tmp.mjs +0 -36
- package/scripts/explore-bench.mjs +0 -248
- package/scripts/explore-prompt-policy-test.mjs +0 -256
- package/scripts/explore-timeout-cancel-test.mjs +0 -345
- package/scripts/find-fuzzy-hidden-test.mjs +0 -267
- package/scripts/forwarder-rebind-tail-test.mjs +0 -67
- package/scripts/freevar-smoke.mjs +0 -98
- package/scripts/gemini-provider-test.mjs +0 -1448
- package/scripts/generate-oc-icons.mjs +0 -11
- package/scripts/grok-oauth-refresh-race-test.mjs +0 -273
- package/scripts/headless-pristine-execution-test.mjs +0 -614
- package/scripts/hook-bus-test.mjs +0 -552
- package/scripts/ingest-pure-conversation-smoke.mjs +0 -175
- package/scripts/internal-comms-bench-test.mjs +0 -226
- package/scripts/internal-comms-bench.mjs +0 -853
- package/scripts/internal-comms-smoke.mjs +0 -277
- package/scripts/internal-tools-normalization-test.mjs +0 -62
- package/scripts/interrupted-turn-history-test.mjs +0 -399
- package/scripts/lead-workflow-smoke.mjs +0 -592
- package/scripts/lifecycle-api-test.mjs +0 -137
- package/scripts/live-share-test.mjs +0 -148
- package/scripts/live-worker-smoke.mjs +0 -333
- package/scripts/log-writer-guard-smoke.mjs +0 -131
- package/scripts/maintenance-default-routes-test.mjs +0 -164
- package/scripts/max-output-recovery-persist-test.mjs +0 -81
- package/scripts/max-output-recovery-test.mjs +0 -368
- package/scripts/mcp-client-normalization-test.mjs +0 -45
- package/scripts/mcp-grace-deferred-test.mjs +0 -225
- package/scripts/memory-core-input-test.mjs +0 -167
- package/scripts/memory-cycle-routing-test.mjs +0 -111
- package/scripts/memory-meta-concurrency-test.mjs +0 -20
- package/scripts/memory-pg-recovery-test.mjs +0 -59
- package/scripts/memory-rule-contract-test.mjs +0 -93
- package/scripts/model-list-sanitize-test.mjs +0 -37
- package/scripts/mouse-tracking-restore-smoke.mjs +0 -107
- package/scripts/native-edit-wire-test.mjs +0 -152
- package/scripts/notify-completion-mirror-test.mjs +0 -73
- package/scripts/openai-oauth-refresh-race-test.mjs +0 -120
- package/scripts/openai-oauth-ws-1006-retry-test.mjs +0 -954
- package/scripts/openai-ws-early-settle-test.mjs +0 -216
- package/scripts/output-style-bench.mjs +0 -292
- package/scripts/output-style-smoke.mjs +0 -145
- package/scripts/parent-abort-link-test.mjs +0 -90
- package/scripts/patch-binary-cache-test.mjs +0 -181
- package/scripts/path-suffix-test.mjs +0 -57
- package/scripts/pending-completion-drop-test.mjs +0 -239
- package/scripts/pending-messages-lock-nonblocking-test.mjs +0 -62
- package/scripts/pretool-ask-runtime-test.mjs +0 -54
- package/scripts/process-lifecycle-test.mjs +0 -461
- package/scripts/prompt-immediate-render-test.mjs +0 -89
- package/scripts/prompt-input-parity-test.mjs +0 -145
- package/scripts/provider-admission-scheduler-test.mjs +0 -681
- package/scripts/provider-contract-test.mjs +0 -632
- package/scripts/provider-stream-stall-test.mjs +0 -276
- package/scripts/provider-toolcall-test.mjs +0 -3063
- package/scripts/reactive-compact-persist-smoke.mjs +0 -203
- package/scripts/recall-bench.mjs +0 -359
- package/scripts/resource-admission-test.mjs +0 -792
- package/scripts/result-classification-test.mjs +0 -75
- package/scripts/rg-runner-test.mjs +0 -240
- package/scripts/routing-corpus-test.mjs +0 -349
- package/scripts/sanitize-tool-pairs-test.mjs +0 -260
- package/scripts/session-bench-cache-break-test.mjs +0 -102
- package/scripts/session-bench.mjs +0 -1708
- package/scripts/session-context-bench.mjs +0 -344
- package/scripts/session-heartbeat-lifecycle-test.mjs +0 -68
- package/scripts/session-ingest-compaction-smoke.mjs +0 -279
- package/scripts/session-ingest-smoke.mjs +0 -177
- package/scripts/session-orphan-sweep-test.mjs +0 -109
- package/scripts/set-effort-config-test.mjs +0 -41
- package/scripts/shell-failure-diagnostics-test.mjs +0 -280
- package/scripts/shell-hardening-test.mjs +0 -209
- package/scripts/shell-jobs-windows-hide-test.mjs +0 -164
- package/scripts/ship-mode-test.mjs +0 -98
- package/scripts/smoke-loop-failure-summary-test.mjs +0 -38
- package/scripts/smoke-loop-failure-summary.mjs +0 -16
- package/scripts/smoke-loop-report.mjs +0 -221
- package/scripts/smoke-loop.mjs +0 -202
- package/scripts/smoke-runtime-negative.ps1 +0 -106
- package/scripts/statusline-quota-hysteresis-test.mjs +0 -62
- package/scripts/steering-drain-buckets-test.mjs +0 -467
- package/scripts/steering-fold-provenance-test.mjs +0 -71
- package/scripts/streaming-tail-window-test.mjs +0 -175
- package/scripts/submit-commandbusy-race-test.mjs +0 -257
- package/scripts/task-bench.mjs +0 -205
- package/scripts/terminal-bench-isolation-guards-test.mjs +0 -102
- package/scripts/termio-input-smoke.mjs +0 -199
- package/scripts/tool-result-hook-test.mjs +0 -48
- package/scripts/tool-smoke.mjs +0 -2453
- package/scripts/tool-tui-presentation-test.mjs +0 -286
- package/scripts/toolcall-args-test.mjs +0 -239
- package/scripts/tui-ambiguous-width-test.mjs +0 -113
- package/scripts/tui-background-failure-smoke.mjs +0 -73
- package/scripts/tui-perf-run.ps1 +0 -26
- package/scripts/tui-render-smoke.mjs +0 -90
- package/scripts/tui-runtime-load-bench-entry.jsx +0 -608
- package/scripts/tui-runtime-load-bench.mjs +0 -50
- package/scripts/tui-store-frame-batch-test.mjs +0 -99
- package/scripts/tui-transcript-jitter-harness-entry.jsx +0 -383
- package/scripts/tui-transcript-perf-test.mjs +0 -934
- package/scripts/usage-metrics-epoch-smoke.mjs +0 -114
- package/scripts/verify-release-assets-test.mjs +0 -281
- package/scripts/web-fetch-routing-test.mjs +0 -158
- package/scripts/webhook-smoke.mjs +0 -201
- package/scripts/windows-hide-spawn-options-test.mjs +0 -19
- package/scripts/worker-notify-rejection-test.mjs +0 -51
- package/scripts/write-backpressure-test.mjs +0 -147
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
// Core-memory candidate pipeline (nomination → review → promotion), extracted from core-memory-store.mjs.
|
|
2
|
+
import { getDatabase, embeddingToSql } from './memory.mjs'
|
|
3
|
+
import { cachedEmbedTextBatch } from './memory-embed.mjs'
|
|
4
|
+
import { callAgentDispatch } from './agent-ipc.mjs'
|
|
5
|
+
import { resolveMaintenancePreset } from '../../shared/llm/index.mjs'
|
|
6
|
+
import { checkedConnect } from './pg/adapter.mjs'
|
|
7
|
+
import { __mixdogMemoryLog, CORE_DEDUP_TOP_K, CORE_SUMMARY_MAX, _getDb, throwIfAborted, addCore } from './core-memory-store.mjs';
|
|
8
|
+
|
|
9
|
+
//
|
|
10
|
+
// nominateCoreCandidates flags strong active entries as core-memory
|
|
11
|
+
// candidates. NEVER auto-inserts into core_entries — a user approves each via
|
|
12
|
+
// listCoreCandidates → promoteCoreCandidate. Durable-signal driven:
|
|
13
|
+
// - category grade: only durable knowledge types (rule/constraint/decision/
|
|
14
|
+
// preference/goal/fact) — transient task/issue never nominated.
|
|
15
|
+
// - score >= CANDIDATE_MIN_SCORE: survived age-decay / repeated gate reviews.
|
|
16
|
+
// - reviewed_at survival: entry has been through >= 1 gate review (reviewed_at
|
|
17
|
+
// set) so freshly-promoted noise is excluded.
|
|
18
|
+
// - core_overlap skip: entries whose embedding sits near an existing
|
|
19
|
+
// core_entries row (sim >= CANDIDATE_OVERLAP_SIM) are already covered by a
|
|
20
|
+
// user rule — skip to avoid duplicate promotion. Reuses the same cosine
|
|
21
|
+
// recall shape as cycle2 phase_merge core_overlap.
|
|
22
|
+
// Terminal states ('promoted'/'dismissed') are never re-nominated. Caps at
|
|
23
|
+
// CANDIDATE_CAP total live candidates.
|
|
24
|
+
|
|
25
|
+
export const CANDIDATE_CAP = 10
|
|
26
|
+
// Durable categories worth surfacing for user-curated core memory. Mirrors the
|
|
27
|
+
// high end of CATEGORY_GRADE (memory-score.mjs) — task/issue excluded.
|
|
28
|
+
const CANDIDATE_CATEGORIES = new Set(['rule', 'constraint', 'decision', 'preference', 'goal', 'fact'])
|
|
29
|
+
// Score floor: preference grade is 1.4, fact 1.6 — require the entry to still
|
|
30
|
+
// be near its grade ceiling (i.e. survived decay), not a stale low-score root.
|
|
31
|
+
const CANDIDATE_MIN_SCORE = 1.3
|
|
32
|
+
// Embedding sim at/above which the active entry is considered already covered
|
|
33
|
+
// by an existing core row → skip nomination. Matches cycle2 TIER1_THRESHOLD.
|
|
34
|
+
const CANDIDATE_OVERLAP_SIM = 0.78
|
|
35
|
+
// A promote left mid-flight ('promoting') longer than this is treated as a
|
|
36
|
+
// crashed promotion and reverted to a live candidate by recoverStalePromotions.
|
|
37
|
+
// Worst-case addCore duration bounds this: it runs up to CORE_DEDUP_TOP_K (5)
|
|
38
|
+
// sequential LLM merge-judge calls at 30s timeout each (~150s) plus embedding
|
|
39
|
+
// generation — call it ~3min worst case. 15min gives >5x margin so a slow-but-
|
|
40
|
+
// live promote is never mistaken for a crash, while still recovering a genuine
|
|
41
|
+
// crash within one hourly cycle2 pass. The finalize path ALSO tolerates a
|
|
42
|
+
// racing recovery (rowCount=0 → re-claim, see promoteCoreCandidate) so an
|
|
43
|
+
// over-tight cutoff can't corrupt state — this margin is defense-in-depth.
|
|
44
|
+
const PROMOTING_STALE_MS = 15 * 60_000
|
|
45
|
+
|
|
46
|
+
function _candidateReason(row) {
|
|
47
|
+
return `${row.category} grade, score ${Number(row.score).toFixed(2)}, survived gate review`
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// Post-gate nomination pass. Cheap: one scan over durable high-score active
|
|
51
|
+
// roots not already candidate/promoted/dismissed, one core-overlap cosine
|
|
52
|
+
// probe per row, capped at CANDIDATE_CAP net-new. Returns count nominated.
|
|
53
|
+
export async function nominateCoreCandidates(dataDir, options = {}) {
|
|
54
|
+
const signal = options?.signal
|
|
55
|
+
const db = _getDb(dataDir)
|
|
56
|
+
throwIfAborted(signal)
|
|
57
|
+
// Recover crashed promotions first: a root stuck in 'promoting' past
|
|
58
|
+
// PROMOTING_STALE_MS (claim tx committed but the process died before finalize)
|
|
59
|
+
// is reverted to a live candidate here, so it re-enters the pool below.
|
|
60
|
+
try {
|
|
61
|
+
await recoverStalePromotions(dataDir, { signal })
|
|
62
|
+
throwIfAborted(signal)
|
|
63
|
+
} catch (err) {
|
|
64
|
+
if (signal?.aborted) throw signal.reason ?? err
|
|
65
|
+
__mixdogMemoryLog(`[core-memory] stale-promotion recovery failed: ${err.message}\n`)
|
|
66
|
+
}
|
|
67
|
+
// Live candidate headroom: never exceed CANDIDATE_CAP total pending. Count
|
|
68
|
+
// only ACTIVE candidate roots — a candidate archived by cycle2 core_overlap
|
|
69
|
+
// between nomination and now must not eat headroom (it is also excluded from
|
|
70
|
+
// listCoreCandidates by the same status='active' guard).
|
|
71
|
+
const liveRes = await db.query(
|
|
72
|
+
`SELECT COUNT(*)::int AS n FROM entries WHERE is_root = 1 AND status = 'active' AND core_candidate_status = 'candidate'`,
|
|
73
|
+
)
|
|
74
|
+
const live = Number(liveRes.rows[0]?.n ?? 0)
|
|
75
|
+
const headroom = CANDIDATE_CAP - live
|
|
76
|
+
if (headroom <= 0) return 0
|
|
77
|
+
|
|
78
|
+
// Pull the strongest eligible roots that have never been nominated (status
|
|
79
|
+
// NULL) and have been through a gate review (reviewed_at set). Terminal
|
|
80
|
+
// 'promoted'/'dismissed' rows are excluded by the NULL predicate.
|
|
81
|
+
const cats = [...CANDIDATE_CATEGORIES]
|
|
82
|
+
const eligibleRes = await db.query(
|
|
83
|
+
`SELECT id, element, summary, category, score, project_id,
|
|
84
|
+
(embedding IS NOT NULL) AS has_embedding
|
|
85
|
+
FROM entries
|
|
86
|
+
WHERE is_root = 1 AND status = 'active'
|
|
87
|
+
AND core_candidate_status IS NULL
|
|
88
|
+
AND reviewed_at IS NOT NULL
|
|
89
|
+
AND category = ANY($1::text[])
|
|
90
|
+
AND score >= $2
|
|
91
|
+
ORDER BY score DESC, last_seen_at DESC, id ASC
|
|
92
|
+
LIMIT $3`,
|
|
93
|
+
[cats, CANDIDATE_MIN_SCORE, headroom * 3],
|
|
94
|
+
)
|
|
95
|
+
throwIfAborted(signal)
|
|
96
|
+
|
|
97
|
+
const now = Date.now()
|
|
98
|
+
let nominated = 0
|
|
99
|
+
for (const row of eligibleRes.rows) {
|
|
100
|
+
throwIfAborted(signal)
|
|
101
|
+
if (nominated >= headroom) break
|
|
102
|
+
// core_overlap skip: is this entry already covered by an existing core row?
|
|
103
|
+
// Compute similarity fully in SQL against the entry's own embedding
|
|
104
|
+
// (referenced by id) so no halfvec value round-trips through JS — mirrors
|
|
105
|
+
// the cycle2 phase_merge core_overlap probe shape. Same-pool + COMMON core
|
|
106
|
+
// are eligible matches.
|
|
107
|
+
if (row.has_embedding) {
|
|
108
|
+
const ov = await db.query(
|
|
109
|
+
`SELECT 1 - (e.embedding <=> c.embedding) AS sim
|
|
110
|
+
FROM entries e
|
|
111
|
+
CROSS JOIN LATERAL (
|
|
112
|
+
SELECT inner_c.embedding
|
|
113
|
+
FROM core_entries inner_c
|
|
114
|
+
WHERE inner_c.embedding IS NOT NULL
|
|
115
|
+
AND (inner_c.status IS NULL OR inner_c.status = 'active')
|
|
116
|
+
AND (inner_c.project_id IS NULL OR inner_c.project_id IS NOT DISTINCT FROM e.project_id)
|
|
117
|
+
ORDER BY inner_c.embedding <=> e.embedding
|
|
118
|
+
LIMIT 1
|
|
119
|
+
) c
|
|
120
|
+
WHERE e.id = $1 AND e.embedding IS NOT NULL`,
|
|
121
|
+
[Number(row.id)],
|
|
122
|
+
)
|
|
123
|
+
throwIfAborted(signal)
|
|
124
|
+
if (ov.rows.length > 0 && Number(ov.rows[0].sim) >= CANDIDATE_OVERLAP_SIM) continue
|
|
125
|
+
}
|
|
126
|
+
const r = await db.query(
|
|
127
|
+
`UPDATE entries SET core_candidate_status = 'candidate', core_candidate_at = $1
|
|
128
|
+
WHERE id = $2 AND is_root = 1 AND core_candidate_status IS NULL`,
|
|
129
|
+
[now, Number(row.id)],
|
|
130
|
+
)
|
|
131
|
+
if (Number(r.rowCount ?? r.affectedRows ?? 0) > 0) nominated++
|
|
132
|
+
}
|
|
133
|
+
if (nominated > 0) {
|
|
134
|
+
__mixdogMemoryLog(`[core-memory] nominated ${nominated} core candidate(s)\n`)
|
|
135
|
+
}
|
|
136
|
+
return nominated
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
// List live candidates for the UI. Shape matches the deliver spec:
|
|
140
|
+
// {id, element, summary, category, score, reason}.
|
|
141
|
+
// `scope`: null → COMMON pool only (project_id NULL); '*' → all pools;
|
|
142
|
+
// slug → that project's pool + COMMON. Mirrors the add/edit/delete + list
|
|
143
|
+
// project isolation so an unscoped call can't leak another project's
|
|
144
|
+
// candidates. status='active' guard: a candidate root archived by cycle2
|
|
145
|
+
// core_overlap between nomination and listing must NOT stay listed (it also
|
|
146
|
+
// no longer counts against CANDIDATE_CAP — see nominateCoreCandidates).
|
|
147
|
+
export async function listCoreCandidates(dataDir, scope = null) {
|
|
148
|
+
const db = _getDb(dataDir)
|
|
149
|
+
let scopeClause = ''
|
|
150
|
+
const params = []
|
|
151
|
+
if (scope === '*') {
|
|
152
|
+
scopeClause = ''
|
|
153
|
+
} else if (scope == null) {
|
|
154
|
+
scopeClause = 'AND project_id IS NULL'
|
|
155
|
+
} else {
|
|
156
|
+
scopeClause = 'AND (project_id IS NULL OR project_id = $1)'
|
|
157
|
+
params.push(scope)
|
|
158
|
+
}
|
|
159
|
+
const r = await db.query(
|
|
160
|
+
`SELECT id, element, summary, category, score, project_id
|
|
161
|
+
FROM entries
|
|
162
|
+
WHERE is_root = 1 AND status = 'active' AND core_candidate_status = 'candidate'
|
|
163
|
+
${scopeClause}
|
|
164
|
+
ORDER BY score DESC, core_candidate_at DESC, id ASC`,
|
|
165
|
+
params,
|
|
166
|
+
)
|
|
167
|
+
return r.rows.map(row => ({
|
|
168
|
+
id: Number(row.id),
|
|
169
|
+
element: row.element,
|
|
170
|
+
summary: row.summary,
|
|
171
|
+
category: row.category,
|
|
172
|
+
score: row.score == null ? null : Number(row.score),
|
|
173
|
+
project_id: row.project_id ?? null,
|
|
174
|
+
reason: _candidateReason(row),
|
|
175
|
+
}))
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// Promote a candidate via a two-phase claim → insert → finalize with a
|
|
179
|
+
// recoverable intermediate state ('promoting'), so a process crash at ANY point
|
|
180
|
+
// is recoverable by the cycle2 recovery sweep (recoverStalePromotions).
|
|
181
|
+
//
|
|
182
|
+
// Phase 1 (claim tx): status='archived', core_candidate_status='promoting'.
|
|
183
|
+
// The embedding is NOT nulled here — deferred to finalize — so recovery can
|
|
184
|
+
// restore the row to active WITHOUT needing to re-embed. Archived-with-
|
|
185
|
+
// embedding for the brief promoting window is harmless: the recall scope
|
|
186
|
+
// filter excludes BOTH 'promoted' AND 'promoting' rows (and their members).
|
|
187
|
+
// Phase 2: addCore (its own tx — advisory locks can't join an outer tx).
|
|
188
|
+
// Phase 3 (finalize tx): core_candidate_status='promoted', embedding=NULL.
|
|
189
|
+
//
|
|
190
|
+
// Crash matrix:
|
|
191
|
+
// - crash after phase 1, before addCore commits → row is archived+'promoting'
|
|
192
|
+
// with NO core row → recovery sweep (stale > PROMOTING_STALE_MS) reverts it
|
|
193
|
+
// to active+'candidate' (embedding intact) → clean retry.
|
|
194
|
+
// - addCore threw → synchronous compensation reverts immediately (same shape).
|
|
195
|
+
// - crash after addCore commits, before finalize → core row exists + row is
|
|
196
|
+
// 'promoting' → recovery reverts the ROOT to candidate, but the core row now
|
|
197
|
+
// exists, so the retry's addCore merge-judge/unique-index folds back into the
|
|
198
|
+
// same core row (element unchanged) → converges (no duplicate). This is the
|
|
199
|
+
// one window where a retry relies on addCore dedup, but it is bounded and
|
|
200
|
+
// self-healing rather than a permanent orphan+stuck-root.
|
|
201
|
+
// - finalize committed → terminal 'promoted', embedding NULL → done.
|
|
202
|
+
//
|
|
203
|
+
// `scope` (from the index handler) enforces project isolation: the candidate
|
|
204
|
+
// must belong to the resolved scope or COMMON — never another project's pool.
|
|
205
|
+
export async function promoteCoreCandidate(dataDir, id, options = {}) {
|
|
206
|
+
const numId = Number(id)
|
|
207
|
+
if (!Number.isInteger(numId) || numId <= 0) throw new Error('integer id > 0 required')
|
|
208
|
+
const db = _getDb(dataDir)
|
|
209
|
+
// Require BOTH active status and a live candidate flag (finding #2): a stale
|
|
210
|
+
// archived/merged root must not be promotable by direct id.
|
|
211
|
+
const cur = (await db.query(
|
|
212
|
+
`SELECT id, element, summary, category, project_id, core_candidate_status
|
|
213
|
+
FROM entries WHERE id = $1 AND is_root = 1 AND status = 'active'`,
|
|
214
|
+
[numId],
|
|
215
|
+
)).rows[0]
|
|
216
|
+
if (!cur) throw new Error(`no active root entry with id=${numId} (already archived, merged, or deleted)`)
|
|
217
|
+
if (cur.core_candidate_status !== 'candidate') {
|
|
218
|
+
throw new Error(`entry id=${numId} is not a live core candidate (status=${cur.core_candidate_status ?? 'none'})`)
|
|
219
|
+
}
|
|
220
|
+
// Project-scope guard: reject cross-project promotion. scope null == COMMON;
|
|
221
|
+
// a scoped candidate is only promotable within its own pool (or if it is a
|
|
222
|
+
// COMMON candidate). Mirrors add/edit/delete project isolation.
|
|
223
|
+
const scope = options?.scope ?? null
|
|
224
|
+
const rowPid = cur.project_id ?? null
|
|
225
|
+
if (rowPid != null && rowPid !== scope) {
|
|
226
|
+
throw new Error(`candidate id=${numId} belongs to project "${rowPid}", not the resolved scope "${scope ?? 'common'}"`)
|
|
227
|
+
}
|
|
228
|
+
// Core summary cap: candidate summaries may exceed CORE_SUMMARY_MAX. Prefer
|
|
229
|
+
// the explicit override, else compress by truncation so addCore accepts it.
|
|
230
|
+
const summary = options?.summary ?? cur.summary
|
|
231
|
+
const cappedSummary = summary && String(summary).length > CORE_SUMMARY_MAX
|
|
232
|
+
? String(summary).slice(0, CORE_SUMMARY_MAX)
|
|
233
|
+
: summary
|
|
234
|
+
const now = Date.now()
|
|
235
|
+
// Phase 1 — claim (active+candidate guarded so a concurrent archive/promote
|
|
236
|
+
// loses the race → 0 rows → nothing to promote). Embedding NOT nulled here
|
|
237
|
+
// (deferred to finalize) so recovery needs no re-embed.
|
|
238
|
+
const claim = await db.transaction(async (tx) => {
|
|
239
|
+
const r = await tx.query(
|
|
240
|
+
`UPDATE entries SET core_candidate_status = 'promoting', core_candidate_at = $1, status = 'archived'
|
|
241
|
+
WHERE id = $2 AND is_root = 1 AND status = 'active' AND core_candidate_status = 'candidate'`,
|
|
242
|
+
[now, numId],
|
|
243
|
+
)
|
|
244
|
+
return Number(r.rowCount ?? r.affectedRows ?? 0)
|
|
245
|
+
})
|
|
246
|
+
if (claim === 0) {
|
|
247
|
+
throw new Error(`candidate id=${numId} was concurrently promoted/archived — nothing to do`)
|
|
248
|
+
}
|
|
249
|
+
// Phase 2 — insert into core_entries. addCore's own tx commits independently.
|
|
250
|
+
let entry
|
|
251
|
+
try {
|
|
252
|
+
entry = await addCore(
|
|
253
|
+
dataDir,
|
|
254
|
+
{ element: cur.element, summary: cappedSummary, category: cur.category },
|
|
255
|
+
rowPid,
|
|
256
|
+
)
|
|
257
|
+
} catch (err) {
|
|
258
|
+
// Synchronous compensation: revert the 'promoting' claim to the live-
|
|
259
|
+
// candidate state so a retry is clean and no core row was created. Embedding
|
|
260
|
+
// is intact (never nulled), so no re-embed needed.
|
|
261
|
+
try {
|
|
262
|
+
await db.transaction(async (tx) => {
|
|
263
|
+
await tx.query(
|
|
264
|
+
`UPDATE entries SET core_candidate_status = 'candidate', core_candidate_at = $1, status = 'active'
|
|
265
|
+
WHERE id = $2 AND is_root = 1 AND core_candidate_status = 'promoting' AND status = 'archived'`,
|
|
266
|
+
[Date.now(), numId],
|
|
267
|
+
)
|
|
268
|
+
})
|
|
269
|
+
} catch (compErr) {
|
|
270
|
+
__mixdogMemoryLog(`[core-memory] promote compensation failed id=${numId}: ${compErr.message} (root left 'promoting' — recovery sweep will revert)\n`)
|
|
271
|
+
}
|
|
272
|
+
throw err
|
|
273
|
+
}
|
|
274
|
+
// Phase 3 — finalize: terminal 'promoted' + null the embedding (now safe: the
|
|
275
|
+
// core row is committed, so nulling can't strand a recoverable row without its
|
|
276
|
+
// fact). Guarded on 'promoting'. If a racing recoverStalePromotions (slow
|
|
277
|
+
// addCore that overran PROMOTING_STALE_MS) already reverted the row to
|
|
278
|
+
// 'candidate'+active, this affects 0 rows — but the core row IS committed, so
|
|
279
|
+
// we must NOT return success while the root is still a live candidate (user
|
|
280
|
+
// would see success + the candidate re-listed). Re-claim from the recovered
|
|
281
|
+
// 'candidate' state (finding #2). If THAT also affects 0 rows, another actor
|
|
282
|
+
// changed the row (genuine re-promote, dismiss, archive) — don't clobber;
|
|
283
|
+
// log and still return the entry (the core row exists either way).
|
|
284
|
+
const finalize = await db.transaction(async (tx) => {
|
|
285
|
+
const r1 = await tx.query(
|
|
286
|
+
`UPDATE entries SET core_candidate_status = 'promoted', core_candidate_at = $1, embedding = NULL
|
|
287
|
+
WHERE id = $2 AND is_root = 1 AND core_candidate_status = 'promoting'`,
|
|
288
|
+
[Date.now(), numId],
|
|
289
|
+
)
|
|
290
|
+
if (Number(r1.rowCount ?? r1.affectedRows ?? 0) > 0) return 'finalized'
|
|
291
|
+
// Row was recovered back to candidate mid-flight — re-claim it (core row
|
|
292
|
+
// already committed). Guard on the exact recovery state (active+candidate).
|
|
293
|
+
const r2 = await tx.query(
|
|
294
|
+
`UPDATE entries SET core_candidate_status = 'promoted', core_candidate_at = $1, status = 'archived', embedding = NULL
|
|
295
|
+
WHERE id = $2 AND is_root = 1 AND status = 'active' AND core_candidate_status = 'candidate'`,
|
|
296
|
+
[Date.now(), numId],
|
|
297
|
+
)
|
|
298
|
+
return Number(r2.rowCount ?? r2.affectedRows ?? 0) > 0 ? 'reclaimed' : 'unchanged'
|
|
299
|
+
})
|
|
300
|
+
if (finalize === 'reclaimed') {
|
|
301
|
+
__mixdogMemoryLog(`[core-memory] promote id=${numId} finalized after a racing recovery revert (re-claimed)\n`)
|
|
302
|
+
} else if (finalize === 'unchanged') {
|
|
303
|
+
__mixdogMemoryLog(`[core-memory] promote id=${numId}: root changed by another actor before finalize; core row committed, root state left as-is\n`)
|
|
304
|
+
}
|
|
305
|
+
return entry
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
// Recovery sweep for crashed promotions: a root left in 'promoting' (claim tx
|
|
309
|
+
// committed but the process died before finalize) is reverted to the live
|
|
310
|
+
// candidate state (status='active', core_candidate_status='candidate') once it
|
|
311
|
+
// is older than PROMOTING_STALE_MS. Embedding was never nulled in the claim, so
|
|
312
|
+
// no re-embed is required. Runs from nominateCoreCandidates (hourly cycle2).
|
|
313
|
+
// Idempotent: 0 stale rows → fast no-op. Returns count recovered.
|
|
314
|
+
export async function recoverStalePromotions(dataDir, options = {}) {
|
|
315
|
+
const signal = options?.signal
|
|
316
|
+
const db = _getDb(dataDir)
|
|
317
|
+
throwIfAborted(signal)
|
|
318
|
+
const cutoff = Date.now() - PROMOTING_STALE_MS
|
|
319
|
+
const r = await db.query(
|
|
320
|
+
`UPDATE entries SET core_candidate_status = 'candidate', core_candidate_at = $1, status = 'active'
|
|
321
|
+
WHERE is_root = 1 AND core_candidate_status = 'promoting'
|
|
322
|
+
AND core_candidate_at IS NOT NULL AND core_candidate_at < $2`,
|
|
323
|
+
[Date.now(), cutoff],
|
|
324
|
+
)
|
|
325
|
+
const n = Number(r.rowCount ?? r.affectedRows ?? 0)
|
|
326
|
+
if (n > 0) __mixdogMemoryLog(`[core-memory] recovered ${n} stale 'promoting' root(s) → candidate\n`)
|
|
327
|
+
return n
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
// Dismiss a candidate: mark terminal so the nomination pass never re-nominates
|
|
331
|
+
// the same root. Leaves status/score untouched — the entry stays active in
|
|
332
|
+
// generated memory, it just won't be re-surfaced as a core candidate.
|
|
333
|
+
// `scope` enforces project isolation (mirrors promote): a scoped caller can
|
|
334
|
+
// only dismiss candidates in its own pool or COMMON.
|
|
335
|
+
export async function dismissCoreCandidate(dataDir, id, options = {}) {
|
|
336
|
+
const numId = Number(id)
|
|
337
|
+
if (!Number.isInteger(numId) || numId <= 0) throw new Error('integer id > 0 required')
|
|
338
|
+
const db = _getDb(dataDir)
|
|
339
|
+
const scope = options?.scope ?? null
|
|
340
|
+
const cur = (await db.query(
|
|
341
|
+
`SELECT project_id, core_candidate_status FROM entries WHERE id = $1 AND is_root = 1`,
|
|
342
|
+
[numId],
|
|
343
|
+
)).rows[0]
|
|
344
|
+
if (!cur) throw new Error(`no root entry with id=${numId}`)
|
|
345
|
+
const rowPid = cur.project_id ?? null
|
|
346
|
+
if (rowPid != null && rowPid !== scope) {
|
|
347
|
+
throw new Error(`candidate id=${numId} belongs to project "${rowPid}", not the resolved scope "${scope ?? 'common'}"`)
|
|
348
|
+
}
|
|
349
|
+
const r = await db.query(
|
|
350
|
+
`UPDATE entries SET core_candidate_status = 'dismissed', core_candidate_at = $1
|
|
351
|
+
WHERE id = $2 AND is_root = 1 AND core_candidate_status = 'candidate'
|
|
352
|
+
RETURNING id, element, category`,
|
|
353
|
+
[Date.now(), numId],
|
|
354
|
+
)
|
|
355
|
+
if (r.rows.length === 0) throw new Error(`no live core candidate with id=${numId}`)
|
|
356
|
+
return r.rows[0]
|
|
357
|
+
}
|