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
package/scripts/bench-run.mjs
DELETED
|
@@ -1,508 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
// bench-run.mjs — repeatable internal A/B bench runner (mixdog).
|
|
3
|
-
//
|
|
4
|
-
// Runs a FIXED task set through the LIVE headless path (runHeadlessRole in a
|
|
5
|
-
// fresh child node process = identical to `mixdog <agent> <msg>` and loads the
|
|
6
|
-
// latest on-disk code), captures each task's session id, scores the round with
|
|
7
|
-
// task-bench, and freezes it to a round file. Change rules/briefs between
|
|
8
|
-
// rounds; the task set stays constant so rounds are comparable.
|
|
9
|
-
//
|
|
10
|
-
// node scripts/bench-run.mjs --tasks tasks.json --round 1 --save round1.json
|
|
11
|
-
// (edit rules/briefs)
|
|
12
|
-
// node scripts/bench-run.mjs --tasks tasks.json --round 2 --save round2.json
|
|
13
|
-
// node scripts/task-bench.mjs --vs round1.json round2.json
|
|
14
|
-
//
|
|
15
|
-
// tasks.json: [{ "id":"...", "agent":"worker", "prompt":"...", "cwd":"." }, ...]
|
|
16
|
-
//
|
|
17
|
-
// This is INTERNAL A/B only (mixdog vs its own prior round). Cross-CLI compare
|
|
18
|
-
// vs codex/claude (tree-total vs solo) is a separate future mode; codex/claude
|
|
19
|
-
// runners are left as slots.
|
|
20
|
-
import { execFile, execFileSync, spawn } from 'node:child_process';
|
|
21
|
-
import { existsSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from 'node:fs';
|
|
22
|
-
import { tmpdir } from 'node:os';
|
|
23
|
-
import { fileURLToPath, pathToFileURL } from 'node:url';
|
|
24
|
-
import { dirname, join, resolve } from 'node:path';
|
|
25
|
-
|
|
26
|
-
const __dir = dirname(fileURLToPath(import.meta.url));
|
|
27
|
-
const HEADLESS = pathToFileURL(resolve(__dir, '../src/headless-role.mjs')).href;
|
|
28
|
-
const WORKFLOW_MOD = pathToFileURL(resolve(__dir, '../src/session-runtime/workflow.mjs')).href;
|
|
29
|
-
const TASK_BENCH = resolve(__dir, 'task-bench.mjs');
|
|
30
|
-
|
|
31
|
-
function argValue(name, fallback = null) {
|
|
32
|
-
const idx = process.argv.indexOf(name);
|
|
33
|
-
if (idx >= 0 && idx + 1 < process.argv.length) return process.argv[idx + 1];
|
|
34
|
-
const pref = `${name}=`;
|
|
35
|
-
const hit = process.argv.find((a) => a.startsWith(pref));
|
|
36
|
-
return hit ? hit.slice(pref.length) : fallback;
|
|
37
|
-
}
|
|
38
|
-
function hasFlag(name) { return process.argv.includes(name); }
|
|
39
|
-
|
|
40
|
-
// Model aliases so a round switches model+provider with one flag
|
|
41
|
-
// (--model opus|gpt|grok). Full provider/model pairs still work verbatim.
|
|
42
|
-
const MODEL_ALIASES = {
|
|
43
|
-
opus: { provider: 'anthropic-oauth', model: 'claude-opus-4-8' },
|
|
44
|
-
sonnet: { provider: 'anthropic-oauth', model: 'claude-sonnet-5' },
|
|
45
|
-
gpt: { provider: 'openai-oauth', model: 'gpt-5.5' },
|
|
46
|
-
'gpt-5.5': { provider: 'openai-oauth', model: 'gpt-5.5' },
|
|
47
|
-
grok: { provider: 'grok-oauth', model: 'grok-composer-2.5-fast' },
|
|
48
|
-
};
|
|
49
|
-
function resolveModelOpts(modelArg, providerArg) {
|
|
50
|
-
const key = String(modelArg || '').trim().toLowerCase();
|
|
51
|
-
if (MODEL_ALIASES[key] && !providerArg) return { ...MODEL_ALIASES[key] };
|
|
52
|
-
return { provider: providerArg || null, model: modelArg || null };
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
function extractSessionId(text) {
|
|
56
|
-
const s = String(text || '');
|
|
57
|
-
const m = s.match(/sessionId:\s*(sess_[A-Za-z0-9_]+)/) || s.match(/\b(sess_[A-Za-z0-9_]+)/);
|
|
58
|
-
return m ? m[1] : null;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
const RUNNERS = {
|
|
62
|
-
// Full Lead session (workflow routing + agent tool fan-out). This is the
|
|
63
|
-
// same path the REPL drives: createMixdogSessionRuntime().ask(). Use it to
|
|
64
|
-
// measure the delegation/cost-routing design (explorer/worker on cheap
|
|
65
|
-
// models, lead/reviewer on frontier) instead of a single-role headless run.
|
|
66
|
-
async lead(task, opts) {
|
|
67
|
-
const RUNTIME_URL = pathToFileURL(resolve(__dir, '../src/mixdog-session-runtime.mjs')).href;
|
|
68
|
-
const driver = [
|
|
69
|
-
`import { createMixdogSessionRuntime } from ${JSON.stringify(RUNTIME_URL)};`,
|
|
70
|
-
`import { normalizeWorkflowId } from ${JSON.stringify(WORKFLOW_MOD)};`,
|
|
71
|
-
`process.chdir(${JSON.stringify(task.cwd ? resolve(task.cwd) : process.cwd())});`,
|
|
72
|
-
`const rt = await createMixdogSessionRuntime({`,
|
|
73
|
-
` provider: ${JSON.stringify(opts.provider || null)} || undefined,`,
|
|
74
|
-
` model: ${JSON.stringify(opts.model || null)} || undefined,`,
|
|
75
|
-
`});`,
|
|
76
|
-
`if (${JSON.stringify(opts.workflow || null)}) {`,
|
|
77
|
-
` await rt.setWorkflow(normalizeWorkflowId(${JSON.stringify(opts.workflow || null)}));`,
|
|
78
|
-
`}`,
|
|
79
|
-
`let text = '';`,
|
|
80
|
-
`// Mirror the TUI auto-resume EXACTLY (engine/agent-job-feed.mjs):`,
|
|
81
|
-
`// runtime notifications enqueue the model-visible completion into the`,
|
|
82
|
-
`// session's pending queue; the TUI then kicks an EMPTY pending-resume`,
|
|
83
|
-
`// ask (no injected user text) via queueMicrotask — the pre-send drain`,
|
|
84
|
-
`// pulls the pending messages. No polling, no synthetic 'continue', no`,
|
|
85
|
-
`// verdict heuristic: resume immediately per kick, finish when no kick`,
|
|
86
|
-
`// arrived during the last turn.`,
|
|
87
|
-
`let busy = false;`,
|
|
88
|
-
`let kickDeferred = false;`,
|
|
89
|
-
`let wake = null;`,
|
|
90
|
-
`rt.onNotification(() => {`,
|
|
91
|
-
` // Defer like scheduleExecutionPendingResumeKick: the model-visible`,
|
|
92
|
-
` // body is enqueued after onNotification returns.`,
|
|
93
|
-
` queueMicrotask(() => {`,
|
|
94
|
-
` if (busy) { kickDeferred = true; return; }`,
|
|
95
|
-
` kickDeferred = true;`,
|
|
96
|
-
` if (wake) wake();`,
|
|
97
|
-
` });`,
|
|
98
|
-
` return false;`,
|
|
99
|
-
`});`,
|
|
100
|
-
`const askOnce = async (msg) => {`,
|
|
101
|
-
` busy = true;`,
|
|
102
|
-
` try {`,
|
|
103
|
-
` let t = '';`,
|
|
104
|
-
` const { result } = await rt.ask(msg, { onTextDelta: (c) => { t += c; } });`,
|
|
105
|
-
` return String(result?.text ?? t ?? '');`,
|
|
106
|
-
` } finally { busy = false; }`,
|
|
107
|
-
`};`,
|
|
108
|
-
`text = await askOnce(${JSON.stringify(task.prompt || '')});`,
|
|
109
|
-
`const deadline = Date.now() + 30 * 60_000;`,
|
|
110
|
-
`// Session is "settled" only when no delegated agent task is still`,
|
|
111
|
-
`// running/pending — the live TUI stays open while agents run, so the`,
|
|
112
|
-
`// bench must too. Idle grace only applies once the agent board is clear.`,
|
|
113
|
-
`const agentsBusy = () => {`,
|
|
114
|
-
` try {`,
|
|
115
|
-
` const st = rt.agentStatus?.() || {};`,
|
|
116
|
-
` const jobs = Array.isArray(st.agentJobs) ? st.agentJobs : [];`,
|
|
117
|
-
` return jobs.some((j) => /running|pending|spawn|queued/i.test(String(j?.status || j?.state || '')));`,
|
|
118
|
-
` } catch { return false; }`,
|
|
119
|
-
`};`,
|
|
120
|
-
`while (Date.now() < deadline) {`,
|
|
121
|
-
` if (!kickDeferred) {`,
|
|
122
|
-
` // Wait for the next kick. While agent tasks are still running the`,
|
|
123
|
-
` // wait is unbounded (like a live TUI left open); once the board is`,
|
|
124
|
-
` // clear a short grace catches stragglers, then the session settles.`,
|
|
125
|
-
` for (;;) {`,
|
|
126
|
-
` const kicked = await new Promise((r) => {`,
|
|
127
|
-
` wake = () => r(true);`,
|
|
128
|
-
` setTimeout(() => r(false), 10_000);`,
|
|
129
|
-
` });`,
|
|
130
|
-
` wake = null;`,
|
|
131
|
-
` if (kicked || kickDeferred) break;`,
|
|
132
|
-
` if (!agentsBusy()) break;`,
|
|
133
|
-
` if (Date.now() >= deadline) break;`,
|
|
134
|
-
` }`,
|
|
135
|
-
` if (!kickDeferred && !agentsBusy()) break;`,
|
|
136
|
-
` }`,
|
|
137
|
-
` kickDeferred = false;`,
|
|
138
|
-
` const t = await askOnce('');`,
|
|
139
|
-
` if (String(t || '').trim()) text = t;`,
|
|
140
|
-
`}`,
|
|
141
|
-
`const sid = rt.sessionId || rt.session?.id || '';`,
|
|
142
|
-
`process.stdout.write('sessionId: ' + sid + '\\n');`,
|
|
143
|
-
`process.stdout.write(text);`,
|
|
144
|
-
`await rt.close('bench-exit');`,
|
|
145
|
-
`process.exit(0);`,
|
|
146
|
-
].join('\n');
|
|
147
|
-
const started = Date.now();
|
|
148
|
-
const { raw, ok } = await new Promise((resolveRun) => {
|
|
149
|
-
execFile('node', ['--input-type=module', '-e', driver], {
|
|
150
|
-
encoding: 'utf8',
|
|
151
|
-
maxBuffer: 64 * 1024 * 1024,
|
|
152
|
-
env: {
|
|
153
|
-
...process.env,
|
|
154
|
-
...(opts.env || {}),
|
|
155
|
-
},
|
|
156
|
-
}, (err, stdout, stderrOut) => {
|
|
157
|
-
if (err) resolveRun({ raw: String(stdout || '') + String(stderrOut || ''), ok: false });
|
|
158
|
-
else resolveRun({ raw: String(stdout || ''), ok: true });
|
|
159
|
-
});
|
|
160
|
-
});
|
|
161
|
-
return { sessionId: extractSessionId(raw), ok, ms: Date.now() - started, raw };
|
|
162
|
-
},
|
|
163
|
-
async mixdog(task, opts) {
|
|
164
|
-
if (!opts.provider || !opts.model) {
|
|
165
|
-
throw new Error(
|
|
166
|
-
'mixdog headless runner requires explicit --provider and --model (or a model alias)',
|
|
167
|
-
);
|
|
168
|
-
}
|
|
169
|
-
const driver = [
|
|
170
|
-
`import { runHeadlessRole } from ${JSON.stringify(HEADLESS)};`,
|
|
171
|
-
`const out = [];`,
|
|
172
|
-
`const code = await runHeadlessRole({`,
|
|
173
|
-
` agent: ${JSON.stringify(task.agent || 'worker')},`,
|
|
174
|
-
` message: ${JSON.stringify(task.prompt || '')},`,
|
|
175
|
-
` provider: ${JSON.stringify(opts.provider || null)},`,
|
|
176
|
-
` model: ${JSON.stringify(opts.model || null)},`,
|
|
177
|
-
` effort: ${JSON.stringify(opts.effort || null)},`,
|
|
178
|
-
` fast: ${JSON.stringify(opts.fast === true)},`,
|
|
179
|
-
` cwd: ${JSON.stringify(task.cwd ? resolve(task.cwd) : process.cwd())},`,
|
|
180
|
-
` write: (t) => out.push(t),`,
|
|
181
|
-
` writeErr: (t) => process.stderr.write(t),`,
|
|
182
|
-
`});`,
|
|
183
|
-
`process.stdout.write(out.join(''));`,
|
|
184
|
-
`process.exit(code);`,
|
|
185
|
-
].join('\n');
|
|
186
|
-
const started = Date.now();
|
|
187
|
-
const { raw, ok } = await new Promise((resolveRun) => {
|
|
188
|
-
execFile('node', ['--input-type=module', '-e', driver], {
|
|
189
|
-
encoding: 'utf8',
|
|
190
|
-
maxBuffer: 64 * 1024 * 1024,
|
|
191
|
-
env: {
|
|
192
|
-
...process.env,
|
|
193
|
-
...(opts.env || {}),
|
|
194
|
-
},
|
|
195
|
-
}, (err, stdout, stderrOut) => {
|
|
196
|
-
if (err) resolveRun({ raw: String(stdout || '') + String(stderrOut || ''), ok: false });
|
|
197
|
-
else resolveRun({ raw: String(stdout || ''), ok: true });
|
|
198
|
-
});
|
|
199
|
-
});
|
|
200
|
-
return { sessionId: extractSessionId(raw), ok, ms: Date.now() - started, raw };
|
|
201
|
-
},
|
|
202
|
-
// Cross-CLI runner: codex exec --json (JSONL events). Prompt goes via stdin
|
|
203
|
-
// ("-") so no shell-quoting issues on Windows (.cmd shim needs shell:true).
|
|
204
|
-
// Sandbox is read-only: review tasks must not mutate the repo. Usage comes
|
|
205
|
-
// from turn.completed events; the final agent_message is kept for judging.
|
|
206
|
-
async codex(task, opts) {
|
|
207
|
-
const args = ['exec', '--json', '--skip-git-repo-check', '-s', 'read-only',
|
|
208
|
-
'-C', task.cwd ? resolve(task.cwd) : process.cwd()];
|
|
209
|
-
if (opts.model) args.push('-m', opts.model);
|
|
210
|
-
if (opts.effort) args.push('-c', `model_reasoning_effort="${opts.effort}"`);
|
|
211
|
-
if (opts.fast) args.push('-c', 'service_tier="fast"');
|
|
212
|
-
args.push('-');
|
|
213
|
-
const started = Date.now();
|
|
214
|
-
const { raw, ok } = await new Promise((resolveRun) => {
|
|
215
|
-
const child = spawn('codex', args, { shell: true, env: { ...process.env, ...(opts.env || {}) } });
|
|
216
|
-
let out = '';
|
|
217
|
-
let errOut = '';
|
|
218
|
-
child.stdout.on('data', (d) => { out += d; });
|
|
219
|
-
child.stderr.on('data', (d) => { errOut += d; });
|
|
220
|
-
child.on('error', (e) => resolveRun({ raw: `${out}\n${errOut}\n${e.message}`, ok: false }));
|
|
221
|
-
child.on('close', (code) => resolveRun({ raw: code === 0 ? out : `${out}\n${errOut}`, ok: code === 0 }));
|
|
222
|
-
child.stdin.write(String(task.prompt || ''));
|
|
223
|
-
child.stdin.end();
|
|
224
|
-
});
|
|
225
|
-
const ms = Date.now() - started;
|
|
226
|
-
// Parse JSONL: thread id, summed usage, final agent message.
|
|
227
|
-
let threadId = null;
|
|
228
|
-
const usage = { uncached_in: 0, cached_in: 0, out_tokens: 0 };
|
|
229
|
-
let finalMessage = '';
|
|
230
|
-
for (const line of raw.split(/\r?\n/)) {
|
|
231
|
-
if (!line.trim().startsWith('{')) continue;
|
|
232
|
-
let ev = null;
|
|
233
|
-
try { ev = JSON.parse(line); } catch { continue; }
|
|
234
|
-
if (ev?.thread_id && !threadId) threadId = String(ev.thread_id);
|
|
235
|
-
const u = ev?.usage || ev?.turn?.usage || null;
|
|
236
|
-
if (u) {
|
|
237
|
-
usage.uncached_in += num(u.input_tokens) - num(u.cached_input_tokens);
|
|
238
|
-
usage.cached_in += num(u.cached_input_tokens);
|
|
239
|
-
usage.out_tokens += num(u.output_tokens);
|
|
240
|
-
}
|
|
241
|
-
const item = ev?.item;
|
|
242
|
-
if (item && (item.type === 'agent_message' || item.item_type === 'agent_message') && item.text) {
|
|
243
|
-
finalMessage = String(item.text);
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
const totalIn = usage.uncached_in + usage.cached_in;
|
|
247
|
-
const card = {
|
|
248
|
-
session: threadId || `codex-${started}`,
|
|
249
|
-
wall_ms: ms,
|
|
250
|
-
uncached_in: usage.uncached_in,
|
|
251
|
-
cached_in: usage.cached_in,
|
|
252
|
-
out_tokens: usage.out_tokens,
|
|
253
|
-
cache_ratio: totalIn > 0 ? Math.round((usage.cached_in / totalIn) * 1000) / 1000 : 0,
|
|
254
|
-
completed: ok ? 1 : 0,
|
|
255
|
-
usd_cost: usdCost(opts.model, usage.uncached_in, usage.cached_in, usage.out_tokens),
|
|
256
|
-
};
|
|
257
|
-
return { sessionId: card.session, ok, ms, raw, card, finalMessage };
|
|
258
|
-
},
|
|
259
|
-
claude() {
|
|
260
|
-
throw new Error('runner "claude" not implemented (slot: claude -p --output-format json). Cross-CLI compare is a separate mode.');
|
|
261
|
-
},
|
|
262
|
-
};
|
|
263
|
-
|
|
264
|
-
function scoreSessions(ids) {
|
|
265
|
-
if (!ids.length) return null;
|
|
266
|
-
const raw = execFileSync('node', [TASK_BENCH, '--session', ids.join(','), '--group', '--json'], {
|
|
267
|
-
encoding: 'utf8', maxBuffer: 64 * 1024 * 1024,
|
|
268
|
-
env: { ...process.env, ...(opts?.env || {}) },
|
|
269
|
-
});
|
|
270
|
-
const s = raw.replace(/^\uFEFF/, '');
|
|
271
|
-
const i = s.indexOf('{');
|
|
272
|
-
return JSON.parse(i >= 0 ? s.slice(i) : s);
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
function sleepMs(ms) {
|
|
276
|
-
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 0, 0, Math.max(0, ms));
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
function scoreSession(sessionId, { attempts = 5, env = null } = {}) {
|
|
280
|
-
let lastError = null;
|
|
281
|
-
for (let i = 0; i < attempts; i += 1) {
|
|
282
|
-
try {
|
|
283
|
-
const raw = execFileSync('node', [TASK_BENCH, '--session', sessionId, '--json'], {
|
|
284
|
-
encoding: 'utf8', maxBuffer: 64 * 1024 * 1024,
|
|
285
|
-
env: { ...process.env, ...(env || {}) },
|
|
286
|
-
});
|
|
287
|
-
const s = raw.replace(/^\uFEFF/, '');
|
|
288
|
-
const j = JSON.parse(s.slice(Math.max(0, s.indexOf('{'))));
|
|
289
|
-
const card = Array.isArray(j.cards) ? j.cards.find((c) => c?.session === sessionId) || j.cards[0] : null;
|
|
290
|
-
if (card) return { ok: true, card };
|
|
291
|
-
lastError = new Error(`no scorecard returned for ${sessionId}`);
|
|
292
|
-
} catch (e) {
|
|
293
|
-
lastError = e;
|
|
294
|
-
}
|
|
295
|
-
sleepMs(250 * (i + 1));
|
|
296
|
-
}
|
|
297
|
-
return { ok: false, error: lastError?.message || String(lastError || 'score failed') };
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
function num(v) {
|
|
301
|
-
const n = Number(v);
|
|
302
|
-
return Number.isFinite(n) ? n : 0;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
// USD list pricing per 1M tokens (input / cached input / output), 2026-07.
|
|
306
|
-
// Cross-harness cost comparison needs a real currency: OAuth lanes bill
|
|
307
|
-
// quota, not dollars, but token counts priced at API list rates are the
|
|
308
|
-
// only harness-neutral metric. Unknown models fall back to gpt-5.5 rates.
|
|
309
|
-
const USD_PER_1M = {
|
|
310
|
-
'gpt-5.5': { in: 5.00, cachedIn: 0.50, out: 30.00 },
|
|
311
|
-
'gpt-5.6-sol': { in: 5.00, cachedIn: 0.50, out: 30.00 },
|
|
312
|
-
'gpt-5.6-terra': { in: 2.50, cachedIn: 0.25, out: 15.00 },
|
|
313
|
-
'gpt-5.6-luna': { in: 1.00, cachedIn: 0.10, out: 6.00 },
|
|
314
|
-
'claude-sonnet-5': { in: 2.00, cachedIn: 0.20, out: 10.00 },
|
|
315
|
-
'claude-fable-5': { in: 5.00, cachedIn: 0.50, out: 25.00 },
|
|
316
|
-
};
|
|
317
|
-
function usdCost(model, uncachedIn, cachedIn, outTokens) {
|
|
318
|
-
const key = String(model || '').toLowerCase();
|
|
319
|
-
const p = USD_PER_1M[key]
|
|
320
|
-
|| USD_PER_1M[Object.keys(USD_PER_1M).find((k) => key.includes(k))]
|
|
321
|
-
|| USD_PER_1M['gpt-5.5'];
|
|
322
|
-
return Math.round(((num(uncachedIn) * p.in + num(cachedIn) * p.cachedIn + num(outTokens) * p.out) / 1e6) * 10000) / 10000;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
function averageCards(cards) {
|
|
326
|
-
if (!cards.length) return null;
|
|
327
|
-
const keys = Object.keys(cards[0]).filter((k) => cards.some((c) => typeof c[k] === 'number' && Number.isFinite(c[k])));
|
|
328
|
-
const out = { n: cards.length };
|
|
329
|
-
for (const k of keys) {
|
|
330
|
-
const vals = cards.map((c) => num(c[k]));
|
|
331
|
-
out[k] = Math.round((vals.reduce((a, b) => a + b, 0) / vals.length) * 10) / 10;
|
|
332
|
-
}
|
|
333
|
-
return out;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
// ---- main ----
|
|
337
|
-
const tasksPath = argValue('--tasks', null);
|
|
338
|
-
if (!tasksPath) {
|
|
339
|
-
console.error('usage: --tasks <tasks.json> [--round N] [--runner mixdog|codex|lead] [--provider P] [--model M] [--effort E] [--fast] [--save round.json] [--json]');
|
|
340
|
-
process.exit(1);
|
|
341
|
-
}
|
|
342
|
-
if (!existsSync(resolve(tasksPath))) { console.error(`tasks file not found: ${tasksPath}`); process.exit(1); }
|
|
343
|
-
const tasks = JSON.parse(readFileSync(resolve(tasksPath), 'utf8'));
|
|
344
|
-
if (!Array.isArray(tasks) || !tasks.length) { console.error('tasks.json must be a non-empty array'); process.exit(1); }
|
|
345
|
-
|
|
346
|
-
const runnerName = argValue('--runner', 'mixdog');
|
|
347
|
-
const runner = RUNNERS[runnerName];
|
|
348
|
-
if (!runner) { console.error(`unknown runner "${runnerName}" (mixdog|codex|lead)`); process.exit(1); }
|
|
349
|
-
const round = argValue('--round', '1');
|
|
350
|
-
const savePath = argValue('--save', null);
|
|
351
|
-
const jsonMode = hasFlag('--json');
|
|
352
|
-
const _mo = resolveModelOpts(argValue('--model', null), argValue('--provider', null));
|
|
353
|
-
// A/B knobs -> child env. --read-max-lines is a convenience for the read-policy
|
|
354
|
-
// bench; --env KEY=VAL (repeatable) passes any override verbatim.
|
|
355
|
-
const _env = {};
|
|
356
|
-
let ownedBenchTraceDir = null;
|
|
357
|
-
function cleanupOwnedBenchTrace() {
|
|
358
|
-
if (!ownedBenchTraceDir) return;
|
|
359
|
-
const dir = ownedBenchTraceDir;
|
|
360
|
-
ownedBenchTraceDir = null;
|
|
361
|
-
rmSync(dir, { recursive: true, force: true });
|
|
362
|
-
}
|
|
363
|
-
const _readMax = argValue('--read-max-lines', null);
|
|
364
|
-
if (_readMax) _env.MIXDOG_READ_MAX_LINES = String(_readMax);
|
|
365
|
-
for (let i = 0; i < process.argv.length; i++) {
|
|
366
|
-
if (process.argv[i] === '--env' && process.argv[i + 1]) {
|
|
367
|
-
const eq = process.argv[i + 1].indexOf('=');
|
|
368
|
-
if (eq > 0) _env[process.argv[i + 1].slice(0, eq)] = process.argv[i + 1].slice(eq + 1);
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
if (runnerName === 'mixdog' && !_env.MIXDOG_AGENT_TRACE_PATH) {
|
|
372
|
-
if (process.env.MIXDOG_AGENT_TRACE_PATH) {
|
|
373
|
-
_env.MIXDOG_AGENT_TRACE_PATH = process.env.MIXDOG_AGENT_TRACE_PATH;
|
|
374
|
-
} else {
|
|
375
|
-
ownedBenchTraceDir = mkdtempSync(join(tmpdir(), 'mixdog-bench-trace-'));
|
|
376
|
-
_env.MIXDOG_AGENT_TRACE_PATH = join(ownedBenchTraceDir, 'agent-trace.jsonl');
|
|
377
|
-
process.once('exit', cleanupOwnedBenchTrace);
|
|
378
|
-
}
|
|
379
|
-
}
|
|
380
|
-
const opts = {
|
|
381
|
-
provider: _mo.provider,
|
|
382
|
-
model: _mo.model,
|
|
383
|
-
effort: argValue('--effort', null),
|
|
384
|
-
fast: hasFlag('--fast'),
|
|
385
|
-
workflow: argValue('--workflow', null),
|
|
386
|
-
env: _env,
|
|
387
|
-
};
|
|
388
|
-
process.stderr.write(`[bench-run] model=${opts.model || '(agent default)'} provider=${opts.provider || '(agent default)'} effort=${opts.effort || '-'} fast=${opts.fast} workflow=${opts.workflow || '-'} env=${JSON.stringify(_env)}\n`);
|
|
389
|
-
|
|
390
|
-
// --parallel N: run up to N tasks concurrently (default: all). Scoring stays
|
|
391
|
-
// sequential after runs so task-bench reads a settled trace.
|
|
392
|
-
const parallel = Math.max(1, Number.parseInt(argValue('--parallel', String(tasks.length)), 10) || tasks.length);
|
|
393
|
-
// --repeat N: run the whole task set N times (repeat r appended to task id as
|
|
394
|
-
// "id#r") so group averages settle over more samples.
|
|
395
|
-
const repeat = Math.max(1, Number.parseInt(argValue('--repeat', '1'), 10) || 1);
|
|
396
|
-
// --stagger MS: delay each parallel lane's start by laneIndex*MS so session
|
|
397
|
-
// first-calls don't race the server prompt-cache write window (A/B for
|
|
398
|
-
// parallel fan-out cache misses).
|
|
399
|
-
const staggerMs = Math.max(0, Number.parseInt(argValue('--stagger', '0'), 10) || 0);
|
|
400
|
-
process.stderr.write(`[bench-run] parallel=${parallel} repeat=${repeat} stagger=${staggerMs}ms\n`);
|
|
401
|
-
const runList = [];
|
|
402
|
-
for (let r = 1; r <= repeat; r += 1) {
|
|
403
|
-
for (const task of tasks) {
|
|
404
|
-
runList.push(repeat > 1 ? { ...task, id: `${task.id || task.agent}#${r}` } : task);
|
|
405
|
-
}
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
async function runTask(task) {
|
|
409
|
-
process.stderr.write(`[bench-run] round=${round} runner=${runnerName} task=${task.id || task.agent} ...\n`);
|
|
410
|
-
let r;
|
|
411
|
-
try { r = await runner(task, opts); }
|
|
412
|
-
catch (e) {
|
|
413
|
-
console.error(`[bench-run] runner error (${task.id || task.agent}): ${e.message}`);
|
|
414
|
-
return { id: task.id || null, agent: task.agent || null, ok: false, ms: 0, sessionId: null };
|
|
415
|
-
}
|
|
416
|
-
process.stderr.write(`[bench-run] -> ${task.id || task.agent}: ${r.ok ? 'ok' : 'FAIL'} ${Math.round(r.ms / 1000)}s session=${r.sessionId || '(none)'}\n`);
|
|
417
|
-
return {
|
|
418
|
-
id: task.id || null, agent: task.agent || null, ok: r.ok, ms: r.ms, sessionId: r.sessionId,
|
|
419
|
-
// External runners (codex/claude) pre-build their scorecard; mixdog scores
|
|
420
|
-
// from its own trace below. Output text is kept for quality judging.
|
|
421
|
-
...(r.card ? { card: r.card } : {}),
|
|
422
|
-
output: String(r.finalMessage || r.raw || '').slice(-8000),
|
|
423
|
-
};
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
const results = new Array(runList.length);
|
|
427
|
-
{
|
|
428
|
-
let next = 0;
|
|
429
|
-
async function drain(lane) {
|
|
430
|
-
if (staggerMs > 0 && lane > 0) await new Promise((res) => setTimeout(res, lane * staggerMs));
|
|
431
|
-
for (;;) {
|
|
432
|
-
const i = next++;
|
|
433
|
-
if (i >= runList.length) return;
|
|
434
|
-
results[i] = await runTask(runList[i]);
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
await Promise.all(Array.from({ length: Math.min(parallel, runList.length) }, (_, lane) => drain(lane)));
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
for (const result of results) {
|
|
441
|
-
if (!result.sessionId) continue;
|
|
442
|
-
if (result.card) continue; // external runner already carries its card
|
|
443
|
-
const scored = scoreSession(result.sessionId, { env: opts.env });
|
|
444
|
-
if (scored.ok) {
|
|
445
|
-
result.card = scored.card;
|
|
446
|
-
// task-bench cards expose uncached/cached/output token fields; price at
|
|
447
|
-
// the session's own model when present, else the round's --model.
|
|
448
|
-
const c = scored.card;
|
|
449
|
-
c.usd_cost = usdCost(c.model || opts.model, c.uncached_tokens, c.cached_tokens, c.output_tokens);
|
|
450
|
-
process.stderr.write(`[bench-run] -> scored ${result.sessionId.slice(0, 22)} turns=${scored.card.turns} tools=${scored.card.tool_calls}\n`);
|
|
451
|
-
} else {
|
|
452
|
-
result.scoreError = scored.error;
|
|
453
|
-
process.stderr.write(`[bench-run] -> SCORE FAIL ${result.sessionId.slice(0, 22)} ${scored.error}\n`);
|
|
454
|
-
}
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
const sessionIds = results.map((r) => r.sessionId).filter(Boolean);
|
|
458
|
-
const scoredCards = results.map((r) => r.card).filter(Boolean);
|
|
459
|
-
const scoreErrors = results
|
|
460
|
-
.filter((r) => !r.card)
|
|
461
|
-
.map((r) => ({ id: r.id, sessionId: r.sessionId || null, error: r.sessionId ? (r.scoreError || 'missing scorecard') : 'missing sessionId' }));
|
|
462
|
-
const score = scoredCards.length ? { cards: scoredCards, group: averageCards(scoredCards.map(({ session, ...c }) => c)) } : null;
|
|
463
|
-
const completed = results.filter((r) => r.ok).length;
|
|
464
|
-
const taskErrors = results
|
|
465
|
-
.filter((r) => !r.ok)
|
|
466
|
-
.map((r) => ({ id: r.id, sessionId: r.sessionId || null, error: 'task failed' }));
|
|
467
|
-
const roundResult = {
|
|
468
|
-
round, runner: runnerName, opts,
|
|
469
|
-
tasks: results.length, completed,
|
|
470
|
-
completion_rate: results.length ? Math.round((completed / results.length) * 100) : 0,
|
|
471
|
-
sessions: sessionIds, results,
|
|
472
|
-
task_complete: results.length > 0 && completed === results.length,
|
|
473
|
-
task_errors: taskErrors,
|
|
474
|
-
score_complete: results.length > 0 && taskErrors.length === 0 && scoreErrors.length === 0 && (score?.cards?.length || 0) === results.length,
|
|
475
|
-
score_errors: scoreErrors,
|
|
476
|
-
group: score?.group || null,
|
|
477
|
-
cards: score?.cards || null,
|
|
478
|
-
};
|
|
479
|
-
|
|
480
|
-
if (roundResult.task_complete === false) {
|
|
481
|
-
console.error(`[bench-run] incomplete tasks: completed=${completed}/${results.length}`);
|
|
482
|
-
for (const e of taskErrors) console.error(`[bench-run] task error ${e.id || '-'} ${e.sessionId || '(no session)'}`);
|
|
483
|
-
}
|
|
484
|
-
if (roundResult.score_complete === false) {
|
|
485
|
-
console.error(`[bench-run] incomplete scoring: scored=${roundResult.cards?.length || 0}/${results.length}`);
|
|
486
|
-
for (const e of scoreErrors) console.error(`[bench-run] score error ${e.id || '-'} ${e.sessionId || '(no session)'}: ${e.error}`);
|
|
487
|
-
}
|
|
488
|
-
if (savePath) {
|
|
489
|
-
if (roundResult.task_complete === false || roundResult.score_complete === false) {
|
|
490
|
-
console.error(`[bench-run] not saving incomplete round -> ${resolve(savePath)}`);
|
|
491
|
-
} else {
|
|
492
|
-
writeFileSync(resolve(savePath), JSON.stringify(roundResult, null, 2));
|
|
493
|
-
console.error(`[bench-run] saved round ${round} -> ${resolve(savePath)}`);
|
|
494
|
-
}
|
|
495
|
-
}
|
|
496
|
-
if (jsonMode) {
|
|
497
|
-
console.log(JSON.stringify(roundResult, null, 2));
|
|
498
|
-
} else {
|
|
499
|
-
console.log(`round=${round} runner=${runnerName} tasks=${results.length} completed=${completed} (${roundResult.completion_rate}%)`);
|
|
500
|
-
for (const r of results) console.log(`- ${r.id || r.agent}: ${r.ok ? 'ok' : 'FAIL'} ${Math.round(r.ms / 1000)}s ${r.sessionId ? r.sessionId.slice(0, 22) : '(no session)'}`);
|
|
501
|
-
if (roundResult.group) {
|
|
502
|
-
const g = roundResult.group;
|
|
503
|
-
console.log(`group: wall=${Math.round((g.wall_ms || 0) / 1000)}s turns=${g.turns} tools=${g.tool_calls} tpt=${g.tools_per_turn} tool_ms=${Math.round((g.total_tool_ms || 0) / 1000)}s cache=${Math.round((g.cache_ratio || 0) * 100)}% antipatterns=${g.antipatterns}`);
|
|
504
|
-
}
|
|
505
|
-
}
|
|
506
|
-
const incomplete = roundResult.task_complete === false || roundResult.score_complete === false;
|
|
507
|
-
cleanupOwnedBenchTrace();
|
|
508
|
-
if (incomplete) process.exit(1);
|
package/scripts/boot-smoke.mjs
DELETED
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import { spawnSync } from 'node:child_process';
|
|
3
|
-
import { dirname, resolve } from 'node:path';
|
|
4
|
-
import { fileURLToPath } from 'node:url';
|
|
5
|
-
|
|
6
|
-
const root = resolve(dirname(fileURLToPath(import.meta.url)), '..');
|
|
7
|
-
const THRESHOLD_MS = Number(process.env.MIXDOG_BOOT_SMOKE_LIMIT_MS || 5_000);
|
|
8
|
-
const FAST_BACKGROUND_ENV = {
|
|
9
|
-
MIXDOG_DISABLE_SESSION_PREWARM: '1',
|
|
10
|
-
MIXDOG_DISABLE_PROVIDER_WARMUP: '1',
|
|
11
|
-
MIXDOG_DISABLE_CHANNEL_START: '1',
|
|
12
|
-
};
|
|
13
|
-
const DEFAULT_BACKGROUND_ENV = {
|
|
14
|
-
MIXDOG_DISABLE_SESSION_PREWARM: '',
|
|
15
|
-
MIXDOG_ENABLE_SESSION_PREWARM: '',
|
|
16
|
-
MIXDOG_SESSION_PREWARM_DELAY_MS: '',
|
|
17
|
-
MIXDOG_DISABLE_PROVIDER_WARMUP: '',
|
|
18
|
-
MIXDOG_ENABLE_PROVIDER_WARMUP: '',
|
|
19
|
-
MIXDOG_PROVIDER_WARMUP_BEFORE_FIRST_TURN: '',
|
|
20
|
-
MIXDOG_PROVIDER_WARMUP_DELAY_MS: '',
|
|
21
|
-
MIXDOG_PROVIDER_MODEL_WARMUP_DELAY_MS: '',
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
function runCase(name, args, { env = {}, input = null, expectStdout = null, expectStderr = null, maxMs = THRESHOLD_MS } = {}) {
|
|
25
|
-
const startedAt = performance.now();
|
|
26
|
-
const result = spawnSync(process.execPath, args, {
|
|
27
|
-
cwd: root,
|
|
28
|
-
env: { ...process.env, ...env },
|
|
29
|
-
input,
|
|
30
|
-
encoding: 'utf8',
|
|
31
|
-
stdio: [input == null ? 'ignore' : 'pipe', 'pipe', 'pipe'],
|
|
32
|
-
timeout: Math.max(10_000, maxMs + 5_000),
|
|
33
|
-
});
|
|
34
|
-
const ms = performance.now() - startedAt;
|
|
35
|
-
const stdout = result.stdout || '';
|
|
36
|
-
const stderr = result.stderr || '';
|
|
37
|
-
if (result.status !== 0) {
|
|
38
|
-
throw new Error(`${name} exited ${result.status}:\n${stderr || stdout}`);
|
|
39
|
-
}
|
|
40
|
-
if (expectStdout && !stdout.includes(expectStdout)) {
|
|
41
|
-
throw new Error(`${name} stdout missing ${expectStdout}:\n${stdout.slice(0, 1000)}`);
|
|
42
|
-
}
|
|
43
|
-
if (expectStderr && !stderr.includes(expectStderr)) {
|
|
44
|
-
throw new Error(`${name} stderr missing ${expectStderr}:\n${stderr.slice(0, 1000)}`);
|
|
45
|
-
}
|
|
46
|
-
if (ms > maxMs) {
|
|
47
|
-
throw new Error(`${name} boot smoke exceeded ${maxMs}ms (${ms.toFixed(1)}ms)`);
|
|
48
|
-
}
|
|
49
|
-
return { name, ms: Math.round(ms * 10) / 10 };
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
const rows = [
|
|
53
|
-
runCase('help', ['src/cli.mjs', '--help'], {
|
|
54
|
-
expectStdout: 'standalone mixdog CLI/TUI coding agent',
|
|
55
|
-
}),
|
|
56
|
-
runCase('tui_import', ['--input-type=module', '-e', `
|
|
57
|
-
const mod = await import('./src/tui/dist/index.mjs');
|
|
58
|
-
if (typeof mod.runTui !== 'function') throw new Error('runTui export missing');
|
|
59
|
-
`]),
|
|
60
|
-
runCase('runtime_tools', ['--input-type=module', '-e', `
|
|
61
|
-
const mod = await import('./src/mixdog-session-runtime.mjs');
|
|
62
|
-
if (typeof mod.createMixdogSessionRuntime !== 'function') throw new Error('runtime export missing');
|
|
63
|
-
const runtime = await mod.createMixdogSessionRuntime({ toolMode: 'full' });
|
|
64
|
-
try {
|
|
65
|
-
const status = runtime.toolsStatus();
|
|
66
|
-
const active = new Set(status.activeTools || []);
|
|
67
|
-
for (const name of ['read','code_graph','grep','find','glob','list','apply_patch','explore','agent','shell','task','cwd','recall','search','web_fetch','Skill','load_tool']) {
|
|
68
|
-
if (!active.has(name)) throw new Error('missing ' + name + ' in ' + [...active].join(','));
|
|
69
|
-
}
|
|
70
|
-
for (const name of ['bash']) {
|
|
71
|
-
if (active.has(name)) throw new Error('unexpected ' + name + ' in ' + [...active].join(','));
|
|
72
|
-
}
|
|
73
|
-
const result = runtime.selectTools('shell');
|
|
74
|
-
const selectedNames = new Set([...(result.added || []), ...(result.already || [])]);
|
|
75
|
-
if (!selectedNames.has('shell') || !selectedNames.has('task')) {
|
|
76
|
-
throw new Error('shell alias should resolve shell and task: ' + JSON.stringify(result));
|
|
77
|
-
}
|
|
78
|
-
const nextActive = new Set(result.status.activeTools || []);
|
|
79
|
-
const nextDiscovered = new Set(result.status.discoveredTools || []);
|
|
80
|
-
for (const name of ['shell','task']) {
|
|
81
|
-
const selected = result.native === true ? nextDiscovered : nextActive;
|
|
82
|
-
if (!selected.has(name) && !nextActive.has(name)) throw new Error('selected tool missing ' + name + ' in ' + [...selected].join(','));
|
|
83
|
-
}
|
|
84
|
-
console.log('runtime_tools active=' + status.activeCount + '/' + status.count + ' selected=' + result.added.join(','));
|
|
85
|
-
} finally {
|
|
86
|
-
await runtime.close('runtime-tools-smoke', { waitForExit: false });
|
|
87
|
-
}
|
|
88
|
-
`], {
|
|
89
|
-
env: FAST_BACKGROUND_ENV,
|
|
90
|
-
expectStdout: 'runtime_tools active=',
|
|
91
|
-
}),
|
|
92
|
-
runCase('boot_profile', ['src/cli.mjs', '--help'], {
|
|
93
|
-
env: { MIXDOG_BOOT_PROFILE: '1' },
|
|
94
|
-
expectStdout: 'standalone mixdog CLI/TUI coding agent',
|
|
95
|
-
expectStderr: 'app:run:start',
|
|
96
|
-
}),
|
|
97
|
-
runCase('plain_quit', ['src/cli.mjs', '--plain'], {
|
|
98
|
-
env: FAST_BACKGROUND_ENV,
|
|
99
|
-
input: '/quit\n',
|
|
100
|
-
expectStdout: 'bye.',
|
|
101
|
-
}),
|
|
102
|
-
runCase('runtime_idle_exit', ['--input-type=module', '-e', `
|
|
103
|
-
const { createMixdogSessionRuntime } = await import('./src/mixdog-session-runtime.mjs');
|
|
104
|
-
const runtime = await createMixdogSessionRuntime({ toolMode: 'full' });
|
|
105
|
-
await new Promise((resolve) => setTimeout(resolve, 450));
|
|
106
|
-
const startedAt = performance.now();
|
|
107
|
-
await runtime.close('runtime-idle-exit-smoke', { waitForExit: false });
|
|
108
|
-
console.log('runtime_idle_exit close_ms=' + (performance.now() - startedAt).toFixed(1));
|
|
109
|
-
`], {
|
|
110
|
-
env: { ...DEFAULT_BACKGROUND_ENV, MIXDOG_BOOT_PROFILE: '1' },
|
|
111
|
-
expectStdout: 'runtime_idle_exit close_ms=',
|
|
112
|
-
expectStderr: 'session:prewarm-skipped',
|
|
113
|
-
maxMs: 2_000,
|
|
114
|
-
}),
|
|
115
|
-
runCase('runtime_idle_exit_provider_optin', ['--input-type=module', '-e', `
|
|
116
|
-
const { createMixdogSessionRuntime } = await import('./src/mixdog-session-runtime.mjs');
|
|
117
|
-
const runtime = await createMixdogSessionRuntime({ toolMode: 'full' });
|
|
118
|
-
await new Promise((resolve) => setTimeout(resolve, 250));
|
|
119
|
-
await runtime.close('runtime-provider-optin-exit-smoke', { waitForExit: false });
|
|
120
|
-
console.log('runtime_idle_exit_provider_optin ok');
|
|
121
|
-
`], {
|
|
122
|
-
env: {
|
|
123
|
-
...DEFAULT_BACKGROUND_ENV,
|
|
124
|
-
MIXDOG_BOOT_PROFILE: '1',
|
|
125
|
-
MIXDOG_ENABLE_PROVIDER_WARMUP: '1',
|
|
126
|
-
MIXDOG_PROVIDER_WARMUP_DELAY_MS: '100',
|
|
127
|
-
},
|
|
128
|
-
expectStdout: 'runtime_idle_exit_provider_optin ok',
|
|
129
|
-
expectStderr: 'providers:warm-deferred',
|
|
130
|
-
maxMs: 2_000,
|
|
131
|
-
}),
|
|
132
|
-
];
|
|
133
|
-
|
|
134
|
-
for (const row of rows) {
|
|
135
|
-
process.stdout.write(`${row.name}: ${row.ms}ms\n`);
|
|
136
|
-
}
|
|
137
|
-
process.stdout.write('boot smoke passed\n');
|