@heidi-dang/oh-my-opencode 3.12.4 → 3.13.0
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 +61 -367
- package/dist/agents/atlas/agent.d.ts +1 -1
- package/dist/agents/atlas/default.d.ts +1 -1
- package/dist/agents/atlas/gemini.d.ts +1 -1
- package/dist/agents/atlas/gpt.d.ts +1 -1
- package/dist/agents/atlas/prompt-section-builder.d.ts +1 -1
- package/dist/agents/builtin-agents/atlas-agent.d.ts +4 -1
- package/dist/agents/builtin-agents/available-skills.d.ts +1 -1
- package/dist/agents/builtin-agents/general-agents.d.ts +4 -1
- package/dist/agents/builtin-agents/hephaestus-agent.d.ts +5 -1
- package/dist/agents/builtin-agents/model-resolution.d.ts +2 -0
- package/dist/agents/builtin-agents/resolve-file-uri.test.d.ts +1 -0
- package/dist/agents/builtin-agents/sisyphus-agent.d.ts +4 -1
- package/dist/agents/builtin-agents.d.ts +3 -3
- package/dist/agents/chat.d.ts +7 -0
- package/dist/agents/dynamic-agent-prompt-builder.test.d.ts +1 -0
- package/dist/agents/env-context.test.d.ts +1 -0
- package/dist/agents/hephaestus/agent.d.ts +19 -0
- package/dist/agents/hephaestus/agent.test.d.ts +1 -0
- package/dist/agents/hephaestus/gpt-5-3-codex.d.ts +21 -0
- package/dist/agents/hephaestus/gpt-5-4.d.ts +3 -0
- package/dist/agents/hephaestus/gpt.d.ts +3 -0
- package/dist/agents/hephaestus/index.d.ts +2 -0
- package/dist/agents/hephaestus.d.ts +1 -1
- package/dist/agents/index.d.ts +1 -1
- package/dist/agents/metis.d.ts +1 -1
- package/dist/agents/momus.d.ts +1 -1
- package/dist/agents/momus.test.d.ts +1 -0
- package/dist/agents/prometheus-prompt.test.d.ts +1 -0
- package/dist/agents/prompts/agent-role.d.ts +2 -0
- package/dist/agents/prompts/anti-patterns.d.ts +2 -0
- package/dist/agents/prompts/base-system.d.ts +1 -0
- package/dist/agents/prompts/execution-rules.d.ts +2 -0
- package/dist/agents/prompts/hard-blocks.d.ts +2 -0
- package/dist/agents/prompts/index.d.ts +6 -0
- package/dist/agents/{dynamic-agent-prompt-builder.d.ts → prompts/orchestration.d.ts} +2 -23
- package/dist/agents/prompts/skill-context.d.ts +2 -0
- package/dist/agents/runtime/action-validator.d.ts +31 -0
- package/dist/agents/runtime/agent-logger.d.ts +15 -0
- package/dist/agents/runtime/loop-guard.d.ts +2 -0
- package/dist/agents/runtime/verify-action.d.ts +58 -0
- package/dist/agents/sisyphus/default.d.ts +9 -0
- package/dist/agents/sisyphus/gemini.d.ts +20 -0
- package/dist/agents/sisyphus/gpt-5-4.d.ts +16 -0
- package/dist/agents/sisyphus/index.d.ts +11 -0
- package/dist/agents/sisyphus-junior/index.test.d.ts +1 -0
- package/dist/agents/sisyphus.d.ts +1 -1
- package/dist/agents/tool-restrictions.test.d.ts +1 -0
- package/dist/agents/types.d.ts +24 -6
- package/dist/agents/types.test.d.ts +1 -0
- package/dist/agents/utils.test.d.ts +1 -0
- package/dist/cli/cli-installer.test.d.ts +1 -0
- package/dist/cli/config-manager/write-omo-config.test.d.ts +1 -0
- package/dist/cli/config-manager.test.d.ts +1 -0
- package/dist/cli/doctor/checks/config.test.d.ts +1 -0
- package/dist/cli/doctor/checks/dependencies.test.d.ts +1 -0
- package/dist/cli/doctor/checks/edit-atomicity.d.ts +5 -0
- package/dist/cli/doctor/checks/issue-resolution.d.ts +7 -0
- package/dist/cli/doctor/checks/model-resolution.test.d.ts +1 -0
- package/dist/cli/doctor/checks/plan-compiler.d.ts +8 -0
- package/dist/cli/doctor/checks/progress.d.ts +8 -0
- package/dist/cli/doctor/checks/run-state-watchdog.d.ts +2 -0
- package/dist/cli/doctor/checks/system-loaded-version.test.d.ts +1 -0
- package/dist/cli/doctor/checks/system.test.d.ts +1 -0
- package/dist/cli/doctor/checks/tool-contract.d.ts +8 -0
- package/dist/cli/doctor/checks/tool-metadata.d.ts +2 -0
- package/dist/cli/doctor/constants.d.ts +3 -0
- package/dist/cli/doctor/format-default.test.d.ts +1 -0
- package/dist/cli/doctor/formatter.test.d.ts +1 -0
- package/dist/cli/doctor/runner.test.d.ts +1 -0
- package/dist/cli/doctor/types.d.ts +3 -0
- package/dist/cli/index.js +2542 -214
- package/dist/cli/index.test.d.ts +1 -0
- package/dist/cli/install.test.d.ts +1 -0
- package/dist/cli/mcp-oauth/index.test.d.ts +1 -0
- package/dist/cli/mcp-oauth/login.test.d.ts +1 -0
- package/dist/cli/mcp-oauth/logout.test.d.ts +1 -0
- package/dist/cli/mcp-oauth/status.test.d.ts +1 -0
- package/dist/cli/model-fallback.test.d.ts +1 -0
- package/dist/cli/provider-model-id-transform.test.d.ts +1 -0
- package/dist/cli/run/completion-continuation.test.d.ts +1 -0
- package/dist/cli/run/completion-verbose-logging.test.d.ts +1 -0
- package/dist/cli/run/completion.test.d.ts +1 -0
- package/dist/cli/run/continuation-state-marker.test.d.ts +1 -0
- package/dist/cli/run/event-handlers.test.d.ts +1 -0
- package/dist/cli/run/events.test.d.ts +1 -0
- package/dist/cli/run/integration.test.d.ts +1 -0
- package/dist/cli/run/json-output.test.d.ts +1 -0
- package/dist/cli/run/message-part-delta.test.d.ts +1 -0
- package/dist/cli/run/on-complete-hook.test.d.ts +1 -0
- package/dist/cli/run/opencode-binary-resolver.test.d.ts +1 -0
- package/dist/cli/run/poll-for-completion.test.d.ts +1 -0
- package/dist/cli/run/runner.test.d.ts +1 -0
- package/dist/cli/run/server-connection.test.d.ts +1 -0
- package/dist/cli/run/session-resolver.test.d.ts +1 -0
- package/dist/cli/run/stdin-suppression.test.d.ts +1 -0
- package/dist/cli/run/timestamp-output.test.d.ts +1 -0
- package/dist/config/schema/agent-names.d.ts +6 -3
- package/dist/config/schema/agent-overrides.d.ts +150 -30
- package/dist/config/schema/background-task.test.d.ts +1 -0
- package/dist/config/schema/categories.d.ts +21 -3
- package/dist/config/schema/categories.test.d.ts +1 -0
- package/dist/config/schema/fallback-models.d.ts +11 -1
- package/dist/config/schema/hooks.d.ts +7 -0
- package/dist/config/schema/oh-my-opencode-config.d.ts +151 -29
- package/dist/config/schema.test.d.ts +1 -0
- package/dist/create-hooks.d.ts +11 -1
- package/dist/create-managers.d.ts +2 -0
- package/dist/create-tools.d.ts +1 -1
- package/dist/features/background-agent/compaction-aware-message-resolver.test.d.ts +1 -0
- package/dist/features/background-agent/concurrency.test.d.ts +1 -0
- package/dist/features/background-agent/error-classifier.test.d.ts +1 -0
- package/dist/features/background-agent/fallback-retry-handler.test.d.ts +1 -0
- package/dist/features/background-agent/manager.d.ts +13 -0
- package/dist/features/background-agent/manager.polling.test.d.ts +1 -0
- package/dist/features/background-agent/manager.test.d.ts +1 -0
- package/dist/features/background-agent/process-cleanup.test.d.ts +1 -0
- package/dist/features/background-agent/session-idle-event-handler.test.d.ts +1 -0
- package/dist/features/background-agent/spawner/parent-directory-resolver.test.d.ts +1 -0
- package/dist/features/background-agent/spawner.test.d.ts +1 -0
- package/dist/features/background-agent/task-history.test.d.ts +1 -0
- package/dist/features/background-agent/task-poller.test.d.ts +1 -0
- package/dist/features/background-agent/types.d.ts +9 -4
- package/dist/features/boulder-state/storage.test.d.ts +1 -0
- package/dist/features/builtin-commands/commands.test.d.ts +1 -0
- package/dist/features/builtin-commands/templates/stop-continuation.test.d.ts +1 -0
- package/dist/features/builtin-skills/skills/git/git-commit.d.ts +2 -0
- package/dist/features/builtin-skills/skills/git/git-history.d.ts +1 -0
- package/dist/features/builtin-skills/skills/git/git-push-pr.d.ts +1 -0
- package/dist/features/builtin-skills/skills/git/git-rebase.d.ts +1 -0
- package/dist/features/builtin-skills/skills/git/git-shared.d.ts +2 -0
- package/dist/features/builtin-skills/skills.test.d.ts +1 -0
- package/dist/features/claude-code-mcp-loader/loader.test.d.ts +1 -0
- package/dist/features/claude-code-session-state/state.d.ts +4 -0
- package/dist/features/claude-code-session-state/state.test.d.ts +1 -0
- package/dist/features/claude-tasks/session-storage.test.d.ts +1 -0
- package/dist/features/claude-tasks/storage.test.d.ts +1 -0
- package/dist/features/claude-tasks/types.test.d.ts +1 -0
- package/dist/features/context-injector/collector.test.d.ts +1 -0
- package/dist/features/context-injector/injector.test.d.ts +1 -0
- package/dist/features/hook-message-injector/injector.d.ts +2 -0
- package/dist/features/hook-message-injector/injector.test.d.ts +1 -0
- package/dist/features/issue-resolution/state.d.ts +12 -0
- package/dist/features/issue-resolution/tests/integration.test.d.ts +1 -0
- package/dist/features/mcp-oauth/callback-server.test.d.ts +1 -0
- package/dist/features/mcp-oauth/dcr.test.d.ts +1 -0
- package/dist/features/mcp-oauth/discovery.test.d.ts +1 -0
- package/dist/features/mcp-oauth/provider.test.d.ts +1 -0
- package/dist/features/mcp-oauth/resource-indicator.test.d.ts +1 -0
- package/dist/features/mcp-oauth/schema.test.d.ts +1 -0
- package/dist/features/mcp-oauth/step-up.test.d.ts +1 -0
- package/dist/features/mcp-oauth/storage.test.d.ts +1 -0
- package/dist/features/opencode-skill-loader/agents-skills-global.test.d.ts +1 -0
- package/dist/features/opencode-skill-loader/async-loader.test.d.ts +1 -0
- package/dist/features/opencode-skill-loader/blocking.test.d.ts +1 -0
- package/dist/features/opencode-skill-loader/config-source-discovery.test.d.ts +1 -0
- package/dist/features/opencode-skill-loader/loader.test.d.ts +1 -0
- package/dist/features/opencode-skill-loader/merger.test.d.ts +1 -0
- package/dist/features/opencode-skill-loader/skill-content.test.d.ts +1 -0
- package/dist/features/pr-state/storage.d.ts +10 -0
- package/dist/features/run-continuation-state/storage.test.d.ts +1 -0
- package/dist/features/run-state-watchdog/index.d.ts +1 -0
- package/dist/features/run-state-watchdog/manager.d.ts +31 -0
- package/dist/features/run-state-watchdog/manager.test.d.ts +1 -0
- package/dist/features/run-state-watchdog/reconnect.test.d.ts +1 -0
- package/dist/features/skill-mcp-manager/env-cleaner.test.d.ts +1 -0
- package/dist/features/skill-mcp-manager/manager.test.d.ts +1 -0
- package/dist/features/task-toast-manager/manager.d.ts +9 -0
- package/dist/features/task-toast-manager/manager.test.d.ts +1 -0
- package/dist/features/task-toast-manager/types.d.ts +5 -0
- package/dist/features/tmux-subagent/action-executor.test.d.ts +1 -0
- package/dist/features/tmux-subagent/decision-engine.test.d.ts +1 -0
- package/dist/features/tmux-subagent/layout-config.test.d.ts +1 -0
- package/dist/features/tmux-subagent/manager.test.d.ts +1 -0
- package/dist/features/tmux-subagent/polling-manager.test.d.ts +1 -0
- package/dist/features/tool-metadata-store/index.test.d.ts +1 -0
- package/dist/hooks/anthropic-context-window-limit-recovery/empty-content-recovery-sdk.test.d.ts +1 -0
- package/dist/hooks/anthropic-context-window-limit-recovery/executor.test.d.ts +1 -0
- package/dist/hooks/anthropic-context-window-limit-recovery/parser.test.d.ts +1 -0
- package/dist/hooks/anthropic-context-window-limit-recovery/pruning-deduplication.test.d.ts +1 -0
- package/dist/hooks/anthropic-context-window-limit-recovery/recovery-deduplication.test.d.ts +1 -0
- package/dist/hooks/anthropic-context-window-limit-recovery/recovery-hook.test.d.ts +1 -0
- package/dist/hooks/anthropic-context-window-limit-recovery/storage.test.d.ts +1 -0
- package/dist/hooks/anthropic-context-window-limit-recovery/summarize-retry-strategy.test.d.ts +1 -0
- package/dist/hooks/anthropic-effort/index.test.d.ts +1 -0
- package/dist/hooks/atlas/index.test.d.ts +1 -0
- package/dist/hooks/auto-slash-command/constants.test.d.ts +1 -0
- package/dist/hooks/auto-slash-command/detector.test.d.ts +1 -0
- package/dist/hooks/auto-slash-command/executor.test.d.ts +1 -0
- package/dist/hooks/auto-slash-command/index.test.d.ts +1 -0
- package/dist/hooks/auto-update-checker/checker/pinned-version-updater.test.d.ts +1 -0
- package/dist/hooks/auto-update-checker/checker/plugin-entry.test.d.ts +1 -0
- package/dist/hooks/auto-update-checker/checker.test.d.ts +1 -0
- package/dist/hooks/auto-update-checker/hook/background-update-check.test.d.ts +1 -0
- package/dist/hooks/auto-update-checker/hook.test.d.ts +1 -0
- package/dist/hooks/auto-update-checker/index.test.d.ts +1 -0
- package/dist/hooks/category-skill-reminder/formatter.d.ts +1 -1
- package/dist/hooks/category-skill-reminder/hook.d.ts +1 -1
- package/dist/hooks/category-skill-reminder/index.test.d.ts +1 -0
- package/dist/hooks/claude-code-hooks/execute-http-hook.test.d.ts +1 -0
- package/dist/hooks/claude-code-hooks/stop.test.d.ts +1 -0
- package/dist/hooks/claude-code-hooks/transcript.test.d.ts +1 -0
- package/dist/hooks/claude-code-hooks/user-prompt-submit.test.d.ts +1 -0
- package/dist/hooks/comment-checker/cli.test.d.ts +1 -0
- package/dist/hooks/comment-checker/hook.apply-patch.test.d.ts +1 -0
- package/dist/hooks/comment-checker/pending-calls.test.d.ts +1 -0
- package/dist/hooks/compaction-context-injector/index.test.d.ts +1 -0
- package/dist/hooks/compaction-todo-preserver/index.test.d.ts +1 -0
- package/dist/hooks/context-window-monitor.test.d.ts +1 -0
- package/dist/hooks/delegate-task-retry/index.test.d.ts +1 -0
- package/dist/hooks/directory-agents-injector/injector.test.d.ts +1 -0
- package/dist/hooks/directory-readme-injector/injector.test.d.ts +1 -0
- package/dist/hooks/edit-error-recovery/hook.d.ts +2 -1
- package/dist/hooks/edit-error-recovery/index.test.d.ts +1 -0
- package/dist/hooks/edit-safeguard/hook.d.ts +2 -0
- package/dist/hooks/execution-journal/hook.d.ts +19 -0
- package/dist/hooks/execution-journal/index.d.ts +1 -0
- package/dist/hooks/hashline-read-enhancer/index.test.d.ts +1 -0
- package/dist/hooks/index.d.ts +11 -3
- package/dist/hooks/json-error-recovery/index.test.d.ts +1 -0
- package/dist/hooks/keyword-detector/constants.d.ts +1 -0
- package/dist/hooks/keyword-detector/detector.d.ts +1 -1
- package/dist/hooks/keyword-detector/index.test.d.ts +1 -0
- package/dist/hooks/keyword-detector/issue.d.ts +2 -0
- package/dist/hooks/model-fallback/hook.test.d.ts +1 -0
- package/dist/hooks/no-hephaestus-non-gpt/index.test.d.ts +1 -0
- package/dist/hooks/no-sisyphus-gpt/index.test.d.ts +1 -0
- package/dist/hooks/non-interactive-env/index.test.d.ts +1 -0
- package/dist/hooks/plan-enforcement/hook.d.ts +29 -0
- package/dist/hooks/plan-enforcement/hook.test.d.ts +1 -0
- package/dist/hooks/plan-enforcement/index.d.ts +1 -0
- package/dist/hooks/preemptive-compaction.test.d.ts +1 -0
- package/dist/hooks/prometheus-md-only/index.test.d.ts +1 -0
- package/dist/hooks/question-label-truncator/index.test.d.ts +1 -0
- package/dist/hooks/ralph-loop/completion-handler.d.ts +14 -0
- package/dist/hooks/ralph-loop/completion-promise-detector.d.ts +1 -1
- package/dist/hooks/ralph-loop/completion-promise-detector.test.d.ts +1 -0
- package/dist/hooks/ralph-loop/constants.d.ts +1 -0
- package/dist/hooks/ralph-loop/index.test.d.ts +1 -0
- package/dist/hooks/ralph-loop/loop-state-controller.d.ts +2 -0
- package/dist/hooks/ralph-loop/ralph-loop-event-handler.d.ts +2 -0
- package/dist/hooks/ralph-loop/reset-strategy-race-condition.test.d.ts +1 -0
- package/dist/hooks/ralph-loop/session-event-handler.d.ts +12 -0
- package/dist/hooks/ralph-loop/types.d.ts +5 -1
- package/dist/hooks/ralph-loop/ulw-loop-verification.test.d.ts +1 -0
- package/dist/hooks/read-image-resizer/hook.test.d.ts +1 -0
- package/dist/hooks/read-image-resizer/image-dimensions.test.d.ts +1 -0
- package/dist/hooks/read-image-resizer/image-resizer.test.d.ts +1 -0
- package/dist/hooks/rules-injector/finder.test.d.ts +1 -0
- package/dist/hooks/rules-injector/injector.test.d.ts +1 -0
- package/dist/hooks/rules-injector/output-path.test.d.ts +1 -0
- package/dist/hooks/rules-injector/parser.test.d.ts +1 -0
- package/dist/hooks/run-state-watchdog/hook.d.ts +5 -0
- package/dist/hooks/run-state-watchdog/index.d.ts +1 -0
- package/dist/hooks/runtime-enforcement/hook.d.ts +10 -0
- package/dist/hooks/runtime-enforcement/hook.test.d.ts +1 -0
- package/dist/hooks/runtime-enforcement/index.d.ts +1 -0
- package/dist/hooks/runtime-enforcement/synthetic-injection.test.d.ts +1 -0
- package/dist/hooks/runtime-fallback/index.test.d.ts +1 -0
- package/dist/hooks/semantic-loop-guard/hook.d.ts +10 -0
- package/dist/hooks/semantic-loop-guard/hook.test.d.ts +1 -0
- package/dist/hooks/semantic-loop-guard/index.d.ts +1 -0
- package/dist/hooks/session-notification-input-needed.test.d.ts +1 -0
- package/dist/hooks/session-notification.test.d.ts +1 -0
- package/dist/hooks/session-recovery/detect-error-type.test.d.ts +1 -0
- package/dist/hooks/session-recovery/index.test.d.ts +1 -0
- package/dist/hooks/session-recovery/recover-empty-content-message-sdk.test.d.ts +1 -0
- package/dist/hooks/session-recovery/resume.test.d.ts +1 -0
- package/dist/hooks/session-recovery/storage/readers-from-sdk.test.d.ts +1 -0
- package/dist/hooks/start-work/index.test.d.ts +1 -0
- package/dist/hooks/start-work/parse-user-request.test.d.ts +1 -0
- package/dist/hooks/start-work/worktree-detector.test.d.ts +1 -0
- package/dist/hooks/stop-continuation-guard/index.test.d.ts +1 -0
- package/dist/hooks/task-reminder/index.test.d.ts +1 -0
- package/dist/hooks/task-resume-info/index.test.d.ts +1 -0
- package/dist/hooks/tasks-todowrite-disabler/index.test.d.ts +1 -0
- package/dist/hooks/think-mode/index.test.d.ts +1 -0
- package/dist/hooks/think-mode/switcher.test.d.ts +1 -0
- package/dist/hooks/todo-continuation-enforcer/continuation-injection.test.d.ts +1 -0
- package/dist/hooks/todo-continuation-enforcer/pending-question-detection.test.d.ts +1 -0
- package/dist/hooks/todo-continuation-enforcer/todo-continuation-enforcer.test.d.ts +1 -0
- package/dist/hooks/tool-contract/hook.d.ts +19 -0
- package/dist/hooks/tool-contract/hook.test.d.ts +1 -0
- package/dist/hooks/tool-contract/index.d.ts +1 -0
- package/dist/hooks/tool-output-truncator.test.d.ts +1 -0
- package/dist/hooks/unstable-agent-babysitter/index.test.d.ts +1 -0
- package/dist/hooks/write-existing-file-guard/index.test.d.ts +1 -0
- package/dist/hooks/xai-usage-patch/hook.d.ts +20 -0
- package/dist/hooks/xai-usage-patch/hook.test.d.ts +1 -0
- package/dist/index.compaction-model-agnostic.static.test.d.ts +1 -0
- package/dist/index.js +4980 -14453
- package/dist/index.test.d.ts +1 -0
- package/dist/mcp/index.test.d.ts +1 -0
- package/dist/mcp/websearch.test.d.ts +1 -0
- package/dist/oh-my-opencode.schema.json +622 -15
- package/dist/plugin/available-categories.d.ts +1 -1
- package/dist/plugin/chat-headers.test.d.ts +1 -0
- package/dist/plugin/chat-message.test.d.ts +1 -0
- package/dist/plugin/chat-params.test.d.ts +1 -0
- package/dist/plugin/event.model-fallback.test.d.ts +1 -0
- package/dist/plugin/event.test.d.ts +1 -0
- package/dist/plugin/hooks/create-core-hooks.d.ts +10 -0
- package/dist/plugin/hooks/create-session-hooks.d.ts +4 -1
- package/dist/plugin/hooks/create-skill-hooks.d.ts +1 -1
- package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +7 -1
- package/dist/plugin/recent-synthetic-idles.test.d.ts +1 -0
- package/dist/plugin/session-agent-resolver.test.d.ts +1 -0
- package/dist/plugin/session-status-normalizer.test.d.ts +1 -0
- package/dist/plugin/skill-context.d.ts +1 -1
- package/dist/plugin/tool-execute-before-session-notification.test.d.ts +1 -0
- package/dist/plugin/tool-execute-before.test.d.ts +1 -0
- package/dist/plugin/tool-normalization.test.d.ts +1 -0
- package/dist/plugin/tool-registry.d.ts +1 -1
- package/dist/plugin/truth-model-integration.test.d.ts +1 -0
- package/dist/plugin/ultrawork-db-model-override.test.d.ts +1 -0
- package/dist/plugin/ultrawork-model-override.test.d.ts +1 -0
- package/dist/plugin-config.test.d.ts +1 -0
- package/dist/plugin-handlers/agent-key-remapper.test.d.ts +1 -0
- package/dist/plugin-handlers/config-handler-formatter.test.d.ts +1 -0
- package/dist/plugin-handlers/config-handler.test.d.ts +1 -0
- package/dist/plugin-handlers/mcp-config-handler.test.d.ts +1 -0
- package/dist/plugin-handlers/plan-model-inheritance.test.d.ts +1 -0
- package/dist/plugin-handlers/prometheus-agent-config-builder.d.ts +3 -2
- package/dist/plugin-handlers/tool-config-handler.test.d.ts +1 -0
- package/dist/runtime/journal.d.ts +33 -0
- package/dist/runtime/plan-compiler.d.ts +20 -0
- package/dist/runtime/plan-compiler.test.d.ts +1 -0
- package/dist/runtime/startup-validation.d.ts +7 -0
- package/dist/runtime/state-ledger.d.ts +52 -0
- package/dist/runtime/tools/complete-task.d.ts +4 -0
- package/dist/runtime/tools/fs-safe.contract.test.d.ts +1 -0
- package/dist/runtime/tools/fs-safe.d.ts +1 -0
- package/dist/runtime/tools/gh-safe.d.ts +1 -0
- package/dist/runtime/tools/git-safe.d.ts +1 -0
- package/dist/runtime/tools/index.d.ts +8 -0
- package/dist/runtime/tools/plan.d.ts +3 -0
- package/dist/runtime/tools/query-ledger.d.ts +3 -0
- package/dist/runtime/tools/registry.d.ts +8 -0
- package/dist/runtime/tools/report-issue-verification.d.ts +1 -0
- package/dist/runtime/tools/verify.d.ts +1 -0
- package/dist/runtime/truth-model.test.d.ts +1 -0
- package/dist/runtime/vcs-detection.test.d.ts +1 -0
- package/dist/shared/active-task-storage.d.ts +15 -0
- package/dist/shared/agent-config-integration.test.d.ts +1 -0
- package/dist/shared/agent-display-names.test.d.ts +1 -0
- package/dist/shared/agent-variant.test.d.ts +1 -0
- package/dist/shared/claude-config-dir.test.d.ts +1 -0
- package/dist/shared/connected-providers-cache.test.d.ts +1 -0
- package/dist/shared/deep-merge.test.d.ts +1 -0
- package/dist/shared/dynamic-truncator.test.d.ts +1 -0
- package/dist/shared/external-plugin-detector.test.d.ts +1 -0
- package/dist/shared/file-utils.test.d.ts +1 -0
- package/dist/shared/first-message-variant.test.d.ts +1 -0
- package/dist/shared/frontmatter.test.d.ts +1 -0
- package/dist/shared/git-worktree/collect-git-diff-stats.test.d.ts +1 -0
- package/dist/shared/git-worktree/git-worktree.test.d.ts +1 -0
- package/dist/shared/git-worktree/parse-status-porcelain-line.test.d.ts +1 -0
- package/dist/shared/index.d.ts +2 -0
- package/dist/shared/jsonc-parser.test.d.ts +1 -0
- package/dist/shared/merge-categories.test.d.ts +1 -0
- package/dist/shared/migration.test.d.ts +1 -0
- package/dist/shared/model-availability.d.ts +6 -0
- package/dist/shared/model-availability.test.d.ts +1 -0
- package/dist/shared/model-error-classifier.d.ts +5 -0
- package/dist/shared/model-error-classifier.test.d.ts +1 -0
- package/dist/shared/model-format-normalizer.test.d.ts +1 -0
- package/dist/shared/model-normalization.test.d.ts +1 -0
- package/dist/shared/model-requirements.d.ts +6 -0
- package/dist/shared/model-requirements.test.d.ts +1 -0
- package/dist/shared/model-resolution-acceptance.test.d.ts +1 -0
- package/dist/shared/model-resolution-pipeline.d.ts +5 -1
- package/dist/shared/model-resolution-pipeline.test.d.ts +1 -0
- package/dist/shared/model-resolution-tracker.d.ts +17 -0
- package/dist/shared/model-resolution-types.d.ts +7 -1
- package/dist/shared/model-resolver.d.ts +10 -3
- package/dist/shared/model-resolver.test.d.ts +1 -0
- package/dist/shared/model-suggestion-retry.test.d.ts +1 -0
- package/dist/shared/normalize-sdk-response.test.d.ts +1 -0
- package/dist/shared/opencode-config-dir.test.d.ts +1 -0
- package/dist/shared/opencode-http-api.test.d.ts +1 -0
- package/dist/shared/opencode-message-dir.test.d.ts +1 -0
- package/dist/shared/opencode-server-auth.test.d.ts +1 -0
- package/dist/shared/opencode-storage-detection.test.d.ts +1 -0
- package/dist/shared/opencode-version.test.d.ts +1 -0
- package/dist/shared/pattern-matcher.test.d.ts +1 -0
- package/dist/shared/permission-compat.test.d.ts +1 -0
- package/dist/shared/plugin-command-discovery.test.d.ts +1 -0
- package/dist/shared/port-utils.test.d.ts +1 -0
- package/dist/shared/prompt-tools.test.d.ts +1 -0
- package/dist/shared/read-permission-tracker.d.ts +15 -0
- package/dist/shared/safe-create-hook.test.d.ts +1 -0
- package/dist/shared/session-cursor.test.d.ts +1 -0
- package/dist/shared/session-directory-resolver.test.d.ts +1 -0
- package/dist/shared/session-model-state.test.d.ts +1 -0
- package/dist/shared/session-tools-store.test.d.ts +1 -0
- package/dist/shared/shell-env.test.d.ts +1 -0
- package/dist/shared/skill-path-resolver.test.d.ts +1 -0
- package/dist/shared/system-directive.test.d.ts +1 -0
- package/dist/shared/tmux/tmux-utils/layout.test.d.ts +1 -0
- package/dist/shared/tmux/tmux-utils.test.d.ts +1 -0
- package/dist/shared/tool-name.test.d.ts +1 -0
- package/dist/shared/truncate-description.test.d.ts +1 -0
- package/dist/shared/verify-task-completion.d.ts +1 -0
- package/dist/tools/background-task/create-background-output.blocking.test.d.ts +1 -0
- package/dist/tools/background-task/create-background-task.test.d.ts +1 -0
- package/dist/tools/background-task/tools.test.d.ts +1 -0
- package/dist/tools/call-omo-agent/background-agent-executor.test.d.ts +1 -0
- package/dist/tools/call-omo-agent/background-executor.test.d.ts +1 -0
- package/dist/tools/call-omo-agent/session-creator.test.d.ts +1 -0
- package/dist/tools/call-omo-agent/subagent-session-creator.test.d.ts +1 -0
- package/dist/tools/call-omo-agent/sync-executor.test.d.ts +1 -0
- package/dist/tools/call-omo-agent/tools.test.d.ts +1 -0
- package/dist/tools/delegate-task/background-continuation.test.d.ts +1 -0
- package/dist/tools/delegate-task/background-task.d.ts +1 -1
- package/dist/tools/delegate-task/background-task.test.d.ts +1 -0
- package/dist/tools/delegate-task/category-resolver.d.ts +1 -0
- package/dist/tools/delegate-task/category-resolver.test.d.ts +1 -0
- package/dist/tools/delegate-task/constants.d.ts +1 -1
- package/dist/tools/delegate-task/metadata-await.test.d.ts +1 -0
- package/dist/tools/delegate-task/metadata-model-unification.test.d.ts +1 -0
- package/dist/tools/delegate-task/model-selection.d.ts +2 -0
- package/dist/tools/delegate-task/subagent-resolver.d.ts +2 -1
- package/dist/tools/delegate-task/subagent-resolver.test.d.ts +1 -0
- package/dist/tools/delegate-task/sync-continuation.test.d.ts +1 -0
- package/dist/tools/delegate-task/sync-poll-timeout.test.d.ts +1 -0
- package/dist/tools/delegate-task/sync-prompt-sender.d.ts +1 -0
- package/dist/tools/delegate-task/sync-prompt-sender.test.d.ts +1 -0
- package/dist/tools/delegate-task/sync-result-fetcher.test.d.ts +1 -0
- package/dist/tools/delegate-task/sync-session-poller.test.d.ts +1 -0
- package/dist/tools/delegate-task/sync-task.d.ts +1 -1
- package/dist/tools/delegate-task/sync-task.test.d.ts +1 -0
- package/dist/tools/delegate-task/timing.test.d.ts +1 -0
- package/dist/tools/delegate-task/token-limiter.test.d.ts +1 -0
- package/dist/tools/delegate-task/tools.test.d.ts +1 -0
- package/dist/tools/delegate-task/types.d.ts +1 -1
- package/dist/tools/delegate-task/unstable-agent-task.test.d.ts +1 -0
- package/dist/tools/delegate-task/unstable-agent-timeout.test.d.ts +1 -0
- package/dist/tools/glob/cli.test.d.ts +1 -0
- package/dist/tools/grep/downloader.test.d.ts +1 -0
- package/dist/tools/grep/result-formatter.test.d.ts +1 -0
- package/dist/tools/hashline-edit/diff-utils.test.d.ts +1 -0
- package/dist/tools/hashline-edit/edit-operations.test.d.ts +1 -0
- package/dist/tools/hashline-edit/edit-text-normalization.test.d.ts +1 -0
- package/dist/tools/hashline-edit/hash-computation.test.d.ts +1 -0
- package/dist/tools/hashline-edit/normalize-edits.test.d.ts +1 -0
- package/dist/tools/hashline-edit/tools.test.d.ts +1 -0
- package/dist/tools/hashline-edit/validation.test.d.ts +1 -0
- package/dist/tools/look-at/create-look-at-error-handling.test.d.ts +1 -0
- package/dist/tools/look-at/create-look-at-image-data.test.d.ts +1 -0
- package/dist/tools/look-at/create-look-at-model-passthrough.test.d.ts +1 -0
- package/dist/tools/look-at/create-look-at-sync-prompt.test.d.ts +1 -0
- package/dist/tools/look-at/create-look-at-unhandled-error.test.d.ts +1 -0
- package/dist/tools/look-at/image-converter.test.d.ts +1 -0
- package/dist/tools/look-at/mime-type-inference.test.d.ts +1 -0
- package/dist/tools/look-at/normalize-args.test.d.ts +1 -0
- package/dist/tools/look-at/session-poller.test.d.ts +1 -0
- package/dist/tools/look-at/tools.test.d.ts +7 -0
- package/dist/tools/look-at/validate-args.test.d.ts +1 -0
- package/dist/tools/lsp/client.test.d.ts +1 -0
- package/dist/tools/lsp/config.test.d.ts +1 -0
- package/dist/tools/lsp/lsp-client-wrapper.d.ts +3 -0
- package/dist/tools/lsp/lsp-process.test.d.ts +1 -0
- package/dist/tools/lsp/server-config-loader.test.d.ts +1 -0
- package/dist/tools/lsp/utils.test.d.ts +1 -0
- package/dist/tools/session-manager/storage.test.d.ts +1 -0
- package/dist/tools/session-manager/tools.test.d.ts +1 -0
- package/dist/tools/session-manager/utils.test.d.ts +1 -0
- package/dist/tools/skill/tools.test.agent-restriction.d.ts +1 -0
- package/dist/tools/skill/tools.test.d.ts +1 -0
- package/dist/tools/skill/tools.test.description.d.ts +1 -0
- package/dist/tools/skill/tools.test.mcp-schema.d.ts +1 -0
- package/dist/tools/skill/tools.test.ordering.d.ts +1 -0
- package/dist/tools/skill/tools.test.utils.d.ts +10 -0
- package/dist/tools/skill-mcp/builtin-mcp-hint.test.d.ts +1 -0
- package/dist/tools/skill-mcp/tools.test.d.ts +1 -0
- package/dist/tools/slashcommand/command-discovery.test.d.ts +1 -0
- package/dist/tools/slashcommand/command-output-formatter.test.d.ts +1 -0
- package/dist/tools/slashcommand/index.test.d.ts +1 -0
- package/dist/tools/task/task-create-input.test.d.ts +1 -0
- package/dist/tools/task/task-create.test.d.ts +1 -0
- package/dist/tools/task/task-delete-input.test.d.ts +1 -0
- package/dist/tools/task/task-get-input.test.d.ts +1 -0
- package/dist/tools/task/task-get.test.d.ts +1 -0
- package/dist/tools/task/task-list-input.test.d.ts +1 -0
- package/dist/tools/task/task-list.test.d.ts +1 -0
- package/dist/tools/task/task-schema-core.test.d.ts +1 -0
- package/dist/tools/task/task-schema-fields.test.d.ts +1 -0
- package/dist/tools/task/task-status.test.d.ts +1 -0
- package/dist/tools/task/task-update-input.test.d.ts +1 -0
- package/dist/tools/task/task-update.test.d.ts +1 -0
- package/dist/tools/task/todo-sync-all-fetch.test.d.ts +1 -0
- package/dist/tools/task/todo-sync-all-write.test.d.ts +1 -0
- package/dist/tools/task/todo-sync-sync.test.d.ts +1 -0
- package/dist/tools/task/todo-sync-update.test.d.ts +1 -0
- package/dist/tools/task/todo-sync.test.d.ts +1 -0
- package/dist/utils/context-trimmer.d.ts +21 -0
- package/dist/utils/safety-tool-result.d.ts +31 -0
- package/dist/utils/tool-contract-wrapper.d.ts +10 -0
- package/package.json +17 -16
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -2,6 +2,7 @@ import { z } from "zod";
|
|
|
2
2
|
export declare const BuiltinAgentNameSchema: z.ZodEnum<{
|
|
3
3
|
sisyphus: "sisyphus";
|
|
4
4
|
hephaestus: "hephaestus";
|
|
5
|
+
prometheus: "prometheus";
|
|
5
6
|
oracle: "oracle";
|
|
6
7
|
librarian: "librarian";
|
|
7
8
|
explore: "explore";
|
|
@@ -9,7 +10,7 @@ export declare const BuiltinAgentNameSchema: z.ZodEnum<{
|
|
|
9
10
|
metis: "metis";
|
|
10
11
|
momus: "momus";
|
|
11
12
|
atlas: "atlas";
|
|
12
|
-
|
|
13
|
+
chat: "chat";
|
|
13
14
|
}>;
|
|
14
15
|
export declare const BuiltinSkillNameSchema: z.ZodEnum<{
|
|
15
16
|
playwright: "playwright";
|
|
@@ -21,6 +22,7 @@ export declare const BuiltinSkillNameSchema: z.ZodEnum<{
|
|
|
21
22
|
export declare const OverridableAgentNameSchema: z.ZodEnum<{
|
|
22
23
|
sisyphus: "sisyphus";
|
|
23
24
|
hephaestus: "hephaestus";
|
|
25
|
+
prometheus: "prometheus";
|
|
24
26
|
oracle: "oracle";
|
|
25
27
|
librarian: "librarian";
|
|
26
28
|
explore: "explore";
|
|
@@ -28,15 +30,16 @@ export declare const OverridableAgentNameSchema: z.ZodEnum<{
|
|
|
28
30
|
metis: "metis";
|
|
29
31
|
momus: "momus";
|
|
30
32
|
atlas: "atlas";
|
|
33
|
+
chat: "chat";
|
|
31
34
|
build: "build";
|
|
32
35
|
plan: "plan";
|
|
33
|
-
prometheus: "prometheus";
|
|
34
36
|
"sisyphus-junior": "sisyphus-junior";
|
|
35
37
|
"OpenCode-Builder": "OpenCode-Builder";
|
|
36
38
|
}>;
|
|
37
39
|
export declare const AgentNameSchema: z.ZodEnum<{
|
|
38
40
|
sisyphus: "sisyphus";
|
|
39
41
|
hephaestus: "hephaestus";
|
|
42
|
+
prometheus: "prometheus";
|
|
40
43
|
oracle: "oracle";
|
|
41
44
|
librarian: "librarian";
|
|
42
45
|
explore: "explore";
|
|
@@ -44,7 +47,7 @@ export declare const AgentNameSchema: z.ZodEnum<{
|
|
|
44
47
|
metis: "metis";
|
|
45
48
|
momus: "momus";
|
|
46
49
|
atlas: "atlas";
|
|
47
|
-
|
|
50
|
+
chat: "chat";
|
|
48
51
|
}>;
|
|
49
52
|
export type AgentName = z.infer<typeof AgentNameSchema>;
|
|
50
53
|
export type BuiltinSkillName = z.infer<typeof BuiltinSkillNameSchema>;
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const AgentOverrideConfigSchema: z.ZodObject<{
|
|
3
3
|
model: z.ZodOptional<z.ZodString>;
|
|
4
|
-
|
|
4
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
5
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
6
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7
|
+
model: z.ZodString;
|
|
8
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
9
|
+
}, z.core.$strip>]>>]>>;
|
|
5
10
|
variant: z.ZodOptional<z.ZodString>;
|
|
6
11
|
category: z.ZodOptional<z.ZodString>;
|
|
7
12
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -13,8 +18,8 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
|
|
|
13
18
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
14
19
|
description: z.ZodOptional<z.ZodString>;
|
|
15
20
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
16
|
-
primary: "primary";
|
|
17
21
|
subagent: "subagent";
|
|
22
|
+
primary: "primary";
|
|
18
23
|
all: "all";
|
|
19
24
|
}>>;
|
|
20
25
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -74,6 +79,9 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
|
|
|
74
79
|
high: "high";
|
|
75
80
|
}>>;
|
|
76
81
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
82
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
83
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
84
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
77
85
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
78
86
|
model: z.ZodOptional<z.ZodString>;
|
|
79
87
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -86,7 +94,12 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
|
|
|
86
94
|
export declare const AgentOverridesSchema: z.ZodObject<{
|
|
87
95
|
build: z.ZodOptional<z.ZodObject<{
|
|
88
96
|
model: z.ZodOptional<z.ZodString>;
|
|
89
|
-
|
|
97
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
98
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
99
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
100
|
+
model: z.ZodString;
|
|
101
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
102
|
+
}, z.core.$strip>]>>]>>;
|
|
90
103
|
variant: z.ZodOptional<z.ZodString>;
|
|
91
104
|
category: z.ZodOptional<z.ZodString>;
|
|
92
105
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -98,8 +111,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
98
111
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
99
112
|
description: z.ZodOptional<z.ZodString>;
|
|
100
113
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
101
|
-
primary: "primary";
|
|
102
114
|
subagent: "subagent";
|
|
115
|
+
primary: "primary";
|
|
103
116
|
all: "all";
|
|
104
117
|
}>>;
|
|
105
118
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -159,6 +172,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
159
172
|
high: "high";
|
|
160
173
|
}>>;
|
|
161
174
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
175
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
176
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
177
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
162
178
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
163
179
|
model: z.ZodOptional<z.ZodString>;
|
|
164
180
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -170,7 +186,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
170
186
|
}, z.core.$strip>>;
|
|
171
187
|
plan: z.ZodOptional<z.ZodObject<{
|
|
172
188
|
model: z.ZodOptional<z.ZodString>;
|
|
173
|
-
|
|
189
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
190
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
191
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
192
|
+
model: z.ZodString;
|
|
193
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
194
|
+
}, z.core.$strip>]>>]>>;
|
|
174
195
|
variant: z.ZodOptional<z.ZodString>;
|
|
175
196
|
category: z.ZodOptional<z.ZodString>;
|
|
176
197
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -182,8 +203,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
182
203
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
183
204
|
description: z.ZodOptional<z.ZodString>;
|
|
184
205
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
185
|
-
primary: "primary";
|
|
186
206
|
subagent: "subagent";
|
|
207
|
+
primary: "primary";
|
|
187
208
|
all: "all";
|
|
188
209
|
}>>;
|
|
189
210
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -243,6 +264,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
243
264
|
high: "high";
|
|
244
265
|
}>>;
|
|
245
266
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
267
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
268
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
269
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
246
270
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
247
271
|
model: z.ZodOptional<z.ZodString>;
|
|
248
272
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -254,7 +278,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
254
278
|
}, z.core.$strip>>;
|
|
255
279
|
sisyphus: z.ZodOptional<z.ZodObject<{
|
|
256
280
|
model: z.ZodOptional<z.ZodString>;
|
|
257
|
-
|
|
281
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
282
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
283
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
284
|
+
model: z.ZodString;
|
|
285
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
286
|
+
}, z.core.$strip>]>>]>>;
|
|
258
287
|
variant: z.ZodOptional<z.ZodString>;
|
|
259
288
|
category: z.ZodOptional<z.ZodString>;
|
|
260
289
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -266,8 +295,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
266
295
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
267
296
|
description: z.ZodOptional<z.ZodString>;
|
|
268
297
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
269
|
-
primary: "primary";
|
|
270
298
|
subagent: "subagent";
|
|
299
|
+
primary: "primary";
|
|
271
300
|
all: "all";
|
|
272
301
|
}>>;
|
|
273
302
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -327,6 +356,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
327
356
|
high: "high";
|
|
328
357
|
}>>;
|
|
329
358
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
359
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
360
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
361
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
330
362
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
331
363
|
model: z.ZodOptional<z.ZodString>;
|
|
332
364
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -338,7 +370,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
338
370
|
}, z.core.$strip>>;
|
|
339
371
|
hephaestus: z.ZodOptional<z.ZodObject<{
|
|
340
372
|
model: z.ZodOptional<z.ZodString>;
|
|
341
|
-
|
|
373
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
374
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
375
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
376
|
+
model: z.ZodString;
|
|
377
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
378
|
+
}, z.core.$strip>]>>]>>;
|
|
342
379
|
variant: z.ZodOptional<z.ZodString>;
|
|
343
380
|
category: z.ZodOptional<z.ZodString>;
|
|
344
381
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -350,8 +387,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
350
387
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
351
388
|
description: z.ZodOptional<z.ZodString>;
|
|
352
389
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
353
|
-
primary: "primary";
|
|
354
390
|
subagent: "subagent";
|
|
391
|
+
primary: "primary";
|
|
355
392
|
all: "all";
|
|
356
393
|
}>>;
|
|
357
394
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -411,6 +448,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
411
448
|
high: "high";
|
|
412
449
|
}>>;
|
|
413
450
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
451
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
452
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
453
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
414
454
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
415
455
|
model: z.ZodOptional<z.ZodString>;
|
|
416
456
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -423,7 +463,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
423
463
|
}, z.core.$strip>>;
|
|
424
464
|
"sisyphus-junior": z.ZodOptional<z.ZodObject<{
|
|
425
465
|
model: z.ZodOptional<z.ZodString>;
|
|
426
|
-
|
|
466
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
467
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
468
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
469
|
+
model: z.ZodString;
|
|
470
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
471
|
+
}, z.core.$strip>]>>]>>;
|
|
427
472
|
variant: z.ZodOptional<z.ZodString>;
|
|
428
473
|
category: z.ZodOptional<z.ZodString>;
|
|
429
474
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -435,8 +480,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
435
480
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
436
481
|
description: z.ZodOptional<z.ZodString>;
|
|
437
482
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
438
|
-
primary: "primary";
|
|
439
483
|
subagent: "subagent";
|
|
484
|
+
primary: "primary";
|
|
440
485
|
all: "all";
|
|
441
486
|
}>>;
|
|
442
487
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -496,6 +541,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
496
541
|
high: "high";
|
|
497
542
|
}>>;
|
|
498
543
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
544
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
545
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
546
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
499
547
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
500
548
|
model: z.ZodOptional<z.ZodString>;
|
|
501
549
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -507,7 +555,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
507
555
|
}, z.core.$strip>>;
|
|
508
556
|
"OpenCode-Builder": z.ZodOptional<z.ZodObject<{
|
|
509
557
|
model: z.ZodOptional<z.ZodString>;
|
|
510
|
-
|
|
558
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
559
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
560
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
561
|
+
model: z.ZodString;
|
|
562
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
563
|
+
}, z.core.$strip>]>>]>>;
|
|
511
564
|
variant: z.ZodOptional<z.ZodString>;
|
|
512
565
|
category: z.ZodOptional<z.ZodString>;
|
|
513
566
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -519,8 +572,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
519
572
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
520
573
|
description: z.ZodOptional<z.ZodString>;
|
|
521
574
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
522
|
-
primary: "primary";
|
|
523
575
|
subagent: "subagent";
|
|
576
|
+
primary: "primary";
|
|
524
577
|
all: "all";
|
|
525
578
|
}>>;
|
|
526
579
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -580,6 +633,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
580
633
|
high: "high";
|
|
581
634
|
}>>;
|
|
582
635
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
636
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
637
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
638
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
583
639
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
584
640
|
model: z.ZodOptional<z.ZodString>;
|
|
585
641
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -591,7 +647,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
591
647
|
}, z.core.$strip>>;
|
|
592
648
|
prometheus: z.ZodOptional<z.ZodObject<{
|
|
593
649
|
model: z.ZodOptional<z.ZodString>;
|
|
594
|
-
|
|
650
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
651
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
652
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
653
|
+
model: z.ZodString;
|
|
654
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
655
|
+
}, z.core.$strip>]>>]>>;
|
|
595
656
|
variant: z.ZodOptional<z.ZodString>;
|
|
596
657
|
category: z.ZodOptional<z.ZodString>;
|
|
597
658
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -603,8 +664,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
603
664
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
604
665
|
description: z.ZodOptional<z.ZodString>;
|
|
605
666
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
606
|
-
primary: "primary";
|
|
607
667
|
subagent: "subagent";
|
|
668
|
+
primary: "primary";
|
|
608
669
|
all: "all";
|
|
609
670
|
}>>;
|
|
610
671
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -664,6 +725,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
664
725
|
high: "high";
|
|
665
726
|
}>>;
|
|
666
727
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
728
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
729
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
730
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
667
731
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
668
732
|
model: z.ZodOptional<z.ZodString>;
|
|
669
733
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -675,7 +739,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
675
739
|
}, z.core.$strip>>;
|
|
676
740
|
metis: z.ZodOptional<z.ZodObject<{
|
|
677
741
|
model: z.ZodOptional<z.ZodString>;
|
|
678
|
-
|
|
742
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
743
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
744
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
745
|
+
model: z.ZodString;
|
|
746
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
747
|
+
}, z.core.$strip>]>>]>>;
|
|
679
748
|
variant: z.ZodOptional<z.ZodString>;
|
|
680
749
|
category: z.ZodOptional<z.ZodString>;
|
|
681
750
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -687,8 +756,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
687
756
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
688
757
|
description: z.ZodOptional<z.ZodString>;
|
|
689
758
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
690
|
-
primary: "primary";
|
|
691
759
|
subagent: "subagent";
|
|
760
|
+
primary: "primary";
|
|
692
761
|
all: "all";
|
|
693
762
|
}>>;
|
|
694
763
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -748,6 +817,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
748
817
|
high: "high";
|
|
749
818
|
}>>;
|
|
750
819
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
820
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
821
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
822
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
751
823
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
752
824
|
model: z.ZodOptional<z.ZodString>;
|
|
753
825
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -759,7 +831,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
759
831
|
}, z.core.$strip>>;
|
|
760
832
|
momus: z.ZodOptional<z.ZodObject<{
|
|
761
833
|
model: z.ZodOptional<z.ZodString>;
|
|
762
|
-
|
|
834
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
835
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
836
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
837
|
+
model: z.ZodString;
|
|
838
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
839
|
+
}, z.core.$strip>]>>]>>;
|
|
763
840
|
variant: z.ZodOptional<z.ZodString>;
|
|
764
841
|
category: z.ZodOptional<z.ZodString>;
|
|
765
842
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -771,8 +848,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
771
848
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
772
849
|
description: z.ZodOptional<z.ZodString>;
|
|
773
850
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
774
|
-
primary: "primary";
|
|
775
851
|
subagent: "subagent";
|
|
852
|
+
primary: "primary";
|
|
776
853
|
all: "all";
|
|
777
854
|
}>>;
|
|
778
855
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -832,6 +909,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
832
909
|
high: "high";
|
|
833
910
|
}>>;
|
|
834
911
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
912
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
913
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
914
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
835
915
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
836
916
|
model: z.ZodOptional<z.ZodString>;
|
|
837
917
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -843,7 +923,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
843
923
|
}, z.core.$strip>>;
|
|
844
924
|
oracle: z.ZodOptional<z.ZodObject<{
|
|
845
925
|
model: z.ZodOptional<z.ZodString>;
|
|
846
|
-
|
|
926
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
927
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
928
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
929
|
+
model: z.ZodString;
|
|
930
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
931
|
+
}, z.core.$strip>]>>]>>;
|
|
847
932
|
variant: z.ZodOptional<z.ZodString>;
|
|
848
933
|
category: z.ZodOptional<z.ZodString>;
|
|
849
934
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -855,8 +940,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
855
940
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
856
941
|
description: z.ZodOptional<z.ZodString>;
|
|
857
942
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
858
|
-
primary: "primary";
|
|
859
943
|
subagent: "subagent";
|
|
944
|
+
primary: "primary";
|
|
860
945
|
all: "all";
|
|
861
946
|
}>>;
|
|
862
947
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -916,6 +1001,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
916
1001
|
high: "high";
|
|
917
1002
|
}>>;
|
|
918
1003
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1004
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
1005
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
1006
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
919
1007
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
920
1008
|
model: z.ZodOptional<z.ZodString>;
|
|
921
1009
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -927,7 +1015,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
927
1015
|
}, z.core.$strip>>;
|
|
928
1016
|
librarian: z.ZodOptional<z.ZodObject<{
|
|
929
1017
|
model: z.ZodOptional<z.ZodString>;
|
|
930
|
-
|
|
1018
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
1019
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1020
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1021
|
+
model: z.ZodString;
|
|
1022
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1023
|
+
}, z.core.$strip>]>>]>>;
|
|
931
1024
|
variant: z.ZodOptional<z.ZodString>;
|
|
932
1025
|
category: z.ZodOptional<z.ZodString>;
|
|
933
1026
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -939,8 +1032,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
939
1032
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
940
1033
|
description: z.ZodOptional<z.ZodString>;
|
|
941
1034
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
942
|
-
primary: "primary";
|
|
943
1035
|
subagent: "subagent";
|
|
1036
|
+
primary: "primary";
|
|
944
1037
|
all: "all";
|
|
945
1038
|
}>>;
|
|
946
1039
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -1000,6 +1093,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1000
1093
|
high: "high";
|
|
1001
1094
|
}>>;
|
|
1002
1095
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1096
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
1097
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
1098
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1003
1099
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
1004
1100
|
model: z.ZodOptional<z.ZodString>;
|
|
1005
1101
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -1011,7 +1107,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1011
1107
|
}, z.core.$strip>>;
|
|
1012
1108
|
explore: z.ZodOptional<z.ZodObject<{
|
|
1013
1109
|
model: z.ZodOptional<z.ZodString>;
|
|
1014
|
-
|
|
1110
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
1111
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1112
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1113
|
+
model: z.ZodString;
|
|
1114
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1115
|
+
}, z.core.$strip>]>>]>>;
|
|
1015
1116
|
variant: z.ZodOptional<z.ZodString>;
|
|
1016
1117
|
category: z.ZodOptional<z.ZodString>;
|
|
1017
1118
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1023,8 +1124,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1023
1124
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
1024
1125
|
description: z.ZodOptional<z.ZodString>;
|
|
1025
1126
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1026
|
-
primary: "primary";
|
|
1027
1127
|
subagent: "subagent";
|
|
1128
|
+
primary: "primary";
|
|
1028
1129
|
all: "all";
|
|
1029
1130
|
}>>;
|
|
1030
1131
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -1084,6 +1185,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1084
1185
|
high: "high";
|
|
1085
1186
|
}>>;
|
|
1086
1187
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1188
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
1189
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
1190
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1087
1191
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
1088
1192
|
model: z.ZodOptional<z.ZodString>;
|
|
1089
1193
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -1095,7 +1199,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1095
1199
|
}, z.core.$strip>>;
|
|
1096
1200
|
"multimodal-looker": z.ZodOptional<z.ZodObject<{
|
|
1097
1201
|
model: z.ZodOptional<z.ZodString>;
|
|
1098
|
-
|
|
1202
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
1203
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1204
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1205
|
+
model: z.ZodString;
|
|
1206
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1207
|
+
}, z.core.$strip>]>>]>>;
|
|
1099
1208
|
variant: z.ZodOptional<z.ZodString>;
|
|
1100
1209
|
category: z.ZodOptional<z.ZodString>;
|
|
1101
1210
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1107,8 +1216,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1107
1216
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
1108
1217
|
description: z.ZodOptional<z.ZodString>;
|
|
1109
1218
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1110
|
-
primary: "primary";
|
|
1111
1219
|
subagent: "subagent";
|
|
1220
|
+
primary: "primary";
|
|
1112
1221
|
all: "all";
|
|
1113
1222
|
}>>;
|
|
1114
1223
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -1168,6 +1277,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1168
1277
|
high: "high";
|
|
1169
1278
|
}>>;
|
|
1170
1279
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1280
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
1281
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
1282
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1171
1283
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
1172
1284
|
model: z.ZodOptional<z.ZodString>;
|
|
1173
1285
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -1179,7 +1291,12 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1179
1291
|
}, z.core.$strip>>;
|
|
1180
1292
|
atlas: z.ZodOptional<z.ZodObject<{
|
|
1181
1293
|
model: z.ZodOptional<z.ZodString>;
|
|
1182
|
-
|
|
1294
|
+
fallback_model: z.ZodOptional<z.ZodString>;
|
|
1295
|
+
fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1296
|
+
providers: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1297
|
+
model: z.ZodString;
|
|
1298
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1299
|
+
}, z.core.$strip>]>>]>>;
|
|
1183
1300
|
variant: z.ZodOptional<z.ZodString>;
|
|
1184
1301
|
category: z.ZodOptional<z.ZodString>;
|
|
1185
1302
|
skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1191,8 +1308,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1191
1308
|
disable: z.ZodOptional<z.ZodBoolean>;
|
|
1192
1309
|
description: z.ZodOptional<z.ZodString>;
|
|
1193
1310
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1194
|
-
primary: "primary";
|
|
1195
1311
|
subagent: "subagent";
|
|
1312
|
+
primary: "primary";
|
|
1196
1313
|
all: "all";
|
|
1197
1314
|
}>>;
|
|
1198
1315
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -1252,6 +1369,9 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1252
1369
|
high: "high";
|
|
1253
1370
|
}>>;
|
|
1254
1371
|
providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1372
|
+
requires_model: z.ZodOptional<z.ZodString>;
|
|
1373
|
+
requires_any_model: z.ZodOptional<z.ZodBoolean>;
|
|
1374
|
+
requires_provider: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1255
1375
|
ultrawork: z.ZodOptional<z.ZodObject<{
|
|
1256
1376
|
model: z.ZodOptional<z.ZodString>;
|
|
1257
1377
|
variant: z.ZodOptional<z.ZodString>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|