@bastani/atomic 0.9.11-alpha.4 → 0.9.11-alpha.6
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/CHANGELOG.md +55 -0
- package/README.md +12 -5
- package/dist/builtin/intercom/package.json +2 -2
- package/dist/builtin/mcp/CHANGELOG.md +6 -0
- package/dist/builtin/mcp/README.md +3 -3
- package/dist/builtin/mcp/cli.js +0 -1
- package/dist/builtin/mcp/config.ts +0 -2
- package/dist/builtin/mcp/package.json +3 -3
- package/dist/builtin/mcp/types.ts +0 -1
- package/dist/builtin/subagents/CHANGELOG.md +19 -0
- package/dist/builtin/subagents/README.md +10 -1
- package/dist/builtin/subagents/agents/code-simplifier.md +47 -102
- package/dist/builtin/subagents/agents/codebase-analyzer.md +27 -130
- package/dist/builtin/subagents/agents/codebase-locator.md +24 -83
- package/dist/builtin/subagents/agents/codebase-online-researcher.md +60 -259
- package/dist/builtin/subagents/agents/codebase-pattern-finder.md +29 -207
- package/dist/builtin/subagents/agents/codebase-research-analyzer.md +28 -150
- package/dist/builtin/subagents/agents/codebase-research-locator.md +21 -118
- package/dist/builtin/subagents/agents/debugger.md +29 -65
- package/dist/builtin/subagents/agents/worker.md +23 -30
- package/dist/builtin/subagents/package.json +4 -4
- package/dist/builtin/subagents/prompts/gather-context-and-clarify.md +18 -11
- package/dist/builtin/subagents/prompts/parallel-cleanup.md +34 -33
- package/dist/builtin/subagents/prompts/parallel-context-build.md +22 -36
- package/dist/builtin/subagents/prompts/parallel-handoff-plan.md +20 -52
- package/dist/builtin/subagents/prompts/parallel-research.md +17 -41
- package/dist/builtin/subagents/prompts/parallel-review.md +23 -28
- package/dist/builtin/subagents/prompts/review-loop.md +18 -27
- package/dist/builtin/subagents/skills/subagent/SKILL.md +6 -6
- package/dist/builtin/subagents/src/extension/prompt-guidance.ts +4 -1
- package/dist/builtin/subagents/src/runs/background/async-execution-chain.ts +23 -4
- package/dist/builtin/subagents/src/runs/background/async-execution-single.ts +2 -0
- package/dist/builtin/subagents/src/runs/background/async-execution-types.ts +10 -0
- package/dist/builtin/subagents/src/runs/background/subagent-runner-step.ts +1 -0
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-dynamic-step.ts +2 -0
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-parallel-runner.ts +8 -0
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-parallel-step.ts +1 -0
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-sequential-step.ts +6 -0
- package/dist/builtin/subagents/src/runs/foreground/chain-execution-types.ts +2 -0
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-async.ts +7 -0
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-chain.ts +1 -0
- package/dist/builtin/subagents/src/runs/foreground/subagent-executor-resume.ts +3 -0
- package/dist/builtin/subagents/src/runs/shared/mcp-direct-tool-allowlist.ts +1 -2
- package/dist/builtin/subagents/src/runs/shared/parallel-utils.ts +1 -0
- package/dist/builtin/subagents/src/runs/shared/pi-args.ts +5 -3
- package/dist/builtin/subagents/src/shared/settings.ts +4 -0
- package/dist/builtin/web-access/package.json +2 -2
- package/dist/builtin/workflows/CHANGELOG.md +53 -0
- package/dist/builtin/workflows/README.md +72 -70
- package/dist/builtin/workflows/ambient.d.ts +0 -5
- package/dist/builtin/workflows/builtin/adversarial-verification-prompts.ts +7 -4
- package/dist/builtin/workflows/builtin/adversarial-verification-runner.ts +1 -1
- package/dist/builtin/workflows/builtin/adversarial-verification.ts +2 -1
- package/dist/builtin/workflows/builtin/classify-and-act-prompts.ts +5 -2
- package/dist/builtin/workflows/builtin/classify-and-act-runner.ts +5 -7
- package/dist/builtin/workflows/builtin/classify-and-act.ts +3 -2
- package/dist/builtin/workflows/builtin/fan-out-and-synthesize-prompts.ts +6 -3
- package/dist/builtin/workflows/builtin/fan-out-and-synthesize-runner.ts +5 -5
- package/dist/builtin/workflows/builtin/fan-out-and-synthesize.ts +3 -2
- package/dist/builtin/workflows/builtin/generate-and-filter-prompts.ts +7 -4
- package/dist/builtin/workflows/builtin/generate-and-filter-runner.ts +6 -3
- package/dist/builtin/workflows/builtin/generate-and-filter.ts +3 -2
- package/dist/builtin/workflows/builtin/goal-artifacts.ts +1 -1
- package/dist/builtin/workflows/builtin/goal-models.ts +39 -39
- package/dist/builtin/workflows/builtin/goal-orchestrator-prompts.ts +94 -0
- package/dist/builtin/workflows/builtin/goal-prompts.ts +66 -286
- package/dist/builtin/workflows/builtin/goal-reducer.ts +1 -1
- package/dist/builtin/workflows/builtin/goal-runner.ts +72 -116
- package/dist/builtin/workflows/builtin/goal.ts +9 -8
- package/dist/builtin/workflows/builtin/index.d.ts +17 -112
- package/dist/builtin/workflows/builtin/index.ts +1 -2
- package/dist/builtin/workflows/builtin/loop-until-done-prompts.ts +20 -12
- package/dist/builtin/workflows/builtin/loop-until-done-runner.ts +3 -0
- package/dist/builtin/workflows/builtin/loop-until-done.ts +3 -2
- package/dist/builtin/workflows/builtin/open-claude-design-phases.ts +52 -55
- package/dist/builtin/workflows/builtin/open-claude-design-runner.ts +45 -52
- package/dist/builtin/workflows/builtin/open-claude-design-setup.ts +41 -46
- package/dist/builtin/workflows/builtin/open-claude-design-utils.ts +16 -21
- package/dist/builtin/workflows/builtin/open-claude-design.ts +2 -1
- package/dist/builtin/workflows/builtin/ralph-core.ts +61 -57
- package/dist/builtin/workflows/builtin/ralph-forked-prompts.ts +41 -45
- package/dist/builtin/workflows/builtin/ralph-models.ts +33 -43
- package/dist/builtin/workflows/builtin/ralph-reviewer-prompt.ts +35 -117
- package/dist/builtin/workflows/builtin/ralph-runner.ts +81 -108
- package/dist/builtin/workflows/builtin/ralph.ts +2 -1
- package/dist/builtin/workflows/builtin/shared-prompts.ts +111 -80
- package/dist/builtin/workflows/builtin/steering-context.ts +51 -0
- package/dist/builtin/workflows/builtin/tournament-prompts.ts +21 -12
- package/dist/builtin/workflows/builtin/tournament-runner.ts +3 -0
- package/dist/builtin/workflows/builtin/tournament.ts +3 -2
- package/dist/builtin/workflows/package.json +2 -2
- package/dist/builtin/workflows/skills/create-spec/SKILL.md +1 -1
- package/dist/builtin/workflows/skills/impeccable/reference/hooks.md +6 -8
- package/dist/builtin/workflows/skills/impeccable/reference/live.md +3 -4
- package/dist/builtin/workflows/skills/impeccable/scripts/hook-admin.mjs +2 -20
- package/dist/builtin/workflows/skills/impeccable/scripts/hook-lib.mjs +4 -42
- package/dist/builtin/workflows/skills/impeccable/scripts/hook.mjs +3 -3
- package/dist/builtin/workflows/skills/impeccable/scripts/live-browser.js +2 -3
- package/dist/builtin/workflows/skills/impeccable/scripts/live-inject.mjs +0 -1
- package/dist/builtin/workflows/skills/impeccable/scripts/live-poll.mjs +2 -2
- package/dist/builtin/workflows/skills/impeccable/scripts/pin.mjs +4 -4
- package/dist/builtin/workflows/skills/prompt-engineer/SKILL.md +57 -252
- package/dist/builtin/workflows/skills/prompt-engineer/references/advanced_patterns.md +70 -226
- package/dist/builtin/workflows/skills/prompt-engineer/references/core_prompting.md +64 -103
- package/dist/builtin/workflows/skills/prompt-engineer/references/quality_improvement.md +81 -155
- package/dist/builtin/workflows/src/authoring.d.ts +5 -1
- package/dist/builtin/workflows/src/durable/backend.ts +68 -9
- package/dist/builtin/workflows/src/durable/boundary-lifecycle.ts +148 -0
- package/dist/builtin/workflows/src/durable/boundary-topology.ts +420 -0
- package/dist/builtin/workflows/src/durable/child-invocation.ts +14 -0
- package/dist/builtin/workflows/src/durable/child-primitive.ts +74 -44
- package/dist/builtin/workflows/src/durable/completed-catalog-stage-groups.ts +250 -0
- package/dist/builtin/workflows/src/durable/completed-catalog.ts +205 -131
- package/dist/builtin/workflows/src/durable/completed-inspection.ts +8 -2
- package/dist/builtin/workflows/src/durable/completed-subtree.ts +31 -0
- package/dist/builtin/workflows/src/durable/dbos-backend.ts +28 -24
- package/dist/builtin/workflows/src/durable/dbos-envelope.ts +130 -3
- package/dist/builtin/workflows/src/durable/dbos-metadata.ts +18 -0
- package/dist/builtin/workflows/src/durable/scoped-backend.ts +64 -17
- package/dist/builtin/workflows/src/durable/stage-primitive.ts +60 -60
- package/dist/builtin/workflows/src/durable/stage-topology-validation.ts +234 -0
- package/dist/builtin/workflows/src/durable/stage-topology.ts +53 -0
- package/dist/builtin/workflows/src/durable/tool-failure-checkpoint.ts +49 -0
- package/dist/builtin/workflows/src/durable/tool-outcome.ts +120 -0
- package/dist/builtin/workflows/src/durable/tool-primitive.ts +367 -58
- package/dist/builtin/workflows/src/durable/types.ts +97 -0
- package/dist/builtin/workflows/src/durable/ui-primitive.ts +46 -0
- package/dist/builtin/workflows/src/durable/workflow-child-result.ts +58 -0
- package/dist/builtin/workflows/src/engine/options.ts +1 -0
- package/dist/builtin/workflows/src/engine/primitives/workflow.ts +19 -10
- package/dist/builtin/workflows/src/engine/run-durable-finalize.ts +11 -1
- package/dist/builtin/workflows/src/engine/run-durable-topology.ts +190 -18
- package/dist/builtin/workflows/src/engine/run-terminal-event.ts +37 -0
- package/dist/builtin/workflows/src/engine/run-terminal-failure.ts +50 -0
- package/dist/builtin/workflows/src/engine/run-tool-execution-tracker.ts +152 -0
- package/dist/builtin/workflows/src/engine/run-tool-node-lifecycle.ts +87 -0
- package/dist/builtin/workflows/src/engine/run.ts +111 -110
- package/dist/builtin/workflows/src/engine/runtime.ts +15 -2
- package/dist/builtin/workflows/src/extension/extension-factory.ts +1 -0
- package/dist/builtin/workflows/src/extension/extension-runtime-state.ts +11 -0
- package/dist/builtin/workflows/src/extension/index.bundle.mjs +6599 -4776
- package/dist/builtin/workflows/src/extension/lifecycle-notifications.ts +16 -5
- package/dist/builtin/workflows/src/extension/render-result.ts +16 -2
- package/dist/builtin/workflows/src/extension/runtime-durable-resume.ts +3 -0
- package/dist/builtin/workflows/src/extension/runtime.ts +4 -0
- package/dist/builtin/workflows/src/extension/wiring.ts +3 -1
- package/dist/builtin/workflows/src/extension/workflow-command-surfaces.ts +1 -0
- package/dist/builtin/workflows/src/extension/workflow-durable-resume-command.ts +9 -3
- package/dist/builtin/workflows/src/extension/workflow-module-loader.ts +18 -3
- package/dist/builtin/workflows/src/extension/workflow-prompts.ts +27 -9
- package/dist/builtin/workflows/src/extension/workflow-status-summary.ts +43 -0
- package/dist/builtin/workflows/src/extension/workflow-targets.ts +34 -30
- package/dist/builtin/workflows/src/extension/workflow-tool-content.ts +12 -5
- package/dist/builtin/workflows/src/extension/workflow-tool-send.ts +162 -63
- package/dist/builtin/workflows/src/runs/background/run-inspect.ts +7 -1
- package/dist/builtin/workflows/src/runs/background/status.ts +18 -8
- package/dist/builtin/workflows/src/runs/background/workflow-lifecycle-aggregate.ts +3 -11
- package/dist/builtin/workflows/src/runs/foreground/executor-child-boundary.ts +24 -21
- package/dist/builtin/workflows/src/runs/foreground/executor-hil.ts +1 -1
- package/dist/builtin/workflows/src/runs/foreground/executor-lifecycle.ts +30 -13
- package/dist/builtin/workflows/src/runs/foreground/executor-prompt-nodes.ts +102 -53
- package/dist/builtin/workflows/src/runs/foreground/executor-stage-call.ts +13 -5
- package/dist/builtin/workflows/src/runs/foreground/executor-stage-control.ts +26 -8
- package/dist/builtin/workflows/src/runs/foreground/executor-stage-factory.ts +11 -4
- package/dist/builtin/workflows/src/runs/foreground/executor-stage-types.ts +4 -1
- package/dist/builtin/workflows/src/runs/foreground/executor-types.ts +7 -1
- package/dist/builtin/workflows/src/runs/foreground/postmortem-stage-chat.ts +35 -1
- package/dist/builtin/workflows/src/runs/foreground/stage-control-registry.ts +136 -17
- package/dist/builtin/workflows/src/runs/foreground/stage-runner-context.ts +12 -4
- package/dist/builtin/workflows/src/runs/foreground/stage-runner-controller.ts +35 -42
- package/dist/builtin/workflows/src/runs/foreground/stage-runner-options.ts +5 -1
- package/dist/builtin/workflows/src/runs/foreground/stage-runner-pause.ts +195 -0
- package/dist/builtin/workflows/src/runs/foreground/stage-runner-session-options.ts +0 -13
- package/dist/builtin/workflows/src/runs/foreground/stage-runner-types.ts +14 -2
- package/dist/builtin/workflows/src/runs/shared/model-fallback-candidates.ts +3 -143
- package/dist/builtin/workflows/src/sdk-surface.ts +1 -1
- package/dist/builtin/workflows/src/shared/authoring-contract-stage.d.ts +6 -11
- package/dist/builtin/workflows/src/shared/authoring-contract-stage.ts +6 -11
- package/dist/builtin/workflows/src/shared/authoring-contract-ui.d.ts +57 -6
- package/dist/builtin/workflows/src/shared/authoring-contract-ui.ts +76 -11
- package/dist/builtin/workflows/src/shared/expanded-workflow-graph.ts +206 -116
- package/dist/builtin/workflows/src/shared/intercom-group.ts +17 -10
- package/dist/builtin/workflows/src/shared/persistence-restore-helpers.ts +30 -0
- package/dist/builtin/workflows/src/shared/persistence-session-entries.ts +5 -0
- package/dist/builtin/workflows/src/shared/render-inputs-schema.ts +3 -3
- package/dist/builtin/workflows/src/shared/store-factory.ts +2 -0
- package/dist/builtin/workflows/src/shared/store-internal.ts +8 -0
- package/dist/builtin/workflows/src/shared/store-public-types.ts +8 -0
- package/dist/builtin/workflows/src/shared/store-run-methods.ts +9 -0
- package/dist/builtin/workflows/src/shared/store-stage-methods.ts +2 -0
- package/dist/builtin/workflows/src/shared/store-tool-node-methods.ts +46 -0
- package/dist/builtin/workflows/src/shared/store-types.ts +34 -0
- package/dist/builtin/workflows/src/shared/types.ts +14 -24
- package/dist/builtin/workflows/src/shared/workflow-failures-classifier.ts +11 -5
- package/dist/builtin/workflows/src/shared/workflow-failures-signals.ts +58 -0
- package/dist/builtin/workflows/src/shared/workflow-run-ownership.ts +53 -0
- package/dist/builtin/workflows/src/tui/graph-view-input.ts +2 -8
- package/dist/builtin/workflows/src/tui/graph-view-render-helpers.ts +11 -4
- package/dist/builtin/workflows/src/tui/graph-view-render.ts +1 -0
- package/dist/builtin/workflows/src/tui/graph-view-state.ts +27 -9
- package/dist/builtin/workflows/src/tui/graph-view-types.ts +4 -3
- package/dist/builtin/workflows/src/tui/node-card.ts +4 -3
- package/dist/builtin/workflows/src/tui/overlay-adapter.ts +0 -4
- package/dist/builtin/workflows/src/tui/run-detail.ts +53 -17
- package/dist/builtin/workflows/src/tui/session-list.ts +8 -4
- package/dist/builtin/workflows/src/tui/stage-chat-view-render-helpers.ts +12 -0
- package/dist/builtin/workflows/src/tui/stage-chat-view-render-settings.ts +21 -1
- package/dist/builtin/workflows/src/tui/stage-chat-view-state.ts +3 -19
- package/dist/builtin/workflows/src/tui/stage-chat-view.ts +4 -2
- package/dist/builtin/workflows/src/tui/switcher.ts +13 -3
- package/dist/builtin/workflows/src/tui/workflow-attach-pane-handle.ts +1 -1
- package/dist/builtin/workflows/src/tui/workflow-attach-pane-types.ts +0 -9
- package/dist/builtin/workflows/src/tui/workflow-attach-pane.ts +16 -49
- package/dist/builtin/workflows/src/tui/workflow-status.ts +7 -0
- package/dist/builtin/workflows/src/workflows/identity.ts +1 -1
- package/dist/cli/args.d.ts +0 -1
- package/dist/cli/args.d.ts.map +1 -1
- package/dist/cli/args.js +1 -20
- package/dist/cli/args.js.map +1 -1
- package/dist/cli/config-selector.js +1 -1
- package/dist/cli/config-selector.js.map +1 -1
- package/dist/cli/list-models.d.ts.map +1 -1
- package/dist/cli/list-models.js +1 -2
- package/dist/cli/list-models.js.map +1 -1
- package/dist/cli/session-picker.d.ts.map +1 -1
- package/dist/cli/session-picker.js +2 -1
- package/dist/cli/session-picker.js.map +1 -1
- package/dist/cli/startup-ui.js +2 -2
- package/dist/cli/startup-ui.js.map +1 -1
- package/dist/config-self-update.js +1 -1
- package/dist/config-self-update.js.map +1 -1
- package/dist/config.d.ts +2 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +34 -10
- package/dist/config.js.map +1 -1
- package/dist/core/agent-session-accessors.d.ts.map +1 -1
- package/dist/core/agent-session-accessors.js +2 -1
- package/dist/core/agent-session-accessors.js.map +1 -1
- package/dist/core/agent-session-auto-compaction.d.ts +4 -3
- package/dist/core/agent-session-auto-compaction.d.ts.map +1 -1
- package/dist/core/agent-session-auto-compaction.js +55 -59
- package/dist/core/agent-session-auto-compaction.js.map +1 -1
- package/dist/core/agent-session-bash.d.ts +9 -6
- package/dist/core/agent-session-bash.d.ts.map +1 -1
- package/dist/core/agent-session-bash.js +32 -13
- package/dist/core/agent-session-bash.js.map +1 -1
- package/dist/core/agent-session-compaction.d.ts +11 -1
- package/dist/core/agent-session-compaction.d.ts.map +1 -1
- package/dist/core/agent-session-compaction.js +87 -19
- package/dist/core/agent-session-compaction.js.map +1 -1
- package/dist/core/agent-session-custom-message-commit.d.ts +14 -0
- package/dist/core/agent-session-custom-message-commit.d.ts.map +1 -0
- package/dist/core/agent-session-custom-message-commit.js +141 -0
- package/dist/core/agent-session-custom-message-commit.js.map +1 -0
- package/dist/core/agent-session-delivery-forwarding.d.ts +9 -0
- package/dist/core/agent-session-delivery-forwarding.d.ts.map +1 -0
- package/dist/core/agent-session-delivery-forwarding.js +36 -0
- package/dist/core/agent-session-delivery-forwarding.js.map +1 -0
- package/dist/core/agent-session-events.d.ts +1 -1
- package/dist/core/agent-session-events.d.ts.map +1 -1
- package/dist/core/agent-session-events.js +45 -14
- package/dist/core/agent-session-events.js.map +1 -1
- package/dist/core/agent-session-extension-bindings.d.ts +2 -6
- package/dist/core/agent-session-extension-bindings.d.ts.map +1 -1
- package/dist/core/agent-session-extension-bindings.js +18 -11
- package/dist/core/agent-session-extension-bindings.js.map +1 -1
- package/dist/core/agent-session-message-queue.d.ts +5 -2
- package/dist/core/agent-session-message-queue.d.ts.map +1 -1
- package/dist/core/agent-session-message-queue.js +91 -97
- package/dist/core/agent-session-message-queue.js.map +1 -1
- package/dist/core/agent-session-methods.d.ts +47 -39
- package/dist/core/agent-session-methods.d.ts.map +1 -1
- package/dist/core/agent-session-methods.js.map +1 -1
- package/dist/core/agent-session-models.d.ts +2 -38
- package/dist/core/agent-session-models.d.ts.map +1 -1
- package/dist/core/agent-session-models.js +5 -147
- package/dist/core/agent-session-models.js.map +1 -1
- package/dist/core/agent-session-persistent-custom-messages.d.ts +47 -0
- package/dist/core/agent-session-persistent-custom-messages.d.ts.map +1 -0
- package/dist/core/agent-session-persistent-custom-messages.js +267 -0
- package/dist/core/agent-session-persistent-custom-messages.js.map +1 -0
- package/dist/core/agent-session-post-tool-compaction.d.ts.map +1 -1
- package/dist/core/agent-session-post-tool-compaction.js +34 -9
- package/dist/core/agent-session-post-tool-compaction.js.map +1 -1
- package/dist/core/agent-session-prompt.d.ts +2 -0
- package/dist/core/agent-session-prompt.d.ts.map +1 -1
- package/dist/core/agent-session-prompt.js +42 -16
- package/dist/core/agent-session-prompt.js.map +1 -1
- package/dist/core/agent-session-queue-pause.d.ts +10 -0
- package/dist/core/agent-session-queue-pause.d.ts.map +1 -0
- package/dist/core/agent-session-queue-pause.js +86 -0
- package/dist/core/agent-session-queue-pause.js.map +1 -0
- package/dist/core/agent-session-retry.d.ts +0 -11
- package/dist/core/agent-session-retry.d.ts.map +1 -1
- package/dist/core/agent-session-retry.js +8 -57
- package/dist/core/agent-session-retry.js.map +1 -1
- package/dist/core/agent-session-runtime-auth.d.ts +6 -0
- package/dist/core/agent-session-runtime-auth.d.ts.map +1 -0
- package/dist/core/agent-session-runtime-auth.js +26 -0
- package/dist/core/agent-session-runtime-auth.js.map +1 -0
- package/dist/core/agent-session-runtime.d.ts +13 -2
- package/dist/core/agent-session-runtime.d.ts.map +1 -1
- package/dist/core/agent-session-runtime.js +32 -6
- package/dist/core/agent-session-runtime.js.map +1 -1
- package/dist/core/agent-session-services.d.ts +0 -2
- package/dist/core/agent-session-services.d.ts.map +1 -1
- package/dist/core/agent-session-services.js +6 -7
- package/dist/core/agent-session-services.js.map +1 -1
- package/dist/core/agent-session-state.d.ts.map +1 -1
- package/dist/core/agent-session-state.js +3 -0
- package/dist/core/agent-session-state.js.map +1 -1
- package/dist/core/agent-session-tool-hooks.d.ts.map +1 -1
- package/dist/core/agent-session-tool-hooks.js +6 -1
- package/dist/core/agent-session-tool-hooks.js.map +1 -1
- package/dist/core/agent-session-tool-registry.d.ts.map +1 -1
- package/dist/core/agent-session-tool-registry.js +2 -18
- package/dist/core/agent-session-tool-registry.js.map +1 -1
- package/dist/core/agent-session-transfer.d.ts +4 -0
- package/dist/core/agent-session-transfer.d.ts.map +1 -0
- package/dist/core/agent-session-transfer.js +71 -0
- package/dist/core/agent-session-transfer.js.map +1 -0
- package/dist/core/agent-session-tree.js +1 -1
- package/dist/core/agent-session-tree.js.map +1 -1
- package/dist/core/agent-session-types.d.ts +5 -11
- package/dist/core/agent-session-types.d.ts.map +1 -1
- package/dist/core/agent-session-types.js +0 -3
- package/dist/core/agent-session-types.js.map +1 -1
- package/dist/core/agent-session.d.ts +12 -2
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +8 -2
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/atomic-guide-command.d.ts.map +1 -1
- package/dist/core/atomic-guide-command.js +31 -33
- package/dist/core/atomic-guide-command.js.map +1 -1
- package/dist/core/auth-storage.js +2 -2
- package/dist/core/auth-storage.js.map +1 -1
- package/dist/core/bash-executor.d.ts +5 -3
- package/dist/core/bash-executor.d.ts.map +1 -1
- package/dist/core/bash-executor.js +5 -4
- package/dist/core/bash-executor.js.map +1 -1
- package/dist/core/builtin-packages.d.ts.map +1 -1
- package/dist/core/builtin-packages.js +0 -6
- package/dist/core/builtin-packages.js.map +1 -1
- package/dist/core/compaction/branch-summarization.d.ts +8 -3
- package/dist/core/compaction/branch-summarization.d.ts.map +1 -1
- package/dist/core/compaction/branch-summarization.js +17 -6
- package/dist/core/compaction/branch-summarization.js.map +1 -1
- package/dist/core/compaction/compaction-boundary.d.ts +18 -1
- package/dist/core/compaction/compaction-boundary.d.ts.map +1 -1
- package/dist/core/compaction/compaction-boundary.js +2 -2
- package/dist/core/compaction/compaction-boundary.js.map +1 -1
- package/dist/core/compaction/compaction-runner.d.ts +61 -6
- package/dist/core/compaction/compaction-runner.d.ts.map +1 -1
- package/dist/core/compaction/compaction-runner.js +242 -18
- package/dist/core/compaction/compaction-runner.js.map +1 -1
- package/dist/core/compaction/compaction-types.d.ts +53 -2
- package/dist/core/compaction/compaction-types.d.ts.map +1 -1
- package/dist/core/compaction/compaction-types.js.map +1 -1
- package/dist/core/compaction/fallback-planner.d.ts +64 -0
- package/dist/core/compaction/fallback-planner.d.ts.map +1 -0
- package/dist/core/compaction/fallback-planner.js +75 -0
- package/dist/core/compaction/fallback-planner.js.map +1 -0
- package/dist/core/compaction/index.d.ts +3 -0
- package/dist/core/compaction/index.d.ts.map +1 -1
- package/dist/core/compaction/index.js +3 -0
- package/dist/core/compaction/index.js.map +1 -1
- package/dist/core/compaction/planner-outcome.d.ts +86 -0
- package/dist/core/compaction/planner-outcome.d.ts.map +1 -0
- package/dist/core/compaction/planner-outcome.js +122 -0
- package/dist/core/compaction/planner-outcome.js.map +1 -0
- package/dist/core/compaction/range-planner-diagnostics.d.ts +58 -6
- package/dist/core/compaction/range-planner-diagnostics.d.ts.map +1 -1
- package/dist/core/compaction/range-planner-diagnostics.js +69 -31
- package/dist/core/compaction/range-planner-diagnostics.js.map +1 -1
- package/dist/core/compaction/range-planner.d.ts +36 -8
- package/dist/core/compaction/range-planner.d.ts.map +1 -1
- package/dist/core/compaction/range-planner.js +136 -51
- package/dist/core/compaction/range-planner.js.map +1 -1
- package/dist/core/compaction/region-trimming.d.ts +34 -0
- package/dist/core/compaction/region-trimming.d.ts.map +1 -0
- package/dist/core/compaction/region-trimming.js +73 -0
- package/dist/core/compaction/region-trimming.js.map +1 -0
- package/dist/core/compaction/transcript-serialization.d.ts +8 -1
- package/dist/core/compaction/transcript-serialization.d.ts.map +1 -1
- package/dist/core/compaction/transcript-serialization.js +78 -27
- package/dist/core/compaction/transcript-serialization.js.map +1 -1
- package/dist/core/context-tool-pairing.d.ts +19 -0
- package/dist/core/context-tool-pairing.d.ts.map +1 -0
- package/dist/core/context-tool-pairing.js +50 -0
- package/dist/core/context-tool-pairing.js.map +1 -0
- package/dist/core/diagnostics.d.ts +8 -0
- package/dist/core/diagnostics.d.ts.map +1 -1
- package/dist/core/diagnostics.js.map +1 -1
- package/dist/core/extensions/context-types.d.ts +3 -0
- package/dist/core/extensions/context-types.d.ts.map +1 -1
- package/dist/core/extensions/context-types.js.map +1 -1
- package/dist/core/extensions/index.d.ts +2 -0
- package/dist/core/extensions/index.d.ts.map +1 -1
- package/dist/core/extensions/index.js.map +1 -1
- package/dist/core/extensions/loader-api.d.ts.map +1 -1
- package/dist/core/extensions/loader-api.js +48 -27
- package/dist/core/extensions/loader-api.js.map +1 -1
- package/dist/core/extensions/loader-runtime.d.ts +2 -4
- package/dist/core/extensions/loader-runtime.d.ts.map +1 -1
- package/dist/core/extensions/loader-runtime.js +199 -18
- package/dist/core/extensions/loader-runtime.js.map +1 -1
- package/dist/core/extensions/message-types.d.ts +7 -4
- package/dist/core/extensions/message-types.d.ts.map +1 -1
- package/dist/core/extensions/message-types.js.map +1 -1
- package/dist/core/extensions/provider-types.d.ts +9 -4
- package/dist/core/extensions/provider-types.d.ts.map +1 -1
- package/dist/core/extensions/provider-types.js.map +1 -1
- package/dist/core/extensions/runner-context.d.ts +2 -0
- package/dist/core/extensions/runner-context.d.ts.map +1 -1
- package/dist/core/extensions/runner-context.js +4 -0
- package/dist/core/extensions/runner-context.js.map +1 -1
- package/dist/core/extensions/runner.d.ts +1 -0
- package/dist/core/extensions/runner.d.ts.map +1 -1
- package/dist/core/extensions/runner.js +28 -20
- package/dist/core/extensions/runner.js.map +1 -1
- package/dist/core/extensions/runtime-types.d.ts +25 -0
- package/dist/core/extensions/runtime-types.d.ts.map +1 -1
- package/dist/core/extensions/runtime-types.js.map +1 -1
- package/dist/core/extensions/tool-types.d.ts +7 -3
- package/dist/core/extensions/tool-types.d.ts.map +1 -1
- package/dist/core/extensions/tool-types.js.map +1 -1
- package/dist/core/extensions/ui-types.d.ts +14 -4
- package/dist/core/extensions/ui-types.d.ts.map +1 -1
- package/dist/core/extensions/ui-types.js.map +1 -1
- package/dist/core/fallback-models.d.ts +37 -0
- package/dist/core/fallback-models.d.ts.map +1 -0
- package/dist/core/fallback-models.js +48 -0
- package/dist/core/fallback-models.js.map +1 -0
- package/dist/core/flattened-tool-arguments.d.ts +4 -7
- package/dist/core/flattened-tool-arguments.d.ts.map +1 -1
- package/dist/core/flattened-tool-arguments.js +4 -7
- package/dist/core/flattened-tool-arguments.js.map +1 -1
- package/dist/core/http-dispatcher.d.ts.map +1 -1
- package/dist/core/http-dispatcher.js +0 -5
- package/dist/core/http-dispatcher.js.map +1 -1
- package/dist/core/messages.d.ts +14 -2
- package/dist/core/messages.d.ts.map +1 -1
- package/dist/core/messages.js +28 -4
- package/dist/core/messages.js.map +1 -1
- package/dist/core/model-capabilities.d.ts +18 -0
- package/dist/core/model-capabilities.d.ts.map +1 -0
- package/dist/core/model-capabilities.js +23 -0
- package/dist/core/model-capabilities.js.map +1 -0
- package/dist/core/model-registry-auth.d.ts.map +1 -1
- package/dist/core/model-registry-auth.js +0 -2
- package/dist/core/model-registry-auth.js.map +1 -1
- package/dist/core/model-registry-builtins.d.ts +0 -2
- package/dist/core/model-registry-builtins.d.ts.map +1 -1
- package/dist/core/model-registry-builtins.js +9 -76
- package/dist/core/model-registry-builtins.js.map +1 -1
- package/dist/core/model-registry-custom-loader.d.ts.map +1 -1
- package/dist/core/model-registry-custom-loader.js +1 -12
- package/dist/core/model-registry-custom-loader.js.map +1 -1
- package/dist/core/model-registry-dynamic.d.ts.map +1 -1
- package/dist/core/model-registry-dynamic.js +3 -15
- package/dist/core/model-registry-dynamic.js.map +1 -1
- package/dist/core/model-registry-extension-refresh.d.ts +23 -0
- package/dist/core/model-registry-extension-refresh.d.ts.map +1 -0
- package/dist/core/model-registry-extension-refresh.js +32 -0
- package/dist/core/model-registry-extension-refresh.js.map +1 -0
- package/dist/core/model-registry-schemas.d.ts +118 -9
- package/dist/core/model-registry-schemas.d.ts.map +1 -1
- package/dist/core/model-registry-schemas.js +10 -3
- package/dist/core/model-registry-schemas.js.map +1 -1
- package/dist/core/model-registry-types.d.ts +5 -5
- package/dist/core/model-registry-types.d.ts.map +1 -1
- package/dist/core/model-registry-types.js.map +1 -1
- package/dist/core/model-registry-validation.d.ts +7 -0
- package/dist/core/model-registry-validation.d.ts.map +1 -0
- package/dist/core/model-registry-validation.js +12 -0
- package/dist/core/model-registry-validation.js.map +1 -0
- package/dist/core/model-registry.d.ts +5 -3
- package/dist/core/model-registry.d.ts.map +1 -1
- package/dist/core/model-registry.js +34 -33
- package/dist/core/model-registry.js.map +1 -1
- package/dist/core/model-resolver-defaults.d.ts.map +1 -1
- package/dist/core/model-resolver-defaults.js +0 -1
- package/dist/core/model-resolver-defaults.js.map +1 -1
- package/dist/core/model-resolver-initial.d.ts.map +1 -1
- package/dist/core/model-resolver-initial.js +9 -0
- package/dist/core/model-resolver-initial.js.map +1 -1
- package/dist/core/model-resolver-patterns.d.ts.map +1 -1
- package/dist/core/model-resolver-patterns.js +0 -2
- package/dist/core/model-resolver-patterns.js.map +1 -1
- package/dist/core/model-resolver-scope.d.ts +2 -0
- package/dist/core/model-resolver-scope.d.ts.map +1 -1
- package/dist/core/model-resolver-scope.js +18 -4
- package/dist/core/model-resolver-scope.js.map +1 -1
- package/dist/core/model-resolver-types.d.ts +2 -0
- package/dist/core/model-resolver-types.d.ts.map +1 -1
- package/dist/core/model-resolver-types.js.map +1 -1
- package/dist/core/oauth-provider-bridge.d.ts +21 -0
- package/dist/core/oauth-provider-bridge.d.ts.map +1 -1
- package/dist/core/oauth-provider-bridge.js +68 -7
- package/dist/core/oauth-provider-bridge.js.map +1 -1
- package/dist/core/package-manager-auto-resources.d.ts.map +1 -1
- package/dist/core/package-manager-auto-resources.js +12 -4
- package/dist/core/package-manager-auto-resources.js.map +1 -1
- package/dist/core/package-manager-resolver.d.ts.map +1 -1
- package/dist/core/package-manager-resolver.js +42 -11
- package/dist/core/package-manager-resolver.js.map +1 -1
- package/dist/core/package-manager-types.d.ts +2 -0
- package/dist/core/package-manager-types.d.ts.map +1 -1
- package/dist/core/package-manager-types.js.map +1 -1
- package/dist/core/package-manager.d.ts +1 -1
- package/dist/core/package-manager.d.ts.map +1 -1
- package/dist/core/package-manager.js.map +1 -1
- package/dist/core/remote-catalog-provider.d.ts +1 -1
- package/dist/core/remote-catalog-provider.d.ts.map +1 -1
- package/dist/core/remote-catalog-provider.js +17 -11
- package/dist/core/remote-catalog-provider.js.map +1 -1
- package/dist/core/resource-loader-assets.d.ts.map +1 -1
- package/dist/core/resource-loader-assets.js +30 -4
- package/dist/core/resource-loader-assets.js.map +1 -1
- package/dist/core/resource-loader-context-files.d.ts.map +1 -1
- package/dist/core/resource-loader-context-files.js +3 -1
- package/dist/core/resource-loader-context-files.js.map +1 -1
- package/dist/core/resource-loader-core.d.ts +2 -1
- package/dist/core/resource-loader-core.d.ts.map +1 -1
- package/dist/core/resource-loader-core.js +3 -0
- package/dist/core/resource-loader-core.js.map +1 -1
- package/dist/core/resource-loader-extensions.d.ts +1 -0
- package/dist/core/resource-loader-extensions.d.ts.map +1 -1
- package/dist/core/resource-loader-extensions.js +120 -7
- package/dist/core/resource-loader-extensions.js.map +1 -1
- package/dist/core/resource-loader-package-resources.d.ts.map +1 -1
- package/dist/core/resource-loader-package-resources.js +14 -1
- package/dist/core/resource-loader-package-resources.js.map +1 -1
- package/dist/core/resource-loader-reload.d.ts.map +1 -1
- package/dist/core/resource-loader-reload.js +2 -1
- package/dist/core/resource-loader-reload.js.map +1 -1
- package/dist/core/resource-loader-source-info.d.ts.map +1 -1
- package/dist/core/resource-loader-source-info.js +6 -3
- package/dist/core/resource-loader-source-info.js.map +1 -1
- package/dist/core/sdk-types.d.ts +11 -10
- package/dist/core/sdk-types.d.ts.map +1 -1
- package/dist/core/sdk-types.js.map +1 -1
- package/dist/core/sdk.d.ts +1 -0
- package/dist/core/sdk.d.ts.map +1 -1
- package/dist/core/sdk.js +13 -84
- package/dist/core/sdk.js.map +1 -1
- package/dist/core/session-manager-core.d.ts +3 -3
- package/dist/core/session-manager-core.d.ts.map +1 -1
- package/dist/core/session-manager-core.js +18 -25
- package/dist/core/session-manager-core.js.map +1 -1
- package/dist/core/session-manager-entries.d.ts +2 -5
- package/dist/core/session-manager-entries.d.ts.map +1 -1
- package/dist/core/session-manager-entries.js +2 -8
- package/dist/core/session-manager-entries.js.map +1 -1
- package/dist/core/session-manager-history.d.ts +3 -3
- package/dist/core/session-manager-history.d.ts.map +1 -1
- package/dist/core/session-manager-history.js +49 -27
- package/dist/core/session-manager-history.js.map +1 -1
- package/dist/core/session-manager-storage.d.ts +6 -0
- package/dist/core/session-manager-storage.d.ts.map +1 -1
- package/dist/core/session-manager-storage.js +38 -5
- package/dist/core/session-manager-storage.js.map +1 -1
- package/dist/core/session-manager-types.d.ts +6 -6
- package/dist/core/session-manager-types.d.ts.map +1 -1
- package/dist/core/session-manager-types.js.map +1 -1
- package/dist/core/session-manager.d.ts +1 -1
- package/dist/core/session-manager.d.ts.map +1 -1
- package/dist/core/session-manager.js.map +1 -1
- package/dist/core/settings-manager-basic-accessors.d.ts +0 -4
- package/dist/core/settings-manager-basic-accessors.d.ts.map +1 -1
- package/dist/core/settings-manager-basic-accessors.js +0 -50
- package/dist/core/settings-manager-basic-accessors.js.map +1 -1
- package/dist/core/settings-manager-core.d.ts +2 -4
- package/dist/core/settings-manager-core.d.ts.map +1 -1
- package/dist/core/settings-manager-core.js +5 -51
- package/dist/core/settings-manager-core.js.map +1 -1
- package/dist/core/settings-manager.d.ts +1 -1
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/core/settings-storage.d.ts +3 -1
- package/dist/core/settings-storage.d.ts.map +1 -1
- package/dist/core/settings-storage.js +22 -0
- package/dist/core/settings-storage.js.map +1 -1
- package/dist/core/settings-types.d.ts +2 -4
- package/dist/core/settings-types.d.ts.map +1 -1
- package/dist/core/settings-types.js.map +1 -1
- package/dist/core/slash-commands.d.ts.map +1 -1
- package/dist/core/slash-commands.js +69 -23
- package/dist/core/slash-commands.js.map +1 -1
- package/dist/core/source-info.d.ts +3 -1
- package/dist/core/source-info.d.ts.map +1 -1
- package/dist/core/source-info.js +2 -0
- package/dist/core/source-info.js.map +1 -1
- package/dist/core/system-prompt.d.ts.map +1 -1
- package/dist/core/system-prompt.js +11 -0
- package/dist/core/system-prompt.js.map +1 -1
- package/dist/core/tools/ask-user-question/ask-user-question.js +1 -1
- package/dist/core/tools/ask-user-question/ask-user-question.js.map +1 -1
- package/dist/core/tools/bash-session-environment.d.ts +13 -0
- package/dist/core/tools/bash-session-environment.d.ts.map +1 -0
- package/dist/core/tools/bash-session-environment.js +35 -0
- package/dist/core/tools/bash-session-environment.js.map +1 -0
- package/dist/core/tools/bash.d.ts +4 -1
- package/dist/core/tools/bash.d.ts.map +1 -1
- package/dist/core/tools/bash.js +16 -8
- package/dist/core/tools/bash.js.map +1 -1
- package/dist/core/tools/tool-definition-wrapper.d.ts +3 -0
- package/dist/core/tools/tool-definition-wrapper.d.ts.map +1 -1
- package/dist/core/tools/tool-definition-wrapper.js +10 -2
- package/dist/core/tools/tool-definition-wrapper.js.map +1 -1
- package/dist/extensions/index.js +1 -1
- package/dist/extensions/index.js.map +1 -1
- package/dist/extensions/llama/provider.d.ts +3 -2
- package/dist/extensions/llama/provider.d.ts.map +1 -1
- package/dist/extensions/llama/provider.js +9 -3
- package/dist/extensions/llama/provider.js.map +1 -1
- package/dist/index-extensions.d.ts +1 -1
- package/dist/index-extensions.d.ts.map +1 -1
- package/dist/index-extensions.js.map +1 -1
- package/dist/index.d.ts +2 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/dist/main-session-options.d.ts.map +1 -1
- package/dist/main-session-options.js +0 -4
- package/dist/main-session-options.js.map +1 -1
- package/dist/main-session.d.ts.map +1 -1
- package/dist/main-session.js +2 -1
- package/dist/main-session.js.map +1 -1
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +1 -17
- package/dist/main.js.map +1 -1
- package/dist/modes/index.d.ts +1 -1
- package/dist/modes/index.d.ts.map +1 -1
- package/dist/modes/index.js.map +1 -1
- package/dist/modes/interactive/chat-input-actions.d.ts +1 -1
- package/dist/modes/interactive/chat-input-actions.d.ts.map +1 -1
- package/dist/modes/interactive/chat-input-actions.js +14 -96
- package/dist/modes/interactive/chat-input-actions.js.map +1 -1
- package/dist/modes/interactive/components/atomic-banner.d.ts +9 -8
- package/dist/modes/interactive/components/atomic-banner.d.ts.map +1 -1
- package/dist/modes/interactive/components/atomic-banner.js +68 -24
- package/dist/modes/interactive/components/atomic-banner.js.map +1 -1
- package/dist/modes/interactive/components/atomic-working-status.d.ts +52 -0
- package/dist/modes/interactive/components/atomic-working-status.d.ts.map +1 -0
- package/dist/modes/interactive/components/atomic-working-status.js +202 -0
- package/dist/modes/interactive/components/atomic-working-status.js.map +1 -0
- package/dist/modes/interactive/components/chat-message-renderer.js +1 -1
- package/dist/modes/interactive/components/chat-message-renderer.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-actions.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-actions.js +99 -7
- package/dist/modes/interactive/components/chat-session-host-actions.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-editor.js +3 -3
- package/dist/modes/interactive/components/chat-session-host-editor.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-events.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-events.js +52 -9
- package/dist/modes/interactive/components/chat-session-host-events.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-rendering.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-rendering.js +23 -7
- package/dist/modes/interactive/components/chat-session-host-rendering.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-runtime.d.ts +2 -0
- package/dist/modes/interactive/components/chat-session-host-runtime.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-runtime.js +67 -18
- package/dist/modes/interactive/components/chat-session-host-runtime.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-state.d.ts +9 -0
- package/dist/modes/interactive/components/chat-session-host-state.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-state.js +5 -0
- package/dist/modes/interactive/components/chat-session-host-state.js.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-types.d.ts +10 -0
- package/dist/modes/interactive/components/chat-session-host-types.d.ts.map +1 -1
- package/dist/modes/interactive/components/chat-session-host-types.js.map +1 -1
- package/dist/modes/interactive/components/compaction-boundary-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/compaction-boundary-message.js +2 -1
- package/dist/modes/interactive/components/compaction-boundary-message.js.map +1 -1
- package/dist/modes/interactive/components/custom-message.d.ts +3 -1
- package/dist/modes/interactive/components/custom-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/custom-message.js +9 -2
- package/dist/modes/interactive/components/custom-message.js.map +1 -1
- package/dist/modes/interactive/components/extension-editor.d.ts +3 -2
- package/dist/modes/interactive/components/extension-editor.d.ts.map +1 -1
- package/dist/modes/interactive/components/extension-editor.js +14 -43
- package/dist/modes/interactive/components/extension-editor.js.map +1 -1
- package/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/scoped-models-selector.js +18 -13
- package/dist/modes/interactive/components/scoped-models-selector.js.map +1 -1
- package/dist/modes/interactive/components/startup-identity.d.ts +22 -0
- package/dist/modes/interactive/components/startup-identity.d.ts.map +1 -0
- package/dist/modes/interactive/components/startup-identity.js +58 -0
- package/dist/modes/interactive/components/startup-identity.js.map +1 -0
- package/dist/modes/interactive/components/tree-selector-content.d.ts.map +1 -1
- package/dist/modes/interactive/components/tree-selector-content.js +0 -6
- package/dist/modes/interactive/components/tree-selector-content.js.map +1 -1
- package/dist/modes/interactive/components/tree-selector-model.d.ts.map +1 -1
- package/dist/modes/interactive/components/tree-selector-model.js +0 -1
- package/dist/modes/interactive/components/tree-selector-model.js.map +1 -1
- package/dist/modes/interactive/components/working-status.d.ts +5 -11
- package/dist/modes/interactive/components/working-status.d.ts.map +1 -1
- package/dist/modes/interactive/components/working-status.js +14 -15
- package/dist/modes/interactive/components/working-status.js.map +1 -1
- package/dist/modes/interactive/external-editor.d.ts +23 -0
- package/dist/modes/interactive/external-editor.d.ts.map +1 -0
- package/dist/modes/interactive/external-editor.js +120 -0
- package/dist/modes/interactive/external-editor.js.map +1 -0
- package/dist/modes/interactive/interactive-agent-events.js +25 -20
- package/dist/modes/interactive/interactive-agent-events.js.map +1 -1
- package/dist/modes/interactive/interactive-auth-login.js +16 -6
- package/dist/modes/interactive/interactive-auth-login.js.map +1 -1
- package/dist/modes/interactive/interactive-auth-routing.js +3 -0
- package/dist/modes/interactive/interactive-auth-routing.js.map +1 -1
- package/dist/modes/interactive/interactive-bash-compact.d.ts +2 -1
- package/dist/modes/interactive/interactive-bash-compact.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-bash-compact.js +8 -0
- package/dist/modes/interactive/interactive-bash-compact.js.map +1 -1
- package/dist/modes/interactive/interactive-deferred-startup.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-deferred-startup.js +49 -19
- package/dist/modes/interactive/interactive-deferred-startup.js.map +1 -1
- package/dist/modes/interactive/interactive-editor-actions.js +4 -3
- package/dist/modes/interactive/interactive-editor-actions.js.map +1 -1
- package/dist/modes/interactive/interactive-extension-dialogs.js +1 -1
- package/dist/modes/interactive/interactive-extension-dialogs.js.map +1 -1
- package/dist/modes/interactive/interactive-extension-runtime.js +3 -2
- package/dist/modes/interactive/interactive-extension-runtime.js.map +1 -1
- package/dist/modes/interactive/interactive-initial-session-binding.d.ts +4 -0
- package/dist/modes/interactive/interactive-initial-session-binding.d.ts.map +1 -0
- package/dist/modes/interactive/interactive-initial-session-binding.js +23 -0
- package/dist/modes/interactive/interactive-initial-session-binding.js.map +1 -0
- package/dist/modes/interactive/interactive-input-handling.d.ts +2 -1
- package/dist/modes/interactive/interactive-input-handling.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-input-handling.js +27 -51
- package/dist/modes/interactive/interactive-input-handling.js.map +1 -1
- package/dist/modes/interactive/interactive-mode-base.d.ts +11 -7
- package/dist/modes/interactive/interactive-mode-base.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode-base.js +14 -6
- package/dist/modes/interactive/interactive-mode-base.js.map +1 -1
- package/dist/modes/interactive/interactive-mode-deps.d.ts +2 -4
- package/dist/modes/interactive/interactive-mode-deps.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode-deps.js +2 -4
- package/dist/modes/interactive/interactive-mode-deps.js.map +1 -1
- package/dist/modes/interactive/interactive-mode-surface.d.ts +9 -8
- package/dist/modes/interactive/interactive-mode-surface.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode-surface.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts +1 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +1 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/dist/modes/interactive/interactive-model-catalog-startup.d.ts +2 -3
- package/dist/modes/interactive/interactive-model-catalog-startup.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-model-catalog-startup.js +3 -6
- package/dist/modes/interactive/interactive-model-catalog-startup.js.map +1 -1
- package/dist/modes/interactive/interactive-model-routing.js +26 -97
- package/dist/modes/interactive/interactive-model-routing.js.map +1 -1
- package/dist/modes/interactive/interactive-pause.d.ts +4 -0
- package/dist/modes/interactive/interactive-pause.d.ts.map +1 -0
- package/dist/modes/interactive/interactive-pause.js +8 -0
- package/dist/modes/interactive/interactive-pause.js.map +1 -0
- package/dist/modes/interactive/interactive-process-lifecycle.js +5 -4
- package/dist/modes/interactive/interactive-process-lifecycle.js.map +1 -1
- package/dist/modes/interactive/interactive-prompt-turn.d.ts +2 -0
- package/dist/modes/interactive/interactive-prompt-turn.d.ts.map +1 -0
- package/dist/modes/interactive/interactive-prompt-turn.js +41 -0
- package/dist/modes/interactive/interactive-prompt-turn.js.map +1 -0
- package/dist/modes/interactive/interactive-render-chat.js +20 -8
- package/dist/modes/interactive/interactive-render-chat.js.map +1 -1
- package/dist/modes/interactive/interactive-resource-paths.js +11 -2
- package/dist/modes/interactive/interactive-resource-paths.js.map +1 -1
- package/dist/modes/interactive/interactive-resource-rendering.js +99 -0
- package/dist/modes/interactive/interactive-resource-rendering.js.map +1 -1
- package/dist/modes/interactive/interactive-session-runtime.js +1 -1
- package/dist/modes/interactive/interactive-session-runtime.js.map +1 -1
- package/dist/modes/interactive/interactive-slash-commands.js +1 -1
- package/dist/modes/interactive/interactive-slash-commands.js.map +1 -1
- package/dist/modes/interactive/interactive-startup-chat-container.d.ts +20 -0
- package/dist/modes/interactive/interactive-startup-chat-container.d.ts.map +1 -0
- package/dist/modes/interactive/interactive-startup-chat-container.js +26 -0
- package/dist/modes/interactive/interactive-startup-chat-container.js.map +1 -0
- package/dist/modes/interactive/interactive-startup.d.ts +1 -1
- package/dist/modes/interactive/interactive-startup.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-startup.js +30 -25
- package/dist/modes/interactive/interactive-startup.js.map +1 -1
- package/dist/modes/interactive/interactive-summarization-retry-events.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-summarization-retry-events.js +9 -3
- package/dist/modes/interactive/interactive-summarization-retry-events.js.map +1 -1
- package/dist/modes/interactive/theme/catppuccin-frappe.json +1 -1
- package/dist/modes/interactive/theme/catppuccin-latte.json +1 -1
- package/dist/modes/interactive/theme/catppuccin-macchiato.json +1 -1
- package/dist/modes/interactive/theme/catppuccin-mocha.json +9 -1
- package/dist/modes/interactive/theme/dark.json +1 -1
- package/dist/modes/interactive/theme/light.json +1 -1
- package/dist/modes/interactive/theme/theme-class.d.ts +4 -0
- package/dist/modes/interactive/theme/theme-class.d.ts.map +1 -1
- package/dist/modes/interactive/theme/theme-class.js +7 -0
- package/dist/modes/interactive/theme/theme-class.js.map +1 -1
- package/dist/modes/interactive/theme/theme-loading.d.ts.map +1 -1
- package/dist/modes/interactive/theme/theme-loading.js +4 -0
- package/dist/modes/interactive/theme/theme-loading.js.map +1 -1
- package/dist/modes/interactive/theme/theme-schema.d.ts +32 -0
- package/dist/modes/interactive/theme/theme-schema.d.ts.map +1 -1
- package/dist/modes/interactive/theme/theme-schema.js +8 -0
- package/dist/modes/interactive/theme/theme-schema.js.map +1 -1
- package/dist/modes/interactive/theme/theme-schema.json +15 -2
- package/dist/modes/interactive/whimsical-messages.d.ts +1 -0
- package/dist/modes/interactive/whimsical-messages.d.ts.map +1 -1
- package/dist/modes/interactive/whimsical-messages.js +2 -2
- package/dist/modes/interactive/whimsical-messages.js.map +1 -1
- package/dist/modes/interactive-engine/create-isolated-runtime.d.ts.map +1 -1
- package/dist/modes/interactive-engine/create-isolated-runtime.js +3 -1
- package/dist/modes/interactive-engine/create-isolated-runtime.js.map +1 -1
- package/dist/modes/interactive-engine/engine-args.d.ts.map +1 -1
- package/dist/modes/interactive-engine/engine-args.js +0 -1
- package/dist/modes/interactive-engine/engine-args.js.map +1 -1
- package/dist/modes/interactive-engine/engine-custom-ui.d.ts.map +1 -1
- package/dist/modes/interactive-engine/engine-custom-ui.js +5 -17
- package/dist/modes/interactive-engine/engine-custom-ui.js.map +1 -1
- package/dist/modes/interactive-engine/engine-render-service.d.ts.map +1 -1
- package/dist/modes/interactive-engine/engine-render-service.js +8 -19
- package/dist/modes/interactive-engine/engine-render-service.js.map +1 -1
- package/dist/modes/interactive-engine/extension-ui-bridge.d.ts +2 -0
- package/dist/modes/interactive-engine/extension-ui-bridge.d.ts.map +1 -1
- package/dist/modes/interactive-engine/extension-ui-bridge.js +3 -0
- package/dist/modes/interactive-engine/extension-ui-bridge.js.map +1 -1
- package/dist/modes/interactive-engine/isolated-auth.d.ts +10 -0
- package/dist/modes/interactive-engine/isolated-auth.d.ts.map +1 -0
- package/dist/modes/interactive-engine/isolated-auth.js +14 -0
- package/dist/modes/interactive-engine/isolated-auth.js.map +1 -0
- package/dist/modes/interactive-engine/isolated-runtime.d.ts +9 -1
- package/dist/modes/interactive-engine/isolated-runtime.d.ts.map +1 -1
- package/dist/modes/interactive-engine/isolated-runtime.js +46 -34
- package/dist/modes/interactive-engine/isolated-runtime.js.map +1 -1
- package/dist/modes/interactive-engine/protocol.d.ts +1 -1
- package/dist/modes/interactive-engine/protocol.d.ts.map +1 -1
- package/dist/modes/interactive-engine/protocol.js +3 -10
- package/dist/modes/interactive-engine/protocol.js.map +1 -1
- package/dist/modes/interactive-engine/remote-model-catalog.d.ts +1 -0
- package/dist/modes/interactive-engine/remote-model-catalog.d.ts.map +1 -1
- package/dist/modes/interactive-engine/remote-model-catalog.js +10 -1
- package/dist/modes/interactive-engine/remote-model-catalog.js.map +1 -1
- package/dist/modes/interactive-engine/remote-queue-pause.d.ts +13 -0
- package/dist/modes/interactive-engine/remote-queue-pause.d.ts.map +1 -0
- package/dist/modes/interactive-engine/remote-queue-pause.js +38 -0
- package/dist/modes/interactive-engine/remote-queue-pause.js.map +1 -0
- package/dist/modes/interactive-engine/remote-renderer.d.ts +3 -1
- package/dist/modes/interactive-engine/remote-renderer.d.ts.map +1 -1
- package/dist/modes/interactive-engine/remote-renderer.js +4 -1
- package/dist/modes/interactive-engine/remote-renderer.js.map +1 -1
- package/dist/modes/print-mode.d.ts.map +1 -1
- package/dist/modes/print-mode.js +5 -0
- package/dist/modes/print-mode.js.map +1 -1
- package/dist/modes/rpc/jsonl.d.ts +2 -7
- package/dist/modes/rpc/jsonl.d.ts.map +1 -1
- package/dist/modes/rpc/jsonl.js +7 -24
- package/dist/modes/rpc/jsonl.js.map +1 -1
- package/dist/modes/rpc/queued-writer.d.ts +19 -0
- package/dist/modes/rpc/queued-writer.d.ts.map +1 -0
- package/dist/modes/rpc/{bounded-writer.js → queued-writer.js} +7 -30
- package/dist/modes/rpc/queued-writer.js.map +1 -0
- package/dist/modes/rpc/rpc-bash-request-owners.d.ts +24 -0
- package/dist/modes/rpc/rpc-bash-request-owners.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-bash-request-owners.js +45 -0
- package/dist/modes/rpc/rpc-bash-request-owners.js.map +1 -0
- package/dist/modes/rpc/rpc-client-api.d.ts +8 -5
- package/dist/modes/rpc/rpc-client-api.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-client-api.js +10 -11
- package/dist/modes/rpc/rpc-client-api.js.map +1 -1
- package/dist/modes/rpc/rpc-client-process.d.ts +1 -4
- package/dist/modes/rpc/rpc-client-process.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-client-process.js +2 -14
- package/dist/modes/rpc/rpc-client-process.js.map +1 -1
- package/dist/modes/rpc/rpc-client.d.ts +8 -4
- package/dist/modes/rpc/rpc-client.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-client.js +21 -30
- package/dist/modes/rpc/rpc-client.js.map +1 -1
- package/dist/modes/rpc/rpc-command-handler.d.ts +7 -4
- package/dist/modes/rpc/rpc-command-handler.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-command-handler.js +76 -93
- package/dist/modes/rpc/rpc-command-handler.js.map +1 -1
- package/dist/modes/rpc/rpc-input-scheduler.d.ts +3 -3
- package/dist/modes/rpc/rpc-input-scheduler.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-input-scheduler.js +7 -4
- package/dist/modes/rpc/rpc-input-scheduler.js.map +1 -1
- package/dist/modes/rpc/rpc-mode.d.ts +1 -1
- package/dist/modes/rpc/rpc-mode.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-mode.js +5 -5
- package/dist/modes/rpc/rpc-mode.js.map +1 -1
- package/dist/modes/rpc/rpc-model-fallback-prompt.d.ts +4 -0
- package/dist/modes/rpc/rpc-model-fallback-prompt.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-model-fallback-prompt.js +11 -0
- package/dist/modes/rpc/rpc-model-fallback-prompt.js.map +1 -0
- package/dist/modes/rpc/rpc-oauth-client.d.ts +22 -0
- package/dist/modes/rpc/rpc-oauth-client.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-oauth-client.js +74 -0
- package/dist/modes/rpc/rpc-oauth-client.js.map +1 -0
- package/dist/modes/rpc/rpc-oauth-interaction.d.ts +9 -0
- package/dist/modes/rpc/rpc-oauth-interaction.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-oauth-interaction.js +49 -0
- package/dist/modes/rpc/rpc-oauth-interaction.js.map +1 -0
- package/dist/modes/rpc/rpc-output-buffer.d.ts +2 -1
- package/dist/modes/rpc/rpc-output-buffer.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-output-buffer.js +4 -39
- package/dist/modes/rpc/rpc-output-buffer.js.map +1 -1
- package/dist/modes/rpc/rpc-provider-auth.d.ts +23 -0
- package/dist/modes/rpc/rpc-provider-auth.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-provider-auth.js +145 -0
- package/dist/modes/rpc/rpc-provider-auth.js.map +1 -0
- package/dist/modes/rpc/rpc-responses.d.ts +0 -1
- package/dist/modes/rpc/rpc-responses.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-responses.js +0 -14
- package/dist/modes/rpc/rpc-responses.js.map +1 -1
- package/dist/modes/rpc/rpc-types.d.ts +83 -27
- package/dist/modes/rpc/rpc-types.d.ts.map +1 -1
- package/dist/modes/rpc/rpc-types.js.map +1 -1
- package/dist/utils/clipboard.d.ts.map +1 -1
- package/dist/utils/clipboard.js +21 -8
- package/dist/utils/clipboard.js.map +1 -1
- package/dist/utils/version-check.d.ts.map +1 -1
- package/dist/utils/version-check.js +3 -1
- package/dist/utils/version-check.js.map +1 -1
- package/docs/changelog.mdx +12 -1
- package/docs/compaction.md +101 -18
- package/docs/custom-provider.md +13 -4
- package/docs/docs.json +1 -0
- package/docs/environment-variables.md +37 -0
- package/docs/extensions.md +45 -9
- package/docs/index.md +1 -0
- package/docs/intercom.md +1 -1
- package/docs/json.md +4 -4
- package/docs/keybindings.md +4 -2
- package/docs/llama-cpp.md +3 -1
- package/docs/models.md +29 -43
- package/docs/providers.md +18 -24
- package/docs/quickstart.md +19 -16
- package/docs/rpc.md +38 -85
- package/docs/sdk.md +15 -22
- package/docs/session-format.md +2 -15
- package/docs/sessions.md +1 -1
- package/docs/settings.md +10 -15
- package/docs/skills.md +8 -0
- package/docs/subagents.md +24 -8
- package/docs/themes.md +10 -1
- package/docs/tui.md +3 -3
- package/docs/usage.md +30 -2
- package/docs/windows.md +1 -1
- package/docs/workflows.md +1128 -522
- package/examples/extensions/README.md +1 -1
- package/examples/extensions/handoff.ts +8 -1
- package/examples/extensions/message-renderer.ts +2 -2
- package/examples/extensions/summarize.ts +3 -0
- package/examples/extensions/working-indicator.ts +2 -2
- package/npm-shrinkwrap.json +40 -46
- package/package.json +9 -7
- package/dist/builtin/cursor/CHANGELOG.md +0 -281
- package/dist/builtin/cursor/LICENSE +0 -26
- package/dist/builtin/cursor/README.md +0 -24
- package/dist/builtin/cursor/index.ts +0 -9
- package/dist/builtin/cursor/package.json +0 -47
- package/dist/builtin/cursor/src/auth.ts +0 -352
- package/dist/builtin/cursor/src/catalog-cache.ts +0 -155
- package/dist/builtin/cursor/src/config.ts +0 -123
- package/dist/builtin/cursor/src/conversation-state.ts +0 -135
- package/dist/builtin/cursor/src/cursor-models-raw.json +0 -412
- package/dist/builtin/cursor/src/model-mapper.ts +0 -369
- package/dist/builtin/cursor/src/model-reference.ts +0 -282
- package/dist/builtin/cursor/src/models.ts +0 -54
- package/dist/builtin/cursor/src/native-loader.ts +0 -71
- package/dist/builtin/cursor/src/proto/README.md +0 -34
- package/dist/builtin/cursor/src/proto/agent_pb.ts +0 -15294
- package/dist/builtin/cursor/src/proto/protobuf-codec-base64.ts +0 -22
- package/dist/builtin/cursor/src/proto/protobuf-codec-json.ts +0 -44
- package/dist/builtin/cursor/src/proto/protobuf-codec-request.ts +0 -311
- package/dist/builtin/cursor/src/proto/protobuf-codec-wire.ts +0 -248
- package/dist/builtin/cursor/src/proto/protobuf-codec.ts +0 -200
- package/dist/builtin/cursor/src/provider.ts +0 -301
- package/dist/builtin/cursor/src/stream.ts +0 -494
- package/dist/builtin/cursor/src/transport-errors.ts +0 -74
- package/dist/builtin/cursor/src/transport-frame.ts +0 -56
- package/dist/builtin/cursor/src/transport-http2.ts +0 -122
- package/dist/builtin/cursor/src/transport-native-client.ts +0 -161
- package/dist/builtin/cursor/src/transport-run-stream.ts +0 -188
- package/dist/builtin/cursor/src/transport-timeouts.ts +0 -87
- package/dist/builtin/cursor/src/transport-types.ts +0 -143
- package/dist/builtin/cursor/src/transport.ts +0 -26
- package/dist/builtin/workflows/builtin/deep-research-codebase-runner.ts +0 -492
- package/dist/builtin/workflows/builtin/deep-research-codebase-utils.ts +0 -383
- package/dist/builtin/workflows/builtin/deep-research-codebase.d.ts +0 -35
- package/dist/builtin/workflows/builtin/deep-research-codebase.ts +0 -47
- package/dist/builtin/workflows/skills/impeccable/scripts/hook-before-edit.mjs +0 -516
- package/dist/core/context-window.d.ts +0 -54
- package/dist/core/context-window.d.ts.map +0 -1
- package/dist/core/context-window.js +0 -110
- package/dist/core/context-window.js.map +0 -1
- package/dist/core/copilot-anthropic-sse-repair.d.ts +0 -23
- package/dist/core/copilot-anthropic-sse-repair.d.ts.map +0 -1
- package/dist/core/copilot-anthropic-sse-repair.js +0 -340
- package/dist/core/copilot-anthropic-sse-repair.js.map +0 -1
- package/dist/core/copilot-errors.d.ts +0 -9
- package/dist/core/copilot-errors.d.ts.map +0 -1
- package/dist/core/copilot-errors.js +0 -32
- package/dist/core/copilot-errors.js.map +0 -1
- package/dist/core/copilot-gemini-payload-sanitizer.d.ts +0 -72
- package/dist/core/copilot-gemini-payload-sanitizer.d.ts.map +0 -1
- package/dist/core/copilot-gemini-payload-sanitizer.js +0 -296
- package/dist/core/copilot-gemini-payload-sanitizer.js.map +0 -1
- package/dist/core/copilot-gemini-reasoning.d.ts +0 -126
- package/dist/core/copilot-gemini-reasoning.d.ts.map +0 -1
- package/dist/core/copilot-gemini-reasoning.js +0 -265
- package/dist/core/copilot-gemini-reasoning.js.map +0 -1
- package/dist/core/copilot-gemini-tool-arguments.d.ts +0 -42
- package/dist/core/copilot-gemini-tool-arguments.d.ts.map +0 -1
- package/dist/core/copilot-gemini-tool-arguments.js +0 -159
- package/dist/core/copilot-gemini-tool-arguments.js.map +0 -1
- package/dist/core/copilot-hosts.d.ts +0 -12
- package/dist/core/copilot-hosts.d.ts.map +0 -1
- package/dist/core/copilot-hosts.js +0 -33
- package/dist/core/copilot-hosts.js.map +0 -1
- package/dist/core/copilot-model-catalog.d.ts +0 -114
- package/dist/core/copilot-model-catalog.d.ts.map +0 -1
- package/dist/core/copilot-model-catalog.js +0 -392
- package/dist/core/copilot-model-catalog.js.map +0 -1
- package/dist/core/copilot-model-static-fallbacks.d.ts +0 -43
- package/dist/core/copilot-model-static-fallbacks.d.ts.map +0 -1
- package/dist/core/copilot-model-static-fallbacks.js +0 -50
- package/dist/core/copilot-model-static-fallbacks.js.map +0 -1
- package/dist/core/copilot-model-synthesis.d.ts +0 -10
- package/dist/core/copilot-model-synthesis.d.ts.map +0 -1
- package/dist/core/copilot-model-synthesis.js +0 -91
- package/dist/core/copilot-model-synthesis.js.map +0 -1
- package/dist/modes/interactive/components/context-window-selector.d.ts +0 -53
- package/dist/modes/interactive/components/context-window-selector.d.ts.map +0 -1
- package/dist/modes/interactive/components/context-window-selector.js +0 -136
- package/dist/modes/interactive/components/context-window-selector.js.map +0 -1
- package/dist/modes/rpc/bounded-writer.d.ts +0 -27
- package/dist/modes/rpc/bounded-writer.d.ts.map +0 -1
- package/dist/modes/rpc/bounded-writer.js.map +0 -1
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
export const CURSOR_PROVIDER_ID = "cursor";
|
|
2
|
-
export const CURSOR_PROVIDER_NAME = "Cursor";
|
|
3
|
-
export const CURSOR_LOGIN_NAME = "Cursor (Experimental)";
|
|
4
|
-
export const CURSOR_API = "cursor-agent";
|
|
5
|
-
export const CURSOR_API_BASE_URL = "https://api2.cursor.sh";
|
|
6
|
-
export const CURSOR_WEB_BASE_URL = "https://cursor.com";
|
|
7
|
-
// Keep this in sync with Cursor CLI traffic if api2.cursor.sh starts rejecting
|
|
8
|
-
// requests after a Cursor client release. Capture the current CLI headers from
|
|
9
|
-
// a fresh Cursor login/model request and update this single constant.
|
|
10
|
-
export const CURSOR_CLIENT_VERSION = "cli-2026.01.09-231024f";
|
|
11
|
-
export const CURSOR_CLIENT_TYPE = "cli";
|
|
12
|
-
export const CURSOR_DEFAULT_MODEL_ID = "composer-2";
|
|
13
|
-
export const CURSOR_AUTH_POLL_PATH = "/auth/poll";
|
|
14
|
-
export const CURSOR_REFRESH_PATH = "/auth/exchange_user_api_key";
|
|
15
|
-
export const CURSOR_GET_USABLE_MODELS_PATH = "/agent.v1.AgentService/GetUsableModels";
|
|
16
|
-
export const CURSOR_RUN_PATH = "/agent.v1.AgentService/Run";
|
|
17
|
-
export const CURSOR_LOGIN_PATH = "/loginDeepControl";
|
|
18
|
-
export const CURSOR_OAUTH_EXPIRY_SKEW_MS = 5 * 60 * 1000;
|
|
19
|
-
export const CURSOR_DEFAULT_TOKEN_TTL_MS = 60 * 60 * 1000;
|
|
20
|
-
|
|
21
|
-
export type JsonPrimitive = string | number | boolean | null;
|
|
22
|
-
export type JsonValue = JsonPrimitive | JsonObject | JsonArray;
|
|
23
|
-
export interface JsonObject {
|
|
24
|
-
[key: string]: JsonValue;
|
|
25
|
-
}
|
|
26
|
-
export type JsonArray = JsonValue[];
|
|
27
|
-
|
|
28
|
-
export interface CursorRpcHeaders extends Record<string, string> {
|
|
29
|
-
readonly authorization: string;
|
|
30
|
-
readonly "content-type": string;
|
|
31
|
-
readonly te: string;
|
|
32
|
-
readonly "x-cursor-client-version": string;
|
|
33
|
-
readonly "x-cursor-client-type": string;
|
|
34
|
-
readonly "x-ghost-mode": string;
|
|
35
|
-
readonly "x-request-id": string;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export class CursorExperimentalProtocolError extends Error {
|
|
39
|
-
readonly code = "CURSOR_EXPERIMENTAL_PROTOCOL_ERROR";
|
|
40
|
-
|
|
41
|
-
constructor(message = "Cursor private protocol transport failed.") {
|
|
42
|
-
super(message);
|
|
43
|
-
this.name = "CursorExperimentalProtocolError";
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
export function createCursorExperimentalProtocolError(detail?: string): CursorExperimentalProtocolError {
|
|
48
|
-
return new CursorExperimentalProtocolError(
|
|
49
|
-
detail
|
|
50
|
-
? `Cursor protocol error: ${sanitizeDiagnosticText(detail)}`
|
|
51
|
-
: "Cursor protocol error: HTTP/2/protobuf transport failed.",
|
|
52
|
-
);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export function buildCursorRpcHeaders(accessToken: string, requestId: string, contentType: string): CursorRpcHeaders {
|
|
56
|
-
return {
|
|
57
|
-
authorization: `Bearer ${accessToken}`,
|
|
58
|
-
"content-type": contentType,
|
|
59
|
-
te: "trailers",
|
|
60
|
-
"x-cursor-client-version": CURSOR_CLIENT_VERSION,
|
|
61
|
-
"x-cursor-client-type": CURSOR_CLIENT_TYPE,
|
|
62
|
-
"x-ghost-mode": "true",
|
|
63
|
-
"x-request-id": requestId,
|
|
64
|
-
};
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
export function redactHeaders(headers: Record<string, string>): Record<string, string> {
|
|
68
|
-
const redacted: Record<string, string> = {};
|
|
69
|
-
for (const [key, value] of Object.entries(headers)) {
|
|
70
|
-
redacted[key] = key.toLowerCase() === "authorization" ? "[redacted]" : redactSensitiveText(value);
|
|
71
|
-
}
|
|
72
|
-
return redacted;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
export function redactSensitiveText(text: string, secrets: readonly string[] = []): string {
|
|
76
|
-
let redacted = text.replace(/authorization\s*[:=]\s*bearer\s+[^\s"']+/gi, "authorization: Bearer [redacted]");
|
|
77
|
-
redacted = redacted.replace(/bearer\s+(eyJ[a-zA-Z0-9_-]+\.[a-zA-Z0-9_-]+\.[a-zA-Z0-9_-]+)/gi, "Bearer [redacted]");
|
|
78
|
-
for (const secret of secrets) {
|
|
79
|
-
if (secret.length === 0) continue;
|
|
80
|
-
redacted = redacted.split(secret).join("[redacted]");
|
|
81
|
-
}
|
|
82
|
-
return redacted;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export function sanitizeDiagnosticText(text: string, secrets: readonly string[] = []): string {
|
|
86
|
-
return redactSensitiveText(text, secrets).slice(0, 1200);
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
export function isJsonObject(value: JsonValue): value is JsonObject {
|
|
90
|
-
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
export function readStringField(value: JsonObject, key: string): string | undefined {
|
|
94
|
-
const field = value[key];
|
|
95
|
-
return typeof field === "string" ? field : undefined;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
export function readNumberField(value: JsonObject, key: string): number | undefined {
|
|
99
|
-
const field = value[key];
|
|
100
|
-
return typeof field === "number" && Number.isFinite(field) ? field : undefined;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
export function readBooleanField(value: JsonObject, key: string): boolean | undefined {
|
|
104
|
-
const field = value[key];
|
|
105
|
-
return typeof field === "boolean" ? field : undefined;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
export function parseJsonObject(text: string): JsonObject | undefined {
|
|
109
|
-
try {
|
|
110
|
-
const parsed = JSON.parse(text) as JsonValue;
|
|
111
|
-
return isJsonObject(parsed) ? parsed : undefined;
|
|
112
|
-
} catch {
|
|
113
|
-
return undefined;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
export function parseJsonValue(text: string): JsonValue | undefined {
|
|
118
|
-
try {
|
|
119
|
-
return JSON.parse(text) as JsonValue;
|
|
120
|
-
} catch {
|
|
121
|
-
return undefined;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
@@ -1,135 +0,0 @@
|
|
|
1
|
-
import type { CursorRunStream, CursorToolCallMessage, CursorToolResultMessage, CursorTransportLifecycleSnapshot, CursorWriteOptions } from "./transport.js";
|
|
2
|
-
|
|
3
|
-
export interface CursorConversationSnapshot extends CursorTransportLifecycleSnapshot {
|
|
4
|
-
readonly activeTurns: number;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
export interface PendingCursorToolCall {
|
|
8
|
-
readonly toolCallId: string;
|
|
9
|
-
readonly toolName: string;
|
|
10
|
-
readonly execId?: string;
|
|
11
|
-
readonly execNumericId?: number;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
interface ActiveTurn {
|
|
15
|
-
readonly conversationId: string;
|
|
16
|
-
readonly stream: CursorRunStream;
|
|
17
|
-
readonly pendingTools: ReadonlyMap<string, PendingCursorToolCall>;
|
|
18
|
-
readonly abortCleanup?: () => void;
|
|
19
|
-
readonly idleTimer?: ReturnType<typeof setTimeout>;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export interface CursorPauseTurnOptions {
|
|
23
|
-
readonly signal?: AbortSignal;
|
|
24
|
-
readonly idleTimeoutMs?: number;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export type CursorResumeTurnOptions = CursorWriteOptions;
|
|
28
|
-
|
|
29
|
-
export class CursorConversationStateStore {
|
|
30
|
-
readonly #activeTurns = new Map<string, ActiveTurn>();
|
|
31
|
-
|
|
32
|
-
registerTurn(conversationId: string, stream: CursorRunStream): void {
|
|
33
|
-
const existing = this.#activeTurns.get(conversationId);
|
|
34
|
-
if (existing) this.replaceExistingTurn(existing, stream);
|
|
35
|
-
this.#activeTurns.set(conversationId, { conversationId, stream, pendingTools: new Map() });
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
pauseTurnForTools(conversationId: string, stream: CursorRunStream, toolCalls: readonly CursorToolCallMessage[], options: CursorPauseTurnOptions = {}): void {
|
|
39
|
-
const existing = this.#activeTurns.get(conversationId);
|
|
40
|
-
if (existing && existing.stream !== stream) this.replaceExistingTurn(existing, stream);
|
|
41
|
-
else if (existing) this.cleanupTurn(existing);
|
|
42
|
-
const pendingTools = new Map<string, PendingCursorToolCall>();
|
|
43
|
-
for (const toolCall of toolCalls) {
|
|
44
|
-
pendingTools.set(toolCall.id, {
|
|
45
|
-
toolCallId: toolCall.id,
|
|
46
|
-
toolName: toolCall.name,
|
|
47
|
-
...(toolCall.execId ? { execId: toolCall.execId } : {}),
|
|
48
|
-
...(toolCall.execNumericId !== undefined ? { execNumericId: toolCall.execNumericId } : {}),
|
|
49
|
-
});
|
|
50
|
-
}
|
|
51
|
-
let abortCleanup: (() => void) | undefined;
|
|
52
|
-
if (options.signal) {
|
|
53
|
-
const onAbort = (): void => this.cancelTurnBestEffort(conversationId);
|
|
54
|
-
options.signal.addEventListener("abort", onAbort, { once: true });
|
|
55
|
-
abortCleanup = () => options.signal?.removeEventListener("abort", onAbort);
|
|
56
|
-
}
|
|
57
|
-
const idleTimer = options.idleTimeoutMs && options.idleTimeoutMs > 0 ? setTimeout(() => this.cancelTurnBestEffort(conversationId), options.idleTimeoutMs) : undefined;
|
|
58
|
-
idleTimer?.unref?.();
|
|
59
|
-
this.#activeTurns.set(conversationId, { conversationId, stream, pendingTools, ...(abortCleanup ? { abortCleanup } : {}), ...(idleTimer ? { idleTimer } : {}) });
|
|
60
|
-
if (options.signal?.aborted) this.cancelTurnBestEffort(conversationId);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
async resumeTurnWithToolResults(conversationId: string, results: readonly CursorToolResultMessage[], options: CursorResumeTurnOptions = {}): Promise<CursorRunStream> {
|
|
64
|
-
const turn = this.#activeTurns.get(conversationId);
|
|
65
|
-
if (!turn) throw new Error(`Cursor has no paused tool turn for conversation ${conversationId}.`);
|
|
66
|
-
try {
|
|
67
|
-
for (const result of results) {
|
|
68
|
-
if (!turn.pendingTools.has(result.toolCallId)) throw new Error(`Cursor tool result ${result.toolCallId} does not match a paused tool call.`);
|
|
69
|
-
}
|
|
70
|
-
for (const result of results) {
|
|
71
|
-
const pending = turn.pendingTools.get(result.toolCallId);
|
|
72
|
-
if (!pending) throw new Error(`Cursor tool result ${result.toolCallId} does not match a paused tool call.`);
|
|
73
|
-
await turn.stream.writeToolResult({ ...result, execId: pending.execId, execNumericId: pending.execNumericId }, options);
|
|
74
|
-
}
|
|
75
|
-
if (this.#activeTurns.get(conversationId) !== turn) throw new Error(`Cursor paused tool turn for conversation ${conversationId} was cancelled before resume completed.`);
|
|
76
|
-
this.cleanupTurn(turn);
|
|
77
|
-
this.#activeTurns.set(conversationId, { conversationId, stream: turn.stream, pendingTools: new Map() });
|
|
78
|
-
return turn.stream;
|
|
79
|
-
} catch (error) {
|
|
80
|
-
if (this.#activeTurns.get(conversationId) === turn) await this.cancelSpecificTurn(turn).catch(() => undefined);
|
|
81
|
-
else this.cleanupTurn(turn);
|
|
82
|
-
throw error;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
completeTurn(conversationId: string): void {
|
|
87
|
-
const turn = this.#activeTurns.get(conversationId);
|
|
88
|
-
if (turn) this.cleanupTurn(turn);
|
|
89
|
-
this.#activeTurns.delete(conversationId);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
async cancelTurn(conversationId: string): Promise<void> {
|
|
93
|
-
const turn = this.#activeTurns.get(conversationId);
|
|
94
|
-
if (!turn) return;
|
|
95
|
-
await this.cancelSpecificTurn(turn);
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
async dispose(): Promise<void> {
|
|
99
|
-
const turns = [...this.#activeTurns.values()];
|
|
100
|
-
this.#activeTurns.clear();
|
|
101
|
-
await Promise.allSettled(turns.map(async (turn) => {
|
|
102
|
-
this.cleanupTurn(turn);
|
|
103
|
-
await turn.stream.cancel();
|
|
104
|
-
}));
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
private replaceExistingTurn(existing: ActiveTurn, replacementStream: CursorRunStream): void {
|
|
108
|
-
this.cleanupTurn(existing);
|
|
109
|
-
this.#activeTurns.delete(existing.conversationId);
|
|
110
|
-
if (existing.stream !== replacementStream) existing.stream.cancel().catch(() => undefined);
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
private cancelTurnBestEffort(conversationId: string): void {
|
|
114
|
-
this.cancelTurn(conversationId).catch(() => undefined);
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
private async cancelSpecificTurn(turn: ActiveTurn): Promise<void> {
|
|
118
|
-
this.cleanupTurn(turn);
|
|
119
|
-
if (this.#activeTurns.get(turn.conversationId) === turn) this.#activeTurns.delete(turn.conversationId);
|
|
120
|
-
await turn.stream.cancel();
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
private cleanupTurn(turn: ActiveTurn): void {
|
|
124
|
-
turn.abortCleanup?.();
|
|
125
|
-
if (turn.idleTimer) clearTimeout(turn.idleTimer);
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
get activeTurns(): number {
|
|
129
|
-
return this.#activeTurns.size;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
snapshot(transport: CursorTransportLifecycleSnapshot): CursorConversationSnapshot {
|
|
133
|
-
return { ...transport, activeTurns: this.#activeTurns.size };
|
|
134
|
-
}
|
|
135
|
-
}
|
|
@@ -1,412 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "claude-4-sonnet",
|
|
4
|
-
"name": "Sonnet 4",
|
|
5
|
-
"reasoning": false
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
"id": "claude-4-sonnet-1m",
|
|
9
|
-
"name": "Sonnet 4 1M",
|
|
10
|
-
"reasoning": false
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"id": "claude-4-sonnet-1m-thinking",
|
|
14
|
-
"name": "Sonnet 4 1M Thinking",
|
|
15
|
-
"reasoning": false
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"id": "claude-4-sonnet-thinking",
|
|
19
|
-
"name": "Sonnet 4 Thinking",
|
|
20
|
-
"reasoning": false
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"id": "claude-4.5-opus-high",
|
|
24
|
-
"name": "Opus 4.5",
|
|
25
|
-
"reasoning": false
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"id": "claude-4.5-opus-high-thinking",
|
|
29
|
-
"name": "Opus 4.5 Thinking",
|
|
30
|
-
"reasoning": false
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"id": "claude-4.5-sonnet",
|
|
34
|
-
"name": "Sonnet 4.5 1M",
|
|
35
|
-
"reasoning": false
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"id": "claude-4.5-sonnet-thinking",
|
|
39
|
-
"name": "Sonnet 4.5 1M Thinking",
|
|
40
|
-
"reasoning": false
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"id": "claude-4.6-opus-high",
|
|
44
|
-
"name": "Opus 4.6 1M",
|
|
45
|
-
"reasoning": false
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"id": "claude-4.6-opus-high-thinking",
|
|
49
|
-
"name": "Opus 4.6 1M Thinking",
|
|
50
|
-
"reasoning": false
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"id": "claude-4.6-opus-max",
|
|
54
|
-
"name": "Opus 4.6 1M Max",
|
|
55
|
-
"reasoning": false
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"id": "claude-4.6-opus-max-thinking",
|
|
59
|
-
"name": "Opus 4.6 1M Max Thinking",
|
|
60
|
-
"reasoning": false
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"id": "claude-4.6-sonnet-medium",
|
|
64
|
-
"name": "Sonnet 4.6 1M",
|
|
65
|
-
"reasoning": false
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"id": "claude-4.6-sonnet-medium-thinking",
|
|
69
|
-
"name": "Sonnet 4.6 1M Thinking",
|
|
70
|
-
"reasoning": false
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"id": "composer-1.5",
|
|
74
|
-
"name": "Composer 1.5",
|
|
75
|
-
"reasoning": false
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"id": "composer-2",
|
|
79
|
-
"name": "Composer 2",
|
|
80
|
-
"reasoning": false
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"id": "composer-2-fast",
|
|
84
|
-
"name": "Composer 2 Fast",
|
|
85
|
-
"reasoning": false
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
"id": "default",
|
|
89
|
-
"name": "Auto",
|
|
90
|
-
"reasoning": false
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"id": "gemini-3-flash",
|
|
94
|
-
"name": "Gemini 3 Flash",
|
|
95
|
-
"reasoning": false
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"id": "gemini-3.1-pro",
|
|
99
|
-
"name": "Gemini 3.1 Pro",
|
|
100
|
-
"reasoning": false
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
"id": "gpt-5-mini",
|
|
104
|
-
"name": "GPT-5 Mini",
|
|
105
|
-
"reasoning": false
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"id": "gpt-5.1",
|
|
109
|
-
"name": "GPT-5.1",
|
|
110
|
-
"reasoning": false
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"id": "gpt-5.1-codex-max-high",
|
|
114
|
-
"name": "GPT-5.1 Codex Max High",
|
|
115
|
-
"reasoning": false
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"id": "gpt-5.1-codex-max-high-fast",
|
|
119
|
-
"name": "GPT-5.1 Codex Max High Fast",
|
|
120
|
-
"reasoning": false
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"id": "gpt-5.1-codex-max-low",
|
|
124
|
-
"name": "GPT-5.1 Codex Max Low",
|
|
125
|
-
"reasoning": false
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"id": "gpt-5.1-codex-max-low-fast",
|
|
129
|
-
"name": "GPT-5.1 Codex Max Low Fast",
|
|
130
|
-
"reasoning": false
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"id": "gpt-5.1-codex-max-medium",
|
|
134
|
-
"name": "GPT-5.1 Codex Max",
|
|
135
|
-
"reasoning": false
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"id": "gpt-5.1-codex-max-medium-fast",
|
|
139
|
-
"name": "GPT-5.1 Codex Max Medium Fast",
|
|
140
|
-
"reasoning": false
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"id": "gpt-5.1-codex-max-xhigh",
|
|
144
|
-
"name": "GPT-5.1 Codex Max Extra High",
|
|
145
|
-
"reasoning": false
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"id": "gpt-5.1-codex-max-xhigh-fast",
|
|
149
|
-
"name": "GPT-5.1 Codex Max Extra High Fast",
|
|
150
|
-
"reasoning": false
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"id": "gpt-5.1-codex-mini",
|
|
154
|
-
"name": "GPT-5.1 Codex Mini",
|
|
155
|
-
"reasoning": false
|
|
156
|
-
},
|
|
157
|
-
{
|
|
158
|
-
"id": "gpt-5.1-codex-mini-high",
|
|
159
|
-
"name": "GPT-5.1 Codex Mini High",
|
|
160
|
-
"reasoning": false
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
"id": "gpt-5.1-codex-mini-low",
|
|
164
|
-
"name": "GPT-5.1 Codex Mini Low",
|
|
165
|
-
"reasoning": false
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"id": "gpt-5.1-high",
|
|
169
|
-
"name": "GPT-5.1 High",
|
|
170
|
-
"reasoning": false
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"id": "gpt-5.1-low",
|
|
174
|
-
"name": "GPT-5.1 Low",
|
|
175
|
-
"reasoning": false
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"id": "gpt-5.2",
|
|
179
|
-
"name": "GPT-5.2",
|
|
180
|
-
"reasoning": false
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"id": "gpt-5.2-codex",
|
|
184
|
-
"name": "GPT-5.2 Codex",
|
|
185
|
-
"reasoning": false
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"id": "gpt-5.2-codex-fast",
|
|
189
|
-
"name": "GPT-5.2 Codex Fast",
|
|
190
|
-
"reasoning": false
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
"id": "gpt-5.2-codex-high",
|
|
194
|
-
"name": "GPT-5.2 Codex High",
|
|
195
|
-
"reasoning": false
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"id": "gpt-5.2-codex-high-fast",
|
|
199
|
-
"name": "GPT-5.2 Codex High Fast",
|
|
200
|
-
"reasoning": false
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"id": "gpt-5.2-codex-low",
|
|
204
|
-
"name": "GPT-5.2 Codex Low",
|
|
205
|
-
"reasoning": false
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
"id": "gpt-5.2-codex-low-fast",
|
|
209
|
-
"name": "GPT-5.2 Codex Low Fast",
|
|
210
|
-
"reasoning": false
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"id": "gpt-5.2-codex-xhigh",
|
|
214
|
-
"name": "GPT-5.2 Codex Extra High",
|
|
215
|
-
"reasoning": false
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"id": "gpt-5.2-codex-xhigh-fast",
|
|
219
|
-
"name": "GPT-5.2 Codex Extra High Fast",
|
|
220
|
-
"reasoning": false
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
"id": "gpt-5.2-fast",
|
|
224
|
-
"name": "GPT-5.2 Fast",
|
|
225
|
-
"reasoning": false
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"id": "gpt-5.2-high",
|
|
229
|
-
"name": "GPT-5.2 High",
|
|
230
|
-
"reasoning": false
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
"id": "gpt-5.2-high-fast",
|
|
234
|
-
"name": "GPT-5.2 High Fast",
|
|
235
|
-
"reasoning": false
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"id": "gpt-5.2-low",
|
|
239
|
-
"name": "GPT-5.2 Low",
|
|
240
|
-
"reasoning": false
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
"id": "gpt-5.2-low-fast",
|
|
244
|
-
"name": "GPT-5.2 Low Fast",
|
|
245
|
-
"reasoning": false
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"id": "gpt-5.2-xhigh",
|
|
249
|
-
"name": "GPT-5.2 Extra High",
|
|
250
|
-
"reasoning": false
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"id": "gpt-5.2-xhigh-fast",
|
|
254
|
-
"name": "GPT-5.2 Extra High Fast",
|
|
255
|
-
"reasoning": false
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"id": "gpt-5.3-codex",
|
|
259
|
-
"name": "GPT-5.3 Codex",
|
|
260
|
-
"reasoning": false
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"id": "gpt-5.3-codex-fast",
|
|
264
|
-
"name": "GPT-5.3 Codex Fast",
|
|
265
|
-
"reasoning": false
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"id": "gpt-5.3-codex-high",
|
|
269
|
-
"name": "GPT-5.3 Codex High",
|
|
270
|
-
"reasoning": false
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"id": "gpt-5.3-codex-high-fast",
|
|
274
|
-
"name": "GPT-5.3 Codex High Fast",
|
|
275
|
-
"reasoning": false
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"id": "gpt-5.3-codex-low",
|
|
279
|
-
"name": "GPT-5.3 Codex Low",
|
|
280
|
-
"reasoning": false
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
"id": "gpt-5.3-codex-low-fast",
|
|
284
|
-
"name": "GPT-5.3 Codex Low Fast",
|
|
285
|
-
"reasoning": false
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"id": "gpt-5.3-codex-spark-preview",
|
|
289
|
-
"name": "GPT-5.3 Codex Spark",
|
|
290
|
-
"reasoning": false
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"id": "gpt-5.3-codex-spark-preview-high",
|
|
294
|
-
"name": "GPT-5.3 Codex Spark High",
|
|
295
|
-
"reasoning": false
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
"id": "gpt-5.3-codex-spark-preview-low",
|
|
299
|
-
"name": "GPT-5.3 Codex Spark Low",
|
|
300
|
-
"reasoning": false
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
"id": "gpt-5.3-codex-spark-preview-xhigh",
|
|
304
|
-
"name": "GPT-5.3 Codex Spark Extra High",
|
|
305
|
-
"reasoning": false
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"id": "gpt-5.3-codex-xhigh",
|
|
309
|
-
"name": "GPT-5.3 Codex Extra High",
|
|
310
|
-
"reasoning": false
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
"id": "gpt-5.3-codex-xhigh-fast",
|
|
314
|
-
"name": "GPT-5.3 Codex Extra High Fast",
|
|
315
|
-
"reasoning": false
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"id": "gpt-5.4-high",
|
|
319
|
-
"name": "GPT-5.4 1M High",
|
|
320
|
-
"reasoning": false
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
"id": "gpt-5.4-high-fast",
|
|
324
|
-
"name": "GPT-5.4 High Fast",
|
|
325
|
-
"reasoning": false
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
"id": "gpt-5.4-low",
|
|
329
|
-
"name": "GPT-5.4 1M Low",
|
|
330
|
-
"reasoning": false
|
|
331
|
-
},
|
|
332
|
-
{
|
|
333
|
-
"id": "gpt-5.4-medium",
|
|
334
|
-
"name": "GPT-5.4 1M",
|
|
335
|
-
"reasoning": false
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
"id": "gpt-5.4-medium-fast",
|
|
339
|
-
"name": "GPT-5.4 Fast",
|
|
340
|
-
"reasoning": false
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
"id": "gpt-5.4-mini-high",
|
|
344
|
-
"name": "GPT-5.4 Mini High",
|
|
345
|
-
"reasoning": false
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"id": "gpt-5.4-mini-low",
|
|
349
|
-
"name": "GPT-5.4 Mini Low",
|
|
350
|
-
"reasoning": false
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"id": "gpt-5.4-mini-medium",
|
|
354
|
-
"name": "GPT-5.4 Mini",
|
|
355
|
-
"reasoning": false
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"id": "gpt-5.4-mini-none",
|
|
359
|
-
"name": "GPT-5.4 Mini None",
|
|
360
|
-
"reasoning": false
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
"id": "gpt-5.4-mini-xhigh",
|
|
364
|
-
"name": "GPT-5.4 Mini Extra High",
|
|
365
|
-
"reasoning": false
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"id": "gpt-5.4-nano-high",
|
|
369
|
-
"name": "GPT-5.4 Nano High",
|
|
370
|
-
"reasoning": false
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
"id": "gpt-5.4-nano-low",
|
|
374
|
-
"name": "GPT-5.4 Nano Low",
|
|
375
|
-
"reasoning": false
|
|
376
|
-
},
|
|
377
|
-
{
|
|
378
|
-
"id": "gpt-5.4-nano-medium",
|
|
379
|
-
"name": "GPT-5.4 Nano",
|
|
380
|
-
"reasoning": false
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
"id": "gpt-5.4-nano-none",
|
|
384
|
-
"name": "GPT-5.4 Nano None",
|
|
385
|
-
"reasoning": false
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"id": "gpt-5.4-nano-xhigh",
|
|
389
|
-
"name": "GPT-5.4 Nano Extra High",
|
|
390
|
-
"reasoning": false
|
|
391
|
-
},
|
|
392
|
-
{
|
|
393
|
-
"id": "gpt-5.4-xhigh",
|
|
394
|
-
"name": "GPT-5.4 1M Extra High",
|
|
395
|
-
"reasoning": false
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
"id": "gpt-5.4-xhigh-fast",
|
|
399
|
-
"name": "GPT-5.4 Extra High Fast",
|
|
400
|
-
"reasoning": false
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
"id": "grok-4.3",
|
|
404
|
-
"name": "Grok 4.3",
|
|
405
|
-
"reasoning": false
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
"id": "kimi-k2.5",
|
|
409
|
-
"name": "Kimi K2.5",
|
|
410
|
-
"reasoning": false
|
|
411
|
-
}
|
|
412
|
-
]
|