@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.
Files changed (499) hide show
  1. package/README.md +61 -367
  2. package/dist/agents/atlas/agent.d.ts +1 -1
  3. package/dist/agents/atlas/default.d.ts +1 -1
  4. package/dist/agents/atlas/gemini.d.ts +1 -1
  5. package/dist/agents/atlas/gpt.d.ts +1 -1
  6. package/dist/agents/atlas/prompt-section-builder.d.ts +1 -1
  7. package/dist/agents/builtin-agents/atlas-agent.d.ts +4 -1
  8. package/dist/agents/builtin-agents/available-skills.d.ts +1 -1
  9. package/dist/agents/builtin-agents/general-agents.d.ts +4 -1
  10. package/dist/agents/builtin-agents/hephaestus-agent.d.ts +5 -1
  11. package/dist/agents/builtin-agents/model-resolution.d.ts +2 -0
  12. package/dist/agents/builtin-agents/resolve-file-uri.test.d.ts +1 -0
  13. package/dist/agents/builtin-agents/sisyphus-agent.d.ts +4 -1
  14. package/dist/agents/builtin-agents.d.ts +3 -3
  15. package/dist/agents/chat.d.ts +7 -0
  16. package/dist/agents/dynamic-agent-prompt-builder.test.d.ts +1 -0
  17. package/dist/agents/env-context.test.d.ts +1 -0
  18. package/dist/agents/hephaestus/agent.d.ts +19 -0
  19. package/dist/agents/hephaestus/agent.test.d.ts +1 -0
  20. package/dist/agents/hephaestus/gpt-5-3-codex.d.ts +21 -0
  21. package/dist/agents/hephaestus/gpt-5-4.d.ts +3 -0
  22. package/dist/agents/hephaestus/gpt.d.ts +3 -0
  23. package/dist/agents/hephaestus/index.d.ts +2 -0
  24. package/dist/agents/hephaestus.d.ts +1 -1
  25. package/dist/agents/index.d.ts +1 -1
  26. package/dist/agents/metis.d.ts +1 -1
  27. package/dist/agents/momus.d.ts +1 -1
  28. package/dist/agents/momus.test.d.ts +1 -0
  29. package/dist/agents/prometheus-prompt.test.d.ts +1 -0
  30. package/dist/agents/prompts/agent-role.d.ts +2 -0
  31. package/dist/agents/prompts/anti-patterns.d.ts +2 -0
  32. package/dist/agents/prompts/base-system.d.ts +1 -0
  33. package/dist/agents/prompts/execution-rules.d.ts +2 -0
  34. package/dist/agents/prompts/hard-blocks.d.ts +2 -0
  35. package/dist/agents/prompts/index.d.ts +6 -0
  36. package/dist/agents/{dynamic-agent-prompt-builder.d.ts → prompts/orchestration.d.ts} +2 -23
  37. package/dist/agents/prompts/skill-context.d.ts +2 -0
  38. package/dist/agents/runtime/action-validator.d.ts +31 -0
  39. package/dist/agents/runtime/agent-logger.d.ts +15 -0
  40. package/dist/agents/runtime/loop-guard.d.ts +2 -0
  41. package/dist/agents/runtime/verify-action.d.ts +58 -0
  42. package/dist/agents/sisyphus/default.d.ts +9 -0
  43. package/dist/agents/sisyphus/gemini.d.ts +20 -0
  44. package/dist/agents/sisyphus/gpt-5-4.d.ts +16 -0
  45. package/dist/agents/sisyphus/index.d.ts +11 -0
  46. package/dist/agents/sisyphus-junior/index.test.d.ts +1 -0
  47. package/dist/agents/sisyphus.d.ts +1 -1
  48. package/dist/agents/tool-restrictions.test.d.ts +1 -0
  49. package/dist/agents/types.d.ts +24 -6
  50. package/dist/agents/types.test.d.ts +1 -0
  51. package/dist/agents/utils.test.d.ts +1 -0
  52. package/dist/cli/cli-installer.test.d.ts +1 -0
  53. package/dist/cli/config-manager/write-omo-config.test.d.ts +1 -0
  54. package/dist/cli/config-manager.test.d.ts +1 -0
  55. package/dist/cli/doctor/checks/config.test.d.ts +1 -0
  56. package/dist/cli/doctor/checks/dependencies.test.d.ts +1 -0
  57. package/dist/cli/doctor/checks/edit-atomicity.d.ts +5 -0
  58. package/dist/cli/doctor/checks/issue-resolution.d.ts +7 -0
  59. package/dist/cli/doctor/checks/model-resolution.test.d.ts +1 -0
  60. package/dist/cli/doctor/checks/plan-compiler.d.ts +8 -0
  61. package/dist/cli/doctor/checks/progress.d.ts +8 -0
  62. package/dist/cli/doctor/checks/run-state-watchdog.d.ts +2 -0
  63. package/dist/cli/doctor/checks/system-loaded-version.test.d.ts +1 -0
  64. package/dist/cli/doctor/checks/system.test.d.ts +1 -0
  65. package/dist/cli/doctor/checks/tool-contract.d.ts +8 -0
  66. package/dist/cli/doctor/checks/tool-metadata.d.ts +2 -0
  67. package/dist/cli/doctor/constants.d.ts +3 -0
  68. package/dist/cli/doctor/format-default.test.d.ts +1 -0
  69. package/dist/cli/doctor/formatter.test.d.ts +1 -0
  70. package/dist/cli/doctor/runner.test.d.ts +1 -0
  71. package/dist/cli/doctor/types.d.ts +3 -0
  72. package/dist/cli/index.js +2542 -214
  73. package/dist/cli/index.test.d.ts +1 -0
  74. package/dist/cli/install.test.d.ts +1 -0
  75. package/dist/cli/mcp-oauth/index.test.d.ts +1 -0
  76. package/dist/cli/mcp-oauth/login.test.d.ts +1 -0
  77. package/dist/cli/mcp-oauth/logout.test.d.ts +1 -0
  78. package/dist/cli/mcp-oauth/status.test.d.ts +1 -0
  79. package/dist/cli/model-fallback.test.d.ts +1 -0
  80. package/dist/cli/provider-model-id-transform.test.d.ts +1 -0
  81. package/dist/cli/run/completion-continuation.test.d.ts +1 -0
  82. package/dist/cli/run/completion-verbose-logging.test.d.ts +1 -0
  83. package/dist/cli/run/completion.test.d.ts +1 -0
  84. package/dist/cli/run/continuation-state-marker.test.d.ts +1 -0
  85. package/dist/cli/run/event-handlers.test.d.ts +1 -0
  86. package/dist/cli/run/events.test.d.ts +1 -0
  87. package/dist/cli/run/integration.test.d.ts +1 -0
  88. package/dist/cli/run/json-output.test.d.ts +1 -0
  89. package/dist/cli/run/message-part-delta.test.d.ts +1 -0
  90. package/dist/cli/run/on-complete-hook.test.d.ts +1 -0
  91. package/dist/cli/run/opencode-binary-resolver.test.d.ts +1 -0
  92. package/dist/cli/run/poll-for-completion.test.d.ts +1 -0
  93. package/dist/cli/run/runner.test.d.ts +1 -0
  94. package/dist/cli/run/server-connection.test.d.ts +1 -0
  95. package/dist/cli/run/session-resolver.test.d.ts +1 -0
  96. package/dist/cli/run/stdin-suppression.test.d.ts +1 -0
  97. package/dist/cli/run/timestamp-output.test.d.ts +1 -0
  98. package/dist/config/schema/agent-names.d.ts +6 -3
  99. package/dist/config/schema/agent-overrides.d.ts +150 -30
  100. package/dist/config/schema/background-task.test.d.ts +1 -0
  101. package/dist/config/schema/categories.d.ts +21 -3
  102. package/dist/config/schema/categories.test.d.ts +1 -0
  103. package/dist/config/schema/fallback-models.d.ts +11 -1
  104. package/dist/config/schema/hooks.d.ts +7 -0
  105. package/dist/config/schema/oh-my-opencode-config.d.ts +151 -29
  106. package/dist/config/schema.test.d.ts +1 -0
  107. package/dist/create-hooks.d.ts +11 -1
  108. package/dist/create-managers.d.ts +2 -0
  109. package/dist/create-tools.d.ts +1 -1
  110. package/dist/features/background-agent/compaction-aware-message-resolver.test.d.ts +1 -0
  111. package/dist/features/background-agent/concurrency.test.d.ts +1 -0
  112. package/dist/features/background-agent/error-classifier.test.d.ts +1 -0
  113. package/dist/features/background-agent/fallback-retry-handler.test.d.ts +1 -0
  114. package/dist/features/background-agent/manager.d.ts +13 -0
  115. package/dist/features/background-agent/manager.polling.test.d.ts +1 -0
  116. package/dist/features/background-agent/manager.test.d.ts +1 -0
  117. package/dist/features/background-agent/process-cleanup.test.d.ts +1 -0
  118. package/dist/features/background-agent/session-idle-event-handler.test.d.ts +1 -0
  119. package/dist/features/background-agent/spawner/parent-directory-resolver.test.d.ts +1 -0
  120. package/dist/features/background-agent/spawner.test.d.ts +1 -0
  121. package/dist/features/background-agent/task-history.test.d.ts +1 -0
  122. package/dist/features/background-agent/task-poller.test.d.ts +1 -0
  123. package/dist/features/background-agent/types.d.ts +9 -4
  124. package/dist/features/boulder-state/storage.test.d.ts +1 -0
  125. package/dist/features/builtin-commands/commands.test.d.ts +1 -0
  126. package/dist/features/builtin-commands/templates/stop-continuation.test.d.ts +1 -0
  127. package/dist/features/builtin-skills/skills/git/git-commit.d.ts +2 -0
  128. package/dist/features/builtin-skills/skills/git/git-history.d.ts +1 -0
  129. package/dist/features/builtin-skills/skills/git/git-push-pr.d.ts +1 -0
  130. package/dist/features/builtin-skills/skills/git/git-rebase.d.ts +1 -0
  131. package/dist/features/builtin-skills/skills/git/git-shared.d.ts +2 -0
  132. package/dist/features/builtin-skills/skills.test.d.ts +1 -0
  133. package/dist/features/claude-code-mcp-loader/loader.test.d.ts +1 -0
  134. package/dist/features/claude-code-session-state/state.d.ts +4 -0
  135. package/dist/features/claude-code-session-state/state.test.d.ts +1 -0
  136. package/dist/features/claude-tasks/session-storage.test.d.ts +1 -0
  137. package/dist/features/claude-tasks/storage.test.d.ts +1 -0
  138. package/dist/features/claude-tasks/types.test.d.ts +1 -0
  139. package/dist/features/context-injector/collector.test.d.ts +1 -0
  140. package/dist/features/context-injector/injector.test.d.ts +1 -0
  141. package/dist/features/hook-message-injector/injector.d.ts +2 -0
  142. package/dist/features/hook-message-injector/injector.test.d.ts +1 -0
  143. package/dist/features/issue-resolution/state.d.ts +12 -0
  144. package/dist/features/issue-resolution/tests/integration.test.d.ts +1 -0
  145. package/dist/features/mcp-oauth/callback-server.test.d.ts +1 -0
  146. package/dist/features/mcp-oauth/dcr.test.d.ts +1 -0
  147. package/dist/features/mcp-oauth/discovery.test.d.ts +1 -0
  148. package/dist/features/mcp-oauth/provider.test.d.ts +1 -0
  149. package/dist/features/mcp-oauth/resource-indicator.test.d.ts +1 -0
  150. package/dist/features/mcp-oauth/schema.test.d.ts +1 -0
  151. package/dist/features/mcp-oauth/step-up.test.d.ts +1 -0
  152. package/dist/features/mcp-oauth/storage.test.d.ts +1 -0
  153. package/dist/features/opencode-skill-loader/agents-skills-global.test.d.ts +1 -0
  154. package/dist/features/opencode-skill-loader/async-loader.test.d.ts +1 -0
  155. package/dist/features/opencode-skill-loader/blocking.test.d.ts +1 -0
  156. package/dist/features/opencode-skill-loader/config-source-discovery.test.d.ts +1 -0
  157. package/dist/features/opencode-skill-loader/loader.test.d.ts +1 -0
  158. package/dist/features/opencode-skill-loader/merger.test.d.ts +1 -0
  159. package/dist/features/opencode-skill-loader/skill-content.test.d.ts +1 -0
  160. package/dist/features/pr-state/storage.d.ts +10 -0
  161. package/dist/features/run-continuation-state/storage.test.d.ts +1 -0
  162. package/dist/features/run-state-watchdog/index.d.ts +1 -0
  163. package/dist/features/run-state-watchdog/manager.d.ts +31 -0
  164. package/dist/features/run-state-watchdog/manager.test.d.ts +1 -0
  165. package/dist/features/run-state-watchdog/reconnect.test.d.ts +1 -0
  166. package/dist/features/skill-mcp-manager/env-cleaner.test.d.ts +1 -0
  167. package/dist/features/skill-mcp-manager/manager.test.d.ts +1 -0
  168. package/dist/features/task-toast-manager/manager.d.ts +9 -0
  169. package/dist/features/task-toast-manager/manager.test.d.ts +1 -0
  170. package/dist/features/task-toast-manager/types.d.ts +5 -0
  171. package/dist/features/tmux-subagent/action-executor.test.d.ts +1 -0
  172. package/dist/features/tmux-subagent/decision-engine.test.d.ts +1 -0
  173. package/dist/features/tmux-subagent/layout-config.test.d.ts +1 -0
  174. package/dist/features/tmux-subagent/manager.test.d.ts +1 -0
  175. package/dist/features/tmux-subagent/polling-manager.test.d.ts +1 -0
  176. package/dist/features/tool-metadata-store/index.test.d.ts +1 -0
  177. package/dist/hooks/anthropic-context-window-limit-recovery/empty-content-recovery-sdk.test.d.ts +1 -0
  178. package/dist/hooks/anthropic-context-window-limit-recovery/executor.test.d.ts +1 -0
  179. package/dist/hooks/anthropic-context-window-limit-recovery/parser.test.d.ts +1 -0
  180. package/dist/hooks/anthropic-context-window-limit-recovery/pruning-deduplication.test.d.ts +1 -0
  181. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-deduplication.test.d.ts +1 -0
  182. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-hook.test.d.ts +1 -0
  183. package/dist/hooks/anthropic-context-window-limit-recovery/storage.test.d.ts +1 -0
  184. package/dist/hooks/anthropic-context-window-limit-recovery/summarize-retry-strategy.test.d.ts +1 -0
  185. package/dist/hooks/anthropic-effort/index.test.d.ts +1 -0
  186. package/dist/hooks/atlas/index.test.d.ts +1 -0
  187. package/dist/hooks/auto-slash-command/constants.test.d.ts +1 -0
  188. package/dist/hooks/auto-slash-command/detector.test.d.ts +1 -0
  189. package/dist/hooks/auto-slash-command/executor.test.d.ts +1 -0
  190. package/dist/hooks/auto-slash-command/index.test.d.ts +1 -0
  191. package/dist/hooks/auto-update-checker/checker/pinned-version-updater.test.d.ts +1 -0
  192. package/dist/hooks/auto-update-checker/checker/plugin-entry.test.d.ts +1 -0
  193. package/dist/hooks/auto-update-checker/checker.test.d.ts +1 -0
  194. package/dist/hooks/auto-update-checker/hook/background-update-check.test.d.ts +1 -0
  195. package/dist/hooks/auto-update-checker/hook.test.d.ts +1 -0
  196. package/dist/hooks/auto-update-checker/index.test.d.ts +1 -0
  197. package/dist/hooks/category-skill-reminder/formatter.d.ts +1 -1
  198. package/dist/hooks/category-skill-reminder/hook.d.ts +1 -1
  199. package/dist/hooks/category-skill-reminder/index.test.d.ts +1 -0
  200. package/dist/hooks/claude-code-hooks/execute-http-hook.test.d.ts +1 -0
  201. package/dist/hooks/claude-code-hooks/stop.test.d.ts +1 -0
  202. package/dist/hooks/claude-code-hooks/transcript.test.d.ts +1 -0
  203. package/dist/hooks/claude-code-hooks/user-prompt-submit.test.d.ts +1 -0
  204. package/dist/hooks/comment-checker/cli.test.d.ts +1 -0
  205. package/dist/hooks/comment-checker/hook.apply-patch.test.d.ts +1 -0
  206. package/dist/hooks/comment-checker/pending-calls.test.d.ts +1 -0
  207. package/dist/hooks/compaction-context-injector/index.test.d.ts +1 -0
  208. package/dist/hooks/compaction-todo-preserver/index.test.d.ts +1 -0
  209. package/dist/hooks/context-window-monitor.test.d.ts +1 -0
  210. package/dist/hooks/delegate-task-retry/index.test.d.ts +1 -0
  211. package/dist/hooks/directory-agents-injector/injector.test.d.ts +1 -0
  212. package/dist/hooks/directory-readme-injector/injector.test.d.ts +1 -0
  213. package/dist/hooks/edit-error-recovery/hook.d.ts +2 -1
  214. package/dist/hooks/edit-error-recovery/index.test.d.ts +1 -0
  215. package/dist/hooks/edit-safeguard/hook.d.ts +2 -0
  216. package/dist/hooks/execution-journal/hook.d.ts +19 -0
  217. package/dist/hooks/execution-journal/index.d.ts +1 -0
  218. package/dist/hooks/hashline-read-enhancer/index.test.d.ts +1 -0
  219. package/dist/hooks/index.d.ts +11 -3
  220. package/dist/hooks/json-error-recovery/index.test.d.ts +1 -0
  221. package/dist/hooks/keyword-detector/constants.d.ts +1 -0
  222. package/dist/hooks/keyword-detector/detector.d.ts +1 -1
  223. package/dist/hooks/keyword-detector/index.test.d.ts +1 -0
  224. package/dist/hooks/keyword-detector/issue.d.ts +2 -0
  225. package/dist/hooks/model-fallback/hook.test.d.ts +1 -0
  226. package/dist/hooks/no-hephaestus-non-gpt/index.test.d.ts +1 -0
  227. package/dist/hooks/no-sisyphus-gpt/index.test.d.ts +1 -0
  228. package/dist/hooks/non-interactive-env/index.test.d.ts +1 -0
  229. package/dist/hooks/plan-enforcement/hook.d.ts +29 -0
  230. package/dist/hooks/plan-enforcement/hook.test.d.ts +1 -0
  231. package/dist/hooks/plan-enforcement/index.d.ts +1 -0
  232. package/dist/hooks/preemptive-compaction.test.d.ts +1 -0
  233. package/dist/hooks/prometheus-md-only/index.test.d.ts +1 -0
  234. package/dist/hooks/question-label-truncator/index.test.d.ts +1 -0
  235. package/dist/hooks/ralph-loop/completion-handler.d.ts +14 -0
  236. package/dist/hooks/ralph-loop/completion-promise-detector.d.ts +1 -1
  237. package/dist/hooks/ralph-loop/completion-promise-detector.test.d.ts +1 -0
  238. package/dist/hooks/ralph-loop/constants.d.ts +1 -0
  239. package/dist/hooks/ralph-loop/index.test.d.ts +1 -0
  240. package/dist/hooks/ralph-loop/loop-state-controller.d.ts +2 -0
  241. package/dist/hooks/ralph-loop/ralph-loop-event-handler.d.ts +2 -0
  242. package/dist/hooks/ralph-loop/reset-strategy-race-condition.test.d.ts +1 -0
  243. package/dist/hooks/ralph-loop/session-event-handler.d.ts +12 -0
  244. package/dist/hooks/ralph-loop/types.d.ts +5 -1
  245. package/dist/hooks/ralph-loop/ulw-loop-verification.test.d.ts +1 -0
  246. package/dist/hooks/read-image-resizer/hook.test.d.ts +1 -0
  247. package/dist/hooks/read-image-resizer/image-dimensions.test.d.ts +1 -0
  248. package/dist/hooks/read-image-resizer/image-resizer.test.d.ts +1 -0
  249. package/dist/hooks/rules-injector/finder.test.d.ts +1 -0
  250. package/dist/hooks/rules-injector/injector.test.d.ts +1 -0
  251. package/dist/hooks/rules-injector/output-path.test.d.ts +1 -0
  252. package/dist/hooks/rules-injector/parser.test.d.ts +1 -0
  253. package/dist/hooks/run-state-watchdog/hook.d.ts +5 -0
  254. package/dist/hooks/run-state-watchdog/index.d.ts +1 -0
  255. package/dist/hooks/runtime-enforcement/hook.d.ts +10 -0
  256. package/dist/hooks/runtime-enforcement/hook.test.d.ts +1 -0
  257. package/dist/hooks/runtime-enforcement/index.d.ts +1 -0
  258. package/dist/hooks/runtime-enforcement/synthetic-injection.test.d.ts +1 -0
  259. package/dist/hooks/runtime-fallback/index.test.d.ts +1 -0
  260. package/dist/hooks/semantic-loop-guard/hook.d.ts +10 -0
  261. package/dist/hooks/semantic-loop-guard/hook.test.d.ts +1 -0
  262. package/dist/hooks/semantic-loop-guard/index.d.ts +1 -0
  263. package/dist/hooks/session-notification-input-needed.test.d.ts +1 -0
  264. package/dist/hooks/session-notification.test.d.ts +1 -0
  265. package/dist/hooks/session-recovery/detect-error-type.test.d.ts +1 -0
  266. package/dist/hooks/session-recovery/index.test.d.ts +1 -0
  267. package/dist/hooks/session-recovery/recover-empty-content-message-sdk.test.d.ts +1 -0
  268. package/dist/hooks/session-recovery/resume.test.d.ts +1 -0
  269. package/dist/hooks/session-recovery/storage/readers-from-sdk.test.d.ts +1 -0
  270. package/dist/hooks/start-work/index.test.d.ts +1 -0
  271. package/dist/hooks/start-work/parse-user-request.test.d.ts +1 -0
  272. package/dist/hooks/start-work/worktree-detector.test.d.ts +1 -0
  273. package/dist/hooks/stop-continuation-guard/index.test.d.ts +1 -0
  274. package/dist/hooks/task-reminder/index.test.d.ts +1 -0
  275. package/dist/hooks/task-resume-info/index.test.d.ts +1 -0
  276. package/dist/hooks/tasks-todowrite-disabler/index.test.d.ts +1 -0
  277. package/dist/hooks/think-mode/index.test.d.ts +1 -0
  278. package/dist/hooks/think-mode/switcher.test.d.ts +1 -0
  279. package/dist/hooks/todo-continuation-enforcer/continuation-injection.test.d.ts +1 -0
  280. package/dist/hooks/todo-continuation-enforcer/pending-question-detection.test.d.ts +1 -0
  281. package/dist/hooks/todo-continuation-enforcer/todo-continuation-enforcer.test.d.ts +1 -0
  282. package/dist/hooks/tool-contract/hook.d.ts +19 -0
  283. package/dist/hooks/tool-contract/hook.test.d.ts +1 -0
  284. package/dist/hooks/tool-contract/index.d.ts +1 -0
  285. package/dist/hooks/tool-output-truncator.test.d.ts +1 -0
  286. package/dist/hooks/unstable-agent-babysitter/index.test.d.ts +1 -0
  287. package/dist/hooks/write-existing-file-guard/index.test.d.ts +1 -0
  288. package/dist/hooks/xai-usage-patch/hook.d.ts +20 -0
  289. package/dist/hooks/xai-usage-patch/hook.test.d.ts +1 -0
  290. package/dist/index.compaction-model-agnostic.static.test.d.ts +1 -0
  291. package/dist/index.js +4980 -14453
  292. package/dist/index.test.d.ts +1 -0
  293. package/dist/mcp/index.test.d.ts +1 -0
  294. package/dist/mcp/websearch.test.d.ts +1 -0
  295. package/dist/oh-my-opencode.schema.json +622 -15
  296. package/dist/plugin/available-categories.d.ts +1 -1
  297. package/dist/plugin/chat-headers.test.d.ts +1 -0
  298. package/dist/plugin/chat-message.test.d.ts +1 -0
  299. package/dist/plugin/chat-params.test.d.ts +1 -0
  300. package/dist/plugin/event.model-fallback.test.d.ts +1 -0
  301. package/dist/plugin/event.test.d.ts +1 -0
  302. package/dist/plugin/hooks/create-core-hooks.d.ts +10 -0
  303. package/dist/plugin/hooks/create-session-hooks.d.ts +4 -1
  304. package/dist/plugin/hooks/create-skill-hooks.d.ts +1 -1
  305. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +7 -1
  306. package/dist/plugin/recent-synthetic-idles.test.d.ts +1 -0
  307. package/dist/plugin/session-agent-resolver.test.d.ts +1 -0
  308. package/dist/plugin/session-status-normalizer.test.d.ts +1 -0
  309. package/dist/plugin/skill-context.d.ts +1 -1
  310. package/dist/plugin/tool-execute-before-session-notification.test.d.ts +1 -0
  311. package/dist/plugin/tool-execute-before.test.d.ts +1 -0
  312. package/dist/plugin/tool-normalization.test.d.ts +1 -0
  313. package/dist/plugin/tool-registry.d.ts +1 -1
  314. package/dist/plugin/truth-model-integration.test.d.ts +1 -0
  315. package/dist/plugin/ultrawork-db-model-override.test.d.ts +1 -0
  316. package/dist/plugin/ultrawork-model-override.test.d.ts +1 -0
  317. package/dist/plugin-config.test.d.ts +1 -0
  318. package/dist/plugin-handlers/agent-key-remapper.test.d.ts +1 -0
  319. package/dist/plugin-handlers/config-handler-formatter.test.d.ts +1 -0
  320. package/dist/plugin-handlers/config-handler.test.d.ts +1 -0
  321. package/dist/plugin-handlers/mcp-config-handler.test.d.ts +1 -0
  322. package/dist/plugin-handlers/plan-model-inheritance.test.d.ts +1 -0
  323. package/dist/plugin-handlers/prometheus-agent-config-builder.d.ts +3 -2
  324. package/dist/plugin-handlers/tool-config-handler.test.d.ts +1 -0
  325. package/dist/runtime/journal.d.ts +33 -0
  326. package/dist/runtime/plan-compiler.d.ts +20 -0
  327. package/dist/runtime/plan-compiler.test.d.ts +1 -0
  328. package/dist/runtime/startup-validation.d.ts +7 -0
  329. package/dist/runtime/state-ledger.d.ts +52 -0
  330. package/dist/runtime/tools/complete-task.d.ts +4 -0
  331. package/dist/runtime/tools/fs-safe.contract.test.d.ts +1 -0
  332. package/dist/runtime/tools/fs-safe.d.ts +1 -0
  333. package/dist/runtime/tools/gh-safe.d.ts +1 -0
  334. package/dist/runtime/tools/git-safe.d.ts +1 -0
  335. package/dist/runtime/tools/index.d.ts +8 -0
  336. package/dist/runtime/tools/plan.d.ts +3 -0
  337. package/dist/runtime/tools/query-ledger.d.ts +3 -0
  338. package/dist/runtime/tools/registry.d.ts +8 -0
  339. package/dist/runtime/tools/report-issue-verification.d.ts +1 -0
  340. package/dist/runtime/tools/verify.d.ts +1 -0
  341. package/dist/runtime/truth-model.test.d.ts +1 -0
  342. package/dist/runtime/vcs-detection.test.d.ts +1 -0
  343. package/dist/shared/active-task-storage.d.ts +15 -0
  344. package/dist/shared/agent-config-integration.test.d.ts +1 -0
  345. package/dist/shared/agent-display-names.test.d.ts +1 -0
  346. package/dist/shared/agent-variant.test.d.ts +1 -0
  347. package/dist/shared/claude-config-dir.test.d.ts +1 -0
  348. package/dist/shared/connected-providers-cache.test.d.ts +1 -0
  349. package/dist/shared/deep-merge.test.d.ts +1 -0
  350. package/dist/shared/dynamic-truncator.test.d.ts +1 -0
  351. package/dist/shared/external-plugin-detector.test.d.ts +1 -0
  352. package/dist/shared/file-utils.test.d.ts +1 -0
  353. package/dist/shared/first-message-variant.test.d.ts +1 -0
  354. package/dist/shared/frontmatter.test.d.ts +1 -0
  355. package/dist/shared/git-worktree/collect-git-diff-stats.test.d.ts +1 -0
  356. package/dist/shared/git-worktree/git-worktree.test.d.ts +1 -0
  357. package/dist/shared/git-worktree/parse-status-porcelain-line.test.d.ts +1 -0
  358. package/dist/shared/index.d.ts +2 -0
  359. package/dist/shared/jsonc-parser.test.d.ts +1 -0
  360. package/dist/shared/merge-categories.test.d.ts +1 -0
  361. package/dist/shared/migration.test.d.ts +1 -0
  362. package/dist/shared/model-availability.d.ts +6 -0
  363. package/dist/shared/model-availability.test.d.ts +1 -0
  364. package/dist/shared/model-error-classifier.d.ts +5 -0
  365. package/dist/shared/model-error-classifier.test.d.ts +1 -0
  366. package/dist/shared/model-format-normalizer.test.d.ts +1 -0
  367. package/dist/shared/model-normalization.test.d.ts +1 -0
  368. package/dist/shared/model-requirements.d.ts +6 -0
  369. package/dist/shared/model-requirements.test.d.ts +1 -0
  370. package/dist/shared/model-resolution-acceptance.test.d.ts +1 -0
  371. package/dist/shared/model-resolution-pipeline.d.ts +5 -1
  372. package/dist/shared/model-resolution-pipeline.test.d.ts +1 -0
  373. package/dist/shared/model-resolution-tracker.d.ts +17 -0
  374. package/dist/shared/model-resolution-types.d.ts +7 -1
  375. package/dist/shared/model-resolver.d.ts +10 -3
  376. package/dist/shared/model-resolver.test.d.ts +1 -0
  377. package/dist/shared/model-suggestion-retry.test.d.ts +1 -0
  378. package/dist/shared/normalize-sdk-response.test.d.ts +1 -0
  379. package/dist/shared/opencode-config-dir.test.d.ts +1 -0
  380. package/dist/shared/opencode-http-api.test.d.ts +1 -0
  381. package/dist/shared/opencode-message-dir.test.d.ts +1 -0
  382. package/dist/shared/opencode-server-auth.test.d.ts +1 -0
  383. package/dist/shared/opencode-storage-detection.test.d.ts +1 -0
  384. package/dist/shared/opencode-version.test.d.ts +1 -0
  385. package/dist/shared/pattern-matcher.test.d.ts +1 -0
  386. package/dist/shared/permission-compat.test.d.ts +1 -0
  387. package/dist/shared/plugin-command-discovery.test.d.ts +1 -0
  388. package/dist/shared/port-utils.test.d.ts +1 -0
  389. package/dist/shared/prompt-tools.test.d.ts +1 -0
  390. package/dist/shared/read-permission-tracker.d.ts +15 -0
  391. package/dist/shared/safe-create-hook.test.d.ts +1 -0
  392. package/dist/shared/session-cursor.test.d.ts +1 -0
  393. package/dist/shared/session-directory-resolver.test.d.ts +1 -0
  394. package/dist/shared/session-model-state.test.d.ts +1 -0
  395. package/dist/shared/session-tools-store.test.d.ts +1 -0
  396. package/dist/shared/shell-env.test.d.ts +1 -0
  397. package/dist/shared/skill-path-resolver.test.d.ts +1 -0
  398. package/dist/shared/system-directive.test.d.ts +1 -0
  399. package/dist/shared/tmux/tmux-utils/layout.test.d.ts +1 -0
  400. package/dist/shared/tmux/tmux-utils.test.d.ts +1 -0
  401. package/dist/shared/tool-name.test.d.ts +1 -0
  402. package/dist/shared/truncate-description.test.d.ts +1 -0
  403. package/dist/shared/verify-task-completion.d.ts +1 -0
  404. package/dist/tools/background-task/create-background-output.blocking.test.d.ts +1 -0
  405. package/dist/tools/background-task/create-background-task.test.d.ts +1 -0
  406. package/dist/tools/background-task/tools.test.d.ts +1 -0
  407. package/dist/tools/call-omo-agent/background-agent-executor.test.d.ts +1 -0
  408. package/dist/tools/call-omo-agent/background-executor.test.d.ts +1 -0
  409. package/dist/tools/call-omo-agent/session-creator.test.d.ts +1 -0
  410. package/dist/tools/call-omo-agent/subagent-session-creator.test.d.ts +1 -0
  411. package/dist/tools/call-omo-agent/sync-executor.test.d.ts +1 -0
  412. package/dist/tools/call-omo-agent/tools.test.d.ts +1 -0
  413. package/dist/tools/delegate-task/background-continuation.test.d.ts +1 -0
  414. package/dist/tools/delegate-task/background-task.d.ts +1 -1
  415. package/dist/tools/delegate-task/background-task.test.d.ts +1 -0
  416. package/dist/tools/delegate-task/category-resolver.d.ts +1 -0
  417. package/dist/tools/delegate-task/category-resolver.test.d.ts +1 -0
  418. package/dist/tools/delegate-task/constants.d.ts +1 -1
  419. package/dist/tools/delegate-task/metadata-await.test.d.ts +1 -0
  420. package/dist/tools/delegate-task/metadata-model-unification.test.d.ts +1 -0
  421. package/dist/tools/delegate-task/model-selection.d.ts +2 -0
  422. package/dist/tools/delegate-task/subagent-resolver.d.ts +2 -1
  423. package/dist/tools/delegate-task/subagent-resolver.test.d.ts +1 -0
  424. package/dist/tools/delegate-task/sync-continuation.test.d.ts +1 -0
  425. package/dist/tools/delegate-task/sync-poll-timeout.test.d.ts +1 -0
  426. package/dist/tools/delegate-task/sync-prompt-sender.d.ts +1 -0
  427. package/dist/tools/delegate-task/sync-prompt-sender.test.d.ts +1 -0
  428. package/dist/tools/delegate-task/sync-result-fetcher.test.d.ts +1 -0
  429. package/dist/tools/delegate-task/sync-session-poller.test.d.ts +1 -0
  430. package/dist/tools/delegate-task/sync-task.d.ts +1 -1
  431. package/dist/tools/delegate-task/sync-task.test.d.ts +1 -0
  432. package/dist/tools/delegate-task/timing.test.d.ts +1 -0
  433. package/dist/tools/delegate-task/token-limiter.test.d.ts +1 -0
  434. package/dist/tools/delegate-task/tools.test.d.ts +1 -0
  435. package/dist/tools/delegate-task/types.d.ts +1 -1
  436. package/dist/tools/delegate-task/unstable-agent-task.test.d.ts +1 -0
  437. package/dist/tools/delegate-task/unstable-agent-timeout.test.d.ts +1 -0
  438. package/dist/tools/glob/cli.test.d.ts +1 -0
  439. package/dist/tools/grep/downloader.test.d.ts +1 -0
  440. package/dist/tools/grep/result-formatter.test.d.ts +1 -0
  441. package/dist/tools/hashline-edit/diff-utils.test.d.ts +1 -0
  442. package/dist/tools/hashline-edit/edit-operations.test.d.ts +1 -0
  443. package/dist/tools/hashline-edit/edit-text-normalization.test.d.ts +1 -0
  444. package/dist/tools/hashline-edit/hash-computation.test.d.ts +1 -0
  445. package/dist/tools/hashline-edit/normalize-edits.test.d.ts +1 -0
  446. package/dist/tools/hashline-edit/tools.test.d.ts +1 -0
  447. package/dist/tools/hashline-edit/validation.test.d.ts +1 -0
  448. package/dist/tools/look-at/create-look-at-error-handling.test.d.ts +1 -0
  449. package/dist/tools/look-at/create-look-at-image-data.test.d.ts +1 -0
  450. package/dist/tools/look-at/create-look-at-model-passthrough.test.d.ts +1 -0
  451. package/dist/tools/look-at/create-look-at-sync-prompt.test.d.ts +1 -0
  452. package/dist/tools/look-at/create-look-at-unhandled-error.test.d.ts +1 -0
  453. package/dist/tools/look-at/image-converter.test.d.ts +1 -0
  454. package/dist/tools/look-at/mime-type-inference.test.d.ts +1 -0
  455. package/dist/tools/look-at/normalize-args.test.d.ts +1 -0
  456. package/dist/tools/look-at/session-poller.test.d.ts +1 -0
  457. package/dist/tools/look-at/tools.test.d.ts +7 -0
  458. package/dist/tools/look-at/validate-args.test.d.ts +1 -0
  459. package/dist/tools/lsp/client.test.d.ts +1 -0
  460. package/dist/tools/lsp/config.test.d.ts +1 -0
  461. package/dist/tools/lsp/lsp-client-wrapper.d.ts +3 -0
  462. package/dist/tools/lsp/lsp-process.test.d.ts +1 -0
  463. package/dist/tools/lsp/server-config-loader.test.d.ts +1 -0
  464. package/dist/tools/lsp/utils.test.d.ts +1 -0
  465. package/dist/tools/session-manager/storage.test.d.ts +1 -0
  466. package/dist/tools/session-manager/tools.test.d.ts +1 -0
  467. package/dist/tools/session-manager/utils.test.d.ts +1 -0
  468. package/dist/tools/skill/tools.test.agent-restriction.d.ts +1 -0
  469. package/dist/tools/skill/tools.test.d.ts +1 -0
  470. package/dist/tools/skill/tools.test.description.d.ts +1 -0
  471. package/dist/tools/skill/tools.test.mcp-schema.d.ts +1 -0
  472. package/dist/tools/skill/tools.test.ordering.d.ts +1 -0
  473. package/dist/tools/skill/tools.test.utils.d.ts +10 -0
  474. package/dist/tools/skill-mcp/builtin-mcp-hint.test.d.ts +1 -0
  475. package/dist/tools/skill-mcp/tools.test.d.ts +1 -0
  476. package/dist/tools/slashcommand/command-discovery.test.d.ts +1 -0
  477. package/dist/tools/slashcommand/command-output-formatter.test.d.ts +1 -0
  478. package/dist/tools/slashcommand/index.test.d.ts +1 -0
  479. package/dist/tools/task/task-create-input.test.d.ts +1 -0
  480. package/dist/tools/task/task-create.test.d.ts +1 -0
  481. package/dist/tools/task/task-delete-input.test.d.ts +1 -0
  482. package/dist/tools/task/task-get-input.test.d.ts +1 -0
  483. package/dist/tools/task/task-get.test.d.ts +1 -0
  484. package/dist/tools/task/task-list-input.test.d.ts +1 -0
  485. package/dist/tools/task/task-list.test.d.ts +1 -0
  486. package/dist/tools/task/task-schema-core.test.d.ts +1 -0
  487. package/dist/tools/task/task-schema-fields.test.d.ts +1 -0
  488. package/dist/tools/task/task-status.test.d.ts +1 -0
  489. package/dist/tools/task/task-update-input.test.d.ts +1 -0
  490. package/dist/tools/task/task-update.test.d.ts +1 -0
  491. package/dist/tools/task/todo-sync-all-fetch.test.d.ts +1 -0
  492. package/dist/tools/task/todo-sync-all-write.test.d.ts +1 -0
  493. package/dist/tools/task/todo-sync-sync.test.d.ts +1 -0
  494. package/dist/tools/task/todo-sync-update.test.d.ts +1 -0
  495. package/dist/tools/task/todo-sync.test.d.ts +1 -0
  496. package/dist/utils/context-trimmer.d.ts +21 -0
  497. package/dist/utils/safety-tool-result.d.ts +31 -0
  498. package/dist/utils/tool-contract-wrapper.d.ts +10 -0
  499. 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
- prometheus: "prometheus";
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
- prometheus: "prometheus";
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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
- fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
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 {};