devsquad-ai 1.0.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 (938) hide show
  1. package/LICENSE.md +82 -0
  2. package/README.ja.md +346 -0
  3. package/README.ko.md +345 -0
  4. package/README.md +172 -0
  5. package/README.zh-cn.md +345 -0
  6. package/bin/devsquad.js +37 -0
  7. package/bin/platform.js +38 -0
  8. package/bin/platform.test.ts +148 -0
  9. package/dist/agents/advisor.d.ts +21 -0
  10. package/dist/agents/agent-builder.d.ts +7 -0
  11. package/dist/agents/architect.d.ts +7 -0
  12. package/dist/agents/atlas/agent.d.ts +35 -0
  13. package/dist/agents/atlas/default.d.ts +11 -0
  14. package/dist/agents/atlas/gemini.d.ts +11 -0
  15. package/dist/agents/atlas/gpt.d.ts +19 -0
  16. package/dist/agents/atlas/index.d.ts +2 -0
  17. package/dist/agents/atlas/prompt-section-builder.d.ts +13 -0
  18. package/dist/agents/builtin-agents/agent-overrides.d.ts +12 -0
  19. package/dist/agents/builtin-agents/atlas-agent.d.ts +17 -0
  20. package/dist/agents/builtin-agents/available-skills.d.ts +4 -0
  21. package/dist/agents/builtin-agents/environment-context.d.ts +6 -0
  22. package/dist/agents/builtin-agents/general-agents.d.ts +24 -0
  23. package/dist/agents/builtin-agents/leader-agent.d.ts +20 -0
  24. package/dist/agents/builtin-agents/model-resolution.d.ts +24 -0
  25. package/dist/agents/builtin-agents/resolve-file-uri.d.ts +1 -0
  26. package/dist/agents/builtin-agents/worker-agent.d.ts +18 -0
  27. package/dist/agents/builtin-agents.d.ts +6 -0
  28. package/dist/agents/custom-agent-summaries.d.ts +8 -0
  29. package/dist/agents/dynamic-agent-prompt-builder.d.ts +32 -0
  30. package/dist/agents/env-context.d.ts +7 -0
  31. package/dist/agents/index.d.ts +4 -0
  32. package/dist/agents/junior/agent.d.ts +30 -0
  33. package/dist/agents/junior/default.d.ts +9 -0
  34. package/dist/agents/junior/gemini.d.ts +10 -0
  35. package/dist/agents/junior/gpt.d.ts +8 -0
  36. package/dist/agents/junior/index.d.ts +5 -0
  37. package/dist/agents/leader.d.ts +8 -0
  38. package/dist/agents/multimodal.d.ts +7 -0
  39. package/dist/agents/planner/behavioral-summary.d.ts +6 -0
  40. package/dist/agents/planner/gemini.d.ts +12 -0
  41. package/dist/agents/planner/gpt.d.ts +24 -0
  42. package/dist/agents/planner/high-accuracy-mode.d.ts +6 -0
  43. package/dist/agents/planner/identity-constraints.d.ts +7 -0
  44. package/dist/agents/planner/index.d.ts +2 -0
  45. package/dist/agents/planner/interview-mode.d.ts +7 -0
  46. package/dist/agents/planner/plan-generation.d.ts +7 -0
  47. package/dist/agents/planner/plan-template.d.ts +7 -0
  48. package/dist/agents/planner/system-prompt.d.ts +28 -0
  49. package/dist/agents/researcher.d.ts +7 -0
  50. package/dist/agents/reviewer.d.ts +21 -0
  51. package/dist/agents/scout.d.ts +7 -0
  52. package/dist/agents/sisyphus-gemini-overlays.d.ts +18 -0
  53. package/dist/agents/types.d.ts +65 -0
  54. package/dist/agents/worker.d.ts +6 -0
  55. package/dist/cli/cli-installer.d.ts +2 -0
  56. package/dist/cli/cli-program.d.ts +1 -0
  57. package/dist/cli/config-manager/add-plugin-to-opencode-config.d.ts +2 -0
  58. package/dist/cli/config-manager/add-provider-config.d.ts +2 -0
  59. package/dist/cli/config-manager/antigravity-provider-configuration.d.ts +122 -0
  60. package/dist/cli/config-manager/auth-plugins.d.ts +3 -0
  61. package/dist/cli/config-manager/bun-install.d.ts +7 -0
  62. package/dist/cli/config-manager/config-context.d.ts +14 -0
  63. package/dist/cli/config-manager/deep-merge-record.d.ts +1 -0
  64. package/dist/cli/config-manager/detect-current-config.d.ts +2 -0
  65. package/dist/cli/config-manager/ensure-config-directory-exists.d.ts +1 -0
  66. package/dist/cli/config-manager/format-error-with-suggestion.d.ts +1 -0
  67. package/dist/cli/config-manager/generate-devsquad-config.d.ts +3 -0
  68. package/dist/cli/config-manager/jsonc-provider-editor.d.ts +1 -0
  69. package/dist/cli/config-manager/npm-dist-tags.d.ts +7 -0
  70. package/dist/cli/config-manager/opencode-binary.d.ts +2 -0
  71. package/dist/cli/config-manager/opencode-config-format.d.ts +5 -0
  72. package/dist/cli/config-manager/parse-opencode-config-file.d.ts +10 -0
  73. package/dist/cli/config-manager/plugin-name-with-version.d.ts +1 -0
  74. package/dist/cli/config-manager/write-devsquad-config.d.ts +2 -0
  75. package/dist/cli/config-manager.d.ts +16 -0
  76. package/dist/cli/doctor/checks/config.d.ts +2 -0
  77. package/dist/cli/doctor/checks/dependencies.d.ts +4 -0
  78. package/dist/cli/doctor/checks/index.d.ts +7 -0
  79. package/dist/cli/doctor/checks/model-resolution-cache.d.ts +2 -0
  80. package/dist/cli/doctor/checks/model-resolution-config.d.ts +2 -0
  81. package/dist/cli/doctor/checks/model-resolution-details.d.ts +6 -0
  82. package/dist/cli/doctor/checks/model-resolution-effective-model.d.ts +3 -0
  83. package/dist/cli/doctor/checks/model-resolution-types.d.ts +37 -0
  84. package/dist/cli/doctor/checks/model-resolution-variant.d.ts +5 -0
  85. package/dist/cli/doctor/checks/model-resolution.d.ts +6 -0
  86. package/dist/cli/doctor/checks/system-binary.d.ts +13 -0
  87. package/dist/cli/doctor/checks/system-loaded-version.d.ts +9 -0
  88. package/dist/cli/doctor/checks/system-plugin.d.ts +15 -0
  89. package/dist/cli/doctor/checks/system.d.ts +3 -0
  90. package/dist/cli/doctor/checks/tools-gh.d.ts +10 -0
  91. package/dist/cli/doctor/checks/tools-lsp.d.ts +6 -0
  92. package/dist/cli/doctor/checks/tools-mcp.d.ts +3 -0
  93. package/dist/cli/doctor/checks/tools.d.ts +3 -0
  94. package/dist/cli/doctor/constants.d.ts +29 -0
  95. package/dist/cli/doctor/format-default.d.ts +2 -0
  96. package/dist/cli/doctor/format-shared.d.ts +6 -0
  97. package/dist/cli/doctor/format-status.d.ts +2 -0
  98. package/dist/cli/doctor/format-verbose.d.ts +2 -0
  99. package/dist/cli/doctor/formatter.d.ts +3 -0
  100. package/dist/cli/doctor/index.d.ts +5 -0
  101. package/dist/cli/doctor/runner.d.ts +5 -0
  102. package/dist/cli/doctor/types.d.ts +124 -0
  103. package/dist/cli/fallback-chain-resolution.d.ts +10 -0
  104. package/dist/cli/get-local-version/formatter.d.ts +3 -0
  105. package/dist/cli/get-local-version/get-local-version.d.ts +2 -0
  106. package/dist/cli/get-local-version/index.d.ts +2 -0
  107. package/dist/cli/get-local-version/types.d.ts +13 -0
  108. package/dist/cli/index.d.ts +2 -0
  109. package/dist/cli/index.js +30479 -0
  110. package/dist/cli/install-validators.d.ts +32 -0
  111. package/dist/cli/install.d.ts +2 -0
  112. package/dist/cli/mcp-oauth/index.d.ts +6 -0
  113. package/dist/cli/mcp-oauth/login.d.ts +6 -0
  114. package/dist/cli/mcp-oauth/logout.d.ts +4 -0
  115. package/dist/cli/mcp-oauth/status.d.ts +1 -0
  116. package/dist/cli/model-fallback-requirements.d.ts +3 -0
  117. package/dist/cli/model-fallback-types.d.ts +26 -0
  118. package/dist/cli/model-fallback.d.ts +5 -0
  119. package/dist/cli/provider-availability.d.ts +4 -0
  120. package/dist/cli/provider-model-id-transform.d.ts +1 -0
  121. package/dist/cli/run/agent-profile-colors.d.ts +2 -0
  122. package/dist/cli/run/agent-resolver.d.ts +5 -0
  123. package/dist/cli/run/completion.d.ts +2 -0
  124. package/dist/cli/run/continuation-state.d.ts +9 -0
  125. package/dist/cli/run/display-chars.d.ts +5 -0
  126. package/dist/cli/run/event-formatting.d.ts +3 -0
  127. package/dist/cli/run/event-handlers.d.ts +11 -0
  128. package/dist/cli/run/event-state.d.ts +47 -0
  129. package/dist/cli/run/event-stream-processor.d.ts +3 -0
  130. package/dist/cli/run/events.d.ts +4 -0
  131. package/dist/cli/run/index.d.ts +9 -0
  132. package/dist/cli/run/json-output.d.ts +12 -0
  133. package/dist/cli/run/on-complete-hook.d.ts +7 -0
  134. package/dist/cli/run/opencode-binary-resolver.d.ts +5 -0
  135. package/dist/cli/run/output-renderer.d.ts +7 -0
  136. package/dist/cli/run/poll-for-completion.d.ts +9 -0
  137. package/dist/cli/run/runner.d.ts +5 -0
  138. package/dist/cli/run/server-connection.d.ts +6 -0
  139. package/dist/cli/run/session-resolver.d.ts +6 -0
  140. package/dist/cli/run/stdin-suppression.d.ts +12 -0
  141. package/dist/cli/run/timestamp-output.d.ts +5 -0
  142. package/dist/cli/run/tool-input-preview.d.ts +6 -0
  143. package/dist/cli/run/types.d.ts +131 -0
  144. package/dist/cli/tui-install-prompts.d.ts +2 -0
  145. package/dist/cli/tui-installer.d.ts +2 -0
  146. package/dist/cli/types.d.ts +39 -0
  147. package/dist/config/index.d.ts +2 -0
  148. package/dist/config/schema/agent-names.d.ts +50 -0
  149. package/dist/config/schema/agent-overrides.d.ts +1937 -0
  150. package/dist/config/schema/babysitting.d.ts +5 -0
  151. package/dist/config/schema/background-task.d.ts +9 -0
  152. package/dist/config/schema/browser-automation.d.ts +17 -0
  153. package/dist/config/schema/categories.d.ts +76 -0
  154. package/dist/config/schema/claude-code.d.ts +11 -0
  155. package/dist/config/schema/commands.d.ts +11 -0
  156. package/dist/config/schema/comment-checker.d.ts +5 -0
  157. package/dist/config/schema/devsquad-config.d.ts +2069 -0
  158. package/dist/config/schema/dynamic-context-pruning.d.ts +28 -0
  159. package/dist/config/schema/experimental.d.ts +40 -0
  160. package/dist/config/schema/fallback-models.d.ts +3 -0
  161. package/dist/config/schema/git-master.d.ts +6 -0
  162. package/dist/config/schema/hooks.d.ts +50 -0
  163. package/dist/config/schema/internal/permission.d.ts +44 -0
  164. package/dist/config/schema/notification.d.ts +5 -0
  165. package/dist/config/schema/ralph-loop.d.ts +11 -0
  166. package/dist/config/schema/runtime-fallback.d.ts +10 -0
  167. package/dist/config/schema/sisyphus-agent.d.ts +8 -0
  168. package/dist/config/schema/sisyphus.d.ts +15 -0
  169. package/dist/config/schema/skills.d.ts +58 -0
  170. package/dist/config/schema/tmux.d.ts +23 -0
  171. package/dist/config/schema/websearch.d.ts +13 -0
  172. package/dist/config/schema.d.ts +24 -0
  173. package/dist/create-hooks.d.ts +64 -0
  174. package/dist/create-managers.d.ts +22 -0
  175. package/dist/create-tools.d.ts +20 -0
  176. package/dist/devsquad.schema.json +5604 -0
  177. package/dist/features/background-agent/background-task-notification-template.d.ts +10 -0
  178. package/dist/features/background-agent/compaction-aware-message-resolver.d.ts +3 -0
  179. package/dist/features/background-agent/concurrency.d.ts +27 -0
  180. package/dist/features/background-agent/constants.d.ts +45 -0
  181. package/dist/features/background-agent/duration-formatter.d.ts +1 -0
  182. package/dist/features/background-agent/error-classifier.d.ts +10 -0
  183. package/dist/features/background-agent/fallback-retry-handler.d.ts +16 -0
  184. package/dist/features/background-agent/index.d.ts +2 -0
  185. package/dist/features/background-agent/manager.d.ts +131 -0
  186. package/dist/features/background-agent/opencode-client.d.ts +2 -0
  187. package/dist/features/background-agent/process-cleanup.d.ts +8 -0
  188. package/dist/features/background-agent/session-idle-event-handler.d.ts +10 -0
  189. package/dist/features/background-agent/spawner/parent-directory-resolver.d.ts +6 -0
  190. package/dist/features/background-agent/spawner.d.ts +14 -0
  191. package/dist/features/background-agent/state.d.ts +35 -0
  192. package/dist/features/background-agent/task-history.d.ts +18 -0
  193. package/dist/features/background-agent/task-poller.d.ts +20 -0
  194. package/dist/features/background-agent/types.d.ts +90 -0
  195. package/dist/features/boulder-state/constants.d.ts +10 -0
  196. package/dist/features/boulder-state/index.d.ts +3 -0
  197. package/dist/features/boulder-state/storage.d.ts +28 -0
  198. package/dist/features/boulder-state/types.d.ts +26 -0
  199. package/dist/features/builtin-commands/commands.d.ts +2 -0
  200. package/dist/features/builtin-commands/index.d.ts +2 -0
  201. package/dist/features/builtin-commands/templates/handoff.d.ts +1 -0
  202. package/dist/features/builtin-commands/templates/init-deep.d.ts +1 -0
  203. package/dist/features/builtin-commands/templates/ralph-loop.d.ts +2 -0
  204. package/dist/features/builtin-commands/templates/refactor.d.ts +1 -0
  205. package/dist/features/builtin-commands/templates/start-work.d.ts +1 -0
  206. package/dist/features/builtin-commands/templates/stop-continuation.d.ts +1 -0
  207. package/dist/features/builtin-commands/types.d.ts +6 -0
  208. package/dist/features/builtin-skills/index.d.ts +2 -0
  209. package/dist/features/builtin-skills/skills/dev-browser.d.ts +2 -0
  210. package/dist/features/builtin-skills/skills/frontend-ui-ux.d.ts +2 -0
  211. package/dist/features/builtin-skills/skills/git-master-skill-metadata.d.ts +2 -0
  212. package/dist/features/builtin-skills/skills/git-master.d.ts +2 -0
  213. package/dist/features/builtin-skills/skills/index.d.ts +5 -0
  214. package/dist/features/builtin-skills/skills/playwright-cli.d.ts +10 -0
  215. package/dist/features/builtin-skills/skills/playwright.d.ts +3 -0
  216. package/dist/features/builtin-skills/skills.d.ts +7 -0
  217. package/dist/features/builtin-skills/types.d.ts +15 -0
  218. package/dist/features/claude-code-agent-loader/index.d.ts +2 -0
  219. package/dist/features/claude-code-agent-loader/loader.d.ts +3 -0
  220. package/dist/features/claude-code-agent-loader/types.d.ts +14 -0
  221. package/dist/features/claude-code-command-loader/index.d.ts +2 -0
  222. package/dist/features/claude-code-command-loader/loader.d.ts +6 -0
  223. package/dist/features/claude-code-command-loader/types.d.ts +42 -0
  224. package/dist/features/claude-code-mcp-loader/env-expander.d.ts +2 -0
  225. package/dist/features/claude-code-mcp-loader/index.d.ts +10 -0
  226. package/dist/features/claude-code-mcp-loader/loader.d.ts +4 -0
  227. package/dist/features/claude-code-mcp-loader/transformer.d.ts +2 -0
  228. package/dist/features/claude-code-mcp-loader/types.d.ts +39 -0
  229. package/dist/features/claude-code-plugin-loader/agent-loader.d.ts +3 -0
  230. package/dist/features/claude-code-plugin-loader/command-loader.d.ts +3 -0
  231. package/dist/features/claude-code-plugin-loader/discovery.d.ts +2 -0
  232. package/dist/features/claude-code-plugin-loader/hook-loader.d.ts +2 -0
  233. package/dist/features/claude-code-plugin-loader/index.d.ts +10 -0
  234. package/dist/features/claude-code-plugin-loader/loader.d.ts +20 -0
  235. package/dist/features/claude-code-plugin-loader/mcp-server-loader.d.ts +3 -0
  236. package/dist/features/claude-code-plugin-loader/plugin-path-resolver.d.ts +2 -0
  237. package/dist/features/claude-code-plugin-loader/skill-loader.d.ts +3 -0
  238. package/dist/features/claude-code-plugin-loader/types.d.ts +186 -0
  239. package/dist/features/claude-code-session-state/index.d.ts +1 -0
  240. package/dist/features/claude-code-session-state/state.d.ts +10 -0
  241. package/dist/features/claude-tasks/session-storage.d.ts +9 -0
  242. package/dist/features/claude-tasks/storage.d.ts +14 -0
  243. package/dist/features/claude-tasks/types.d.ts +25 -0
  244. package/dist/features/context-injector/collector.d.ts +11 -0
  245. package/dist/features/context-injector/index.d.ts +3 -0
  246. package/dist/features/context-injector/injector.d.ts +39 -0
  247. package/dist/features/context-injector/types.d.ts +83 -0
  248. package/dist/features/hook-message-injector/constants.d.ts +1 -0
  249. package/dist/features/hook-message-injector/index.d.ts +4 -0
  250. package/dist/features/hook-message-injector/injector.d.ts +67 -0
  251. package/dist/features/hook-message-injector/types.d.ts +46 -0
  252. package/dist/features/mcp-oauth/callback-server.d.ts +11 -0
  253. package/dist/features/mcp-oauth/dcr.d.ts +34 -0
  254. package/dist/features/mcp-oauth/discovery.d.ts +8 -0
  255. package/dist/features/mcp-oauth/oauth-authorization-flow.d.ts +26 -0
  256. package/dist/features/mcp-oauth/provider.d.ts +29 -0
  257. package/dist/features/mcp-oauth/resource-indicator.d.ts +2 -0
  258. package/dist/features/mcp-oauth/schema.d.ts +6 -0
  259. package/dist/features/mcp-oauth/step-up.d.ts +8 -0
  260. package/dist/features/mcp-oauth/storage.d.ts +17 -0
  261. package/dist/features/opencode-skill-loader/allowed-tools-parser.d.ts +1 -0
  262. package/dist/features/opencode-skill-loader/async-loader.d.ts +6 -0
  263. package/dist/features/opencode-skill-loader/blocking.d.ts +2 -0
  264. package/dist/features/opencode-skill-loader/config-source-discovery.d.ts +7 -0
  265. package/dist/features/opencode-skill-loader/discover-worker.d.ts +1 -0
  266. package/dist/features/opencode-skill-loader/git-master-template-injection.d.ts +2 -0
  267. package/dist/features/opencode-skill-loader/index.d.ts +15 -0
  268. package/dist/features/opencode-skill-loader/loaded-skill-from-path.d.ts +9 -0
  269. package/dist/features/opencode-skill-loader/loaded-skill-template-extractor.d.ts +2 -0
  270. package/dist/features/opencode-skill-loader/loader.d.ts +19 -0
  271. package/dist/features/opencode-skill-loader/merger/builtin-skill-converter.d.ts +3 -0
  272. package/dist/features/opencode-skill-loader/merger/config-skill-entry-loader.d.ts +3 -0
  273. package/dist/features/opencode-skill-loader/merger/scope-priority.d.ts +2 -0
  274. package/dist/features/opencode-skill-loader/merger/skill-definition-merger.d.ts +3 -0
  275. package/dist/features/opencode-skill-loader/merger/skills-config-normalizer.d.ts +11 -0
  276. package/dist/features/opencode-skill-loader/merger.d.ts +7 -0
  277. package/dist/features/opencode-skill-loader/skill-content.d.ts +5 -0
  278. package/dist/features/opencode-skill-loader/skill-deduplication.d.ts +2 -0
  279. package/dist/features/opencode-skill-loader/skill-definition-record.d.ts +3 -0
  280. package/dist/features/opencode-skill-loader/skill-directory-loader.d.ts +8 -0
  281. package/dist/features/opencode-skill-loader/skill-discovery.d.ts +4 -0
  282. package/dist/features/opencode-skill-loader/skill-mcp-config.d.ts +3 -0
  283. package/dist/features/opencode-skill-loader/skill-resolution-options.d.ts +8 -0
  284. package/dist/features/opencode-skill-loader/skill-template-resolver.d.ts +11 -0
  285. package/dist/features/opencode-skill-loader/types.d.ts +34 -0
  286. package/dist/features/run-continuation-state/constants.d.ts +1 -0
  287. package/dist/features/run-continuation-state/index.d.ts +3 -0
  288. package/dist/features/run-continuation-state/storage.d.ts +6 -0
  289. package/dist/features/run-continuation-state/types.d.ts +12 -0
  290. package/dist/features/skill-mcp-manager/cleanup.d.ts +8 -0
  291. package/dist/features/skill-mcp-manager/connection-type.d.ts +7 -0
  292. package/dist/features/skill-mcp-manager/connection.d.ts +15 -0
  293. package/dist/features/skill-mcp-manager/env-cleaner.d.ts +2 -0
  294. package/dist/features/skill-mcp-manager/http-client.d.ts +3 -0
  295. package/dist/features/skill-mcp-manager/index.d.ts +2 -0
  296. package/dist/features/skill-mcp-manager/manager.d.ts +21 -0
  297. package/dist/features/skill-mcp-manager/oauth-handler.d.ts +9 -0
  298. package/dist/features/skill-mcp-manager/stdio-client.d.ts +3 -0
  299. package/dist/features/skill-mcp-manager/types.d.ts +55 -0
  300. package/dist/features/task-toast-manager/index.d.ts +2 -0
  301. package/dist/features/task-toast-manager/manager.d.ts +64 -0
  302. package/dist/features/task-toast-manager/types.d.ts +25 -0
  303. package/dist/features/tmux-subagent/action-executor-core.d.ts +21 -0
  304. package/dist/features/tmux-subagent/action-executor.d.ts +20 -0
  305. package/dist/features/tmux-subagent/cleanup.d.ts +9 -0
  306. package/dist/features/tmux-subagent/decision-engine.d.ts +7 -0
  307. package/dist/features/tmux-subagent/event-handlers.d.ts +6 -0
  308. package/dist/features/tmux-subagent/grid-planning.d.ts +21 -0
  309. package/dist/features/tmux-subagent/index.d.ts +15 -0
  310. package/dist/features/tmux-subagent/manager.d.ts +68 -0
  311. package/dist/features/tmux-subagent/oldest-agent-pane.d.ts +7 -0
  312. package/dist/features/tmux-subagent/pane-split-availability.d.ts +8 -0
  313. package/dist/features/tmux-subagent/pane-state-querier.d.ts +2 -0
  314. package/dist/features/tmux-subagent/polling-constants.d.ts +3 -0
  315. package/dist/features/tmux-subagent/polling-manager.d.ts +13 -0
  316. package/dist/features/tmux-subagent/polling.d.ts +19 -0
  317. package/dist/features/tmux-subagent/session-created-event.d.ts +14 -0
  318. package/dist/features/tmux-subagent/session-created-handler.d.ts +22 -0
  319. package/dist/features/tmux-subagent/session-deleted-handler.d.ts +15 -0
  320. package/dist/features/tmux-subagent/session-message-count.d.ts +1 -0
  321. package/dist/features/tmux-subagent/session-ready-waiter.d.ts +7 -0
  322. package/dist/features/tmux-subagent/session-status-parser.d.ts +5 -0
  323. package/dist/features/tmux-subagent/spawn-action-decider.d.ts +4 -0
  324. package/dist/features/tmux-subagent/spawn-target-finder.d.ts +6 -0
  325. package/dist/features/tmux-subagent/tmux-grid-constants.d.ts +11 -0
  326. package/dist/features/tmux-subagent/types.d.ts +55 -0
  327. package/dist/features/tool-metadata-store/index.d.ts +2 -0
  328. package/dist/features/tool-metadata-store/store.d.ts +39 -0
  329. package/dist/hooks/agent-usage-reminder/constants.d.ts +4 -0
  330. package/dist/hooks/agent-usage-reminder/hook.d.ts +22 -0
  331. package/dist/hooks/agent-usage-reminder/index.d.ts +1 -0
  332. package/dist/hooks/agent-usage-reminder/storage.d.ts +4 -0
  333. package/dist/hooks/agent-usage-reminder/types.d.ts +6 -0
  334. package/dist/hooks/anthropic-context-window-limit-recovery/aggressive-truncation-strategy.d.ts +14 -0
  335. package/dist/hooks/anthropic-context-window-limit-recovery/client.d.ts +29 -0
  336. package/dist/hooks/anthropic-context-window-limit-recovery/deduplication-recovery.d.ts +6 -0
  337. package/dist/hooks/anthropic-context-window-limit-recovery/empty-content-recovery-sdk.d.ts +11 -0
  338. package/dist/hooks/anthropic-context-window-limit-recovery/empty-content-recovery.d.ts +8 -0
  339. package/dist/hooks/anthropic-context-window-limit-recovery/executor.d.ts +6 -0
  340. package/dist/hooks/anthropic-context-window-limit-recovery/index.d.ts +8 -0
  341. package/dist/hooks/anthropic-context-window-limit-recovery/message-builder.d.ts +7 -0
  342. package/dist/hooks/anthropic-context-window-limit-recovery/message-storage-directory.d.ts +6 -0
  343. package/dist/hooks/anthropic-context-window-limit-recovery/parser.d.ts +2 -0
  344. package/dist/hooks/anthropic-context-window-limit-recovery/pruning-deduplication.d.ts +10 -0
  345. package/dist/hooks/anthropic-context-window-limit-recovery/pruning-tool-output-truncation.d.ts +6 -0
  346. package/dist/hooks/anthropic-context-window-limit-recovery/pruning-types.d.ts +36 -0
  347. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-hook.d.ts +14 -0
  348. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-strategy.d.ts +2 -0
  349. package/dist/hooks/anthropic-context-window-limit-recovery/state.d.ts +6 -0
  350. package/dist/hooks/anthropic-context-window-limit-recovery/storage-paths.d.ts +3 -0
  351. package/dist/hooks/anthropic-context-window-limit-recovery/storage.d.ts +4 -0
  352. package/dist/hooks/anthropic-context-window-limit-recovery/summarize-retry-strategy.d.ts +13 -0
  353. package/dist/hooks/anthropic-context-window-limit-recovery/target-token-truncation.d.ts +5 -0
  354. package/dist/hooks/anthropic-context-window-limit-recovery/tool-part-types.d.ts +39 -0
  355. package/dist/hooks/anthropic-context-window-limit-recovery/tool-result-storage-sdk.d.ts +29 -0
  356. package/dist/hooks/anthropic-context-window-limit-recovery/tool-result-storage.d.ts +10 -0
  357. package/dist/hooks/anthropic-context-window-limit-recovery/types.d.ts +37 -0
  358. package/dist/hooks/anthropic-effort/hook.d.ts +26 -0
  359. package/dist/hooks/anthropic-effort/index.d.ts +1 -0
  360. package/dist/hooks/atlas/atlas-hook.d.ts +19 -0
  361. package/dist/hooks/atlas/boulder-continuation-injector.d.ts +13 -0
  362. package/dist/hooks/atlas/event-handler.d.ts +13 -0
  363. package/dist/hooks/atlas/hook-name.d.ts +1 -0
  364. package/dist/hooks/atlas/index.d.ts +3 -0
  365. package/dist/hooks/atlas/is-abort-error.d.ts +1 -0
  366. package/dist/hooks/atlas/recent-model-resolver.d.ts +9 -0
  367. package/dist/hooks/atlas/session-last-agent.d.ts +4 -0
  368. package/dist/hooks/atlas/sisyphus-path.d.ts +6 -0
  369. package/dist/hooks/atlas/subagent-session-id.d.ts +1 -0
  370. package/dist/hooks/atlas/system-reminder-templates.d.ts +6 -0
  371. package/dist/hooks/atlas/tool-execute-after.d.ts +6 -0
  372. package/dist/hooks/atlas/tool-execute-before.d.ts +12 -0
  373. package/dist/hooks/atlas/types.d.ts +27 -0
  374. package/dist/hooks/atlas/verification-reminders.d.ts +5 -0
  375. package/dist/hooks/atlas/write-edit-tool-policy.d.ts +1 -0
  376. package/dist/hooks/auto-slash-command/constants.d.ts +5 -0
  377. package/dist/hooks/auto-slash-command/detector.d.ts +13 -0
  378. package/dist/hooks/auto-slash-command/executor.d.ts +11 -0
  379. package/dist/hooks/auto-slash-command/hook.d.ts +9 -0
  380. package/dist/hooks/auto-slash-command/index.d.ts +6 -0
  381. package/dist/hooks/auto-slash-command/types.d.ts +39 -0
  382. package/dist/hooks/auto-update-checker/cache.d.ts +3 -0
  383. package/dist/hooks/auto-update-checker/checker/cached-version.d.ts +1 -0
  384. package/dist/hooks/auto-update-checker/checker/check-for-update.d.ts +2 -0
  385. package/dist/hooks/auto-update-checker/checker/config-paths.d.ts +1 -0
  386. package/dist/hooks/auto-update-checker/checker/jsonc-strip.d.ts +1 -0
  387. package/dist/hooks/auto-update-checker/checker/latest-version.d.ts +1 -0
  388. package/dist/hooks/auto-update-checker/checker/local-dev-path.d.ts +2 -0
  389. package/dist/hooks/auto-update-checker/checker/local-dev-version.d.ts +1 -0
  390. package/dist/hooks/auto-update-checker/checker/package-json-locator.d.ts +1 -0
  391. package/dist/hooks/auto-update-checker/checker/pinned-version-updater.d.ts +2 -0
  392. package/dist/hooks/auto-update-checker/checker/plugin-entry.d.ts +7 -0
  393. package/dist/hooks/auto-update-checker/checker.d.ts +8 -0
  394. package/dist/hooks/auto-update-checker/constants.d.ts +10 -0
  395. package/dist/hooks/auto-update-checker/hook/background-update-check.d.ts +2 -0
  396. package/dist/hooks/auto-update-checker/hook/config-errors-toast.d.ts +2 -0
  397. package/dist/hooks/auto-update-checker/hook/connected-providers-status.d.ts +2 -0
  398. package/dist/hooks/auto-update-checker/hook/model-cache-warning.d.ts +2 -0
  399. package/dist/hooks/auto-update-checker/hook/spinner-toast.d.ts +2 -0
  400. package/dist/hooks/auto-update-checker/hook/startup-toasts.d.ts +3 -0
  401. package/dist/hooks/auto-update-checker/hook/update-toasts.d.ts +3 -0
  402. package/dist/hooks/auto-update-checker/hook.d.ts +10 -0
  403. package/dist/hooks/auto-update-checker/index.d.ts +5 -0
  404. package/dist/hooks/auto-update-checker/types.d.ts +25 -0
  405. package/dist/hooks/auto-update-checker/version-channel.d.ts +4 -0
  406. package/dist/hooks/background-notification/hook.d.ts +18 -0
  407. package/dist/hooks/background-notification/index.d.ts +2 -0
  408. package/dist/hooks/background-notification/types.d.ts +4 -0
  409. package/dist/hooks/category-skill-reminder/formatter.d.ts +2 -0
  410. package/dist/hooks/category-skill-reminder/hook.d.ts +23 -0
  411. package/dist/hooks/category-skill-reminder/index.d.ts +1 -0
  412. package/dist/hooks/claude-code-hooks/claude-code-hooks-hook.d.ts +48 -0
  413. package/dist/hooks/claude-code-hooks/config-loader.d.ts +13 -0
  414. package/dist/hooks/claude-code-hooks/config.d.ts +3 -0
  415. package/dist/hooks/claude-code-hooks/handlers/chat-message-handler.d.ts +19 -0
  416. package/dist/hooks/claude-code-hooks/handlers/pre-compact-handler.d.ts +7 -0
  417. package/dist/hooks/claude-code-hooks/handlers/session-event-handler.d.ts +8 -0
  418. package/dist/hooks/claude-code-hooks/handlers/tool-execute-after-handler.d.ts +11 -0
  419. package/dist/hooks/claude-code-hooks/handlers/tool-execute-before-handler.d.ts +9 -0
  420. package/dist/hooks/claude-code-hooks/index.d.ts +1 -0
  421. package/dist/hooks/claude-code-hooks/plugin-config.d.ts +8 -0
  422. package/dist/hooks/claude-code-hooks/post-tool-use.d.ts +40 -0
  423. package/dist/hooks/claude-code-hooks/pre-compact.d.ts +16 -0
  424. package/dist/hooks/claude-code-hooks/pre-tool-use.d.ts +25 -0
  425. package/dist/hooks/claude-code-hooks/session-hook-state.d.ts +9 -0
  426. package/dist/hooks/claude-code-hooks/stop.d.ts +20 -0
  427. package/dist/hooks/claude-code-hooks/todo.d.ts +12 -0
  428. package/dist/hooks/claude-code-hooks/tool-input-cache.d.ts +5 -0
  429. package/dist/hooks/claude-code-hooks/transcript.d.ts +29 -0
  430. package/dist/hooks/claude-code-hooks/types.d.ts +183 -0
  431. package/dist/hooks/claude-code-hooks/user-prompt-submit.d.ts +22 -0
  432. package/dist/hooks/comment-checker/cli-runner.d.ts +19 -0
  433. package/dist/hooks/comment-checker/cli.d.ts +52 -0
  434. package/dist/hooks/comment-checker/downloader.d.ts +25 -0
  435. package/dist/hooks/comment-checker/hook.d.ts +19 -0
  436. package/dist/hooks/comment-checker/index.d.ts +1 -0
  437. package/dist/hooks/comment-checker/pending-calls.d.ts +4 -0
  438. package/dist/hooks/comment-checker/types.d.ts +31 -0
  439. package/dist/hooks/compaction-context-injector/hook.d.ts +2 -0
  440. package/dist/hooks/compaction-context-injector/index.d.ts +1 -0
  441. package/dist/hooks/compaction-todo-preserver/hook.d.ts +11 -0
  442. package/dist/hooks/compaction-todo-preserver/index.d.ts +2 -0
  443. package/dist/hooks/context-window-monitor.d.ts +22 -0
  444. package/dist/hooks/delegate-task-retry/guidance.d.ts +2 -0
  445. package/dist/hooks/delegate-task-retry/hook.d.ts +12 -0
  446. package/dist/hooks/delegate-task-retry/index.d.ts +4 -0
  447. package/dist/hooks/delegate-task-retry/patterns.d.ts +11 -0
  448. package/dist/hooks/directory-agents-injector/constants.d.ts +2 -0
  449. package/dist/hooks/directory-agents-injector/finder.d.ts +5 -0
  450. package/dist/hooks/directory-agents-injector/hook.d.ts +28 -0
  451. package/dist/hooks/directory-agents-injector/index.d.ts +1 -0
  452. package/dist/hooks/directory-agents-injector/injector.d.ts +16 -0
  453. package/dist/hooks/directory-agents-injector/storage.d.ts +1 -0
  454. package/dist/hooks/directory-readme-injector/constants.d.ts +2 -0
  455. package/dist/hooks/directory-readme-injector/finder.d.ts +5 -0
  456. package/dist/hooks/directory-readme-injector/hook.d.ts +28 -0
  457. package/dist/hooks/directory-readme-injector/index.d.ts +1 -0
  458. package/dist/hooks/directory-readme-injector/injector.d.ts +16 -0
  459. package/dist/hooks/directory-readme-injector/storage.d.ts +1 -0
  460. package/dist/hooks/edit-error-recovery/hook.d.ts +31 -0
  461. package/dist/hooks/edit-error-recovery/index.d.ts +1 -0
  462. package/dist/hooks/empty-task-response-detector.d.ts +12 -0
  463. package/dist/hooks/hashline-edit-diff-enhancer/hook.d.ts +28 -0
  464. package/dist/hooks/hashline-read-enhancer/hook.d.ts +18 -0
  465. package/dist/hooks/hashline-read-enhancer/index.d.ts +1 -0
  466. package/dist/hooks/index.d.ts +48 -0
  467. package/dist/hooks/interactive-bash-session/constants.d.ts +3 -0
  468. package/dist/hooks/interactive-bash-session/hook.d.ts +23 -0
  469. package/dist/hooks/interactive-bash-session/index.d.ts +3 -0
  470. package/dist/hooks/interactive-bash-session/interactive-bash-session-tracker.d.ts +21 -0
  471. package/dist/hooks/interactive-bash-session/parser.d.ts +26 -0
  472. package/dist/hooks/interactive-bash-session/state-manager.d.ts +4 -0
  473. package/dist/hooks/interactive-bash-session/storage.d.ts +4 -0
  474. package/dist/hooks/interactive-bash-session/tmux-command-parser.d.ts +4 -0
  475. package/dist/hooks/interactive-bash-session/types.d.ts +10 -0
  476. package/dist/hooks/json-error-recovery/hook.d.ts +15 -0
  477. package/dist/hooks/json-error-recovery/index.d.ts +1 -0
  478. package/dist/hooks/keyword-detector/analyze/default.d.ts +12 -0
  479. package/dist/hooks/keyword-detector/analyze/index.d.ts +1 -0
  480. package/dist/hooks/keyword-detector/constants.d.ts +10 -0
  481. package/dist/hooks/keyword-detector/detector.d.ts +11 -0
  482. package/dist/hooks/keyword-detector/hook.d.ts +20 -0
  483. package/dist/hooks/keyword-detector/index.d.ts +4 -0
  484. package/dist/hooks/keyword-detector/search/default.d.ts +12 -0
  485. package/dist/hooks/keyword-detector/search/index.d.ts +1 -0
  486. package/dist/hooks/keyword-detector/types.d.ts +4 -0
  487. package/dist/hooks/keyword-detector/upup/default.d.ts +10 -0
  488. package/dist/hooks/keyword-detector/upup/gemini.d.ts +17 -0
  489. package/dist/hooks/keyword-detector/upup/gpt5.2.d.ts +15 -0
  490. package/dist/hooks/keyword-detector/upup/index.d.ts +19 -0
  491. package/dist/hooks/keyword-detector/upup/planner.d.ts +6 -0
  492. package/dist/hooks/keyword-detector/upup/source-detector.d.ts +22 -0
  493. package/dist/hooks/model-fallback/hook.d.ts +60 -0
  494. package/dist/hooks/no-hephaestus-non-gpt/hook.d.ts +16 -0
  495. package/dist/hooks/no-hephaestus-non-gpt/index.d.ts +1 -0
  496. package/dist/hooks/no-sisyphus-gpt/hook.d.ts +16 -0
  497. package/dist/hooks/no-sisyphus-gpt/index.d.ts +1 -0
  498. package/dist/hooks/non-interactive-env/constants.d.ts +34 -0
  499. package/dist/hooks/non-interactive-env/detector.d.ts +1 -0
  500. package/dist/hooks/non-interactive-env/index.d.ts +4 -0
  501. package/dist/hooks/non-interactive-env/non-interactive-env-hook.d.ts +14 -0
  502. package/dist/hooks/non-interactive-env/types.d.ts +3 -0
  503. package/dist/hooks/preemptive-compaction.d.ts +34 -0
  504. package/dist/hooks/prometheus-md-only/agent-matcher.d.ts +1 -0
  505. package/dist/hooks/prometheus-md-only/agent-resolution.d.ts +16 -0
  506. package/dist/hooks/prometheus-md-only/constants.d.ts +7 -0
  507. package/dist/hooks/prometheus-md-only/hook.d.ts +11 -0
  508. package/dist/hooks/prometheus-md-only/index.d.ts +2 -0
  509. package/dist/hooks/prometheus-md-only/path-policy.d.ts +10 -0
  510. package/dist/hooks/question-label-truncator/hook.d.ts +7 -0
  511. package/dist/hooks/question-label-truncator/index.d.ts +1 -0
  512. package/dist/hooks/ralph-loop/command-arguments.d.ts +8 -0
  513. package/dist/hooks/ralph-loop/completion-promise-detector.d.ts +8 -0
  514. package/dist/hooks/ralph-loop/constants.d.ts +5 -0
  515. package/dist/hooks/ralph-loop/continuation-prompt-builder.d.ts +2 -0
  516. package/dist/hooks/ralph-loop/continuation-prompt-injector.d.ts +8 -0
  517. package/dist/hooks/ralph-loop/index.d.ts +5 -0
  518. package/dist/hooks/ralph-loop/iteration-continuation.d.ts +12 -0
  519. package/dist/hooks/ralph-loop/loop-session-recovery.d.ts +7 -0
  520. package/dist/hooks/ralph-loop/loop-state-controller.d.ts +18 -0
  521. package/dist/hooks/ralph-loop/message-storage-directory.d.ts +1 -0
  522. package/dist/hooks/ralph-loop/ralph-loop-event-handler.d.ts +28 -0
  523. package/dist/hooks/ralph-loop/ralph-loop-hook.d.ts +19 -0
  524. package/dist/hooks/ralph-loop/session-reset-strategy.d.ts +3 -0
  525. package/dist/hooks/ralph-loop/storage.d.ts +6 -0
  526. package/dist/hooks/ralph-loop/types.d.ts +18 -0
  527. package/dist/hooks/ralph-loop/with-timeout.d.ts +1 -0
  528. package/dist/hooks/rules-injector/cache.d.ts +8 -0
  529. package/dist/hooks/rules-injector/constants.d.ts +7 -0
  530. package/dist/hooks/rules-injector/finder.d.ts +3 -0
  531. package/dist/hooks/rules-injector/hook.d.ts +28 -0
  532. package/dist/hooks/rules-injector/index.d.ts +2 -0
  533. package/dist/hooks/rules-injector/injector.d.ts +20 -0
  534. package/dist/hooks/rules-injector/matcher.d.ts +21 -0
  535. package/dist/hooks/rules-injector/output-path.d.ts +5 -0
  536. package/dist/hooks/rules-injector/parser.d.ts +18 -0
  537. package/dist/hooks/rules-injector/project-root-finder.d.ts +8 -0
  538. package/dist/hooks/rules-injector/rule-distance.d.ts +10 -0
  539. package/dist/hooks/rules-injector/rule-file-finder.d.ts +15 -0
  540. package/dist/hooks/rules-injector/rule-file-scanner.d.ts +14 -0
  541. package/dist/hooks/rules-injector/storage.d.ts +9 -0
  542. package/dist/hooks/rules-injector/types.d.ts +54 -0
  543. package/dist/hooks/runtime-fallback/agent-resolver.d.ts +5 -0
  544. package/dist/hooks/runtime-fallback/auto-retry.d.ts +10 -0
  545. package/dist/hooks/runtime-fallback/chat-message-handler.d.ts +20 -0
  546. package/dist/hooks/runtime-fallback/constants.d.ts +19 -0
  547. package/dist/hooks/runtime-fallback/error-classifier.d.ts +17 -0
  548. package/dist/hooks/runtime-fallback/event-handler.d.ts +8 -0
  549. package/dist/hooks/runtime-fallback/fallback-models.d.ts +2 -0
  550. package/dist/hooks/runtime-fallback/fallback-state.d.ts +6 -0
  551. package/dist/hooks/runtime-fallback/hook.d.ts +3 -0
  552. package/dist/hooks/runtime-fallback/index.d.ts +2 -0
  553. package/dist/hooks/runtime-fallback/message-update-handler.d.ts +5 -0
  554. package/dist/hooks/runtime-fallback/types.d.ts +59 -0
  555. package/dist/hooks/session-notification-formatting.d.ts +3 -0
  556. package/dist/hooks/session-notification-scheduler.d.ts +24 -0
  557. package/dist/hooks/session-notification-sender.d.ts +6 -0
  558. package/dist/hooks/session-notification-utils.d.ts +9 -0
  559. package/dist/hooks/session-notification.d.ts +22 -0
  560. package/dist/hooks/session-recovery/constants.d.ts +4 -0
  561. package/dist/hooks/session-recovery/detect-error-type.d.ts +4 -0
  562. package/dist/hooks/session-recovery/hook.d.ts +20 -0
  563. package/dist/hooks/session-recovery/index.d.ts +5 -0
  564. package/dist/hooks/session-recovery/recover-empty-content-message-sdk.d.ts +13 -0
  565. package/dist/hooks/session-recovery/recover-thinking-block-order.d.ts +5 -0
  566. package/dist/hooks/session-recovery/recover-thinking-disabled-violation.d.ts +5 -0
  567. package/dist/hooks/session-recovery/recover-tool-result-missing.d.ts +5 -0
  568. package/dist/hooks/session-recovery/recover-unavailable-tool.d.ts +5 -0
  569. package/dist/hooks/session-recovery/resume.d.ts +7 -0
  570. package/dist/hooks/session-recovery/storage/empty-messages.d.ts +3 -0
  571. package/dist/hooks/session-recovery/storage/empty-text.d.ts +7 -0
  572. package/dist/hooks/session-recovery/storage/message-dir.d.ts +1 -0
  573. package/dist/hooks/session-recovery/storage/messages-reader.d.ts +6 -0
  574. package/dist/hooks/session-recovery/storage/orphan-thinking-search.d.ts +2 -0
  575. package/dist/hooks/session-recovery/storage/part-content.d.ts +3 -0
  576. package/dist/hooks/session-recovery/storage/part-id.d.ts +1 -0
  577. package/dist/hooks/session-recovery/storage/parts-reader.d.ts +6 -0
  578. package/dist/hooks/session-recovery/storage/text-part-injector.d.ts +5 -0
  579. package/dist/hooks/session-recovery/storage/thinking-block-search.d.ts +2 -0
  580. package/dist/hooks/session-recovery/storage/thinking-prepend.d.ts +5 -0
  581. package/dist/hooks/session-recovery/storage/thinking-strip.d.ts +5 -0
  582. package/dist/hooks/session-recovery/storage.d.ts +20 -0
  583. package/dist/hooks/session-recovery/types.d.ts +91 -0
  584. package/dist/hooks/session-todo-status.d.ts +2 -0
  585. package/dist/hooks/shared/compaction-model-resolver.d.ts +5 -0
  586. package/dist/hooks/sisyphus-junior-notepad/constants.d.ts +2 -0
  587. package/dist/hooks/sisyphus-junior-notepad/hook.d.ts +11 -0
  588. package/dist/hooks/sisyphus-junior-notepad/index.d.ts +2 -0
  589. package/dist/hooks/start-work/index.d.ts +1 -0
  590. package/dist/hooks/start-work/start-work-hook.d.ts +16 -0
  591. package/dist/hooks/stop-continuation-guard/hook.d.ts +16 -0
  592. package/dist/hooks/stop-continuation-guard/index.d.ts +2 -0
  593. package/dist/hooks/task-reminder/hook.d.ts +19 -0
  594. package/dist/hooks/task-reminder/index.d.ts +1 -0
  595. package/dist/hooks/task-resume-info/hook.d.ts +11 -0
  596. package/dist/hooks/task-resume-info/index.d.ts +1 -0
  597. package/dist/hooks/tasks-todowrite-disabler/constants.d.ts +3 -0
  598. package/dist/hooks/tasks-todowrite-disabler/hook.d.ts +14 -0
  599. package/dist/hooks/tasks-todowrite-disabler/index.d.ts +2 -0
  600. package/dist/hooks/think-mode/detector.d.ts +5 -0
  601. package/dist/hooks/think-mode/hook.d.ts +11 -0
  602. package/dist/hooks/think-mode/index.d.ts +4 -0
  603. package/dist/hooks/think-mode/switcher.d.ts +75 -0
  604. package/dist/hooks/think-mode/types.d.ts +21 -0
  605. package/dist/hooks/thinking-block-validator/hook.d.ts +30 -0
  606. package/dist/hooks/thinking-block-validator/index.d.ts +1 -0
  607. package/dist/hooks/todo-continuation-enforcer/abort-detection.d.ts +4 -0
  608. package/dist/hooks/todo-continuation-enforcer/constants.d.ts +10 -0
  609. package/dist/hooks/todo-continuation-enforcer/continuation-injection.d.ts +13 -0
  610. package/dist/hooks/todo-continuation-enforcer/countdown.d.ts +15 -0
  611. package/dist/hooks/todo-continuation-enforcer/handler.d.ts +15 -0
  612. package/dist/hooks/todo-continuation-enforcer/idle-event.d.ts +11 -0
  613. package/dist/hooks/todo-continuation-enforcer/index.d.ts +4 -0
  614. package/dist/hooks/todo-continuation-enforcer/message-directory.d.ts +1 -0
  615. package/dist/hooks/todo-continuation-enforcer/non-idle-events.d.ts +6 -0
  616. package/dist/hooks/todo-continuation-enforcer/session-state.d.ts +10 -0
  617. package/dist/hooks/todo-continuation-enforcer/todo.d.ts +2 -0
  618. package/dist/hooks/todo-continuation-enforcer/types.d.ts +58 -0
  619. package/dist/hooks/tool-output-truncator.d.ts +20 -0
  620. package/dist/hooks/unstable-agent-babysitter/index.d.ts +2 -0
  621. package/dist/hooks/unstable-agent-babysitter/task-message-analyzer.d.ts +24 -0
  622. package/dist/hooks/unstable-agent-babysitter/unstable-agent-babysitter-hook.d.ts +71 -0
  623. package/dist/hooks/write-existing-file-guard/hook.d.ts +3 -0
  624. package/dist/hooks/write-existing-file-guard/index.d.ts +1 -0
  625. package/dist/index.d.ts +5 -0
  626. package/dist/index.js +90446 -0
  627. package/dist/mcp/context7.d.ts +9 -0
  628. package/dist/mcp/grep-app.d.ts +6 -0
  629. package/dist/mcp/index.d.ts +10 -0
  630. package/dist/mcp/types.d.ts +9 -0
  631. package/dist/mcp/websearch.d.ts +11 -0
  632. package/dist/plugin/available-categories.d.ts +3 -0
  633. package/dist/plugin/chat-headers.d.ts +4 -0
  634. package/dist/plugin/chat-message.d.ts +31 -0
  635. package/dist/plugin/chat-params.d.ts +27 -0
  636. package/dist/plugin/event.d.ts +21 -0
  637. package/dist/plugin/hooks/create-continuation-hooks.d.ts +27 -0
  638. package/dist/plugin/hooks/create-core-hooks.d.ts +48 -0
  639. package/dist/plugin/hooks/create-session-hooks.d.ts +37 -0
  640. package/dist/plugin/hooks/create-skill-hooks.d.ts +16 -0
  641. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +23 -0
  642. package/dist/plugin/hooks/create-transform-hooks.d.ts +16 -0
  643. package/dist/plugin/messages-transform.d.ts +13 -0
  644. package/dist/plugin/recent-synthetic-idles.d.ts +6 -0
  645. package/dist/plugin/session-agent-resolver.d.ts +19 -0
  646. package/dist/plugin/session-status-normalizer.d.ts +8 -0
  647. package/dist/plugin/skill-context.d.ts +14 -0
  648. package/dist/plugin/system-transform.d.ts +5 -0
  649. package/dist/plugin/tool-execute-after.d.ts +12 -0
  650. package/dist/plugin/tool-execute-before.d.ts +12 -0
  651. package/dist/plugin/tool-registry.d.ts +16 -0
  652. package/dist/plugin/types.d.ts +18 -0
  653. package/dist/plugin/ultrawork-db-model-override.d.ts +11 -0
  654. package/dist/plugin/ultrawork-model-override.d.ts +37 -0
  655. package/dist/plugin/unstable-agent-babysitter.d.ts +15 -0
  656. package/dist/plugin-config.d.ts +5 -0
  657. package/dist/plugin-handlers/agent-config-handler.d.ts +11 -0
  658. package/dist/plugin-handlers/agent-key-remapper.d.ts +1 -0
  659. package/dist/plugin-handlers/agent-priority-order.d.ts +1 -0
  660. package/dist/plugin-handlers/category-config-resolver.d.ts +2 -0
  661. package/dist/plugin-handlers/command-config-handler.d.ts +10 -0
  662. package/dist/plugin-handlers/config-handler.d.ts +17 -0
  663. package/dist/plugin-handlers/index.d.ts +10 -0
  664. package/dist/plugin-handlers/mcp-config-handler.d.ts +7 -0
  665. package/dist/plugin-handlers/plan-model-inheritance.d.ts +1 -0
  666. package/dist/plugin-handlers/plugin-components-loader.d.ts +22 -0
  667. package/dist/plugin-handlers/prometheus-agent-config-builder.d.ts +23 -0
  668. package/dist/plugin-handlers/provider-config-handler.d.ts +5 -0
  669. package/dist/plugin-handlers/tool-config-handler.d.ts +6 -0
  670. package/dist/plugin-interface.d.ts +21 -0
  671. package/dist/plugin-state.d.ts +5 -0
  672. package/dist/shared/agent-display-names.d.ts +17 -0
  673. package/dist/shared/agent-tool-restrictions.d.ts +7 -0
  674. package/dist/shared/agent-variant.d.ts +9 -0
  675. package/dist/shared/binary-downloader.d.ts +10 -0
  676. package/dist/shared/claude-config-dir.d.ts +1 -0
  677. package/dist/shared/command-executor/embedded-commands.d.ts +7 -0
  678. package/dist/shared/command-executor/execute-command.d.ts +1 -0
  679. package/dist/shared/command-executor/execute-hook-command.d.ts +12 -0
  680. package/dist/shared/command-executor/home-directory.d.ts +1 -0
  681. package/dist/shared/command-executor/resolve-commands-in-text.d.ts +1 -0
  682. package/dist/shared/command-executor/shell-path.d.ts +2 -0
  683. package/dist/shared/command-executor.d.ts +4 -0
  684. package/dist/shared/config-errors.d.ts +7 -0
  685. package/dist/shared/connected-providers-cache.d.ts +55 -0
  686. package/dist/shared/data-path.d.ts +30 -0
  687. package/dist/shared/deep-merge.d.ts +13 -0
  688. package/dist/shared/disabled-tools.d.ts +2 -0
  689. package/dist/shared/dynamic-truncator.d.ts +31 -0
  690. package/dist/shared/external-plugin-detector.d.ts +18 -0
  691. package/dist/shared/fallback-model-availability.d.ts +12 -0
  692. package/dist/shared/file-reference-resolver.d.ts +1 -0
  693. package/dist/shared/file-utils.d.ts +7 -0
  694. package/dist/shared/first-message-variant.d.ts +11 -0
  695. package/dist/shared/frontmatter.d.ts +7 -0
  696. package/dist/shared/git-worktree/collect-git-diff-stats.d.ts +2 -0
  697. package/dist/shared/git-worktree/format-file-changes.d.ts +2 -0
  698. package/dist/shared/git-worktree/index.d.ts +7 -0
  699. package/dist/shared/git-worktree/parse-diff-numstat.d.ts +2 -0
  700. package/dist/shared/git-worktree/parse-status-porcelain-line.d.ts +6 -0
  701. package/dist/shared/git-worktree/parse-status-porcelain.d.ts +2 -0
  702. package/dist/shared/git-worktree/types.d.ts +7 -0
  703. package/dist/shared/hook-disabled.d.ts +2 -0
  704. package/dist/shared/index.d.ts +54 -0
  705. package/dist/shared/internal-initiator-marker.d.ts +5 -0
  706. package/dist/shared/jsonc-parser.d.ts +15 -0
  707. package/dist/shared/logger.d.ts +2 -0
  708. package/dist/shared/merge-categories.d.ts +6 -0
  709. package/dist/shared/migration/agent-category.d.ts +19 -0
  710. package/dist/shared/migration/agent-names.d.ts +6 -0
  711. package/dist/shared/migration/config-migration.d.ts +1 -0
  712. package/dist/shared/migration/hook-names.d.ts +6 -0
  713. package/dist/shared/migration/model-versions.d.ts +13 -0
  714. package/dist/shared/migration.d.ts +5 -0
  715. package/dist/shared/model-availability.d.ts +15 -0
  716. package/dist/shared/model-error-classifier.d.ts +31 -0
  717. package/dist/shared/model-name-matcher.d.ts +1 -0
  718. package/dist/shared/model-requirements.d.ts +18 -0
  719. package/dist/shared/model-resolution-pipeline.d.ts +26 -0
  720. package/dist/shared/model-resolution-types.d.ts +23 -0
  721. package/dist/shared/model-resolver.d.ts +28 -0
  722. package/dist/shared/model-sanitizer.d.ts +3 -0
  723. package/dist/shared/model-suggestion-retry.d.ts +34 -0
  724. package/dist/shared/normalize-sdk-response.d.ts +4 -0
  725. package/dist/shared/opencode-config-dir-types.d.ts +14 -0
  726. package/dist/shared/opencode-config-dir.d.ts +8 -0
  727. package/dist/shared/opencode-http-api.d.ts +3 -0
  728. package/dist/shared/opencode-message-dir.d.ts +1 -0
  729. package/dist/shared/opencode-server-auth.d.ts +19 -0
  730. package/dist/shared/opencode-storage-detection.d.ts +2 -0
  731. package/dist/shared/opencode-storage-paths.d.ts +4 -0
  732. package/dist/shared/opencode-version.d.ts +24 -0
  733. package/dist/shared/pattern-matcher.d.ts +3 -0
  734. package/dist/shared/permission-compat.d.ts +27 -0
  735. package/dist/shared/port-utils.d.ts +9 -0
  736. package/dist/shared/prompt-tools.d.ts +3 -0
  737. package/dist/shared/provider-model-id-transform.d.ts +1 -0
  738. package/dist/shared/record-type-guard.d.ts +1 -0
  739. package/dist/shared/safe-create-hook.d.ts +5 -0
  740. package/dist/shared/session-category-registry.d.ts +32 -0
  741. package/dist/shared/session-cursor.d.ts +13 -0
  742. package/dist/shared/session-directory-resolver.d.ts +7 -0
  743. package/dist/shared/session-injected-paths.d.ts +10 -0
  744. package/dist/shared/session-model-state.d.ts +7 -0
  745. package/dist/shared/session-tools-store.d.ts +4 -0
  746. package/dist/shared/session-utils.d.ts +2 -0
  747. package/dist/shared/shell-env.d.ts +41 -0
  748. package/dist/shared/skill-path-resolver.d.ts +9 -0
  749. package/dist/shared/snake-case.d.ts +5 -0
  750. package/dist/shared/system-directive.d.ts +45 -0
  751. package/dist/shared/tmux/constants.d.ts +5 -0
  752. package/dist/shared/tmux/index.d.ts +3 -0
  753. package/dist/shared/tmux/tmux-utils/environment.d.ts +3 -0
  754. package/dist/shared/tmux/tmux-utils/layout.d.ts +18 -0
  755. package/dist/shared/tmux/tmux-utils/pane-close.d.ts +1 -0
  756. package/dist/shared/tmux/tmux-utils/pane-dimensions.d.ts +5 -0
  757. package/dist/shared/tmux/tmux-utils/pane-replace.d.ts +3 -0
  758. package/dist/shared/tmux/tmux-utils/pane-spawn.d.ts +4 -0
  759. package/dist/shared/tmux/tmux-utils/server-health.d.ts +2 -0
  760. package/dist/shared/tmux/tmux-utils.d.ts +9 -0
  761. package/dist/shared/tmux/types.d.ts +4 -0
  762. package/dist/shared/tool-name.d.ts +1 -0
  763. package/dist/shared/truncate-description.d.ts +1 -0
  764. package/dist/shared/zip-extractor.d.ts +1 -0
  765. package/dist/tools/ast-grep/cli-binary-path-resolution.d.ts +5 -0
  766. package/dist/tools/ast-grep/cli.d.ts +12 -0
  767. package/dist/tools/ast-grep/constants.d.ts +5 -0
  768. package/dist/tools/ast-grep/downloader.d.ts +5 -0
  769. package/dist/tools/ast-grep/environment-check.d.ts +20 -0
  770. package/dist/tools/ast-grep/index.d.ts +5 -0
  771. package/dist/tools/ast-grep/language-support.d.ts +6 -0
  772. package/dist/tools/ast-grep/process-output-timeout.d.ts +12 -0
  773. package/dist/tools/ast-grep/result-formatter.d.ts +5 -0
  774. package/dist/tools/ast-grep/sg-cli-path.d.ts +3 -0
  775. package/dist/tools/ast-grep/sg-compact-json-output.d.ts +2 -0
  776. package/dist/tools/ast-grep/tools.d.ts +3 -0
  777. package/dist/tools/ast-grep/types.d.ts +58 -0
  778. package/dist/tools/background-task/clients.d.ts +45 -0
  779. package/dist/tools/background-task/constants.d.ts +3 -0
  780. package/dist/tools/background-task/create-background-cancel.d.ts +4 -0
  781. package/dist/tools/background-task/create-background-output.d.ts +3 -0
  782. package/dist/tools/background-task/create-background-task.d.ts +3 -0
  783. package/dist/tools/background-task/delay.d.ts +1 -0
  784. package/dist/tools/background-task/full-session-format.d.ts +9 -0
  785. package/dist/tools/background-task/index.d.ts +3 -0
  786. package/dist/tools/background-task/message-dir.d.ts +1 -0
  787. package/dist/tools/background-task/session-messages.d.ts +3 -0
  788. package/dist/tools/background-task/task-result-format.d.ts +3 -0
  789. package/dist/tools/background-task/task-status-format.d.ts +2 -0
  790. package/dist/tools/background-task/time-format.d.ts +2 -0
  791. package/dist/tools/background-task/tools.d.ts +4 -0
  792. package/dist/tools/background-task/truncate-text.d.ts +1 -0
  793. package/dist/tools/background-task/types.d.ts +90 -0
  794. package/dist/tools/call-omo-agent/background-agent-executor.d.ts +5 -0
  795. package/dist/tools/call-omo-agent/background-executor.d.ts +13 -0
  796. package/dist/tools/call-omo-agent/completion-poller.d.ts +11 -0
  797. package/dist/tools/call-omo-agent/constants.d.ts +2 -0
  798. package/dist/tools/call-omo-agent/index.d.ts +3 -0
  799. package/dist/tools/call-omo-agent/message-dir.d.ts +1 -0
  800. package/dist/tools/call-omo-agent/message-processor.d.ts +2 -0
  801. package/dist/tools/call-omo-agent/message-storage-directory.d.ts +1 -0
  802. package/dist/tools/call-omo-agent/session-creator.d.ts +15 -0
  803. package/dist/tools/call-omo-agent/subagent-session-creator.d.ts +10 -0
  804. package/dist/tools/call-omo-agent/sync-executor.d.ts +21 -0
  805. package/dist/tools/call-omo-agent/tool-context-with-metadata.d.ts +10 -0
  806. package/dist/tools/call-omo-agent/tools.d.ts +3 -0
  807. package/dist/tools/call-omo-agent/types.d.ts +34 -0
  808. package/dist/tools/delegate-task/available-models.d.ts +2 -0
  809. package/dist/tools/delegate-task/background-continuation.d.ts +3 -0
  810. package/dist/tools/delegate-task/background-task.d.ts +8 -0
  811. package/dist/tools/delegate-task/categories.d.ts +17 -0
  812. package/dist/tools/delegate-task/category-resolver.d.ts +19 -0
  813. package/dist/tools/delegate-task/constants.d.ts +42 -0
  814. package/dist/tools/delegate-task/error-formatting.d.ts +15 -0
  815. package/dist/tools/delegate-task/executor-types.d.ts +51 -0
  816. package/dist/tools/delegate-task/executor.d.ts +11 -0
  817. package/dist/tools/delegate-task/index.d.ts +4 -0
  818. package/dist/tools/delegate-task/model-selection.d.ts +11 -0
  819. package/dist/tools/delegate-task/model-string-parser.d.ts +7 -0
  820. package/dist/tools/delegate-task/parent-context-resolver.d.ts +4 -0
  821. package/dist/tools/delegate-task/prompt-builder.d.ts +6 -0
  822. package/dist/tools/delegate-task/sisyphus-junior-agent.d.ts +1 -0
  823. package/dist/tools/delegate-task/skill-resolver.d.ts +10 -0
  824. package/dist/tools/delegate-task/subagent-resolver.d.ts +13 -0
  825. package/dist/tools/delegate-task/sync-continuation-deps.d.ts +7 -0
  826. package/dist/tools/delegate-task/sync-continuation.d.ts +4 -0
  827. package/dist/tools/delegate-task/sync-prompt-sender.d.ts +22 -0
  828. package/dist/tools/delegate-task/sync-result-fetcher.d.ts +8 -0
  829. package/dist/tools/delegate-task/sync-session-creator.d.ts +14 -0
  830. package/dist/tools/delegate-task/sync-session-poller.d.ts +12 -0
  831. package/dist/tools/delegate-task/sync-task-deps.d.ts +11 -0
  832. package/dist/tools/delegate-task/sync-task.d.ts +9 -0
  833. package/dist/tools/delegate-task/time-formatter.d.ts +4 -0
  834. package/dist/tools/delegate-task/timing.d.ts +11 -0
  835. package/dist/tools/delegate-task/tools.d.ts +6 -0
  836. package/dist/tools/delegate-task/types.d.ts +73 -0
  837. package/dist/tools/delegate-task/unstable-agent-task.d.ts +7 -0
  838. package/dist/tools/glob/cli.d.ts +11 -0
  839. package/dist/tools/glob/constants.d.ts +6 -0
  840. package/dist/tools/glob/index.d.ts +1 -0
  841. package/dist/tools/glob/result-formatter.d.ts +2 -0
  842. package/dist/tools/glob/tools.d.ts +3 -0
  843. package/dist/tools/glob/types.d.ts +21 -0
  844. package/dist/tools/grep/cli.d.ts +3 -0
  845. package/dist/tools/grep/constants.d.ts +18 -0
  846. package/dist/tools/grep/downloader.d.ts +3 -0
  847. package/dist/tools/grep/index.d.ts +1 -0
  848. package/dist/tools/grep/result-formatter.d.ts +3 -0
  849. package/dist/tools/grep/tools.d.ts +3 -0
  850. package/dist/tools/grep/types.d.ts +39 -0
  851. package/dist/tools/hashline-edit/autocorrect-replacement-lines.d.ts +6 -0
  852. package/dist/tools/hashline-edit/constants.d.ts +4 -0
  853. package/dist/tools/hashline-edit/diff-utils.d.ts +6 -0
  854. package/dist/tools/hashline-edit/edit-deduplication.d.ts +5 -0
  855. package/dist/tools/hashline-edit/edit-operation-primitives.d.ts +10 -0
  856. package/dist/tools/hashline-edit/edit-operations.d.ts +8 -0
  857. package/dist/tools/hashline-edit/edit-ordering.d.ts +4 -0
  858. package/dist/tools/hashline-edit/edit-text-normalization.d.ts +7 -0
  859. package/dist/tools/hashline-edit/file-text-canonicalization.d.ts +7 -0
  860. package/dist/tools/hashline-edit/hash-computation.d.ts +10 -0
  861. package/dist/tools/hashline-edit/hashline-chunk-formatter.d.ts +10 -0
  862. package/dist/tools/hashline-edit/hashline-edit-diff.d.ts +1 -0
  863. package/dist/tools/hashline-edit/hashline-edit-executor.d.ts +10 -0
  864. package/dist/tools/hashline-edit/index.d.ts +7 -0
  865. package/dist/tools/hashline-edit/normalize-edits.d.ts +10 -0
  866. package/dist/tools/hashline-edit/tool-description.d.ts +1 -0
  867. package/dist/tools/hashline-edit/tools.d.ts +2 -0
  868. package/dist/tools/hashline-edit/types.d.ts +17 -0
  869. package/dist/tools/hashline-edit/validation.d.ts +19 -0
  870. package/dist/tools/index.d.ts +21 -0
  871. package/dist/tools/interactive-bash/constants.d.ts +3 -0
  872. package/dist/tools/interactive-bash/index.d.ts +3 -0
  873. package/dist/tools/interactive-bash/tmux-path-resolver.d.ts +3 -0
  874. package/dist/tools/interactive-bash/tools.d.ts +7 -0
  875. package/dist/tools/look-at/assistant-message-extractor.d.ts +1 -0
  876. package/dist/tools/look-at/constants.d.ts +2 -0
  877. package/dist/tools/look-at/index.d.ts +3 -0
  878. package/dist/tools/look-at/look-at-arguments.d.ts +6 -0
  879. package/dist/tools/look-at/mime-type-inference.d.ts +3 -0
  880. package/dist/tools/look-at/multimodal-agent-metadata.d.ts +11 -0
  881. package/dist/tools/look-at/session-poller.d.ts +8 -0
  882. package/dist/tools/look-at/tools.d.ts +3 -0
  883. package/dist/tools/look-at/types.d.ts +5 -0
  884. package/dist/tools/lsp/client.d.ts +3 -0
  885. package/dist/tools/lsp/config.d.ts +3 -0
  886. package/dist/tools/lsp/constants.d.ts +5 -0
  887. package/dist/tools/lsp/diagnostics-tool.d.ts +2 -0
  888. package/dist/tools/lsp/find-references-tool.d.ts +2 -0
  889. package/dist/tools/lsp/goto-definition-tool.d.ts +2 -0
  890. package/dist/tools/lsp/index.d.ts +8 -0
  891. package/dist/tools/lsp/language-config.d.ts +1 -0
  892. package/dist/tools/lsp/language-mappings.d.ts +3 -0
  893. package/dist/tools/lsp/lsp-client-connection.d.ts +4 -0
  894. package/dist/tools/lsp/lsp-client-transport.d.ts +20 -0
  895. package/dist/tools/lsp/lsp-client-wrapper.d.ts +8 -0
  896. package/dist/tools/lsp/lsp-client.d.ts +17 -0
  897. package/dist/tools/lsp/lsp-formatters.d.ts +13 -0
  898. package/dist/tools/lsp/lsp-manager-process-cleanup.d.ts +15 -0
  899. package/dist/tools/lsp/lsp-manager-temp-directory-cleanup.d.ts +8 -0
  900. package/dist/tools/lsp/lsp-process.d.ts +29 -0
  901. package/dist/tools/lsp/lsp-server.d.ts +24 -0
  902. package/dist/tools/lsp/rename-tools.d.ts +3 -0
  903. package/dist/tools/lsp/server-config-loader.d.ts +25 -0
  904. package/dist/tools/lsp/server-definitions.d.ts +3 -0
  905. package/dist/tools/lsp/server-installation.d.ts +1 -0
  906. package/dist/tools/lsp/server-resolution.d.ts +15 -0
  907. package/dist/tools/lsp/symbols-tool.d.ts +2 -0
  908. package/dist/tools/lsp/tools.d.ts +5 -0
  909. package/dist/tools/lsp/types.d.ts +123 -0
  910. package/dist/tools/lsp/workspace-edit.d.ts +8 -0
  911. package/dist/tools/session-manager/constants.d.ts +9 -0
  912. package/dist/tools/session-manager/index.d.ts +3 -0
  913. package/dist/tools/session-manager/session-formatter.d.ts +11 -0
  914. package/dist/tools/session-manager/storage.d.ts +15 -0
  915. package/dist/tools/session-manager/tools.d.ts +3 -0
  916. package/dist/tools/session-manager/types.d.ts +89 -0
  917. package/dist/tools/shared/semaphore.d.ts +14 -0
  918. package/dist/tools/skill/constants.d.ts +3 -0
  919. package/dist/tools/skill/index.d.ts +3 -0
  920. package/dist/tools/skill/tools.d.ts +4 -0
  921. package/dist/tools/skill/types.d.ts +33 -0
  922. package/dist/tools/skill-mcp/constants.d.ts +2 -0
  923. package/dist/tools/skill-mcp/index.d.ts +3 -0
  924. package/dist/tools/skill-mcp/tools.d.ts +11 -0
  925. package/dist/tools/skill-mcp/types.d.ts +8 -0
  926. package/dist/tools/slashcommand/command-discovery.d.ts +2 -0
  927. package/dist/tools/slashcommand/command-output-formatter.d.ts +3 -0
  928. package/dist/tools/slashcommand/index.d.ts +2 -0
  929. package/dist/tools/slashcommand/types.d.ts +18 -0
  930. package/dist/tools/task/index.d.ts +7 -0
  931. package/dist/tools/task/task-create.d.ts +4 -0
  932. package/dist/tools/task/task-get.d.ts +3 -0
  933. package/dist/tools/task/task-list.d.ts +3 -0
  934. package/dist/tools/task/task-update.d.ts +4 -0
  935. package/dist/tools/task/todo-sync.d.ts +16 -0
  936. package/dist/tools/task/types.d.ts +97 -0
  937. package/package.json +96 -0
  938. package/postinstall.mjs +77 -0
@@ -0,0 +1,1937 @@
1
+ import { z } from "zod";
2
+ export declare const AgentOverrideConfigSchema: z.ZodObject<{
3
+ model: z.ZodOptional<z.ZodString>;
4
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
5
+ variant: z.ZodOptional<z.ZodString>;
6
+ category: z.ZodOptional<z.ZodString>;
7
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
8
+ temperature: z.ZodOptional<z.ZodNumber>;
9
+ top_p: z.ZodOptional<z.ZodNumber>;
10
+ prompt: z.ZodOptional<z.ZodString>;
11
+ prompt_append: z.ZodOptional<z.ZodString>;
12
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
13
+ disable: z.ZodOptional<z.ZodBoolean>;
14
+ description: z.ZodOptional<z.ZodString>;
15
+ mode: z.ZodOptional<z.ZodEnum<{
16
+ primary: "primary";
17
+ subagent: "subagent";
18
+ all: "all";
19
+ }>>;
20
+ color: z.ZodOptional<z.ZodString>;
21
+ permission: z.ZodOptional<z.ZodObject<{
22
+ edit: z.ZodOptional<z.ZodEnum<{
23
+ ask: "ask";
24
+ allow: "allow";
25
+ deny: "deny";
26
+ }>>;
27
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
28
+ ask: "ask";
29
+ allow: "allow";
30
+ deny: "deny";
31
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
32
+ ask: "ask";
33
+ allow: "allow";
34
+ deny: "deny";
35
+ }>>]>>;
36
+ webfetch: z.ZodOptional<z.ZodEnum<{
37
+ ask: "ask";
38
+ allow: "allow";
39
+ deny: "deny";
40
+ }>>;
41
+ task: z.ZodOptional<z.ZodEnum<{
42
+ ask: "ask";
43
+ allow: "allow";
44
+ deny: "deny";
45
+ }>>;
46
+ doom_loop: z.ZodOptional<z.ZodEnum<{
47
+ ask: "ask";
48
+ allow: "allow";
49
+ deny: "deny";
50
+ }>>;
51
+ external_directory: z.ZodOptional<z.ZodEnum<{
52
+ ask: "ask";
53
+ allow: "allow";
54
+ deny: "deny";
55
+ }>>;
56
+ }, z.core.$strip>>;
57
+ maxTokens: z.ZodOptional<z.ZodNumber>;
58
+ thinking: z.ZodOptional<z.ZodObject<{
59
+ type: z.ZodEnum<{
60
+ enabled: "enabled";
61
+ disabled: "disabled";
62
+ }>;
63
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
64
+ }, z.core.$strip>>;
65
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
66
+ low: "low";
67
+ medium: "medium";
68
+ high: "high";
69
+ xhigh: "xhigh";
70
+ }>>;
71
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
72
+ low: "low";
73
+ medium: "medium";
74
+ high: "high";
75
+ }>>;
76
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
77
+ ultrawork: z.ZodOptional<z.ZodObject<{
78
+ model: z.ZodOptional<z.ZodString>;
79
+ variant: z.ZodOptional<z.ZodString>;
80
+ }, z.core.$strip>>;
81
+ compaction: z.ZodOptional<z.ZodObject<{
82
+ model: z.ZodOptional<z.ZodString>;
83
+ variant: z.ZodOptional<z.ZodString>;
84
+ }, z.core.$strip>>;
85
+ }, z.core.$strip>;
86
+ export declare const AgentOverridesSchema: z.ZodObject<{
87
+ build: z.ZodOptional<z.ZodObject<{
88
+ model: z.ZodOptional<z.ZodString>;
89
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
90
+ variant: z.ZodOptional<z.ZodString>;
91
+ category: z.ZodOptional<z.ZodString>;
92
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
93
+ temperature: z.ZodOptional<z.ZodNumber>;
94
+ top_p: z.ZodOptional<z.ZodNumber>;
95
+ prompt: z.ZodOptional<z.ZodString>;
96
+ prompt_append: z.ZodOptional<z.ZodString>;
97
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
98
+ disable: z.ZodOptional<z.ZodBoolean>;
99
+ description: z.ZodOptional<z.ZodString>;
100
+ mode: z.ZodOptional<z.ZodEnum<{
101
+ primary: "primary";
102
+ subagent: "subagent";
103
+ all: "all";
104
+ }>>;
105
+ color: z.ZodOptional<z.ZodString>;
106
+ permission: z.ZodOptional<z.ZodObject<{
107
+ edit: z.ZodOptional<z.ZodEnum<{
108
+ ask: "ask";
109
+ allow: "allow";
110
+ deny: "deny";
111
+ }>>;
112
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
113
+ ask: "ask";
114
+ allow: "allow";
115
+ deny: "deny";
116
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
117
+ ask: "ask";
118
+ allow: "allow";
119
+ deny: "deny";
120
+ }>>]>>;
121
+ webfetch: z.ZodOptional<z.ZodEnum<{
122
+ ask: "ask";
123
+ allow: "allow";
124
+ deny: "deny";
125
+ }>>;
126
+ task: z.ZodOptional<z.ZodEnum<{
127
+ ask: "ask";
128
+ allow: "allow";
129
+ deny: "deny";
130
+ }>>;
131
+ doom_loop: z.ZodOptional<z.ZodEnum<{
132
+ ask: "ask";
133
+ allow: "allow";
134
+ deny: "deny";
135
+ }>>;
136
+ external_directory: z.ZodOptional<z.ZodEnum<{
137
+ ask: "ask";
138
+ allow: "allow";
139
+ deny: "deny";
140
+ }>>;
141
+ }, z.core.$strip>>;
142
+ maxTokens: z.ZodOptional<z.ZodNumber>;
143
+ thinking: z.ZodOptional<z.ZodObject<{
144
+ type: z.ZodEnum<{
145
+ enabled: "enabled";
146
+ disabled: "disabled";
147
+ }>;
148
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
149
+ }, z.core.$strip>>;
150
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
151
+ low: "low";
152
+ medium: "medium";
153
+ high: "high";
154
+ xhigh: "xhigh";
155
+ }>>;
156
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
157
+ low: "low";
158
+ medium: "medium";
159
+ high: "high";
160
+ }>>;
161
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
162
+ ultrawork: z.ZodOptional<z.ZodObject<{
163
+ model: z.ZodOptional<z.ZodString>;
164
+ variant: z.ZodOptional<z.ZodString>;
165
+ }, z.core.$strip>>;
166
+ compaction: z.ZodOptional<z.ZodObject<{
167
+ model: z.ZodOptional<z.ZodString>;
168
+ variant: z.ZodOptional<z.ZodString>;
169
+ }, z.core.$strip>>;
170
+ }, z.core.$strip>>;
171
+ plan: z.ZodOptional<z.ZodObject<{
172
+ model: z.ZodOptional<z.ZodString>;
173
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
174
+ variant: z.ZodOptional<z.ZodString>;
175
+ category: z.ZodOptional<z.ZodString>;
176
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
177
+ temperature: z.ZodOptional<z.ZodNumber>;
178
+ top_p: z.ZodOptional<z.ZodNumber>;
179
+ prompt: z.ZodOptional<z.ZodString>;
180
+ prompt_append: z.ZodOptional<z.ZodString>;
181
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
182
+ disable: z.ZodOptional<z.ZodBoolean>;
183
+ description: z.ZodOptional<z.ZodString>;
184
+ mode: z.ZodOptional<z.ZodEnum<{
185
+ primary: "primary";
186
+ subagent: "subagent";
187
+ all: "all";
188
+ }>>;
189
+ color: z.ZodOptional<z.ZodString>;
190
+ permission: z.ZodOptional<z.ZodObject<{
191
+ edit: z.ZodOptional<z.ZodEnum<{
192
+ ask: "ask";
193
+ allow: "allow";
194
+ deny: "deny";
195
+ }>>;
196
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
197
+ ask: "ask";
198
+ allow: "allow";
199
+ deny: "deny";
200
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
201
+ ask: "ask";
202
+ allow: "allow";
203
+ deny: "deny";
204
+ }>>]>>;
205
+ webfetch: z.ZodOptional<z.ZodEnum<{
206
+ ask: "ask";
207
+ allow: "allow";
208
+ deny: "deny";
209
+ }>>;
210
+ task: z.ZodOptional<z.ZodEnum<{
211
+ ask: "ask";
212
+ allow: "allow";
213
+ deny: "deny";
214
+ }>>;
215
+ doom_loop: z.ZodOptional<z.ZodEnum<{
216
+ ask: "ask";
217
+ allow: "allow";
218
+ deny: "deny";
219
+ }>>;
220
+ external_directory: z.ZodOptional<z.ZodEnum<{
221
+ ask: "ask";
222
+ allow: "allow";
223
+ deny: "deny";
224
+ }>>;
225
+ }, z.core.$strip>>;
226
+ maxTokens: z.ZodOptional<z.ZodNumber>;
227
+ thinking: z.ZodOptional<z.ZodObject<{
228
+ type: z.ZodEnum<{
229
+ enabled: "enabled";
230
+ disabled: "disabled";
231
+ }>;
232
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
233
+ }, z.core.$strip>>;
234
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
235
+ low: "low";
236
+ medium: "medium";
237
+ high: "high";
238
+ xhigh: "xhigh";
239
+ }>>;
240
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
241
+ low: "low";
242
+ medium: "medium";
243
+ high: "high";
244
+ }>>;
245
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
246
+ ultrawork: z.ZodOptional<z.ZodObject<{
247
+ model: z.ZodOptional<z.ZodString>;
248
+ variant: z.ZodOptional<z.ZodString>;
249
+ }, z.core.$strip>>;
250
+ compaction: z.ZodOptional<z.ZodObject<{
251
+ model: z.ZodOptional<z.ZodString>;
252
+ variant: z.ZodOptional<z.ZodString>;
253
+ }, z.core.$strip>>;
254
+ }, z.core.$strip>>;
255
+ leader: z.ZodOptional<z.ZodObject<{
256
+ model: z.ZodOptional<z.ZodString>;
257
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
258
+ variant: z.ZodOptional<z.ZodString>;
259
+ category: z.ZodOptional<z.ZodString>;
260
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
261
+ temperature: z.ZodOptional<z.ZodNumber>;
262
+ top_p: z.ZodOptional<z.ZodNumber>;
263
+ prompt: z.ZodOptional<z.ZodString>;
264
+ prompt_append: z.ZodOptional<z.ZodString>;
265
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
266
+ disable: z.ZodOptional<z.ZodBoolean>;
267
+ description: z.ZodOptional<z.ZodString>;
268
+ mode: z.ZodOptional<z.ZodEnum<{
269
+ primary: "primary";
270
+ subagent: "subagent";
271
+ all: "all";
272
+ }>>;
273
+ color: z.ZodOptional<z.ZodString>;
274
+ permission: z.ZodOptional<z.ZodObject<{
275
+ edit: z.ZodOptional<z.ZodEnum<{
276
+ ask: "ask";
277
+ allow: "allow";
278
+ deny: "deny";
279
+ }>>;
280
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
281
+ ask: "ask";
282
+ allow: "allow";
283
+ deny: "deny";
284
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
285
+ ask: "ask";
286
+ allow: "allow";
287
+ deny: "deny";
288
+ }>>]>>;
289
+ webfetch: z.ZodOptional<z.ZodEnum<{
290
+ ask: "ask";
291
+ allow: "allow";
292
+ deny: "deny";
293
+ }>>;
294
+ task: z.ZodOptional<z.ZodEnum<{
295
+ ask: "ask";
296
+ allow: "allow";
297
+ deny: "deny";
298
+ }>>;
299
+ doom_loop: z.ZodOptional<z.ZodEnum<{
300
+ ask: "ask";
301
+ allow: "allow";
302
+ deny: "deny";
303
+ }>>;
304
+ external_directory: z.ZodOptional<z.ZodEnum<{
305
+ ask: "ask";
306
+ allow: "allow";
307
+ deny: "deny";
308
+ }>>;
309
+ }, z.core.$strip>>;
310
+ maxTokens: z.ZodOptional<z.ZodNumber>;
311
+ thinking: z.ZodOptional<z.ZodObject<{
312
+ type: z.ZodEnum<{
313
+ enabled: "enabled";
314
+ disabled: "disabled";
315
+ }>;
316
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
317
+ }, z.core.$strip>>;
318
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
319
+ low: "low";
320
+ medium: "medium";
321
+ high: "high";
322
+ xhigh: "xhigh";
323
+ }>>;
324
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
325
+ low: "low";
326
+ medium: "medium";
327
+ high: "high";
328
+ }>>;
329
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
330
+ ultrawork: z.ZodOptional<z.ZodObject<{
331
+ model: z.ZodOptional<z.ZodString>;
332
+ variant: z.ZodOptional<z.ZodString>;
333
+ }, z.core.$strip>>;
334
+ compaction: z.ZodOptional<z.ZodObject<{
335
+ model: z.ZodOptional<z.ZodString>;
336
+ variant: z.ZodOptional<z.ZodString>;
337
+ }, z.core.$strip>>;
338
+ }, z.core.$strip>>;
339
+ worker: z.ZodOptional<z.ZodObject<{
340
+ model: z.ZodOptional<z.ZodString>;
341
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
342
+ variant: z.ZodOptional<z.ZodString>;
343
+ category: z.ZodOptional<z.ZodString>;
344
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
345
+ temperature: z.ZodOptional<z.ZodNumber>;
346
+ top_p: z.ZodOptional<z.ZodNumber>;
347
+ prompt: z.ZodOptional<z.ZodString>;
348
+ prompt_append: z.ZodOptional<z.ZodString>;
349
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
350
+ disable: z.ZodOptional<z.ZodBoolean>;
351
+ description: z.ZodOptional<z.ZodString>;
352
+ mode: z.ZodOptional<z.ZodEnum<{
353
+ primary: "primary";
354
+ subagent: "subagent";
355
+ all: "all";
356
+ }>>;
357
+ color: z.ZodOptional<z.ZodString>;
358
+ permission: z.ZodOptional<z.ZodObject<{
359
+ edit: z.ZodOptional<z.ZodEnum<{
360
+ ask: "ask";
361
+ allow: "allow";
362
+ deny: "deny";
363
+ }>>;
364
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
365
+ ask: "ask";
366
+ allow: "allow";
367
+ deny: "deny";
368
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
369
+ ask: "ask";
370
+ allow: "allow";
371
+ deny: "deny";
372
+ }>>]>>;
373
+ webfetch: z.ZodOptional<z.ZodEnum<{
374
+ ask: "ask";
375
+ allow: "allow";
376
+ deny: "deny";
377
+ }>>;
378
+ task: z.ZodOptional<z.ZodEnum<{
379
+ ask: "ask";
380
+ allow: "allow";
381
+ deny: "deny";
382
+ }>>;
383
+ doom_loop: z.ZodOptional<z.ZodEnum<{
384
+ ask: "ask";
385
+ allow: "allow";
386
+ deny: "deny";
387
+ }>>;
388
+ external_directory: z.ZodOptional<z.ZodEnum<{
389
+ ask: "ask";
390
+ allow: "allow";
391
+ deny: "deny";
392
+ }>>;
393
+ }, z.core.$strip>>;
394
+ maxTokens: z.ZodOptional<z.ZodNumber>;
395
+ thinking: z.ZodOptional<z.ZodObject<{
396
+ type: z.ZodEnum<{
397
+ enabled: "enabled";
398
+ disabled: "disabled";
399
+ }>;
400
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
401
+ }, z.core.$strip>>;
402
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
403
+ low: "low";
404
+ medium: "medium";
405
+ high: "high";
406
+ xhigh: "xhigh";
407
+ }>>;
408
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
409
+ low: "low";
410
+ medium: "medium";
411
+ high: "high";
412
+ }>>;
413
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
414
+ ultrawork: z.ZodOptional<z.ZodObject<{
415
+ model: z.ZodOptional<z.ZodString>;
416
+ variant: z.ZodOptional<z.ZodString>;
417
+ }, z.core.$strip>>;
418
+ compaction: z.ZodOptional<z.ZodObject<{
419
+ model: z.ZodOptional<z.ZodString>;
420
+ variant: z.ZodOptional<z.ZodString>;
421
+ }, z.core.$strip>>;
422
+ }, z.core.$strip>>;
423
+ architect: z.ZodOptional<z.ZodObject<{
424
+ model: z.ZodOptional<z.ZodString>;
425
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
426
+ variant: z.ZodOptional<z.ZodString>;
427
+ category: z.ZodOptional<z.ZodString>;
428
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
429
+ temperature: z.ZodOptional<z.ZodNumber>;
430
+ top_p: z.ZodOptional<z.ZodNumber>;
431
+ prompt: z.ZodOptional<z.ZodString>;
432
+ prompt_append: z.ZodOptional<z.ZodString>;
433
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
434
+ disable: z.ZodOptional<z.ZodBoolean>;
435
+ description: z.ZodOptional<z.ZodString>;
436
+ mode: z.ZodOptional<z.ZodEnum<{
437
+ primary: "primary";
438
+ subagent: "subagent";
439
+ all: "all";
440
+ }>>;
441
+ color: z.ZodOptional<z.ZodString>;
442
+ permission: z.ZodOptional<z.ZodObject<{
443
+ edit: z.ZodOptional<z.ZodEnum<{
444
+ ask: "ask";
445
+ allow: "allow";
446
+ deny: "deny";
447
+ }>>;
448
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
449
+ ask: "ask";
450
+ allow: "allow";
451
+ deny: "deny";
452
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
453
+ ask: "ask";
454
+ allow: "allow";
455
+ deny: "deny";
456
+ }>>]>>;
457
+ webfetch: z.ZodOptional<z.ZodEnum<{
458
+ ask: "ask";
459
+ allow: "allow";
460
+ deny: "deny";
461
+ }>>;
462
+ task: z.ZodOptional<z.ZodEnum<{
463
+ ask: "ask";
464
+ allow: "allow";
465
+ deny: "deny";
466
+ }>>;
467
+ doom_loop: z.ZodOptional<z.ZodEnum<{
468
+ ask: "ask";
469
+ allow: "allow";
470
+ deny: "deny";
471
+ }>>;
472
+ external_directory: z.ZodOptional<z.ZodEnum<{
473
+ ask: "ask";
474
+ allow: "allow";
475
+ deny: "deny";
476
+ }>>;
477
+ }, z.core.$strip>>;
478
+ maxTokens: z.ZodOptional<z.ZodNumber>;
479
+ thinking: z.ZodOptional<z.ZodObject<{
480
+ type: z.ZodEnum<{
481
+ enabled: "enabled";
482
+ disabled: "disabled";
483
+ }>;
484
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
485
+ }, z.core.$strip>>;
486
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
487
+ low: "low";
488
+ medium: "medium";
489
+ high: "high";
490
+ xhigh: "xhigh";
491
+ }>>;
492
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
493
+ low: "low";
494
+ medium: "medium";
495
+ high: "high";
496
+ }>>;
497
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
498
+ ultrawork: z.ZodOptional<z.ZodObject<{
499
+ model: z.ZodOptional<z.ZodString>;
500
+ variant: z.ZodOptional<z.ZodString>;
501
+ }, z.core.$strip>>;
502
+ compaction: z.ZodOptional<z.ZodObject<{
503
+ model: z.ZodOptional<z.ZodString>;
504
+ variant: z.ZodOptional<z.ZodString>;
505
+ }, z.core.$strip>>;
506
+ }, z.core.$strip>>;
507
+ researcher: z.ZodOptional<z.ZodObject<{
508
+ model: z.ZodOptional<z.ZodString>;
509
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
510
+ variant: z.ZodOptional<z.ZodString>;
511
+ category: z.ZodOptional<z.ZodString>;
512
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
513
+ temperature: z.ZodOptional<z.ZodNumber>;
514
+ top_p: z.ZodOptional<z.ZodNumber>;
515
+ prompt: z.ZodOptional<z.ZodString>;
516
+ prompt_append: z.ZodOptional<z.ZodString>;
517
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
518
+ disable: z.ZodOptional<z.ZodBoolean>;
519
+ description: z.ZodOptional<z.ZodString>;
520
+ mode: z.ZodOptional<z.ZodEnum<{
521
+ primary: "primary";
522
+ subagent: "subagent";
523
+ all: "all";
524
+ }>>;
525
+ color: z.ZodOptional<z.ZodString>;
526
+ permission: z.ZodOptional<z.ZodObject<{
527
+ edit: z.ZodOptional<z.ZodEnum<{
528
+ ask: "ask";
529
+ allow: "allow";
530
+ deny: "deny";
531
+ }>>;
532
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
533
+ ask: "ask";
534
+ allow: "allow";
535
+ deny: "deny";
536
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
537
+ ask: "ask";
538
+ allow: "allow";
539
+ deny: "deny";
540
+ }>>]>>;
541
+ webfetch: z.ZodOptional<z.ZodEnum<{
542
+ ask: "ask";
543
+ allow: "allow";
544
+ deny: "deny";
545
+ }>>;
546
+ task: z.ZodOptional<z.ZodEnum<{
547
+ ask: "ask";
548
+ allow: "allow";
549
+ deny: "deny";
550
+ }>>;
551
+ doom_loop: z.ZodOptional<z.ZodEnum<{
552
+ ask: "ask";
553
+ allow: "allow";
554
+ deny: "deny";
555
+ }>>;
556
+ external_directory: z.ZodOptional<z.ZodEnum<{
557
+ ask: "ask";
558
+ allow: "allow";
559
+ deny: "deny";
560
+ }>>;
561
+ }, z.core.$strip>>;
562
+ maxTokens: z.ZodOptional<z.ZodNumber>;
563
+ thinking: z.ZodOptional<z.ZodObject<{
564
+ type: z.ZodEnum<{
565
+ enabled: "enabled";
566
+ disabled: "disabled";
567
+ }>;
568
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
569
+ }, z.core.$strip>>;
570
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
571
+ low: "low";
572
+ medium: "medium";
573
+ high: "high";
574
+ xhigh: "xhigh";
575
+ }>>;
576
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
577
+ low: "low";
578
+ medium: "medium";
579
+ high: "high";
580
+ }>>;
581
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
582
+ ultrawork: z.ZodOptional<z.ZodObject<{
583
+ model: z.ZodOptional<z.ZodString>;
584
+ variant: z.ZodOptional<z.ZodString>;
585
+ }, z.core.$strip>>;
586
+ compaction: z.ZodOptional<z.ZodObject<{
587
+ model: z.ZodOptional<z.ZodString>;
588
+ variant: z.ZodOptional<z.ZodString>;
589
+ }, z.core.$strip>>;
590
+ }, z.core.$strip>>;
591
+ scout: z.ZodOptional<z.ZodObject<{
592
+ model: z.ZodOptional<z.ZodString>;
593
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
594
+ variant: z.ZodOptional<z.ZodString>;
595
+ category: z.ZodOptional<z.ZodString>;
596
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
597
+ temperature: z.ZodOptional<z.ZodNumber>;
598
+ top_p: z.ZodOptional<z.ZodNumber>;
599
+ prompt: z.ZodOptional<z.ZodString>;
600
+ prompt_append: z.ZodOptional<z.ZodString>;
601
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
602
+ disable: z.ZodOptional<z.ZodBoolean>;
603
+ description: z.ZodOptional<z.ZodString>;
604
+ mode: z.ZodOptional<z.ZodEnum<{
605
+ primary: "primary";
606
+ subagent: "subagent";
607
+ all: "all";
608
+ }>>;
609
+ color: z.ZodOptional<z.ZodString>;
610
+ permission: z.ZodOptional<z.ZodObject<{
611
+ edit: z.ZodOptional<z.ZodEnum<{
612
+ ask: "ask";
613
+ allow: "allow";
614
+ deny: "deny";
615
+ }>>;
616
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
617
+ ask: "ask";
618
+ allow: "allow";
619
+ deny: "deny";
620
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
621
+ ask: "ask";
622
+ allow: "allow";
623
+ deny: "deny";
624
+ }>>]>>;
625
+ webfetch: z.ZodOptional<z.ZodEnum<{
626
+ ask: "ask";
627
+ allow: "allow";
628
+ deny: "deny";
629
+ }>>;
630
+ task: z.ZodOptional<z.ZodEnum<{
631
+ ask: "ask";
632
+ allow: "allow";
633
+ deny: "deny";
634
+ }>>;
635
+ doom_loop: z.ZodOptional<z.ZodEnum<{
636
+ ask: "ask";
637
+ allow: "allow";
638
+ deny: "deny";
639
+ }>>;
640
+ external_directory: z.ZodOptional<z.ZodEnum<{
641
+ ask: "ask";
642
+ allow: "allow";
643
+ deny: "deny";
644
+ }>>;
645
+ }, z.core.$strip>>;
646
+ maxTokens: z.ZodOptional<z.ZodNumber>;
647
+ thinking: z.ZodOptional<z.ZodObject<{
648
+ type: z.ZodEnum<{
649
+ enabled: "enabled";
650
+ disabled: "disabled";
651
+ }>;
652
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
653
+ }, z.core.$strip>>;
654
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
655
+ low: "low";
656
+ medium: "medium";
657
+ high: "high";
658
+ xhigh: "xhigh";
659
+ }>>;
660
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
661
+ low: "low";
662
+ medium: "medium";
663
+ high: "high";
664
+ }>>;
665
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
666
+ ultrawork: z.ZodOptional<z.ZodObject<{
667
+ model: z.ZodOptional<z.ZodString>;
668
+ variant: z.ZodOptional<z.ZodString>;
669
+ }, z.core.$strip>>;
670
+ compaction: z.ZodOptional<z.ZodObject<{
671
+ model: z.ZodOptional<z.ZodString>;
672
+ variant: z.ZodOptional<z.ZodString>;
673
+ }, z.core.$strip>>;
674
+ }, z.core.$strip>>;
675
+ advisor: z.ZodOptional<z.ZodObject<{
676
+ model: z.ZodOptional<z.ZodString>;
677
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
678
+ variant: z.ZodOptional<z.ZodString>;
679
+ category: z.ZodOptional<z.ZodString>;
680
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
681
+ temperature: z.ZodOptional<z.ZodNumber>;
682
+ top_p: z.ZodOptional<z.ZodNumber>;
683
+ prompt: z.ZodOptional<z.ZodString>;
684
+ prompt_append: z.ZodOptional<z.ZodString>;
685
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
686
+ disable: z.ZodOptional<z.ZodBoolean>;
687
+ description: z.ZodOptional<z.ZodString>;
688
+ mode: z.ZodOptional<z.ZodEnum<{
689
+ primary: "primary";
690
+ subagent: "subagent";
691
+ all: "all";
692
+ }>>;
693
+ color: z.ZodOptional<z.ZodString>;
694
+ permission: z.ZodOptional<z.ZodObject<{
695
+ edit: z.ZodOptional<z.ZodEnum<{
696
+ ask: "ask";
697
+ allow: "allow";
698
+ deny: "deny";
699
+ }>>;
700
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
701
+ ask: "ask";
702
+ allow: "allow";
703
+ deny: "deny";
704
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
705
+ ask: "ask";
706
+ allow: "allow";
707
+ deny: "deny";
708
+ }>>]>>;
709
+ webfetch: z.ZodOptional<z.ZodEnum<{
710
+ ask: "ask";
711
+ allow: "allow";
712
+ deny: "deny";
713
+ }>>;
714
+ task: z.ZodOptional<z.ZodEnum<{
715
+ ask: "ask";
716
+ allow: "allow";
717
+ deny: "deny";
718
+ }>>;
719
+ doom_loop: z.ZodOptional<z.ZodEnum<{
720
+ ask: "ask";
721
+ allow: "allow";
722
+ deny: "deny";
723
+ }>>;
724
+ external_directory: z.ZodOptional<z.ZodEnum<{
725
+ ask: "ask";
726
+ allow: "allow";
727
+ deny: "deny";
728
+ }>>;
729
+ }, z.core.$strip>>;
730
+ maxTokens: z.ZodOptional<z.ZodNumber>;
731
+ thinking: z.ZodOptional<z.ZodObject<{
732
+ type: z.ZodEnum<{
733
+ enabled: "enabled";
734
+ disabled: "disabled";
735
+ }>;
736
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
737
+ }, z.core.$strip>>;
738
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
739
+ low: "low";
740
+ medium: "medium";
741
+ high: "high";
742
+ xhigh: "xhigh";
743
+ }>>;
744
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
745
+ low: "low";
746
+ medium: "medium";
747
+ high: "high";
748
+ }>>;
749
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
750
+ ultrawork: z.ZodOptional<z.ZodObject<{
751
+ model: z.ZodOptional<z.ZodString>;
752
+ variant: z.ZodOptional<z.ZodString>;
753
+ }, z.core.$strip>>;
754
+ compaction: z.ZodOptional<z.ZodObject<{
755
+ model: z.ZodOptional<z.ZodString>;
756
+ variant: z.ZodOptional<z.ZodString>;
757
+ }, z.core.$strip>>;
758
+ }, z.core.$strip>>;
759
+ planner: z.ZodOptional<z.ZodObject<{
760
+ model: z.ZodOptional<z.ZodString>;
761
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
762
+ variant: z.ZodOptional<z.ZodString>;
763
+ category: z.ZodOptional<z.ZodString>;
764
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
765
+ temperature: z.ZodOptional<z.ZodNumber>;
766
+ top_p: z.ZodOptional<z.ZodNumber>;
767
+ prompt: z.ZodOptional<z.ZodString>;
768
+ prompt_append: z.ZodOptional<z.ZodString>;
769
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
770
+ disable: z.ZodOptional<z.ZodBoolean>;
771
+ description: z.ZodOptional<z.ZodString>;
772
+ mode: z.ZodOptional<z.ZodEnum<{
773
+ primary: "primary";
774
+ subagent: "subagent";
775
+ all: "all";
776
+ }>>;
777
+ color: z.ZodOptional<z.ZodString>;
778
+ permission: z.ZodOptional<z.ZodObject<{
779
+ edit: z.ZodOptional<z.ZodEnum<{
780
+ ask: "ask";
781
+ allow: "allow";
782
+ deny: "deny";
783
+ }>>;
784
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
785
+ ask: "ask";
786
+ allow: "allow";
787
+ deny: "deny";
788
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
789
+ ask: "ask";
790
+ allow: "allow";
791
+ deny: "deny";
792
+ }>>]>>;
793
+ webfetch: z.ZodOptional<z.ZodEnum<{
794
+ ask: "ask";
795
+ allow: "allow";
796
+ deny: "deny";
797
+ }>>;
798
+ task: z.ZodOptional<z.ZodEnum<{
799
+ ask: "ask";
800
+ allow: "allow";
801
+ deny: "deny";
802
+ }>>;
803
+ doom_loop: z.ZodOptional<z.ZodEnum<{
804
+ ask: "ask";
805
+ allow: "allow";
806
+ deny: "deny";
807
+ }>>;
808
+ external_directory: z.ZodOptional<z.ZodEnum<{
809
+ ask: "ask";
810
+ allow: "allow";
811
+ deny: "deny";
812
+ }>>;
813
+ }, z.core.$strip>>;
814
+ maxTokens: z.ZodOptional<z.ZodNumber>;
815
+ thinking: z.ZodOptional<z.ZodObject<{
816
+ type: z.ZodEnum<{
817
+ enabled: "enabled";
818
+ disabled: "disabled";
819
+ }>;
820
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
821
+ }, z.core.$strip>>;
822
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
823
+ low: "low";
824
+ medium: "medium";
825
+ high: "high";
826
+ xhigh: "xhigh";
827
+ }>>;
828
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
829
+ low: "low";
830
+ medium: "medium";
831
+ high: "high";
832
+ }>>;
833
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
834
+ ultrawork: z.ZodOptional<z.ZodObject<{
835
+ model: z.ZodOptional<z.ZodString>;
836
+ variant: z.ZodOptional<z.ZodString>;
837
+ }, z.core.$strip>>;
838
+ compaction: z.ZodOptional<z.ZodObject<{
839
+ model: z.ZodOptional<z.ZodString>;
840
+ variant: z.ZodOptional<z.ZodString>;
841
+ }, z.core.$strip>>;
842
+ }, z.core.$strip>>;
843
+ reviewer: z.ZodOptional<z.ZodObject<{
844
+ model: z.ZodOptional<z.ZodString>;
845
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
846
+ variant: z.ZodOptional<z.ZodString>;
847
+ category: z.ZodOptional<z.ZodString>;
848
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
849
+ temperature: z.ZodOptional<z.ZodNumber>;
850
+ top_p: z.ZodOptional<z.ZodNumber>;
851
+ prompt: z.ZodOptional<z.ZodString>;
852
+ prompt_append: z.ZodOptional<z.ZodString>;
853
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
854
+ disable: z.ZodOptional<z.ZodBoolean>;
855
+ description: z.ZodOptional<z.ZodString>;
856
+ mode: z.ZodOptional<z.ZodEnum<{
857
+ primary: "primary";
858
+ subagent: "subagent";
859
+ all: "all";
860
+ }>>;
861
+ color: z.ZodOptional<z.ZodString>;
862
+ permission: z.ZodOptional<z.ZodObject<{
863
+ edit: z.ZodOptional<z.ZodEnum<{
864
+ ask: "ask";
865
+ allow: "allow";
866
+ deny: "deny";
867
+ }>>;
868
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
869
+ ask: "ask";
870
+ allow: "allow";
871
+ deny: "deny";
872
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
873
+ ask: "ask";
874
+ allow: "allow";
875
+ deny: "deny";
876
+ }>>]>>;
877
+ webfetch: z.ZodOptional<z.ZodEnum<{
878
+ ask: "ask";
879
+ allow: "allow";
880
+ deny: "deny";
881
+ }>>;
882
+ task: z.ZodOptional<z.ZodEnum<{
883
+ ask: "ask";
884
+ allow: "allow";
885
+ deny: "deny";
886
+ }>>;
887
+ doom_loop: z.ZodOptional<z.ZodEnum<{
888
+ ask: "ask";
889
+ allow: "allow";
890
+ deny: "deny";
891
+ }>>;
892
+ external_directory: z.ZodOptional<z.ZodEnum<{
893
+ ask: "ask";
894
+ allow: "allow";
895
+ deny: "deny";
896
+ }>>;
897
+ }, z.core.$strip>>;
898
+ maxTokens: z.ZodOptional<z.ZodNumber>;
899
+ thinking: z.ZodOptional<z.ZodObject<{
900
+ type: z.ZodEnum<{
901
+ enabled: "enabled";
902
+ disabled: "disabled";
903
+ }>;
904
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
905
+ }, z.core.$strip>>;
906
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
907
+ low: "low";
908
+ medium: "medium";
909
+ high: "high";
910
+ xhigh: "xhigh";
911
+ }>>;
912
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
913
+ low: "low";
914
+ medium: "medium";
915
+ high: "high";
916
+ }>>;
917
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
918
+ ultrawork: z.ZodOptional<z.ZodObject<{
919
+ model: z.ZodOptional<z.ZodString>;
920
+ variant: z.ZodOptional<z.ZodString>;
921
+ }, z.core.$strip>>;
922
+ compaction: z.ZodOptional<z.ZodObject<{
923
+ model: z.ZodOptional<z.ZodString>;
924
+ variant: z.ZodOptional<z.ZodString>;
925
+ }, z.core.$strip>>;
926
+ }, z.core.$strip>>;
927
+ sisyphus: z.ZodOptional<z.ZodObject<{
928
+ model: z.ZodOptional<z.ZodString>;
929
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
930
+ variant: z.ZodOptional<z.ZodString>;
931
+ category: z.ZodOptional<z.ZodString>;
932
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
933
+ temperature: z.ZodOptional<z.ZodNumber>;
934
+ top_p: z.ZodOptional<z.ZodNumber>;
935
+ prompt: z.ZodOptional<z.ZodString>;
936
+ prompt_append: z.ZodOptional<z.ZodString>;
937
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
938
+ disable: z.ZodOptional<z.ZodBoolean>;
939
+ description: z.ZodOptional<z.ZodString>;
940
+ mode: z.ZodOptional<z.ZodEnum<{
941
+ primary: "primary";
942
+ subagent: "subagent";
943
+ all: "all";
944
+ }>>;
945
+ color: z.ZodOptional<z.ZodString>;
946
+ permission: z.ZodOptional<z.ZodObject<{
947
+ edit: z.ZodOptional<z.ZodEnum<{
948
+ ask: "ask";
949
+ allow: "allow";
950
+ deny: "deny";
951
+ }>>;
952
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
953
+ ask: "ask";
954
+ allow: "allow";
955
+ deny: "deny";
956
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
957
+ ask: "ask";
958
+ allow: "allow";
959
+ deny: "deny";
960
+ }>>]>>;
961
+ webfetch: z.ZodOptional<z.ZodEnum<{
962
+ ask: "ask";
963
+ allow: "allow";
964
+ deny: "deny";
965
+ }>>;
966
+ task: z.ZodOptional<z.ZodEnum<{
967
+ ask: "ask";
968
+ allow: "allow";
969
+ deny: "deny";
970
+ }>>;
971
+ doom_loop: z.ZodOptional<z.ZodEnum<{
972
+ ask: "ask";
973
+ allow: "allow";
974
+ deny: "deny";
975
+ }>>;
976
+ external_directory: z.ZodOptional<z.ZodEnum<{
977
+ ask: "ask";
978
+ allow: "allow";
979
+ deny: "deny";
980
+ }>>;
981
+ }, z.core.$strip>>;
982
+ maxTokens: z.ZodOptional<z.ZodNumber>;
983
+ thinking: z.ZodOptional<z.ZodObject<{
984
+ type: z.ZodEnum<{
985
+ enabled: "enabled";
986
+ disabled: "disabled";
987
+ }>;
988
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
989
+ }, z.core.$strip>>;
990
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
991
+ low: "low";
992
+ medium: "medium";
993
+ high: "high";
994
+ xhigh: "xhigh";
995
+ }>>;
996
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
997
+ low: "low";
998
+ medium: "medium";
999
+ high: "high";
1000
+ }>>;
1001
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1002
+ ultrawork: z.ZodOptional<z.ZodObject<{
1003
+ model: z.ZodOptional<z.ZodString>;
1004
+ variant: z.ZodOptional<z.ZodString>;
1005
+ }, z.core.$strip>>;
1006
+ compaction: z.ZodOptional<z.ZodObject<{
1007
+ model: z.ZodOptional<z.ZodString>;
1008
+ variant: z.ZodOptional<z.ZodString>;
1009
+ }, z.core.$strip>>;
1010
+ }, z.core.$strip>>;
1011
+ hephaestus: z.ZodOptional<z.ZodObject<{
1012
+ model: z.ZodOptional<z.ZodString>;
1013
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1014
+ variant: z.ZodOptional<z.ZodString>;
1015
+ category: z.ZodOptional<z.ZodString>;
1016
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
1017
+ temperature: z.ZodOptional<z.ZodNumber>;
1018
+ top_p: z.ZodOptional<z.ZodNumber>;
1019
+ prompt: z.ZodOptional<z.ZodString>;
1020
+ prompt_append: z.ZodOptional<z.ZodString>;
1021
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1022
+ disable: z.ZodOptional<z.ZodBoolean>;
1023
+ description: z.ZodOptional<z.ZodString>;
1024
+ mode: z.ZodOptional<z.ZodEnum<{
1025
+ primary: "primary";
1026
+ subagent: "subagent";
1027
+ all: "all";
1028
+ }>>;
1029
+ color: z.ZodOptional<z.ZodString>;
1030
+ permission: z.ZodOptional<z.ZodObject<{
1031
+ edit: z.ZodOptional<z.ZodEnum<{
1032
+ ask: "ask";
1033
+ allow: "allow";
1034
+ deny: "deny";
1035
+ }>>;
1036
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
1037
+ ask: "ask";
1038
+ allow: "allow";
1039
+ deny: "deny";
1040
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
1041
+ ask: "ask";
1042
+ allow: "allow";
1043
+ deny: "deny";
1044
+ }>>]>>;
1045
+ webfetch: z.ZodOptional<z.ZodEnum<{
1046
+ ask: "ask";
1047
+ allow: "allow";
1048
+ deny: "deny";
1049
+ }>>;
1050
+ task: z.ZodOptional<z.ZodEnum<{
1051
+ ask: "ask";
1052
+ allow: "allow";
1053
+ deny: "deny";
1054
+ }>>;
1055
+ doom_loop: z.ZodOptional<z.ZodEnum<{
1056
+ ask: "ask";
1057
+ allow: "allow";
1058
+ deny: "deny";
1059
+ }>>;
1060
+ external_directory: z.ZodOptional<z.ZodEnum<{
1061
+ ask: "ask";
1062
+ allow: "allow";
1063
+ deny: "deny";
1064
+ }>>;
1065
+ }, z.core.$strip>>;
1066
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1067
+ thinking: z.ZodOptional<z.ZodObject<{
1068
+ type: z.ZodEnum<{
1069
+ enabled: "enabled";
1070
+ disabled: "disabled";
1071
+ }>;
1072
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1073
+ }, z.core.$strip>>;
1074
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
1075
+ low: "low";
1076
+ medium: "medium";
1077
+ high: "high";
1078
+ xhigh: "xhigh";
1079
+ }>>;
1080
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
1081
+ low: "low";
1082
+ medium: "medium";
1083
+ high: "high";
1084
+ }>>;
1085
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1086
+ ultrawork: z.ZodOptional<z.ZodObject<{
1087
+ model: z.ZodOptional<z.ZodString>;
1088
+ variant: z.ZodOptional<z.ZodString>;
1089
+ }, z.core.$strip>>;
1090
+ compaction: z.ZodOptional<z.ZodObject<{
1091
+ model: z.ZodOptional<z.ZodString>;
1092
+ variant: z.ZodOptional<z.ZodString>;
1093
+ }, z.core.$strip>>;
1094
+ }, z.core.$strip>>;
1095
+ "sisyphus-junior": z.ZodOptional<z.ZodObject<{
1096
+ model: z.ZodOptional<z.ZodString>;
1097
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1098
+ variant: z.ZodOptional<z.ZodString>;
1099
+ category: z.ZodOptional<z.ZodString>;
1100
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
1101
+ temperature: z.ZodOptional<z.ZodNumber>;
1102
+ top_p: z.ZodOptional<z.ZodNumber>;
1103
+ prompt: z.ZodOptional<z.ZodString>;
1104
+ prompt_append: z.ZodOptional<z.ZodString>;
1105
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1106
+ disable: z.ZodOptional<z.ZodBoolean>;
1107
+ description: z.ZodOptional<z.ZodString>;
1108
+ mode: z.ZodOptional<z.ZodEnum<{
1109
+ primary: "primary";
1110
+ subagent: "subagent";
1111
+ all: "all";
1112
+ }>>;
1113
+ color: z.ZodOptional<z.ZodString>;
1114
+ permission: z.ZodOptional<z.ZodObject<{
1115
+ edit: z.ZodOptional<z.ZodEnum<{
1116
+ ask: "ask";
1117
+ allow: "allow";
1118
+ deny: "deny";
1119
+ }>>;
1120
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
1121
+ ask: "ask";
1122
+ allow: "allow";
1123
+ deny: "deny";
1124
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
1125
+ ask: "ask";
1126
+ allow: "allow";
1127
+ deny: "deny";
1128
+ }>>]>>;
1129
+ webfetch: z.ZodOptional<z.ZodEnum<{
1130
+ ask: "ask";
1131
+ allow: "allow";
1132
+ deny: "deny";
1133
+ }>>;
1134
+ task: z.ZodOptional<z.ZodEnum<{
1135
+ ask: "ask";
1136
+ allow: "allow";
1137
+ deny: "deny";
1138
+ }>>;
1139
+ doom_loop: z.ZodOptional<z.ZodEnum<{
1140
+ ask: "ask";
1141
+ allow: "allow";
1142
+ deny: "deny";
1143
+ }>>;
1144
+ external_directory: z.ZodOptional<z.ZodEnum<{
1145
+ ask: "ask";
1146
+ allow: "allow";
1147
+ deny: "deny";
1148
+ }>>;
1149
+ }, z.core.$strip>>;
1150
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1151
+ thinking: z.ZodOptional<z.ZodObject<{
1152
+ type: z.ZodEnum<{
1153
+ enabled: "enabled";
1154
+ disabled: "disabled";
1155
+ }>;
1156
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1157
+ }, z.core.$strip>>;
1158
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
1159
+ low: "low";
1160
+ medium: "medium";
1161
+ high: "high";
1162
+ xhigh: "xhigh";
1163
+ }>>;
1164
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
1165
+ low: "low";
1166
+ medium: "medium";
1167
+ high: "high";
1168
+ }>>;
1169
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1170
+ ultrawork: z.ZodOptional<z.ZodObject<{
1171
+ model: z.ZodOptional<z.ZodString>;
1172
+ variant: z.ZodOptional<z.ZodString>;
1173
+ }, z.core.$strip>>;
1174
+ compaction: z.ZodOptional<z.ZodObject<{
1175
+ model: z.ZodOptional<z.ZodString>;
1176
+ variant: z.ZodOptional<z.ZodString>;
1177
+ }, z.core.$strip>>;
1178
+ }, z.core.$strip>>;
1179
+ "OpenCode-Builder": z.ZodOptional<z.ZodObject<{
1180
+ model: z.ZodOptional<z.ZodString>;
1181
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1182
+ variant: z.ZodOptional<z.ZodString>;
1183
+ category: z.ZodOptional<z.ZodString>;
1184
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
1185
+ temperature: z.ZodOptional<z.ZodNumber>;
1186
+ top_p: z.ZodOptional<z.ZodNumber>;
1187
+ prompt: z.ZodOptional<z.ZodString>;
1188
+ prompt_append: z.ZodOptional<z.ZodString>;
1189
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1190
+ disable: z.ZodOptional<z.ZodBoolean>;
1191
+ description: z.ZodOptional<z.ZodString>;
1192
+ mode: z.ZodOptional<z.ZodEnum<{
1193
+ primary: "primary";
1194
+ subagent: "subagent";
1195
+ all: "all";
1196
+ }>>;
1197
+ color: z.ZodOptional<z.ZodString>;
1198
+ permission: z.ZodOptional<z.ZodObject<{
1199
+ edit: z.ZodOptional<z.ZodEnum<{
1200
+ ask: "ask";
1201
+ allow: "allow";
1202
+ deny: "deny";
1203
+ }>>;
1204
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
1205
+ ask: "ask";
1206
+ allow: "allow";
1207
+ deny: "deny";
1208
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
1209
+ ask: "ask";
1210
+ allow: "allow";
1211
+ deny: "deny";
1212
+ }>>]>>;
1213
+ webfetch: z.ZodOptional<z.ZodEnum<{
1214
+ ask: "ask";
1215
+ allow: "allow";
1216
+ deny: "deny";
1217
+ }>>;
1218
+ task: z.ZodOptional<z.ZodEnum<{
1219
+ ask: "ask";
1220
+ allow: "allow";
1221
+ deny: "deny";
1222
+ }>>;
1223
+ doom_loop: z.ZodOptional<z.ZodEnum<{
1224
+ ask: "ask";
1225
+ allow: "allow";
1226
+ deny: "deny";
1227
+ }>>;
1228
+ external_directory: z.ZodOptional<z.ZodEnum<{
1229
+ ask: "ask";
1230
+ allow: "allow";
1231
+ deny: "deny";
1232
+ }>>;
1233
+ }, z.core.$strip>>;
1234
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1235
+ thinking: z.ZodOptional<z.ZodObject<{
1236
+ type: z.ZodEnum<{
1237
+ enabled: "enabled";
1238
+ disabled: "disabled";
1239
+ }>;
1240
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1241
+ }, z.core.$strip>>;
1242
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
1243
+ low: "low";
1244
+ medium: "medium";
1245
+ high: "high";
1246
+ xhigh: "xhigh";
1247
+ }>>;
1248
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
1249
+ low: "low";
1250
+ medium: "medium";
1251
+ high: "high";
1252
+ }>>;
1253
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1254
+ ultrawork: z.ZodOptional<z.ZodObject<{
1255
+ model: z.ZodOptional<z.ZodString>;
1256
+ variant: z.ZodOptional<z.ZodString>;
1257
+ }, z.core.$strip>>;
1258
+ compaction: z.ZodOptional<z.ZodObject<{
1259
+ model: z.ZodOptional<z.ZodString>;
1260
+ variant: z.ZodOptional<z.ZodString>;
1261
+ }, z.core.$strip>>;
1262
+ }, z.core.$strip>>;
1263
+ prometheus: z.ZodOptional<z.ZodObject<{
1264
+ model: z.ZodOptional<z.ZodString>;
1265
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1266
+ variant: z.ZodOptional<z.ZodString>;
1267
+ category: z.ZodOptional<z.ZodString>;
1268
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
1269
+ temperature: z.ZodOptional<z.ZodNumber>;
1270
+ top_p: z.ZodOptional<z.ZodNumber>;
1271
+ prompt: z.ZodOptional<z.ZodString>;
1272
+ prompt_append: z.ZodOptional<z.ZodString>;
1273
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1274
+ disable: z.ZodOptional<z.ZodBoolean>;
1275
+ description: z.ZodOptional<z.ZodString>;
1276
+ mode: z.ZodOptional<z.ZodEnum<{
1277
+ primary: "primary";
1278
+ subagent: "subagent";
1279
+ all: "all";
1280
+ }>>;
1281
+ color: z.ZodOptional<z.ZodString>;
1282
+ permission: z.ZodOptional<z.ZodObject<{
1283
+ edit: z.ZodOptional<z.ZodEnum<{
1284
+ ask: "ask";
1285
+ allow: "allow";
1286
+ deny: "deny";
1287
+ }>>;
1288
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
1289
+ ask: "ask";
1290
+ allow: "allow";
1291
+ deny: "deny";
1292
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
1293
+ ask: "ask";
1294
+ allow: "allow";
1295
+ deny: "deny";
1296
+ }>>]>>;
1297
+ webfetch: z.ZodOptional<z.ZodEnum<{
1298
+ ask: "ask";
1299
+ allow: "allow";
1300
+ deny: "deny";
1301
+ }>>;
1302
+ task: z.ZodOptional<z.ZodEnum<{
1303
+ ask: "ask";
1304
+ allow: "allow";
1305
+ deny: "deny";
1306
+ }>>;
1307
+ doom_loop: z.ZodOptional<z.ZodEnum<{
1308
+ ask: "ask";
1309
+ allow: "allow";
1310
+ deny: "deny";
1311
+ }>>;
1312
+ external_directory: z.ZodOptional<z.ZodEnum<{
1313
+ ask: "ask";
1314
+ allow: "allow";
1315
+ deny: "deny";
1316
+ }>>;
1317
+ }, z.core.$strip>>;
1318
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1319
+ thinking: z.ZodOptional<z.ZodObject<{
1320
+ type: z.ZodEnum<{
1321
+ enabled: "enabled";
1322
+ disabled: "disabled";
1323
+ }>;
1324
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1325
+ }, z.core.$strip>>;
1326
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
1327
+ low: "low";
1328
+ medium: "medium";
1329
+ high: "high";
1330
+ xhigh: "xhigh";
1331
+ }>>;
1332
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
1333
+ low: "low";
1334
+ medium: "medium";
1335
+ high: "high";
1336
+ }>>;
1337
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1338
+ ultrawork: z.ZodOptional<z.ZodObject<{
1339
+ model: z.ZodOptional<z.ZodString>;
1340
+ variant: z.ZodOptional<z.ZodString>;
1341
+ }, z.core.$strip>>;
1342
+ compaction: z.ZodOptional<z.ZodObject<{
1343
+ model: z.ZodOptional<z.ZodString>;
1344
+ variant: z.ZodOptional<z.ZodString>;
1345
+ }, z.core.$strip>>;
1346
+ }, z.core.$strip>>;
1347
+ metis: z.ZodOptional<z.ZodObject<{
1348
+ model: z.ZodOptional<z.ZodString>;
1349
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1350
+ variant: z.ZodOptional<z.ZodString>;
1351
+ category: z.ZodOptional<z.ZodString>;
1352
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
1353
+ temperature: z.ZodOptional<z.ZodNumber>;
1354
+ top_p: z.ZodOptional<z.ZodNumber>;
1355
+ prompt: z.ZodOptional<z.ZodString>;
1356
+ prompt_append: z.ZodOptional<z.ZodString>;
1357
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1358
+ disable: z.ZodOptional<z.ZodBoolean>;
1359
+ description: z.ZodOptional<z.ZodString>;
1360
+ mode: z.ZodOptional<z.ZodEnum<{
1361
+ primary: "primary";
1362
+ subagent: "subagent";
1363
+ all: "all";
1364
+ }>>;
1365
+ color: z.ZodOptional<z.ZodString>;
1366
+ permission: z.ZodOptional<z.ZodObject<{
1367
+ edit: z.ZodOptional<z.ZodEnum<{
1368
+ ask: "ask";
1369
+ allow: "allow";
1370
+ deny: "deny";
1371
+ }>>;
1372
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
1373
+ ask: "ask";
1374
+ allow: "allow";
1375
+ deny: "deny";
1376
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
1377
+ ask: "ask";
1378
+ allow: "allow";
1379
+ deny: "deny";
1380
+ }>>]>>;
1381
+ webfetch: z.ZodOptional<z.ZodEnum<{
1382
+ ask: "ask";
1383
+ allow: "allow";
1384
+ deny: "deny";
1385
+ }>>;
1386
+ task: z.ZodOptional<z.ZodEnum<{
1387
+ ask: "ask";
1388
+ allow: "allow";
1389
+ deny: "deny";
1390
+ }>>;
1391
+ doom_loop: z.ZodOptional<z.ZodEnum<{
1392
+ ask: "ask";
1393
+ allow: "allow";
1394
+ deny: "deny";
1395
+ }>>;
1396
+ external_directory: z.ZodOptional<z.ZodEnum<{
1397
+ ask: "ask";
1398
+ allow: "allow";
1399
+ deny: "deny";
1400
+ }>>;
1401
+ }, z.core.$strip>>;
1402
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1403
+ thinking: z.ZodOptional<z.ZodObject<{
1404
+ type: z.ZodEnum<{
1405
+ enabled: "enabled";
1406
+ disabled: "disabled";
1407
+ }>;
1408
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1409
+ }, z.core.$strip>>;
1410
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
1411
+ low: "low";
1412
+ medium: "medium";
1413
+ high: "high";
1414
+ xhigh: "xhigh";
1415
+ }>>;
1416
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
1417
+ low: "low";
1418
+ medium: "medium";
1419
+ high: "high";
1420
+ }>>;
1421
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1422
+ ultrawork: z.ZodOptional<z.ZodObject<{
1423
+ model: z.ZodOptional<z.ZodString>;
1424
+ variant: z.ZodOptional<z.ZodString>;
1425
+ }, z.core.$strip>>;
1426
+ compaction: z.ZodOptional<z.ZodObject<{
1427
+ model: z.ZodOptional<z.ZodString>;
1428
+ variant: z.ZodOptional<z.ZodString>;
1429
+ }, z.core.$strip>>;
1430
+ }, z.core.$strip>>;
1431
+ momus: z.ZodOptional<z.ZodObject<{
1432
+ model: z.ZodOptional<z.ZodString>;
1433
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1434
+ variant: z.ZodOptional<z.ZodString>;
1435
+ category: z.ZodOptional<z.ZodString>;
1436
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
1437
+ temperature: z.ZodOptional<z.ZodNumber>;
1438
+ top_p: z.ZodOptional<z.ZodNumber>;
1439
+ prompt: z.ZodOptional<z.ZodString>;
1440
+ prompt_append: z.ZodOptional<z.ZodString>;
1441
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1442
+ disable: z.ZodOptional<z.ZodBoolean>;
1443
+ description: z.ZodOptional<z.ZodString>;
1444
+ mode: z.ZodOptional<z.ZodEnum<{
1445
+ primary: "primary";
1446
+ subagent: "subagent";
1447
+ all: "all";
1448
+ }>>;
1449
+ color: z.ZodOptional<z.ZodString>;
1450
+ permission: z.ZodOptional<z.ZodObject<{
1451
+ edit: z.ZodOptional<z.ZodEnum<{
1452
+ ask: "ask";
1453
+ allow: "allow";
1454
+ deny: "deny";
1455
+ }>>;
1456
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
1457
+ ask: "ask";
1458
+ allow: "allow";
1459
+ deny: "deny";
1460
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
1461
+ ask: "ask";
1462
+ allow: "allow";
1463
+ deny: "deny";
1464
+ }>>]>>;
1465
+ webfetch: z.ZodOptional<z.ZodEnum<{
1466
+ ask: "ask";
1467
+ allow: "allow";
1468
+ deny: "deny";
1469
+ }>>;
1470
+ task: z.ZodOptional<z.ZodEnum<{
1471
+ ask: "ask";
1472
+ allow: "allow";
1473
+ deny: "deny";
1474
+ }>>;
1475
+ doom_loop: z.ZodOptional<z.ZodEnum<{
1476
+ ask: "ask";
1477
+ allow: "allow";
1478
+ deny: "deny";
1479
+ }>>;
1480
+ external_directory: z.ZodOptional<z.ZodEnum<{
1481
+ ask: "ask";
1482
+ allow: "allow";
1483
+ deny: "deny";
1484
+ }>>;
1485
+ }, z.core.$strip>>;
1486
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1487
+ thinking: z.ZodOptional<z.ZodObject<{
1488
+ type: z.ZodEnum<{
1489
+ enabled: "enabled";
1490
+ disabled: "disabled";
1491
+ }>;
1492
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1493
+ }, z.core.$strip>>;
1494
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
1495
+ low: "low";
1496
+ medium: "medium";
1497
+ high: "high";
1498
+ xhigh: "xhigh";
1499
+ }>>;
1500
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
1501
+ low: "low";
1502
+ medium: "medium";
1503
+ high: "high";
1504
+ }>>;
1505
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1506
+ ultrawork: z.ZodOptional<z.ZodObject<{
1507
+ model: z.ZodOptional<z.ZodString>;
1508
+ variant: z.ZodOptional<z.ZodString>;
1509
+ }, z.core.$strip>>;
1510
+ compaction: z.ZodOptional<z.ZodObject<{
1511
+ model: z.ZodOptional<z.ZodString>;
1512
+ variant: z.ZodOptional<z.ZodString>;
1513
+ }, z.core.$strip>>;
1514
+ }, z.core.$strip>>;
1515
+ oracle: z.ZodOptional<z.ZodObject<{
1516
+ model: z.ZodOptional<z.ZodString>;
1517
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1518
+ variant: z.ZodOptional<z.ZodString>;
1519
+ category: z.ZodOptional<z.ZodString>;
1520
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
1521
+ temperature: z.ZodOptional<z.ZodNumber>;
1522
+ top_p: z.ZodOptional<z.ZodNumber>;
1523
+ prompt: z.ZodOptional<z.ZodString>;
1524
+ prompt_append: z.ZodOptional<z.ZodString>;
1525
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1526
+ disable: z.ZodOptional<z.ZodBoolean>;
1527
+ description: z.ZodOptional<z.ZodString>;
1528
+ mode: z.ZodOptional<z.ZodEnum<{
1529
+ primary: "primary";
1530
+ subagent: "subagent";
1531
+ all: "all";
1532
+ }>>;
1533
+ color: z.ZodOptional<z.ZodString>;
1534
+ permission: z.ZodOptional<z.ZodObject<{
1535
+ edit: z.ZodOptional<z.ZodEnum<{
1536
+ ask: "ask";
1537
+ allow: "allow";
1538
+ deny: "deny";
1539
+ }>>;
1540
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
1541
+ ask: "ask";
1542
+ allow: "allow";
1543
+ deny: "deny";
1544
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
1545
+ ask: "ask";
1546
+ allow: "allow";
1547
+ deny: "deny";
1548
+ }>>]>>;
1549
+ webfetch: z.ZodOptional<z.ZodEnum<{
1550
+ ask: "ask";
1551
+ allow: "allow";
1552
+ deny: "deny";
1553
+ }>>;
1554
+ task: z.ZodOptional<z.ZodEnum<{
1555
+ ask: "ask";
1556
+ allow: "allow";
1557
+ deny: "deny";
1558
+ }>>;
1559
+ doom_loop: z.ZodOptional<z.ZodEnum<{
1560
+ ask: "ask";
1561
+ allow: "allow";
1562
+ deny: "deny";
1563
+ }>>;
1564
+ external_directory: z.ZodOptional<z.ZodEnum<{
1565
+ ask: "ask";
1566
+ allow: "allow";
1567
+ deny: "deny";
1568
+ }>>;
1569
+ }, z.core.$strip>>;
1570
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1571
+ thinking: z.ZodOptional<z.ZodObject<{
1572
+ type: z.ZodEnum<{
1573
+ enabled: "enabled";
1574
+ disabled: "disabled";
1575
+ }>;
1576
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1577
+ }, z.core.$strip>>;
1578
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
1579
+ low: "low";
1580
+ medium: "medium";
1581
+ high: "high";
1582
+ xhigh: "xhigh";
1583
+ }>>;
1584
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
1585
+ low: "low";
1586
+ medium: "medium";
1587
+ high: "high";
1588
+ }>>;
1589
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1590
+ ultrawork: z.ZodOptional<z.ZodObject<{
1591
+ model: z.ZodOptional<z.ZodString>;
1592
+ variant: z.ZodOptional<z.ZodString>;
1593
+ }, z.core.$strip>>;
1594
+ compaction: z.ZodOptional<z.ZodObject<{
1595
+ model: z.ZodOptional<z.ZodString>;
1596
+ variant: z.ZodOptional<z.ZodString>;
1597
+ }, z.core.$strip>>;
1598
+ }, z.core.$strip>>;
1599
+ librarian: z.ZodOptional<z.ZodObject<{
1600
+ model: z.ZodOptional<z.ZodString>;
1601
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1602
+ variant: z.ZodOptional<z.ZodString>;
1603
+ category: z.ZodOptional<z.ZodString>;
1604
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
1605
+ temperature: z.ZodOptional<z.ZodNumber>;
1606
+ top_p: z.ZodOptional<z.ZodNumber>;
1607
+ prompt: z.ZodOptional<z.ZodString>;
1608
+ prompt_append: z.ZodOptional<z.ZodString>;
1609
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1610
+ disable: z.ZodOptional<z.ZodBoolean>;
1611
+ description: z.ZodOptional<z.ZodString>;
1612
+ mode: z.ZodOptional<z.ZodEnum<{
1613
+ primary: "primary";
1614
+ subagent: "subagent";
1615
+ all: "all";
1616
+ }>>;
1617
+ color: z.ZodOptional<z.ZodString>;
1618
+ permission: z.ZodOptional<z.ZodObject<{
1619
+ edit: z.ZodOptional<z.ZodEnum<{
1620
+ ask: "ask";
1621
+ allow: "allow";
1622
+ deny: "deny";
1623
+ }>>;
1624
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
1625
+ ask: "ask";
1626
+ allow: "allow";
1627
+ deny: "deny";
1628
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
1629
+ ask: "ask";
1630
+ allow: "allow";
1631
+ deny: "deny";
1632
+ }>>]>>;
1633
+ webfetch: z.ZodOptional<z.ZodEnum<{
1634
+ ask: "ask";
1635
+ allow: "allow";
1636
+ deny: "deny";
1637
+ }>>;
1638
+ task: z.ZodOptional<z.ZodEnum<{
1639
+ ask: "ask";
1640
+ allow: "allow";
1641
+ deny: "deny";
1642
+ }>>;
1643
+ doom_loop: z.ZodOptional<z.ZodEnum<{
1644
+ ask: "ask";
1645
+ allow: "allow";
1646
+ deny: "deny";
1647
+ }>>;
1648
+ external_directory: z.ZodOptional<z.ZodEnum<{
1649
+ ask: "ask";
1650
+ allow: "allow";
1651
+ deny: "deny";
1652
+ }>>;
1653
+ }, z.core.$strip>>;
1654
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1655
+ thinking: z.ZodOptional<z.ZodObject<{
1656
+ type: z.ZodEnum<{
1657
+ enabled: "enabled";
1658
+ disabled: "disabled";
1659
+ }>;
1660
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1661
+ }, z.core.$strip>>;
1662
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
1663
+ low: "low";
1664
+ medium: "medium";
1665
+ high: "high";
1666
+ xhigh: "xhigh";
1667
+ }>>;
1668
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
1669
+ low: "low";
1670
+ medium: "medium";
1671
+ high: "high";
1672
+ }>>;
1673
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1674
+ ultrawork: z.ZodOptional<z.ZodObject<{
1675
+ model: z.ZodOptional<z.ZodString>;
1676
+ variant: z.ZodOptional<z.ZodString>;
1677
+ }, z.core.$strip>>;
1678
+ compaction: z.ZodOptional<z.ZodObject<{
1679
+ model: z.ZodOptional<z.ZodString>;
1680
+ variant: z.ZodOptional<z.ZodString>;
1681
+ }, z.core.$strip>>;
1682
+ }, z.core.$strip>>;
1683
+ explore: z.ZodOptional<z.ZodObject<{
1684
+ model: z.ZodOptional<z.ZodString>;
1685
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1686
+ variant: z.ZodOptional<z.ZodString>;
1687
+ category: z.ZodOptional<z.ZodString>;
1688
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
1689
+ temperature: z.ZodOptional<z.ZodNumber>;
1690
+ top_p: z.ZodOptional<z.ZodNumber>;
1691
+ prompt: z.ZodOptional<z.ZodString>;
1692
+ prompt_append: z.ZodOptional<z.ZodString>;
1693
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1694
+ disable: z.ZodOptional<z.ZodBoolean>;
1695
+ description: z.ZodOptional<z.ZodString>;
1696
+ mode: z.ZodOptional<z.ZodEnum<{
1697
+ primary: "primary";
1698
+ subagent: "subagent";
1699
+ all: "all";
1700
+ }>>;
1701
+ color: z.ZodOptional<z.ZodString>;
1702
+ permission: z.ZodOptional<z.ZodObject<{
1703
+ edit: z.ZodOptional<z.ZodEnum<{
1704
+ ask: "ask";
1705
+ allow: "allow";
1706
+ deny: "deny";
1707
+ }>>;
1708
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
1709
+ ask: "ask";
1710
+ allow: "allow";
1711
+ deny: "deny";
1712
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
1713
+ ask: "ask";
1714
+ allow: "allow";
1715
+ deny: "deny";
1716
+ }>>]>>;
1717
+ webfetch: z.ZodOptional<z.ZodEnum<{
1718
+ ask: "ask";
1719
+ allow: "allow";
1720
+ deny: "deny";
1721
+ }>>;
1722
+ task: z.ZodOptional<z.ZodEnum<{
1723
+ ask: "ask";
1724
+ allow: "allow";
1725
+ deny: "deny";
1726
+ }>>;
1727
+ doom_loop: z.ZodOptional<z.ZodEnum<{
1728
+ ask: "ask";
1729
+ allow: "allow";
1730
+ deny: "deny";
1731
+ }>>;
1732
+ external_directory: z.ZodOptional<z.ZodEnum<{
1733
+ ask: "ask";
1734
+ allow: "allow";
1735
+ deny: "deny";
1736
+ }>>;
1737
+ }, z.core.$strip>>;
1738
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1739
+ thinking: z.ZodOptional<z.ZodObject<{
1740
+ type: z.ZodEnum<{
1741
+ enabled: "enabled";
1742
+ disabled: "disabled";
1743
+ }>;
1744
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1745
+ }, z.core.$strip>>;
1746
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
1747
+ low: "low";
1748
+ medium: "medium";
1749
+ high: "high";
1750
+ xhigh: "xhigh";
1751
+ }>>;
1752
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
1753
+ low: "low";
1754
+ medium: "medium";
1755
+ high: "high";
1756
+ }>>;
1757
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1758
+ ultrawork: z.ZodOptional<z.ZodObject<{
1759
+ model: z.ZodOptional<z.ZodString>;
1760
+ variant: z.ZodOptional<z.ZodString>;
1761
+ }, z.core.$strip>>;
1762
+ compaction: z.ZodOptional<z.ZodObject<{
1763
+ model: z.ZodOptional<z.ZodString>;
1764
+ variant: z.ZodOptional<z.ZodString>;
1765
+ }, z.core.$strip>>;
1766
+ }, z.core.$strip>>;
1767
+ "multimodal-looker": z.ZodOptional<z.ZodObject<{
1768
+ model: z.ZodOptional<z.ZodString>;
1769
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1770
+ variant: z.ZodOptional<z.ZodString>;
1771
+ category: z.ZodOptional<z.ZodString>;
1772
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
1773
+ temperature: z.ZodOptional<z.ZodNumber>;
1774
+ top_p: z.ZodOptional<z.ZodNumber>;
1775
+ prompt: z.ZodOptional<z.ZodString>;
1776
+ prompt_append: z.ZodOptional<z.ZodString>;
1777
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1778
+ disable: z.ZodOptional<z.ZodBoolean>;
1779
+ description: z.ZodOptional<z.ZodString>;
1780
+ mode: z.ZodOptional<z.ZodEnum<{
1781
+ primary: "primary";
1782
+ subagent: "subagent";
1783
+ all: "all";
1784
+ }>>;
1785
+ color: z.ZodOptional<z.ZodString>;
1786
+ permission: z.ZodOptional<z.ZodObject<{
1787
+ edit: z.ZodOptional<z.ZodEnum<{
1788
+ ask: "ask";
1789
+ allow: "allow";
1790
+ deny: "deny";
1791
+ }>>;
1792
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
1793
+ ask: "ask";
1794
+ allow: "allow";
1795
+ deny: "deny";
1796
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
1797
+ ask: "ask";
1798
+ allow: "allow";
1799
+ deny: "deny";
1800
+ }>>]>>;
1801
+ webfetch: z.ZodOptional<z.ZodEnum<{
1802
+ ask: "ask";
1803
+ allow: "allow";
1804
+ deny: "deny";
1805
+ }>>;
1806
+ task: z.ZodOptional<z.ZodEnum<{
1807
+ ask: "ask";
1808
+ allow: "allow";
1809
+ deny: "deny";
1810
+ }>>;
1811
+ doom_loop: z.ZodOptional<z.ZodEnum<{
1812
+ ask: "ask";
1813
+ allow: "allow";
1814
+ deny: "deny";
1815
+ }>>;
1816
+ external_directory: z.ZodOptional<z.ZodEnum<{
1817
+ ask: "ask";
1818
+ allow: "allow";
1819
+ deny: "deny";
1820
+ }>>;
1821
+ }, z.core.$strip>>;
1822
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1823
+ thinking: z.ZodOptional<z.ZodObject<{
1824
+ type: z.ZodEnum<{
1825
+ enabled: "enabled";
1826
+ disabled: "disabled";
1827
+ }>;
1828
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1829
+ }, z.core.$strip>>;
1830
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
1831
+ low: "low";
1832
+ medium: "medium";
1833
+ high: "high";
1834
+ xhigh: "xhigh";
1835
+ }>>;
1836
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
1837
+ low: "low";
1838
+ medium: "medium";
1839
+ high: "high";
1840
+ }>>;
1841
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1842
+ ultrawork: z.ZodOptional<z.ZodObject<{
1843
+ model: z.ZodOptional<z.ZodString>;
1844
+ variant: z.ZodOptional<z.ZodString>;
1845
+ }, z.core.$strip>>;
1846
+ compaction: z.ZodOptional<z.ZodObject<{
1847
+ model: z.ZodOptional<z.ZodString>;
1848
+ variant: z.ZodOptional<z.ZodString>;
1849
+ }, z.core.$strip>>;
1850
+ }, z.core.$strip>>;
1851
+ atlas: z.ZodOptional<z.ZodObject<{
1852
+ model: z.ZodOptional<z.ZodString>;
1853
+ fallback_models: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
1854
+ variant: z.ZodOptional<z.ZodString>;
1855
+ category: z.ZodOptional<z.ZodString>;
1856
+ skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
1857
+ temperature: z.ZodOptional<z.ZodNumber>;
1858
+ top_p: z.ZodOptional<z.ZodNumber>;
1859
+ prompt: z.ZodOptional<z.ZodString>;
1860
+ prompt_append: z.ZodOptional<z.ZodString>;
1861
+ tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
1862
+ disable: z.ZodOptional<z.ZodBoolean>;
1863
+ description: z.ZodOptional<z.ZodString>;
1864
+ mode: z.ZodOptional<z.ZodEnum<{
1865
+ primary: "primary";
1866
+ subagent: "subagent";
1867
+ all: "all";
1868
+ }>>;
1869
+ color: z.ZodOptional<z.ZodString>;
1870
+ permission: z.ZodOptional<z.ZodObject<{
1871
+ edit: z.ZodOptional<z.ZodEnum<{
1872
+ ask: "ask";
1873
+ allow: "allow";
1874
+ deny: "deny";
1875
+ }>>;
1876
+ bash: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
1877
+ ask: "ask";
1878
+ allow: "allow";
1879
+ deny: "deny";
1880
+ }>, z.ZodRecord<z.ZodString, z.ZodEnum<{
1881
+ ask: "ask";
1882
+ allow: "allow";
1883
+ deny: "deny";
1884
+ }>>]>>;
1885
+ webfetch: z.ZodOptional<z.ZodEnum<{
1886
+ ask: "ask";
1887
+ allow: "allow";
1888
+ deny: "deny";
1889
+ }>>;
1890
+ task: z.ZodOptional<z.ZodEnum<{
1891
+ ask: "ask";
1892
+ allow: "allow";
1893
+ deny: "deny";
1894
+ }>>;
1895
+ doom_loop: z.ZodOptional<z.ZodEnum<{
1896
+ ask: "ask";
1897
+ allow: "allow";
1898
+ deny: "deny";
1899
+ }>>;
1900
+ external_directory: z.ZodOptional<z.ZodEnum<{
1901
+ ask: "ask";
1902
+ allow: "allow";
1903
+ deny: "deny";
1904
+ }>>;
1905
+ }, z.core.$strip>>;
1906
+ maxTokens: z.ZodOptional<z.ZodNumber>;
1907
+ thinking: z.ZodOptional<z.ZodObject<{
1908
+ type: z.ZodEnum<{
1909
+ enabled: "enabled";
1910
+ disabled: "disabled";
1911
+ }>;
1912
+ budgetTokens: z.ZodOptional<z.ZodNumber>;
1913
+ }, z.core.$strip>>;
1914
+ reasoningEffort: z.ZodOptional<z.ZodEnum<{
1915
+ low: "low";
1916
+ medium: "medium";
1917
+ high: "high";
1918
+ xhigh: "xhigh";
1919
+ }>>;
1920
+ textVerbosity: z.ZodOptional<z.ZodEnum<{
1921
+ low: "low";
1922
+ medium: "medium";
1923
+ high: "high";
1924
+ }>>;
1925
+ providerOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1926
+ ultrawork: z.ZodOptional<z.ZodObject<{
1927
+ model: z.ZodOptional<z.ZodString>;
1928
+ variant: z.ZodOptional<z.ZodString>;
1929
+ }, z.core.$strip>>;
1930
+ compaction: z.ZodOptional<z.ZodObject<{
1931
+ model: z.ZodOptional<z.ZodString>;
1932
+ variant: z.ZodOptional<z.ZodString>;
1933
+ }, z.core.$strip>>;
1934
+ }, z.core.$strip>>;
1935
+ }, z.core.$strip>;
1936
+ export type AgentOverrideConfig = z.infer<typeof AgentOverrideConfigSchema>;
1937
+ export type AgentOverrides = z.infer<typeof AgentOverridesSchema>;