oh-my-opencode-gpt-slim 0.0.3

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 (702) hide show
  1. package/LICENSE.md +82 -0
  2. package/README.md +84 -0
  3. package/README.zh-cn.md +341 -0
  4. package/bin/oh-my-opencode-gpt-slim.js +140 -0
  5. package/bin/platform.d.ts +14 -0
  6. package/bin/platform.js +64 -0
  7. package/dist/agents/agent-builder.d.ts +7 -0
  8. package/dist/agents/atlas/agent.d.ts +35 -0
  9. package/dist/agents/atlas/default.d.ts +11 -0
  10. package/dist/agents/atlas/gemini.d.ts +11 -0
  11. package/dist/agents/atlas/gpt.d.ts +11 -0
  12. package/dist/agents/atlas/index.d.ts +2 -0
  13. package/dist/agents/atlas/prompt-section-builder.d.ts +13 -0
  14. package/dist/agents/builtin-agents/agent-overrides.d.ts +12 -0
  15. package/dist/agents/builtin-agents/atlas-agent.d.ts +17 -0
  16. package/dist/agents/builtin-agents/available-skills.d.ts +4 -0
  17. package/dist/agents/builtin-agents/environment-context.d.ts +6 -0
  18. package/dist/agents/builtin-agents/general-agents.d.ts +24 -0
  19. package/dist/agents/builtin-agents/model-resolution.d.ts +24 -0
  20. package/dist/agents/builtin-agents/resolve-file-uri.d.ts +1 -0
  21. package/dist/agents/builtin-agents/sisyphus-agent.d.ts +20 -0
  22. package/dist/agents/builtin-agents.d.ts +6 -0
  23. package/dist/agents/custom-agent-summaries.d.ts +8 -0
  24. package/dist/agents/dynamic-agent-prompt-builder.d.ts +34 -0
  25. package/dist/agents/env-context.d.ts +7 -0
  26. package/dist/agents/explore.d.ts +7 -0
  27. package/dist/agents/index.d.ts +4 -0
  28. package/dist/agents/librarian.d.ts +7 -0
  29. package/dist/agents/metis.d.ts +21 -0
  30. package/dist/agents/momus.d.ts +25 -0
  31. package/dist/agents/multimodal-looker.d.ts +7 -0
  32. package/dist/agents/oracle.d.ts +7 -0
  33. package/dist/agents/prometheus/behavioral-summary.d.ts +6 -0
  34. package/dist/agents/prometheus/gemini.d.ts +12 -0
  35. package/dist/agents/prometheus/gpt.d.ts +11 -0
  36. package/dist/agents/prometheus/high-accuracy-mode.d.ts +6 -0
  37. package/dist/agents/prometheus/identity-constraints.d.ts +7 -0
  38. package/dist/agents/prometheus/index.d.ts +2 -0
  39. package/dist/agents/prometheus/interview-mode.d.ts +7 -0
  40. package/dist/agents/prometheus/plan-generation.d.ts +7 -0
  41. package/dist/agents/prometheus/plan-template.d.ts +7 -0
  42. package/dist/agents/prometheus/system-prompt.d.ts +28 -0
  43. package/dist/agents/sisyphus/default.d.ts +9 -0
  44. package/dist/agents/sisyphus/gemini.d.ts +20 -0
  45. package/dist/agents/sisyphus/gpt-5-4.d.ts +13 -0
  46. package/dist/agents/sisyphus/index.d.ts +11 -0
  47. package/dist/agents/sisyphus-junior/agent.d.ts +27 -0
  48. package/dist/agents/sisyphus-junior/default.d.ts +9 -0
  49. package/dist/agents/sisyphus-junior/gemini.d.ts +10 -0
  50. package/dist/agents/sisyphus-junior/gpt-5-3-codex.d.ts +8 -0
  51. package/dist/agents/sisyphus-junior/gpt-5-4.d.ts +11 -0
  52. package/dist/agents/sisyphus-junior/gpt.d.ts +9 -0
  53. package/dist/agents/sisyphus-junior/index.d.ts +7 -0
  54. package/dist/agents/sisyphus.d.ts +8 -0
  55. package/dist/agents/types.d.ts +67 -0
  56. package/dist/cli/cli-installer.d.ts +2 -0
  57. package/dist/cli/cli-program.d.ts +1 -0
  58. package/dist/cli/config-manager/add-plugin-to-opencode-config.d.ts +2 -0
  59. package/dist/cli/config-manager/bun-install.d.ts +7 -0
  60. package/dist/cli/config-manager/config-context.d.ts +13 -0
  61. package/dist/cli/config-manager/deep-merge-record.d.ts +1 -0
  62. package/dist/cli/config-manager/detect-current-config.d.ts +2 -0
  63. package/dist/cli/config-manager/ensure-config-directory-exists.d.ts +1 -0
  64. package/dist/cli/config-manager/format-error-with-suggestion.d.ts +1 -0
  65. package/dist/cli/config-manager/generate-omo-config.d.ts +2 -0
  66. package/dist/cli/config-manager/npm-dist-tags.d.ts +7 -0
  67. package/dist/cli/config-manager/opencode-binary.d.ts +2 -0
  68. package/dist/cli/config-manager/opencode-config-format.d.ts +5 -0
  69. package/dist/cli/config-manager/parse-opencode-config-file.d.ts +10 -0
  70. package/dist/cli/config-manager/plugin-array-updater.d.ts +1 -0
  71. package/dist/cli/config-manager/plugin-name-with-version.d.ts +1 -0
  72. package/dist/cli/config-manager/write-omo-config.d.ts +2 -0
  73. package/dist/cli/config-manager.d.ts +11 -0
  74. package/dist/cli/doctor/checks/config.d.ts +2 -0
  75. package/dist/cli/doctor/checks/dependencies.d.ts +4 -0
  76. package/dist/cli/doctor/checks/index.d.ts +7 -0
  77. package/dist/cli/doctor/checks/model-resolution-cache.d.ts +2 -0
  78. package/dist/cli/doctor/checks/model-resolution-config.d.ts +2 -0
  79. package/dist/cli/doctor/checks/model-resolution-details.d.ts +6 -0
  80. package/dist/cli/doctor/checks/model-resolution-effective-model.d.ts +3 -0
  81. package/dist/cli/doctor/checks/model-resolution-types.d.ts +37 -0
  82. package/dist/cli/doctor/checks/model-resolution-variant.d.ts +5 -0
  83. package/dist/cli/doctor/checks/model-resolution.d.ts +6 -0
  84. package/dist/cli/doctor/checks/system-binary.d.ts +13 -0
  85. package/dist/cli/doctor/checks/system-loaded-version.d.ts +10 -0
  86. package/dist/cli/doctor/checks/system-plugin.d.ts +17 -0
  87. package/dist/cli/doctor/checks/system.d.ts +3 -0
  88. package/dist/cli/doctor/checks/tools-gh.d.ts +10 -0
  89. package/dist/cli/doctor/checks/tools-lsp.d.ts +6 -0
  90. package/dist/cli/doctor/checks/tools-mcp.d.ts +3 -0
  91. package/dist/cli/doctor/checks/tools.d.ts +3 -0
  92. package/dist/cli/doctor/constants.d.ts +29 -0
  93. package/dist/cli/doctor/format-default.d.ts +2 -0
  94. package/dist/cli/doctor/format-shared.d.ts +6 -0
  95. package/dist/cli/doctor/format-status.d.ts +2 -0
  96. package/dist/cli/doctor/format-verbose.d.ts +2 -0
  97. package/dist/cli/doctor/formatter.d.ts +3 -0
  98. package/dist/cli/doctor/index.d.ts +5 -0
  99. package/dist/cli/doctor/runner.d.ts +5 -0
  100. package/dist/cli/doctor/types.d.ts +124 -0
  101. package/dist/cli/fallback-chain-resolution.d.ts +10 -0
  102. package/dist/cli/get-local-version/formatter.d.ts +3 -0
  103. package/dist/cli/get-local-version/get-local-version.d.ts +2 -0
  104. package/dist/cli/get-local-version/index.d.ts +2 -0
  105. package/dist/cli/get-local-version/types.d.ts +13 -0
  106. package/dist/cli/index.d.ts +2 -0
  107. package/dist/cli/index.js +29033 -0
  108. package/dist/cli/install-validators.d.ts +32 -0
  109. package/dist/cli/install.d.ts +2 -0
  110. package/dist/cli/mcp-oauth/index.d.ts +6 -0
  111. package/dist/cli/mcp-oauth/login.d.ts +6 -0
  112. package/dist/cli/mcp-oauth/logout.d.ts +4 -0
  113. package/dist/cli/mcp-oauth/status.d.ts +1 -0
  114. package/dist/cli/model-fallback-requirements.d.ts +3 -0
  115. package/dist/cli/model-fallback-types.d.ts +26 -0
  116. package/dist/cli/model-fallback.d.ts +5 -0
  117. package/dist/cli/openai-only-model-catalog.d.ts +3 -0
  118. package/dist/cli/plugin-reference.d.ts +9 -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 +49 -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 +10 -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 +47 -0
  149. package/dist/config/schema/agent-overrides.d.ts +1181 -0
  150. package/dist/config/schema/babysitting.d.ts +5 -0
  151. package/dist/config/schema/background-task.d.ts +10 -0
  152. package/dist/config/schema/browser-automation.d.ts +17 -0
  153. package/dist/config/schema/categories.d.ts +78 -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/dynamic-context-pruning.d.ts +28 -0
  158. package/dist/config/schema/experimental.d.ts +40 -0
  159. package/dist/config/schema/fallback-models.d.ts +3 -0
  160. package/dist/config/schema/git-master.d.ts +6 -0
  161. package/dist/config/schema/hooks.d.ts +51 -0
  162. package/dist/config/schema/internal/permission.d.ts +44 -0
  163. package/dist/config/schema/notification.d.ts +5 -0
  164. package/dist/config/schema/oh-my-opencode-config.d.ts +1307 -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/start-work.d.ts +5 -0
  171. package/dist/config/schema/tmux.d.ts +23 -0
  172. package/dist/config/schema/websearch.d.ts +13 -0
  173. package/dist/config/schema.d.ts +24 -0
  174. package/dist/create-hooks.d.ts +100 -0
  175. package/dist/create-managers.d.ts +20 -0
  176. package/dist/create-tools.d.ts +20 -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 +140 -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/remove-task-toast-tracking.d.ts +1 -0
  189. package/dist/features/background-agent/session-idle-event-handler.d.ts +10 -0
  190. package/dist/features/background-agent/spawner/parent-directory-resolver.d.ts +6 -0
  191. package/dist/features/background-agent/spawner.d.ts +14 -0
  192. package/dist/features/background-agent/state.d.ts +35 -0
  193. package/dist/features/background-agent/task-history.d.ts +18 -0
  194. package/dist/features/background-agent/task-poller.d.ts +21 -0
  195. package/dist/features/background-agent/types.d.ts +90 -0
  196. package/dist/features/boulder-state/constants.d.ts +10 -0
  197. package/dist/features/boulder-state/index.d.ts +3 -0
  198. package/dist/features/boulder-state/storage.d.ts +28 -0
  199. package/dist/features/boulder-state/types.d.ts +28 -0
  200. package/dist/features/builtin-commands/commands.d.ts +2 -0
  201. package/dist/features/builtin-commands/index.d.ts +2 -0
  202. package/dist/features/builtin-commands/templates/handoff.d.ts +1 -0
  203. package/dist/features/builtin-commands/templates/init-deep.d.ts +1 -0
  204. package/dist/features/builtin-commands/templates/ralph-loop.d.ts +3 -0
  205. package/dist/features/builtin-commands/templates/refactor.d.ts +1 -0
  206. package/dist/features/builtin-commands/templates/start-work.d.ts +1 -0
  207. package/dist/features/builtin-commands/templates/stop-continuation.d.ts +1 -0
  208. package/dist/features/builtin-commands/types.d.ts +6 -0
  209. package/dist/features/builtin-skills/index.d.ts +2 -0
  210. package/dist/features/builtin-skills/skills/dev-browser.d.ts +2 -0
  211. package/dist/features/builtin-skills/skills/frontend-ui-ux.d.ts +2 -0
  212. package/dist/features/builtin-skills/skills/git-master-skill-metadata.d.ts +2 -0
  213. package/dist/features/builtin-skills/skills/git-master.d.ts +2 -0
  214. package/dist/features/builtin-skills/skills/index.d.ts +5 -0
  215. package/dist/features/builtin-skills/skills/playwright-cli.d.ts +10 -0
  216. package/dist/features/builtin-skills/skills/playwright.d.ts +3 -0
  217. package/dist/features/builtin-skills/skills.d.ts +7 -0
  218. package/dist/features/builtin-skills/types.d.ts +15 -0
  219. package/dist/features/claude-code-agent-loader/index.d.ts +2 -0
  220. package/dist/features/claude-code-agent-loader/loader.d.ts +3 -0
  221. package/dist/features/claude-code-agent-loader/types.d.ts +15 -0
  222. package/dist/features/claude-code-command-loader/index.d.ts +2 -0
  223. package/dist/features/claude-code-command-loader/loader.d.ts +6 -0
  224. package/dist/features/claude-code-command-loader/types.d.ts +42 -0
  225. package/dist/features/claude-code-mcp-loader/env-expander.d.ts +2 -0
  226. package/dist/features/claude-code-mcp-loader/index.d.ts +10 -0
  227. package/dist/features/claude-code-mcp-loader/loader.d.ts +4 -0
  228. package/dist/features/claude-code-mcp-loader/transformer.d.ts +2 -0
  229. package/dist/features/claude-code-mcp-loader/types.d.ts +39 -0
  230. package/dist/features/claude-code-plugin-loader/agent-loader.d.ts +3 -0
  231. package/dist/features/claude-code-plugin-loader/command-loader.d.ts +3 -0
  232. package/dist/features/claude-code-plugin-loader/discovery.d.ts +2 -0
  233. package/dist/features/claude-code-plugin-loader/hook-loader.d.ts +2 -0
  234. package/dist/features/claude-code-plugin-loader/index.d.ts +10 -0
  235. package/dist/features/claude-code-plugin-loader/loader.d.ts +20 -0
  236. package/dist/features/claude-code-plugin-loader/mcp-server-loader.d.ts +3 -0
  237. package/dist/features/claude-code-plugin-loader/plugin-path-resolver.d.ts +2 -0
  238. package/dist/features/claude-code-plugin-loader/skill-loader.d.ts +3 -0
  239. package/dist/features/claude-code-plugin-loader/types.d.ts +196 -0
  240. package/dist/features/claude-code-session-state/index.d.ts +1 -0
  241. package/dist/features/claude-code-session-state/state.d.ts +10 -0
  242. package/dist/features/claude-tasks/session-storage.d.ts +9 -0
  243. package/dist/features/claude-tasks/storage.d.ts +14 -0
  244. package/dist/features/claude-tasks/types.d.ts +25 -0
  245. package/dist/features/context-injector/collector.d.ts +11 -0
  246. package/dist/features/context-injector/index.d.ts +3 -0
  247. package/dist/features/context-injector/injector.d.ts +39 -0
  248. package/dist/features/context-injector/types.d.ts +83 -0
  249. package/dist/features/hook-message-injector/constants.d.ts +1 -0
  250. package/dist/features/hook-message-injector/index.d.ts +4 -0
  251. package/dist/features/hook-message-injector/injector.d.ts +69 -0
  252. package/dist/features/hook-message-injector/types.d.ts +46 -0
  253. package/dist/features/mcp-oauth/callback-server.d.ts +11 -0
  254. package/dist/features/mcp-oauth/dcr.d.ts +34 -0
  255. package/dist/features/mcp-oauth/discovery.d.ts +8 -0
  256. package/dist/features/mcp-oauth/oauth-authorization-flow.d.ts +26 -0
  257. package/dist/features/mcp-oauth/provider.d.ts +29 -0
  258. package/dist/features/mcp-oauth/resource-indicator.d.ts +2 -0
  259. package/dist/features/mcp-oauth/schema.d.ts +6 -0
  260. package/dist/features/mcp-oauth/step-up.d.ts +8 -0
  261. package/dist/features/mcp-oauth/storage.d.ts +17 -0
  262. package/dist/features/opencode-skill-loader/allowed-tools-parser.d.ts +1 -0
  263. package/dist/features/opencode-skill-loader/async-loader.d.ts +6 -0
  264. package/dist/features/opencode-skill-loader/blocking.d.ts +2 -0
  265. package/dist/features/opencode-skill-loader/config-source-discovery.d.ts +7 -0
  266. package/dist/features/opencode-skill-loader/discover-worker.d.ts +1 -0
  267. package/dist/features/opencode-skill-loader/git-master-template-injection.d.ts +2 -0
  268. package/dist/features/opencode-skill-loader/index.d.ts +15 -0
  269. package/dist/features/opencode-skill-loader/loaded-skill-from-path.d.ts +9 -0
  270. package/dist/features/opencode-skill-loader/loaded-skill-template-extractor.d.ts +2 -0
  271. package/dist/features/opencode-skill-loader/loader.d.ts +19 -0
  272. package/dist/features/opencode-skill-loader/merger/builtin-skill-converter.d.ts +3 -0
  273. package/dist/features/opencode-skill-loader/merger/config-skill-entry-loader.d.ts +3 -0
  274. package/dist/features/opencode-skill-loader/merger/scope-priority.d.ts +2 -0
  275. package/dist/features/opencode-skill-loader/merger/skill-definition-merger.d.ts +3 -0
  276. package/dist/features/opencode-skill-loader/merger/skills-config-normalizer.d.ts +11 -0
  277. package/dist/features/opencode-skill-loader/merger.d.ts +7 -0
  278. package/dist/features/opencode-skill-loader/skill-content.d.ts +5 -0
  279. package/dist/features/opencode-skill-loader/skill-deduplication.d.ts +2 -0
  280. package/dist/features/opencode-skill-loader/skill-definition-record.d.ts +3 -0
  281. package/dist/features/opencode-skill-loader/skill-directory-loader.d.ts +8 -0
  282. package/dist/features/opencode-skill-loader/skill-discovery.d.ts +4 -0
  283. package/dist/features/opencode-skill-loader/skill-mcp-config.d.ts +3 -0
  284. package/dist/features/opencode-skill-loader/skill-resolution-options.d.ts +8 -0
  285. package/dist/features/opencode-skill-loader/skill-template-resolver.d.ts +11 -0
  286. package/dist/features/opencode-skill-loader/types.d.ts +34 -0
  287. package/dist/features/run-continuation-state/constants.d.ts +1 -0
  288. package/dist/features/run-continuation-state/index.d.ts +3 -0
  289. package/dist/features/run-continuation-state/storage.d.ts +6 -0
  290. package/dist/features/run-continuation-state/types.d.ts +12 -0
  291. package/dist/features/skill-mcp-manager/cleanup.d.ts +8 -0
  292. package/dist/features/skill-mcp-manager/connection-type.d.ts +7 -0
  293. package/dist/features/skill-mcp-manager/connection.d.ts +15 -0
  294. package/dist/features/skill-mcp-manager/env-cleaner.d.ts +2 -0
  295. package/dist/features/skill-mcp-manager/http-client.d.ts +3 -0
  296. package/dist/features/skill-mcp-manager/index.d.ts +2 -0
  297. package/dist/features/skill-mcp-manager/manager.d.ts +21 -0
  298. package/dist/features/skill-mcp-manager/oauth-handler.d.ts +9 -0
  299. package/dist/features/skill-mcp-manager/stdio-client.d.ts +3 -0
  300. package/dist/features/skill-mcp-manager/types.d.ts +55 -0
  301. package/dist/features/task-toast-manager/index.d.ts +2 -0
  302. package/dist/features/task-toast-manager/manager.d.ts +64 -0
  303. package/dist/features/task-toast-manager/types.d.ts +25 -0
  304. package/dist/features/tmux-subagent/action-executor-core.d.ts +21 -0
  305. package/dist/features/tmux-subagent/action-executor.d.ts +20 -0
  306. package/dist/features/tmux-subagent/cleanup.d.ts +9 -0
  307. package/dist/features/tmux-subagent/decision-engine.d.ts +7 -0
  308. package/dist/features/tmux-subagent/event-handlers.d.ts +6 -0
  309. package/dist/features/tmux-subagent/grid-planning.d.ts +21 -0
  310. package/dist/features/tmux-subagent/index.d.ts +15 -0
  311. package/dist/features/tmux-subagent/manager.d.ts +68 -0
  312. package/dist/features/tmux-subagent/oldest-agent-pane.d.ts +7 -0
  313. package/dist/features/tmux-subagent/pane-split-availability.d.ts +8 -0
  314. package/dist/features/tmux-subagent/pane-state-querier.d.ts +2 -0
  315. package/dist/features/tmux-subagent/polling-constants.d.ts +3 -0
  316. package/dist/features/tmux-subagent/polling-manager.d.ts +13 -0
  317. package/dist/features/tmux-subagent/polling.d.ts +19 -0
  318. package/dist/features/tmux-subagent/session-created-event.d.ts +14 -0
  319. package/dist/features/tmux-subagent/session-created-handler.d.ts +22 -0
  320. package/dist/features/tmux-subagent/session-deleted-handler.d.ts +15 -0
  321. package/dist/features/tmux-subagent/session-message-count.d.ts +1 -0
  322. package/dist/features/tmux-subagent/session-ready-waiter.d.ts +7 -0
  323. package/dist/features/tmux-subagent/session-status-parser.d.ts +5 -0
  324. package/dist/features/tmux-subagent/spawn-action-decider.d.ts +4 -0
  325. package/dist/features/tmux-subagent/spawn-target-finder.d.ts +6 -0
  326. package/dist/features/tmux-subagent/tmux-grid-constants.d.ts +11 -0
  327. package/dist/features/tmux-subagent/types.d.ts +55 -0
  328. package/dist/features/tool-metadata-store/index.d.ts +2 -0
  329. package/dist/features/tool-metadata-store/store.d.ts +39 -0
  330. package/dist/hooks/auto-update-checker/cache.d.ts +2 -0
  331. package/dist/hooks/auto-update-checker/checker/cached-version.d.ts +1 -0
  332. package/dist/hooks/auto-update-checker/checker/check-for-update.d.ts +2 -0
  333. package/dist/hooks/auto-update-checker/checker/config-paths.d.ts +1 -0
  334. package/dist/hooks/auto-update-checker/checker/latest-version.d.ts +1 -0
  335. package/dist/hooks/auto-update-checker/checker/local-dev-path.d.ts +2 -0
  336. package/dist/hooks/auto-update-checker/checker/local-dev-version.d.ts +1 -0
  337. package/dist/hooks/auto-update-checker/checker/plugin-entry.d.ts +2 -0
  338. package/dist/hooks/auto-update-checker/checker.d.ts +6 -0
  339. package/dist/hooks/auto-update-checker/constants.d.ts +6 -0
  340. package/dist/hooks/auto-update-checker/hook.d.ts +10 -0
  341. package/dist/hooks/auto-update-checker/index.d.ts +5 -0
  342. package/dist/hooks/auto-update-checker/types.d.ts +20 -0
  343. package/dist/hooks/auto-update-checker/version-channel.d.ts +4 -0
  344. package/dist/hooks/claude-code-hooks/types.d.ts +14 -0
  345. package/dist/hooks/directory-agents-injector/constants.d.ts +2 -0
  346. package/dist/hooks/directory-agents-injector/finder.d.ts +5 -0
  347. package/dist/hooks/directory-agents-injector/hook.d.ts +28 -0
  348. package/dist/hooks/directory-agents-injector/index.d.ts +1 -0
  349. package/dist/hooks/directory-agents-injector/injector.d.ts +16 -0
  350. package/dist/hooks/directory-agents-injector/storage.d.ts +1 -0
  351. package/dist/hooks/directory-readme-injector/constants.d.ts +2 -0
  352. package/dist/hooks/directory-readme-injector/finder.d.ts +5 -0
  353. package/dist/hooks/directory-readme-injector/hook.d.ts +28 -0
  354. package/dist/hooks/directory-readme-injector/index.d.ts +1 -0
  355. package/dist/hooks/directory-readme-injector/injector.d.ts +16 -0
  356. package/dist/hooks/directory-readme-injector/storage.d.ts +1 -0
  357. package/dist/hooks/edit-error-recovery/hook.d.ts +31 -0
  358. package/dist/hooks/edit-error-recovery/index.d.ts +1 -0
  359. package/dist/hooks/hashline-edit-diff-enhancer/hook.d.ts +28 -0
  360. package/dist/hooks/hashline-edit-diff-enhancer/index.d.ts +1 -0
  361. package/dist/hooks/hashline-read-enhancer/hook.d.ts +18 -0
  362. package/dist/hooks/hashline-read-enhancer/index.d.ts +1 -0
  363. package/dist/hooks/index.d.ts +12 -0
  364. package/dist/hooks/model-fallback/hook.d.ts +60 -0
  365. package/dist/hooks/ralph-loop/command-arguments.d.ts +7 -0
  366. package/dist/hooks/ralph-loop/constants.d.ts +3 -0
  367. package/dist/hooks/ralph-loop/storage.d.ts +18 -0
  368. package/dist/hooks/rules-injector/cache.d.ts +8 -0
  369. package/dist/hooks/rules-injector/constants.d.ts +7 -0
  370. package/dist/hooks/rules-injector/finder.d.ts +3 -0
  371. package/dist/hooks/rules-injector/hook.d.ts +28 -0
  372. package/dist/hooks/rules-injector/index.d.ts +2 -0
  373. package/dist/hooks/rules-injector/injector.d.ts +20 -0
  374. package/dist/hooks/rules-injector/matcher.d.ts +21 -0
  375. package/dist/hooks/rules-injector/output-path.d.ts +5 -0
  376. package/dist/hooks/rules-injector/parser.d.ts +18 -0
  377. package/dist/hooks/rules-injector/project-root-finder.d.ts +8 -0
  378. package/dist/hooks/rules-injector/rule-distance.d.ts +10 -0
  379. package/dist/hooks/rules-injector/rule-file-finder.d.ts +15 -0
  380. package/dist/hooks/rules-injector/rule-file-scanner.d.ts +14 -0
  381. package/dist/hooks/rules-injector/storage.d.ts +9 -0
  382. package/dist/hooks/rules-injector/types.d.ts +54 -0
  383. package/dist/hooks/runtime-fallback/agent-resolver.d.ts +5 -0
  384. package/dist/hooks/runtime-fallback/auto-retry.d.ts +10 -0
  385. package/dist/hooks/runtime-fallback/chat-message-handler.d.ts +20 -0
  386. package/dist/hooks/runtime-fallback/constants.d.ts +19 -0
  387. package/dist/hooks/runtime-fallback/error-classifier.d.ts +17 -0
  388. package/dist/hooks/runtime-fallback/event-handler.d.ts +8 -0
  389. package/dist/hooks/runtime-fallback/fallback-models.d.ts +2 -0
  390. package/dist/hooks/runtime-fallback/fallback-state.d.ts +6 -0
  391. package/dist/hooks/runtime-fallback/hook.d.ts +3 -0
  392. package/dist/hooks/runtime-fallback/index.d.ts +2 -0
  393. package/dist/hooks/runtime-fallback/message-update-handler.d.ts +5 -0
  394. package/dist/hooks/runtime-fallback/types.d.ts +59 -0
  395. package/dist/hooks/session-recovery/constants.d.ts +4 -0
  396. package/dist/hooks/session-recovery/detect-error-type.d.ts +4 -0
  397. package/dist/hooks/session-recovery/hook.d.ts +20 -0
  398. package/dist/hooks/session-recovery/index.d.ts +5 -0
  399. package/dist/hooks/session-recovery/recover-empty-content-message-sdk.d.ts +13 -0
  400. package/dist/hooks/session-recovery/recover-thinking-block-order.d.ts +5 -0
  401. package/dist/hooks/session-recovery/recover-thinking-disabled-violation.d.ts +5 -0
  402. package/dist/hooks/session-recovery/recover-tool-result-missing.d.ts +5 -0
  403. package/dist/hooks/session-recovery/recover-unavailable-tool.d.ts +5 -0
  404. package/dist/hooks/session-recovery/resume.d.ts +7 -0
  405. package/dist/hooks/session-recovery/storage/empty-messages.d.ts +3 -0
  406. package/dist/hooks/session-recovery/storage/empty-text.d.ts +7 -0
  407. package/dist/hooks/session-recovery/storage/message-dir.d.ts +1 -0
  408. package/dist/hooks/session-recovery/storage/messages-reader.d.ts +6 -0
  409. package/dist/hooks/session-recovery/storage/orphan-thinking-search.d.ts +2 -0
  410. package/dist/hooks/session-recovery/storage/part-content.d.ts +3 -0
  411. package/dist/hooks/session-recovery/storage/part-id.d.ts +1 -0
  412. package/dist/hooks/session-recovery/storage/parts-reader.d.ts +6 -0
  413. package/dist/hooks/session-recovery/storage/text-part-injector.d.ts +5 -0
  414. package/dist/hooks/session-recovery/storage/thinking-block-search.d.ts +2 -0
  415. package/dist/hooks/session-recovery/storage/thinking-prepend.d.ts +5 -0
  416. package/dist/hooks/session-recovery/storage/thinking-strip.d.ts +5 -0
  417. package/dist/hooks/session-recovery/storage.d.ts +20 -0
  418. package/dist/hooks/session-recovery/types.d.ts +91 -0
  419. package/dist/hooks/shared/compaction-model-resolver.d.ts +5 -0
  420. package/dist/hooks/tool-output-truncator.d.ts +20 -0
  421. package/dist/hooks/write-existing-file-guard/hook.d.ts +3 -0
  422. package/dist/hooks/write-existing-file-guard/index.d.ts +1 -0
  423. package/dist/index.d.ts +5 -0
  424. package/dist/index.js +79805 -0
  425. package/dist/mcp/context7.d.ts +9 -0
  426. package/dist/mcp/grep-app.d.ts +6 -0
  427. package/dist/mcp/index.d.ts +10 -0
  428. package/dist/mcp/types.d.ts +9 -0
  429. package/dist/mcp/websearch.d.ts +11 -0
  430. package/dist/oh-my-opencode.schema.json +3643 -0
  431. package/dist/plugin/available-categories.d.ts +3 -0
  432. package/dist/plugin/chat-headers.d.ts +4 -0
  433. package/dist/plugin/chat-message.d.ts +31 -0
  434. package/dist/plugin/chat-params.d.ts +27 -0
  435. package/dist/plugin/event.d.ts +21 -0
  436. package/dist/plugin/hooks/create-continuation-hooks.d.ts +17 -0
  437. package/dist/plugin/hooks/create-core-hooks.d.ts +23 -0
  438. package/dist/plugin/hooks/create-session-hooks.d.ts +18 -0
  439. package/dist/plugin/hooks/create-skill-hooks.d.ts +13 -0
  440. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +19 -0
  441. package/dist/plugin/hooks/create-transform-hooks.d.ts +12 -0
  442. package/dist/plugin/messages-transform.d.ts +13 -0
  443. package/dist/plugin/recent-synthetic-idles.d.ts +6 -0
  444. package/dist/plugin/session-agent-resolver.d.ts +19 -0
  445. package/dist/plugin/session-status-normalizer.d.ts +8 -0
  446. package/dist/plugin/skill-context.d.ts +14 -0
  447. package/dist/plugin/system-transform.d.ts +10 -0
  448. package/dist/plugin/tool-execute-after.d.ts +14 -0
  449. package/dist/plugin/tool-execute-before.d.ts +12 -0
  450. package/dist/plugin/tool-registry.d.ts +16 -0
  451. package/dist/plugin/types.d.ts +18 -0
  452. package/dist/plugin/ultrawork-db-model-override.d.ts +11 -0
  453. package/dist/plugin/ultrawork-model-override.d.ts +37 -0
  454. package/dist/plugin/unstable-agent-babysitter.d.ts +8 -0
  455. package/dist/plugin-config.d.ts +5 -0
  456. package/dist/plugin-handlers/agent-config-handler.d.ts +11 -0
  457. package/dist/plugin-handlers/agent-key-remapper.d.ts +1 -0
  458. package/dist/plugin-handlers/agent-priority-order.d.ts +1 -0
  459. package/dist/plugin-handlers/category-config-resolver.d.ts +2 -0
  460. package/dist/plugin-handlers/command-config-handler.d.ts +10 -0
  461. package/dist/plugin-handlers/config-handler.d.ts +12 -0
  462. package/dist/plugin-handlers/index.d.ts +10 -0
  463. package/dist/plugin-handlers/mcp-config-handler.d.ts +7 -0
  464. package/dist/plugin-handlers/plan-model-inheritance.d.ts +1 -0
  465. package/dist/plugin-handlers/plugin-components-loader.d.ts +22 -0
  466. package/dist/plugin-handlers/prometheus-agent-config-builder.d.ts +23 -0
  467. package/dist/plugin-handlers/provider-config-handler.d.ts +5 -0
  468. package/dist/plugin-handlers/tool-config-handler.d.ts +6 -0
  469. package/dist/plugin-interface.d.ts +21 -0
  470. package/dist/plugin-state.d.ts +5 -0
  471. package/dist/shared/agent-display-names.d.ts +17 -0
  472. package/dist/shared/agent-tool-restrictions.d.ts +7 -0
  473. package/dist/shared/agent-variant.d.ts +9 -0
  474. package/dist/shared/binary-downloader.d.ts +10 -0
  475. package/dist/shared/claude-config-dir.d.ts +1 -0
  476. package/dist/shared/command-executor/embedded-commands.d.ts +7 -0
  477. package/dist/shared/command-executor/execute-command.d.ts +1 -0
  478. package/dist/shared/command-executor/execute-hook-command.d.ts +12 -0
  479. package/dist/shared/command-executor/home-directory.d.ts +1 -0
  480. package/dist/shared/command-executor/resolve-commands-in-text.d.ts +1 -0
  481. package/dist/shared/command-executor/shell-path.d.ts +2 -0
  482. package/dist/shared/command-executor.d.ts +4 -0
  483. package/dist/shared/config-errors.d.ts +7 -0
  484. package/dist/shared/connected-providers-cache.d.ts +55 -0
  485. package/dist/shared/data-path.d.ts +30 -0
  486. package/dist/shared/deep-merge.d.ts +13 -0
  487. package/dist/shared/disabled-tools.d.ts +2 -0
  488. package/dist/shared/dynamic-truncator.d.ts +31 -0
  489. package/dist/shared/external-plugin-detector.d.ts +18 -0
  490. package/dist/shared/fallback-chain-from-models.d.ts +3 -0
  491. package/dist/shared/fallback-model-availability.d.ts +12 -0
  492. package/dist/shared/file-reference-resolver.d.ts +1 -0
  493. package/dist/shared/file-utils.d.ts +7 -0
  494. package/dist/shared/first-message-variant.d.ts +11 -0
  495. package/dist/shared/frontmatter.d.ts +7 -0
  496. package/dist/shared/git-worktree/collect-git-diff-stats.d.ts +2 -0
  497. package/dist/shared/git-worktree/format-file-changes.d.ts +2 -0
  498. package/dist/shared/git-worktree/index.d.ts +7 -0
  499. package/dist/shared/git-worktree/parse-diff-numstat.d.ts +2 -0
  500. package/dist/shared/git-worktree/parse-status-porcelain-line.d.ts +6 -0
  501. package/dist/shared/git-worktree/parse-status-porcelain.d.ts +2 -0
  502. package/dist/shared/git-worktree/types.d.ts +7 -0
  503. package/dist/shared/hook-disabled.d.ts +2 -0
  504. package/dist/shared/index.d.ts +56 -0
  505. package/dist/shared/internal-initiator-marker.d.ts +5 -0
  506. package/dist/shared/jsonc-parser.d.ts +15 -0
  507. package/dist/shared/logger.d.ts +2 -0
  508. package/dist/shared/merge-categories.d.ts +6 -0
  509. package/dist/shared/migration/agent-category.d.ts +19 -0
  510. package/dist/shared/migration/agent-names.d.ts +6 -0
  511. package/dist/shared/migration/config-migration.d.ts +1 -0
  512. package/dist/shared/migration/hook-names.d.ts +6 -0
  513. package/dist/shared/migration/model-versions.d.ts +13 -0
  514. package/dist/shared/migration.d.ts +5 -0
  515. package/dist/shared/model-availability.d.ts +15 -0
  516. package/dist/shared/model-error-classifier.d.ts +32 -0
  517. package/dist/shared/model-format-normalizer.d.ts +7 -0
  518. package/dist/shared/model-normalization.d.ts +2 -0
  519. package/dist/shared/model-requirements.d.ts +14 -0
  520. package/dist/shared/model-resolution-pipeline.d.ts +26 -0
  521. package/dist/shared/model-resolution-types.d.ts +23 -0
  522. package/dist/shared/model-resolver.d.ts +28 -0
  523. package/dist/shared/model-sanitizer.d.ts +3 -0
  524. package/dist/shared/model-suggestion-retry.d.ts +36 -0
  525. package/dist/shared/normalize-sdk-response.d.ts +4 -0
  526. package/dist/shared/opencode-config-dir-types.d.ts +13 -0
  527. package/dist/shared/opencode-config-dir.d.ts +8 -0
  528. package/dist/shared/opencode-http-api.d.ts +3 -0
  529. package/dist/shared/opencode-message-dir.d.ts +1 -0
  530. package/dist/shared/opencode-server-auth.d.ts +19 -0
  531. package/dist/shared/opencode-storage-detection.d.ts +2 -0
  532. package/dist/shared/opencode-storage-paths.d.ts +4 -0
  533. package/dist/shared/opencode-version.d.ts +24 -0
  534. package/dist/shared/pattern-matcher.d.ts +3 -0
  535. package/dist/shared/permission-compat.d.ts +27 -0
  536. package/dist/shared/plugin-command-discovery.d.ts +6 -0
  537. package/dist/shared/port-utils.d.ts +9 -0
  538. package/dist/shared/prompt-timeout-context.d.ts +12 -0
  539. package/dist/shared/prompt-tools.d.ts +3 -0
  540. package/dist/shared/provider-model-id-transform.d.ts +1 -0
  541. package/dist/shared/record-type-guard.d.ts +1 -0
  542. package/dist/shared/retry-status-utils.d.ts +2 -0
  543. package/dist/shared/safe-create-hook.d.ts +5 -0
  544. package/dist/shared/session-category-registry.d.ts +32 -0
  545. package/dist/shared/session-cursor.d.ts +13 -0
  546. package/dist/shared/session-directory-resolver.d.ts +7 -0
  547. package/dist/shared/session-injected-paths.d.ts +10 -0
  548. package/dist/shared/session-model-state.d.ts +7 -0
  549. package/dist/shared/session-tools-store.d.ts +4 -0
  550. package/dist/shared/session-utils.d.ts +2 -0
  551. package/dist/shared/shell-env.d.ts +41 -0
  552. package/dist/shared/skill-path-resolver.d.ts +9 -0
  553. package/dist/shared/snake-case.d.ts +5 -0
  554. package/dist/shared/spawn-with-windows-hide.d.ts +15 -0
  555. package/dist/shared/system-directive.d.ts +45 -0
  556. package/dist/shared/tmux/constants.d.ts +5 -0
  557. package/dist/shared/tmux/index.d.ts +3 -0
  558. package/dist/shared/tmux/tmux-utils/environment.d.ts +3 -0
  559. package/dist/shared/tmux/tmux-utils/layout.d.ts +18 -0
  560. package/dist/shared/tmux/tmux-utils/pane-close.d.ts +1 -0
  561. package/dist/shared/tmux/tmux-utils/pane-dimensions.d.ts +5 -0
  562. package/dist/shared/tmux/tmux-utils/pane-replace.d.ts +3 -0
  563. package/dist/shared/tmux/tmux-utils/pane-spawn.d.ts +4 -0
  564. package/dist/shared/tmux/tmux-utils/server-health.d.ts +2 -0
  565. package/dist/shared/tmux/tmux-utils.d.ts +9 -0
  566. package/dist/shared/tmux/types.d.ts +4 -0
  567. package/dist/shared/tool-name.d.ts +1 -0
  568. package/dist/shared/truncate-description.d.ts +1 -0
  569. package/dist/shared/zip-extractor.d.ts +1 -0
  570. package/dist/tools/background-task/clients.d.ts +45 -0
  571. package/dist/tools/background-task/constants.d.ts +3 -0
  572. package/dist/tools/background-task/create-background-cancel.d.ts +4 -0
  573. package/dist/tools/background-task/create-background-output.d.ts +3 -0
  574. package/dist/tools/background-task/create-background-task.d.ts +3 -0
  575. package/dist/tools/background-task/delay.d.ts +1 -0
  576. package/dist/tools/background-task/full-session-format.d.ts +9 -0
  577. package/dist/tools/background-task/index.d.ts +3 -0
  578. package/dist/tools/background-task/message-dir.d.ts +1 -0
  579. package/dist/tools/background-task/session-messages.d.ts +3 -0
  580. package/dist/tools/background-task/task-result-format.d.ts +3 -0
  581. package/dist/tools/background-task/task-status-format.d.ts +2 -0
  582. package/dist/tools/background-task/time-format.d.ts +2 -0
  583. package/dist/tools/background-task/tools.d.ts +4 -0
  584. package/dist/tools/background-task/truncate-text.d.ts +1 -0
  585. package/dist/tools/background-task/types.d.ts +90 -0
  586. package/dist/tools/delegate-task/available-models.d.ts +2 -0
  587. package/dist/tools/delegate-task/background-continuation.d.ts +3 -0
  588. package/dist/tools/delegate-task/background-task.d.ts +8 -0
  589. package/dist/tools/delegate-task/categories.d.ts +17 -0
  590. package/dist/tools/delegate-task/category-resolver.d.ts +20 -0
  591. package/dist/tools/delegate-task/constants.d.ts +42 -0
  592. package/dist/tools/delegate-task/error-formatting.d.ts +15 -0
  593. package/dist/tools/delegate-task/executor-types.d.ts +52 -0
  594. package/dist/tools/delegate-task/executor.d.ts +11 -0
  595. package/dist/tools/delegate-task/index.d.ts +4 -0
  596. package/dist/tools/delegate-task/model-selection.d.ts +12 -0
  597. package/dist/tools/delegate-task/model-string-parser.d.ts +7 -0
  598. package/dist/tools/delegate-task/parent-context-resolver.d.ts +4 -0
  599. package/dist/tools/delegate-task/prompt-builder.d.ts +7 -0
  600. package/dist/tools/delegate-task/sisyphus-junior-agent.d.ts +1 -0
  601. package/dist/tools/delegate-task/skill-resolver.d.ts +11 -0
  602. package/dist/tools/delegate-task/subagent-resolver.d.ts +13 -0
  603. package/dist/tools/delegate-task/sync-continuation-deps.d.ts +7 -0
  604. package/dist/tools/delegate-task/sync-continuation.d.ts +4 -0
  605. package/dist/tools/delegate-task/sync-prompt-sender.d.ts +22 -0
  606. package/dist/tools/delegate-task/sync-result-fetcher.d.ts +8 -0
  607. package/dist/tools/delegate-task/sync-session-creator.d.ts +14 -0
  608. package/dist/tools/delegate-task/sync-session-poller.d.ts +12 -0
  609. package/dist/tools/delegate-task/sync-task-deps.d.ts +11 -0
  610. package/dist/tools/delegate-task/sync-task.d.ts +9 -0
  611. package/dist/tools/delegate-task/time-formatter.d.ts +4 -0
  612. package/dist/tools/delegate-task/timing.d.ts +13 -0
  613. package/dist/tools/delegate-task/token-limiter.d.ts +4 -0
  614. package/dist/tools/delegate-task/tools.d.ts +6 -0
  615. package/dist/tools/delegate-task/types.d.ts +83 -0
  616. package/dist/tools/delegate-task/unstable-agent-task.d.ts +7 -0
  617. package/dist/tools/glob/cli.d.ts +11 -0
  618. package/dist/tools/glob/constants.d.ts +6 -0
  619. package/dist/tools/glob/index.d.ts +1 -0
  620. package/dist/tools/glob/result-formatter.d.ts +2 -0
  621. package/dist/tools/glob/tools.d.ts +3 -0
  622. package/dist/tools/glob/types.d.ts +21 -0
  623. package/dist/tools/grep/cli.d.ts +3 -0
  624. package/dist/tools/grep/constants.d.ts +18 -0
  625. package/dist/tools/grep/downloader.d.ts +3 -0
  626. package/dist/tools/grep/index.d.ts +1 -0
  627. package/dist/tools/grep/result-formatter.d.ts +3 -0
  628. package/dist/tools/grep/tools.d.ts +3 -0
  629. package/dist/tools/grep/types.d.ts +39 -0
  630. package/dist/tools/hashline-edit/autocorrect-replacement-lines.d.ts +6 -0
  631. package/dist/tools/hashline-edit/constants.d.ts +4 -0
  632. package/dist/tools/hashline-edit/diff-utils.d.ts +6 -0
  633. package/dist/tools/hashline-edit/edit-deduplication.d.ts +5 -0
  634. package/dist/tools/hashline-edit/edit-operation-primitives.d.ts +10 -0
  635. package/dist/tools/hashline-edit/edit-operations.d.ts +8 -0
  636. package/dist/tools/hashline-edit/edit-ordering.d.ts +4 -0
  637. package/dist/tools/hashline-edit/edit-text-normalization.d.ts +7 -0
  638. package/dist/tools/hashline-edit/file-text-canonicalization.d.ts +7 -0
  639. package/dist/tools/hashline-edit/hash-computation.d.ts +10 -0
  640. package/dist/tools/hashline-edit/hashline-chunk-formatter.d.ts +10 -0
  641. package/dist/tools/hashline-edit/hashline-edit-diff.d.ts +1 -0
  642. package/dist/tools/hashline-edit/hashline-edit-executor.d.ts +10 -0
  643. package/dist/tools/hashline-edit/index.d.ts +7 -0
  644. package/dist/tools/hashline-edit/normalize-edits.d.ts +10 -0
  645. package/dist/tools/hashline-edit/tool-description.d.ts +1 -0
  646. package/dist/tools/hashline-edit/tools.d.ts +2 -0
  647. package/dist/tools/hashline-edit/types.d.ts +17 -0
  648. package/dist/tools/hashline-edit/validation.d.ts +20 -0
  649. package/dist/tools/index.d.ts +17 -0
  650. package/dist/tools/interactive-bash/tmux-path-resolver.d.ts +1 -0
  651. package/dist/tools/lsp/client.d.ts +3 -0
  652. package/dist/tools/lsp/config.d.ts +3 -0
  653. package/dist/tools/lsp/constants.d.ts +6 -0
  654. package/dist/tools/lsp/diagnostics-tool.d.ts +2 -0
  655. package/dist/tools/lsp/directory-diagnostics.d.ts +1 -0
  656. package/dist/tools/lsp/find-references-tool.d.ts +2 -0
  657. package/dist/tools/lsp/goto-definition-tool.d.ts +2 -0
  658. package/dist/tools/lsp/index.d.ts +8 -0
  659. package/dist/tools/lsp/language-config.d.ts +1 -0
  660. package/dist/tools/lsp/language-mappings.d.ts +3 -0
  661. package/dist/tools/lsp/lsp-client-connection.d.ts +4 -0
  662. package/dist/tools/lsp/lsp-client-transport.d.ts +20 -0
  663. package/dist/tools/lsp/lsp-client-wrapper.d.ts +9 -0
  664. package/dist/tools/lsp/lsp-client.d.ts +17 -0
  665. package/dist/tools/lsp/lsp-formatters.d.ts +13 -0
  666. package/dist/tools/lsp/lsp-manager-process-cleanup.d.ts +15 -0
  667. package/dist/tools/lsp/lsp-manager-temp-directory-cleanup.d.ts +8 -0
  668. package/dist/tools/lsp/lsp-process.d.ts +29 -0
  669. package/dist/tools/lsp/lsp-server.d.ts +24 -0
  670. package/dist/tools/lsp/rename-tools.d.ts +3 -0
  671. package/dist/tools/lsp/server-config-loader.d.ts +25 -0
  672. package/dist/tools/lsp/server-definitions.d.ts +3 -0
  673. package/dist/tools/lsp/server-installation.d.ts +1 -0
  674. package/dist/tools/lsp/server-resolution.d.ts +15 -0
  675. package/dist/tools/lsp/symbols-tool.d.ts +2 -0
  676. package/dist/tools/lsp/tools.d.ts +5 -0
  677. package/dist/tools/lsp/types.d.ts +123 -0
  678. package/dist/tools/lsp/workspace-edit.d.ts +8 -0
  679. package/dist/tools/session-manager/constants.d.ts +9 -0
  680. package/dist/tools/session-manager/index.d.ts +3 -0
  681. package/dist/tools/session-manager/session-formatter.d.ts +11 -0
  682. package/dist/tools/session-manager/storage.d.ts +15 -0
  683. package/dist/tools/session-manager/tools.d.ts +3 -0
  684. package/dist/tools/session-manager/types.d.ts +89 -0
  685. package/dist/tools/shared/semaphore.d.ts +14 -0
  686. package/dist/tools/skill/constants.d.ts +3 -0
  687. package/dist/tools/skill/index.d.ts +3 -0
  688. package/dist/tools/skill/tools.d.ts +4 -0
  689. package/dist/tools/skill/types.d.ts +37 -0
  690. package/dist/tools/slashcommand/command-discovery.d.ts +6 -0
  691. package/dist/tools/slashcommand/command-output-formatter.d.ts +3 -0
  692. package/dist/tools/slashcommand/index.d.ts +2 -0
  693. package/dist/tools/slashcommand/types.d.ts +18 -0
  694. package/dist/tools/task/index.d.ts +7 -0
  695. package/dist/tools/task/task-create.d.ts +4 -0
  696. package/dist/tools/task/task-get.d.ts +3 -0
  697. package/dist/tools/task/task-list.d.ts +3 -0
  698. package/dist/tools/task/task-update.d.ts +4 -0
  699. package/dist/tools/task/todo-sync.d.ts +16 -0
  700. package/dist/tools/task/types.d.ts +97 -0
  701. package/package.json +101 -0
  702. package/postinstall.mjs +55 -0
@@ -0,0 +1,3643 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/oh-my-opencode.schema.json",
4
+ "title": "Oh My OpenCode Configuration",
5
+ "description": "Configuration schema for oh-my-opencode plugin",
6
+ "type": "object",
7
+ "properties": {
8
+ "$schema": {
9
+ "type": "string"
10
+ },
11
+ "new_task_system_enabled": {
12
+ "type": "boolean"
13
+ },
14
+ "default_run_agent": {
15
+ "type": "string"
16
+ },
17
+ "disabled_mcps": {
18
+ "type": "array",
19
+ "items": {
20
+ "type": "string",
21
+ "minLength": 1
22
+ }
23
+ },
24
+ "disabled_agents": {
25
+ "type": "array",
26
+ "items": {
27
+ "type": "string"
28
+ }
29
+ },
30
+ "disabled_skills": {
31
+ "type": "array",
32
+ "items": {
33
+ "type": "string",
34
+ "enum": [
35
+ "playwright",
36
+ "agent-browser",
37
+ "dev-browser",
38
+ "frontend-ui-ux",
39
+ "git-master"
40
+ ]
41
+ }
42
+ },
43
+ "disabled_hooks": {
44
+ "type": "array",
45
+ "items": {
46
+ "type": "string"
47
+ }
48
+ },
49
+ "disabled_commands": {
50
+ "type": "array",
51
+ "items": {
52
+ "type": "string",
53
+ "enum": [
54
+ "init-deep",
55
+ "ralph-loop",
56
+ "ulw-loop",
57
+ "cancel-ralph",
58
+ "refactor",
59
+ "start-work",
60
+ "stop-continuation"
61
+ ]
62
+ }
63
+ },
64
+ "disabled_tools": {
65
+ "type": "array",
66
+ "items": {
67
+ "type": "string"
68
+ }
69
+ },
70
+ "hashline_edit": {
71
+ "type": "boolean"
72
+ },
73
+ "model_fallback": {
74
+ "type": "boolean"
75
+ },
76
+ "agents": {
77
+ "type": "object",
78
+ "properties": {
79
+ "build": {
80
+ "type": "object",
81
+ "properties": {
82
+ "model": {
83
+ "type": "string"
84
+ },
85
+ "fallback_models": {
86
+ "anyOf": [
87
+ {
88
+ "type": "string"
89
+ },
90
+ {
91
+ "type": "array",
92
+ "items": {
93
+ "type": "string"
94
+ }
95
+ }
96
+ ]
97
+ },
98
+ "variant": {
99
+ "type": "string"
100
+ },
101
+ "category": {
102
+ "type": "string"
103
+ },
104
+ "skills": {
105
+ "type": "array",
106
+ "items": {
107
+ "type": "string"
108
+ }
109
+ },
110
+ "temperature": {
111
+ "type": "number",
112
+ "minimum": 0,
113
+ "maximum": 2
114
+ },
115
+ "top_p": {
116
+ "type": "number",
117
+ "minimum": 0,
118
+ "maximum": 1
119
+ },
120
+ "prompt": {
121
+ "type": "string"
122
+ },
123
+ "prompt_append": {
124
+ "type": "string"
125
+ },
126
+ "tools": {
127
+ "type": "object",
128
+ "propertyNames": {
129
+ "type": "string"
130
+ },
131
+ "additionalProperties": {
132
+ "type": "boolean"
133
+ }
134
+ },
135
+ "disable": {
136
+ "type": "boolean"
137
+ },
138
+ "description": {
139
+ "type": "string"
140
+ },
141
+ "mode": {
142
+ "type": "string",
143
+ "enum": [
144
+ "subagent",
145
+ "primary",
146
+ "all"
147
+ ]
148
+ },
149
+ "color": {
150
+ "type": "string",
151
+ "pattern": "^#[0-9A-Fa-f]{6}$"
152
+ },
153
+ "permission": {
154
+ "type": "object",
155
+ "properties": {
156
+ "edit": {
157
+ "type": "string",
158
+ "enum": [
159
+ "ask",
160
+ "allow",
161
+ "deny"
162
+ ]
163
+ },
164
+ "bash": {
165
+ "anyOf": [
166
+ {
167
+ "type": "string",
168
+ "enum": [
169
+ "ask",
170
+ "allow",
171
+ "deny"
172
+ ]
173
+ },
174
+ {
175
+ "type": "object",
176
+ "propertyNames": {
177
+ "type": "string"
178
+ },
179
+ "additionalProperties": {
180
+ "type": "string",
181
+ "enum": [
182
+ "ask",
183
+ "allow",
184
+ "deny"
185
+ ]
186
+ }
187
+ }
188
+ ]
189
+ },
190
+ "webfetch": {
191
+ "type": "string",
192
+ "enum": [
193
+ "ask",
194
+ "allow",
195
+ "deny"
196
+ ]
197
+ },
198
+ "task": {
199
+ "type": "string",
200
+ "enum": [
201
+ "ask",
202
+ "allow",
203
+ "deny"
204
+ ]
205
+ },
206
+ "doom_loop": {
207
+ "type": "string",
208
+ "enum": [
209
+ "ask",
210
+ "allow",
211
+ "deny"
212
+ ]
213
+ },
214
+ "external_directory": {
215
+ "type": "string",
216
+ "enum": [
217
+ "ask",
218
+ "allow",
219
+ "deny"
220
+ ]
221
+ }
222
+ },
223
+ "additionalProperties": false
224
+ },
225
+ "maxTokens": {
226
+ "type": "number"
227
+ },
228
+ "thinking": {
229
+ "type": "object",
230
+ "properties": {
231
+ "type": {
232
+ "type": "string",
233
+ "enum": [
234
+ "enabled",
235
+ "disabled"
236
+ ]
237
+ },
238
+ "budgetTokens": {
239
+ "type": "number"
240
+ }
241
+ },
242
+ "required": [
243
+ "type"
244
+ ],
245
+ "additionalProperties": false
246
+ },
247
+ "reasoningEffort": {
248
+ "type": "string",
249
+ "enum": [
250
+ "low",
251
+ "medium",
252
+ "high",
253
+ "xhigh"
254
+ ]
255
+ },
256
+ "textVerbosity": {
257
+ "type": "string",
258
+ "enum": [
259
+ "low",
260
+ "medium",
261
+ "high"
262
+ ]
263
+ },
264
+ "providerOptions": {
265
+ "type": "object",
266
+ "propertyNames": {
267
+ "type": "string"
268
+ },
269
+ "additionalProperties": {}
270
+ },
271
+ "ultrawork": {
272
+ "type": "object",
273
+ "properties": {
274
+ "model": {
275
+ "type": "string"
276
+ },
277
+ "variant": {
278
+ "type": "string"
279
+ }
280
+ },
281
+ "additionalProperties": false
282
+ },
283
+ "compaction": {
284
+ "type": "object",
285
+ "properties": {
286
+ "model": {
287
+ "type": "string"
288
+ },
289
+ "variant": {
290
+ "type": "string"
291
+ }
292
+ },
293
+ "additionalProperties": false
294
+ }
295
+ },
296
+ "additionalProperties": false
297
+ },
298
+ "plan": {
299
+ "type": "object",
300
+ "properties": {
301
+ "model": {
302
+ "type": "string"
303
+ },
304
+ "fallback_models": {
305
+ "anyOf": [
306
+ {
307
+ "type": "string"
308
+ },
309
+ {
310
+ "type": "array",
311
+ "items": {
312
+ "type": "string"
313
+ }
314
+ }
315
+ ]
316
+ },
317
+ "variant": {
318
+ "type": "string"
319
+ },
320
+ "category": {
321
+ "type": "string"
322
+ },
323
+ "skills": {
324
+ "type": "array",
325
+ "items": {
326
+ "type": "string"
327
+ }
328
+ },
329
+ "temperature": {
330
+ "type": "number",
331
+ "minimum": 0,
332
+ "maximum": 2
333
+ },
334
+ "top_p": {
335
+ "type": "number",
336
+ "minimum": 0,
337
+ "maximum": 1
338
+ },
339
+ "prompt": {
340
+ "type": "string"
341
+ },
342
+ "prompt_append": {
343
+ "type": "string"
344
+ },
345
+ "tools": {
346
+ "type": "object",
347
+ "propertyNames": {
348
+ "type": "string"
349
+ },
350
+ "additionalProperties": {
351
+ "type": "boolean"
352
+ }
353
+ },
354
+ "disable": {
355
+ "type": "boolean"
356
+ },
357
+ "description": {
358
+ "type": "string"
359
+ },
360
+ "mode": {
361
+ "type": "string",
362
+ "enum": [
363
+ "subagent",
364
+ "primary",
365
+ "all"
366
+ ]
367
+ },
368
+ "color": {
369
+ "type": "string",
370
+ "pattern": "^#[0-9A-Fa-f]{6}$"
371
+ },
372
+ "permission": {
373
+ "type": "object",
374
+ "properties": {
375
+ "edit": {
376
+ "type": "string",
377
+ "enum": [
378
+ "ask",
379
+ "allow",
380
+ "deny"
381
+ ]
382
+ },
383
+ "bash": {
384
+ "anyOf": [
385
+ {
386
+ "type": "string",
387
+ "enum": [
388
+ "ask",
389
+ "allow",
390
+ "deny"
391
+ ]
392
+ },
393
+ {
394
+ "type": "object",
395
+ "propertyNames": {
396
+ "type": "string"
397
+ },
398
+ "additionalProperties": {
399
+ "type": "string",
400
+ "enum": [
401
+ "ask",
402
+ "allow",
403
+ "deny"
404
+ ]
405
+ }
406
+ }
407
+ ]
408
+ },
409
+ "webfetch": {
410
+ "type": "string",
411
+ "enum": [
412
+ "ask",
413
+ "allow",
414
+ "deny"
415
+ ]
416
+ },
417
+ "task": {
418
+ "type": "string",
419
+ "enum": [
420
+ "ask",
421
+ "allow",
422
+ "deny"
423
+ ]
424
+ },
425
+ "doom_loop": {
426
+ "type": "string",
427
+ "enum": [
428
+ "ask",
429
+ "allow",
430
+ "deny"
431
+ ]
432
+ },
433
+ "external_directory": {
434
+ "type": "string",
435
+ "enum": [
436
+ "ask",
437
+ "allow",
438
+ "deny"
439
+ ]
440
+ }
441
+ },
442
+ "additionalProperties": false
443
+ },
444
+ "maxTokens": {
445
+ "type": "number"
446
+ },
447
+ "thinking": {
448
+ "type": "object",
449
+ "properties": {
450
+ "type": {
451
+ "type": "string",
452
+ "enum": [
453
+ "enabled",
454
+ "disabled"
455
+ ]
456
+ },
457
+ "budgetTokens": {
458
+ "type": "number"
459
+ }
460
+ },
461
+ "required": [
462
+ "type"
463
+ ],
464
+ "additionalProperties": false
465
+ },
466
+ "reasoningEffort": {
467
+ "type": "string",
468
+ "enum": [
469
+ "low",
470
+ "medium",
471
+ "high",
472
+ "xhigh"
473
+ ]
474
+ },
475
+ "textVerbosity": {
476
+ "type": "string",
477
+ "enum": [
478
+ "low",
479
+ "medium",
480
+ "high"
481
+ ]
482
+ },
483
+ "providerOptions": {
484
+ "type": "object",
485
+ "propertyNames": {
486
+ "type": "string"
487
+ },
488
+ "additionalProperties": {}
489
+ },
490
+ "ultrawork": {
491
+ "type": "object",
492
+ "properties": {
493
+ "model": {
494
+ "type": "string"
495
+ },
496
+ "variant": {
497
+ "type": "string"
498
+ }
499
+ },
500
+ "additionalProperties": false
501
+ },
502
+ "compaction": {
503
+ "type": "object",
504
+ "properties": {
505
+ "model": {
506
+ "type": "string"
507
+ },
508
+ "variant": {
509
+ "type": "string"
510
+ }
511
+ },
512
+ "additionalProperties": false
513
+ }
514
+ },
515
+ "additionalProperties": false
516
+ },
517
+ "sisyphus": {
518
+ "type": "object",
519
+ "properties": {
520
+ "model": {
521
+ "type": "string"
522
+ },
523
+ "fallback_models": {
524
+ "anyOf": [
525
+ {
526
+ "type": "string"
527
+ },
528
+ {
529
+ "type": "array",
530
+ "items": {
531
+ "type": "string"
532
+ }
533
+ }
534
+ ]
535
+ },
536
+ "variant": {
537
+ "type": "string"
538
+ },
539
+ "category": {
540
+ "type": "string"
541
+ },
542
+ "skills": {
543
+ "type": "array",
544
+ "items": {
545
+ "type": "string"
546
+ }
547
+ },
548
+ "temperature": {
549
+ "type": "number",
550
+ "minimum": 0,
551
+ "maximum": 2
552
+ },
553
+ "top_p": {
554
+ "type": "number",
555
+ "minimum": 0,
556
+ "maximum": 1
557
+ },
558
+ "prompt": {
559
+ "type": "string"
560
+ },
561
+ "prompt_append": {
562
+ "type": "string"
563
+ },
564
+ "tools": {
565
+ "type": "object",
566
+ "propertyNames": {
567
+ "type": "string"
568
+ },
569
+ "additionalProperties": {
570
+ "type": "boolean"
571
+ }
572
+ },
573
+ "disable": {
574
+ "type": "boolean"
575
+ },
576
+ "description": {
577
+ "type": "string"
578
+ },
579
+ "mode": {
580
+ "type": "string",
581
+ "enum": [
582
+ "subagent",
583
+ "primary",
584
+ "all"
585
+ ]
586
+ },
587
+ "color": {
588
+ "type": "string",
589
+ "pattern": "^#[0-9A-Fa-f]{6}$"
590
+ },
591
+ "permission": {
592
+ "type": "object",
593
+ "properties": {
594
+ "edit": {
595
+ "type": "string",
596
+ "enum": [
597
+ "ask",
598
+ "allow",
599
+ "deny"
600
+ ]
601
+ },
602
+ "bash": {
603
+ "anyOf": [
604
+ {
605
+ "type": "string",
606
+ "enum": [
607
+ "ask",
608
+ "allow",
609
+ "deny"
610
+ ]
611
+ },
612
+ {
613
+ "type": "object",
614
+ "propertyNames": {
615
+ "type": "string"
616
+ },
617
+ "additionalProperties": {
618
+ "type": "string",
619
+ "enum": [
620
+ "ask",
621
+ "allow",
622
+ "deny"
623
+ ]
624
+ }
625
+ }
626
+ ]
627
+ },
628
+ "webfetch": {
629
+ "type": "string",
630
+ "enum": [
631
+ "ask",
632
+ "allow",
633
+ "deny"
634
+ ]
635
+ },
636
+ "task": {
637
+ "type": "string",
638
+ "enum": [
639
+ "ask",
640
+ "allow",
641
+ "deny"
642
+ ]
643
+ },
644
+ "doom_loop": {
645
+ "type": "string",
646
+ "enum": [
647
+ "ask",
648
+ "allow",
649
+ "deny"
650
+ ]
651
+ },
652
+ "external_directory": {
653
+ "type": "string",
654
+ "enum": [
655
+ "ask",
656
+ "allow",
657
+ "deny"
658
+ ]
659
+ }
660
+ },
661
+ "additionalProperties": false
662
+ },
663
+ "maxTokens": {
664
+ "type": "number"
665
+ },
666
+ "thinking": {
667
+ "type": "object",
668
+ "properties": {
669
+ "type": {
670
+ "type": "string",
671
+ "enum": [
672
+ "enabled",
673
+ "disabled"
674
+ ]
675
+ },
676
+ "budgetTokens": {
677
+ "type": "number"
678
+ }
679
+ },
680
+ "required": [
681
+ "type"
682
+ ],
683
+ "additionalProperties": false
684
+ },
685
+ "reasoningEffort": {
686
+ "type": "string",
687
+ "enum": [
688
+ "low",
689
+ "medium",
690
+ "high",
691
+ "xhigh"
692
+ ]
693
+ },
694
+ "textVerbosity": {
695
+ "type": "string",
696
+ "enum": [
697
+ "low",
698
+ "medium",
699
+ "high"
700
+ ]
701
+ },
702
+ "providerOptions": {
703
+ "type": "object",
704
+ "propertyNames": {
705
+ "type": "string"
706
+ },
707
+ "additionalProperties": {}
708
+ },
709
+ "ultrawork": {
710
+ "type": "object",
711
+ "properties": {
712
+ "model": {
713
+ "type": "string"
714
+ },
715
+ "variant": {
716
+ "type": "string"
717
+ }
718
+ },
719
+ "additionalProperties": false
720
+ },
721
+ "compaction": {
722
+ "type": "object",
723
+ "properties": {
724
+ "model": {
725
+ "type": "string"
726
+ },
727
+ "variant": {
728
+ "type": "string"
729
+ }
730
+ },
731
+ "additionalProperties": false
732
+ }
733
+ },
734
+ "additionalProperties": false
735
+ },
736
+ "sisyphus-junior": {
737
+ "type": "object",
738
+ "properties": {
739
+ "model": {
740
+ "type": "string"
741
+ },
742
+ "fallback_models": {
743
+ "anyOf": [
744
+ {
745
+ "type": "string"
746
+ },
747
+ {
748
+ "type": "array",
749
+ "items": {
750
+ "type": "string"
751
+ }
752
+ }
753
+ ]
754
+ },
755
+ "variant": {
756
+ "type": "string"
757
+ },
758
+ "category": {
759
+ "type": "string"
760
+ },
761
+ "skills": {
762
+ "type": "array",
763
+ "items": {
764
+ "type": "string"
765
+ }
766
+ },
767
+ "temperature": {
768
+ "type": "number",
769
+ "minimum": 0,
770
+ "maximum": 2
771
+ },
772
+ "top_p": {
773
+ "type": "number",
774
+ "minimum": 0,
775
+ "maximum": 1
776
+ },
777
+ "prompt": {
778
+ "type": "string"
779
+ },
780
+ "prompt_append": {
781
+ "type": "string"
782
+ },
783
+ "tools": {
784
+ "type": "object",
785
+ "propertyNames": {
786
+ "type": "string"
787
+ },
788
+ "additionalProperties": {
789
+ "type": "boolean"
790
+ }
791
+ },
792
+ "disable": {
793
+ "type": "boolean"
794
+ },
795
+ "description": {
796
+ "type": "string"
797
+ },
798
+ "mode": {
799
+ "type": "string",
800
+ "enum": [
801
+ "subagent",
802
+ "primary",
803
+ "all"
804
+ ]
805
+ },
806
+ "color": {
807
+ "type": "string",
808
+ "pattern": "^#[0-9A-Fa-f]{6}$"
809
+ },
810
+ "permission": {
811
+ "type": "object",
812
+ "properties": {
813
+ "edit": {
814
+ "type": "string",
815
+ "enum": [
816
+ "ask",
817
+ "allow",
818
+ "deny"
819
+ ]
820
+ },
821
+ "bash": {
822
+ "anyOf": [
823
+ {
824
+ "type": "string",
825
+ "enum": [
826
+ "ask",
827
+ "allow",
828
+ "deny"
829
+ ]
830
+ },
831
+ {
832
+ "type": "object",
833
+ "propertyNames": {
834
+ "type": "string"
835
+ },
836
+ "additionalProperties": {
837
+ "type": "string",
838
+ "enum": [
839
+ "ask",
840
+ "allow",
841
+ "deny"
842
+ ]
843
+ }
844
+ }
845
+ ]
846
+ },
847
+ "webfetch": {
848
+ "type": "string",
849
+ "enum": [
850
+ "ask",
851
+ "allow",
852
+ "deny"
853
+ ]
854
+ },
855
+ "task": {
856
+ "type": "string",
857
+ "enum": [
858
+ "ask",
859
+ "allow",
860
+ "deny"
861
+ ]
862
+ },
863
+ "doom_loop": {
864
+ "type": "string",
865
+ "enum": [
866
+ "ask",
867
+ "allow",
868
+ "deny"
869
+ ]
870
+ },
871
+ "external_directory": {
872
+ "type": "string",
873
+ "enum": [
874
+ "ask",
875
+ "allow",
876
+ "deny"
877
+ ]
878
+ }
879
+ },
880
+ "additionalProperties": false
881
+ },
882
+ "maxTokens": {
883
+ "type": "number"
884
+ },
885
+ "thinking": {
886
+ "type": "object",
887
+ "properties": {
888
+ "type": {
889
+ "type": "string",
890
+ "enum": [
891
+ "enabled",
892
+ "disabled"
893
+ ]
894
+ },
895
+ "budgetTokens": {
896
+ "type": "number"
897
+ }
898
+ },
899
+ "required": [
900
+ "type"
901
+ ],
902
+ "additionalProperties": false
903
+ },
904
+ "reasoningEffort": {
905
+ "type": "string",
906
+ "enum": [
907
+ "low",
908
+ "medium",
909
+ "high",
910
+ "xhigh"
911
+ ]
912
+ },
913
+ "textVerbosity": {
914
+ "type": "string",
915
+ "enum": [
916
+ "low",
917
+ "medium",
918
+ "high"
919
+ ]
920
+ },
921
+ "providerOptions": {
922
+ "type": "object",
923
+ "propertyNames": {
924
+ "type": "string"
925
+ },
926
+ "additionalProperties": {}
927
+ },
928
+ "ultrawork": {
929
+ "type": "object",
930
+ "properties": {
931
+ "model": {
932
+ "type": "string"
933
+ },
934
+ "variant": {
935
+ "type": "string"
936
+ }
937
+ },
938
+ "additionalProperties": false
939
+ },
940
+ "compaction": {
941
+ "type": "object",
942
+ "properties": {
943
+ "model": {
944
+ "type": "string"
945
+ },
946
+ "variant": {
947
+ "type": "string"
948
+ }
949
+ },
950
+ "additionalProperties": false
951
+ }
952
+ },
953
+ "additionalProperties": false
954
+ },
955
+ "OpenCode-Builder": {
956
+ "type": "object",
957
+ "properties": {
958
+ "model": {
959
+ "type": "string"
960
+ },
961
+ "fallback_models": {
962
+ "anyOf": [
963
+ {
964
+ "type": "string"
965
+ },
966
+ {
967
+ "type": "array",
968
+ "items": {
969
+ "type": "string"
970
+ }
971
+ }
972
+ ]
973
+ },
974
+ "variant": {
975
+ "type": "string"
976
+ },
977
+ "category": {
978
+ "type": "string"
979
+ },
980
+ "skills": {
981
+ "type": "array",
982
+ "items": {
983
+ "type": "string"
984
+ }
985
+ },
986
+ "temperature": {
987
+ "type": "number",
988
+ "minimum": 0,
989
+ "maximum": 2
990
+ },
991
+ "top_p": {
992
+ "type": "number",
993
+ "minimum": 0,
994
+ "maximum": 1
995
+ },
996
+ "prompt": {
997
+ "type": "string"
998
+ },
999
+ "prompt_append": {
1000
+ "type": "string"
1001
+ },
1002
+ "tools": {
1003
+ "type": "object",
1004
+ "propertyNames": {
1005
+ "type": "string"
1006
+ },
1007
+ "additionalProperties": {
1008
+ "type": "boolean"
1009
+ }
1010
+ },
1011
+ "disable": {
1012
+ "type": "boolean"
1013
+ },
1014
+ "description": {
1015
+ "type": "string"
1016
+ },
1017
+ "mode": {
1018
+ "type": "string",
1019
+ "enum": [
1020
+ "subagent",
1021
+ "primary",
1022
+ "all"
1023
+ ]
1024
+ },
1025
+ "color": {
1026
+ "type": "string",
1027
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1028
+ },
1029
+ "permission": {
1030
+ "type": "object",
1031
+ "properties": {
1032
+ "edit": {
1033
+ "type": "string",
1034
+ "enum": [
1035
+ "ask",
1036
+ "allow",
1037
+ "deny"
1038
+ ]
1039
+ },
1040
+ "bash": {
1041
+ "anyOf": [
1042
+ {
1043
+ "type": "string",
1044
+ "enum": [
1045
+ "ask",
1046
+ "allow",
1047
+ "deny"
1048
+ ]
1049
+ },
1050
+ {
1051
+ "type": "object",
1052
+ "propertyNames": {
1053
+ "type": "string"
1054
+ },
1055
+ "additionalProperties": {
1056
+ "type": "string",
1057
+ "enum": [
1058
+ "ask",
1059
+ "allow",
1060
+ "deny"
1061
+ ]
1062
+ }
1063
+ }
1064
+ ]
1065
+ },
1066
+ "webfetch": {
1067
+ "type": "string",
1068
+ "enum": [
1069
+ "ask",
1070
+ "allow",
1071
+ "deny"
1072
+ ]
1073
+ },
1074
+ "task": {
1075
+ "type": "string",
1076
+ "enum": [
1077
+ "ask",
1078
+ "allow",
1079
+ "deny"
1080
+ ]
1081
+ },
1082
+ "doom_loop": {
1083
+ "type": "string",
1084
+ "enum": [
1085
+ "ask",
1086
+ "allow",
1087
+ "deny"
1088
+ ]
1089
+ },
1090
+ "external_directory": {
1091
+ "type": "string",
1092
+ "enum": [
1093
+ "ask",
1094
+ "allow",
1095
+ "deny"
1096
+ ]
1097
+ }
1098
+ },
1099
+ "additionalProperties": false
1100
+ },
1101
+ "maxTokens": {
1102
+ "type": "number"
1103
+ },
1104
+ "thinking": {
1105
+ "type": "object",
1106
+ "properties": {
1107
+ "type": {
1108
+ "type": "string",
1109
+ "enum": [
1110
+ "enabled",
1111
+ "disabled"
1112
+ ]
1113
+ },
1114
+ "budgetTokens": {
1115
+ "type": "number"
1116
+ }
1117
+ },
1118
+ "required": [
1119
+ "type"
1120
+ ],
1121
+ "additionalProperties": false
1122
+ },
1123
+ "reasoningEffort": {
1124
+ "type": "string",
1125
+ "enum": [
1126
+ "low",
1127
+ "medium",
1128
+ "high",
1129
+ "xhigh"
1130
+ ]
1131
+ },
1132
+ "textVerbosity": {
1133
+ "type": "string",
1134
+ "enum": [
1135
+ "low",
1136
+ "medium",
1137
+ "high"
1138
+ ]
1139
+ },
1140
+ "providerOptions": {
1141
+ "type": "object",
1142
+ "propertyNames": {
1143
+ "type": "string"
1144
+ },
1145
+ "additionalProperties": {}
1146
+ },
1147
+ "ultrawork": {
1148
+ "type": "object",
1149
+ "properties": {
1150
+ "model": {
1151
+ "type": "string"
1152
+ },
1153
+ "variant": {
1154
+ "type": "string"
1155
+ }
1156
+ },
1157
+ "additionalProperties": false
1158
+ },
1159
+ "compaction": {
1160
+ "type": "object",
1161
+ "properties": {
1162
+ "model": {
1163
+ "type": "string"
1164
+ },
1165
+ "variant": {
1166
+ "type": "string"
1167
+ }
1168
+ },
1169
+ "additionalProperties": false
1170
+ }
1171
+ },
1172
+ "additionalProperties": false
1173
+ },
1174
+ "prometheus": {
1175
+ "type": "object",
1176
+ "properties": {
1177
+ "model": {
1178
+ "type": "string"
1179
+ },
1180
+ "fallback_models": {
1181
+ "anyOf": [
1182
+ {
1183
+ "type": "string"
1184
+ },
1185
+ {
1186
+ "type": "array",
1187
+ "items": {
1188
+ "type": "string"
1189
+ }
1190
+ }
1191
+ ]
1192
+ },
1193
+ "variant": {
1194
+ "type": "string"
1195
+ },
1196
+ "category": {
1197
+ "type": "string"
1198
+ },
1199
+ "skills": {
1200
+ "type": "array",
1201
+ "items": {
1202
+ "type": "string"
1203
+ }
1204
+ },
1205
+ "temperature": {
1206
+ "type": "number",
1207
+ "minimum": 0,
1208
+ "maximum": 2
1209
+ },
1210
+ "top_p": {
1211
+ "type": "number",
1212
+ "minimum": 0,
1213
+ "maximum": 1
1214
+ },
1215
+ "prompt": {
1216
+ "type": "string"
1217
+ },
1218
+ "prompt_append": {
1219
+ "type": "string"
1220
+ },
1221
+ "tools": {
1222
+ "type": "object",
1223
+ "propertyNames": {
1224
+ "type": "string"
1225
+ },
1226
+ "additionalProperties": {
1227
+ "type": "boolean"
1228
+ }
1229
+ },
1230
+ "disable": {
1231
+ "type": "boolean"
1232
+ },
1233
+ "description": {
1234
+ "type": "string"
1235
+ },
1236
+ "mode": {
1237
+ "type": "string",
1238
+ "enum": [
1239
+ "subagent",
1240
+ "primary",
1241
+ "all"
1242
+ ]
1243
+ },
1244
+ "color": {
1245
+ "type": "string",
1246
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1247
+ },
1248
+ "permission": {
1249
+ "type": "object",
1250
+ "properties": {
1251
+ "edit": {
1252
+ "type": "string",
1253
+ "enum": [
1254
+ "ask",
1255
+ "allow",
1256
+ "deny"
1257
+ ]
1258
+ },
1259
+ "bash": {
1260
+ "anyOf": [
1261
+ {
1262
+ "type": "string",
1263
+ "enum": [
1264
+ "ask",
1265
+ "allow",
1266
+ "deny"
1267
+ ]
1268
+ },
1269
+ {
1270
+ "type": "object",
1271
+ "propertyNames": {
1272
+ "type": "string"
1273
+ },
1274
+ "additionalProperties": {
1275
+ "type": "string",
1276
+ "enum": [
1277
+ "ask",
1278
+ "allow",
1279
+ "deny"
1280
+ ]
1281
+ }
1282
+ }
1283
+ ]
1284
+ },
1285
+ "webfetch": {
1286
+ "type": "string",
1287
+ "enum": [
1288
+ "ask",
1289
+ "allow",
1290
+ "deny"
1291
+ ]
1292
+ },
1293
+ "task": {
1294
+ "type": "string",
1295
+ "enum": [
1296
+ "ask",
1297
+ "allow",
1298
+ "deny"
1299
+ ]
1300
+ },
1301
+ "doom_loop": {
1302
+ "type": "string",
1303
+ "enum": [
1304
+ "ask",
1305
+ "allow",
1306
+ "deny"
1307
+ ]
1308
+ },
1309
+ "external_directory": {
1310
+ "type": "string",
1311
+ "enum": [
1312
+ "ask",
1313
+ "allow",
1314
+ "deny"
1315
+ ]
1316
+ }
1317
+ },
1318
+ "additionalProperties": false
1319
+ },
1320
+ "maxTokens": {
1321
+ "type": "number"
1322
+ },
1323
+ "thinking": {
1324
+ "type": "object",
1325
+ "properties": {
1326
+ "type": {
1327
+ "type": "string",
1328
+ "enum": [
1329
+ "enabled",
1330
+ "disabled"
1331
+ ]
1332
+ },
1333
+ "budgetTokens": {
1334
+ "type": "number"
1335
+ }
1336
+ },
1337
+ "required": [
1338
+ "type"
1339
+ ],
1340
+ "additionalProperties": false
1341
+ },
1342
+ "reasoningEffort": {
1343
+ "type": "string",
1344
+ "enum": [
1345
+ "low",
1346
+ "medium",
1347
+ "high",
1348
+ "xhigh"
1349
+ ]
1350
+ },
1351
+ "textVerbosity": {
1352
+ "type": "string",
1353
+ "enum": [
1354
+ "low",
1355
+ "medium",
1356
+ "high"
1357
+ ]
1358
+ },
1359
+ "providerOptions": {
1360
+ "type": "object",
1361
+ "propertyNames": {
1362
+ "type": "string"
1363
+ },
1364
+ "additionalProperties": {}
1365
+ },
1366
+ "ultrawork": {
1367
+ "type": "object",
1368
+ "properties": {
1369
+ "model": {
1370
+ "type": "string"
1371
+ },
1372
+ "variant": {
1373
+ "type": "string"
1374
+ }
1375
+ },
1376
+ "additionalProperties": false
1377
+ },
1378
+ "compaction": {
1379
+ "type": "object",
1380
+ "properties": {
1381
+ "model": {
1382
+ "type": "string"
1383
+ },
1384
+ "variant": {
1385
+ "type": "string"
1386
+ }
1387
+ },
1388
+ "additionalProperties": false
1389
+ }
1390
+ },
1391
+ "additionalProperties": false
1392
+ },
1393
+ "metis": {
1394
+ "type": "object",
1395
+ "properties": {
1396
+ "model": {
1397
+ "type": "string"
1398
+ },
1399
+ "fallback_models": {
1400
+ "anyOf": [
1401
+ {
1402
+ "type": "string"
1403
+ },
1404
+ {
1405
+ "type": "array",
1406
+ "items": {
1407
+ "type": "string"
1408
+ }
1409
+ }
1410
+ ]
1411
+ },
1412
+ "variant": {
1413
+ "type": "string"
1414
+ },
1415
+ "category": {
1416
+ "type": "string"
1417
+ },
1418
+ "skills": {
1419
+ "type": "array",
1420
+ "items": {
1421
+ "type": "string"
1422
+ }
1423
+ },
1424
+ "temperature": {
1425
+ "type": "number",
1426
+ "minimum": 0,
1427
+ "maximum": 2
1428
+ },
1429
+ "top_p": {
1430
+ "type": "number",
1431
+ "minimum": 0,
1432
+ "maximum": 1
1433
+ },
1434
+ "prompt": {
1435
+ "type": "string"
1436
+ },
1437
+ "prompt_append": {
1438
+ "type": "string"
1439
+ },
1440
+ "tools": {
1441
+ "type": "object",
1442
+ "propertyNames": {
1443
+ "type": "string"
1444
+ },
1445
+ "additionalProperties": {
1446
+ "type": "boolean"
1447
+ }
1448
+ },
1449
+ "disable": {
1450
+ "type": "boolean"
1451
+ },
1452
+ "description": {
1453
+ "type": "string"
1454
+ },
1455
+ "mode": {
1456
+ "type": "string",
1457
+ "enum": [
1458
+ "subagent",
1459
+ "primary",
1460
+ "all"
1461
+ ]
1462
+ },
1463
+ "color": {
1464
+ "type": "string",
1465
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1466
+ },
1467
+ "permission": {
1468
+ "type": "object",
1469
+ "properties": {
1470
+ "edit": {
1471
+ "type": "string",
1472
+ "enum": [
1473
+ "ask",
1474
+ "allow",
1475
+ "deny"
1476
+ ]
1477
+ },
1478
+ "bash": {
1479
+ "anyOf": [
1480
+ {
1481
+ "type": "string",
1482
+ "enum": [
1483
+ "ask",
1484
+ "allow",
1485
+ "deny"
1486
+ ]
1487
+ },
1488
+ {
1489
+ "type": "object",
1490
+ "propertyNames": {
1491
+ "type": "string"
1492
+ },
1493
+ "additionalProperties": {
1494
+ "type": "string",
1495
+ "enum": [
1496
+ "ask",
1497
+ "allow",
1498
+ "deny"
1499
+ ]
1500
+ }
1501
+ }
1502
+ ]
1503
+ },
1504
+ "webfetch": {
1505
+ "type": "string",
1506
+ "enum": [
1507
+ "ask",
1508
+ "allow",
1509
+ "deny"
1510
+ ]
1511
+ },
1512
+ "task": {
1513
+ "type": "string",
1514
+ "enum": [
1515
+ "ask",
1516
+ "allow",
1517
+ "deny"
1518
+ ]
1519
+ },
1520
+ "doom_loop": {
1521
+ "type": "string",
1522
+ "enum": [
1523
+ "ask",
1524
+ "allow",
1525
+ "deny"
1526
+ ]
1527
+ },
1528
+ "external_directory": {
1529
+ "type": "string",
1530
+ "enum": [
1531
+ "ask",
1532
+ "allow",
1533
+ "deny"
1534
+ ]
1535
+ }
1536
+ },
1537
+ "additionalProperties": false
1538
+ },
1539
+ "maxTokens": {
1540
+ "type": "number"
1541
+ },
1542
+ "thinking": {
1543
+ "type": "object",
1544
+ "properties": {
1545
+ "type": {
1546
+ "type": "string",
1547
+ "enum": [
1548
+ "enabled",
1549
+ "disabled"
1550
+ ]
1551
+ },
1552
+ "budgetTokens": {
1553
+ "type": "number"
1554
+ }
1555
+ },
1556
+ "required": [
1557
+ "type"
1558
+ ],
1559
+ "additionalProperties": false
1560
+ },
1561
+ "reasoningEffort": {
1562
+ "type": "string",
1563
+ "enum": [
1564
+ "low",
1565
+ "medium",
1566
+ "high",
1567
+ "xhigh"
1568
+ ]
1569
+ },
1570
+ "textVerbosity": {
1571
+ "type": "string",
1572
+ "enum": [
1573
+ "low",
1574
+ "medium",
1575
+ "high"
1576
+ ]
1577
+ },
1578
+ "providerOptions": {
1579
+ "type": "object",
1580
+ "propertyNames": {
1581
+ "type": "string"
1582
+ },
1583
+ "additionalProperties": {}
1584
+ },
1585
+ "ultrawork": {
1586
+ "type": "object",
1587
+ "properties": {
1588
+ "model": {
1589
+ "type": "string"
1590
+ },
1591
+ "variant": {
1592
+ "type": "string"
1593
+ }
1594
+ },
1595
+ "additionalProperties": false
1596
+ },
1597
+ "compaction": {
1598
+ "type": "object",
1599
+ "properties": {
1600
+ "model": {
1601
+ "type": "string"
1602
+ },
1603
+ "variant": {
1604
+ "type": "string"
1605
+ }
1606
+ },
1607
+ "additionalProperties": false
1608
+ }
1609
+ },
1610
+ "additionalProperties": false
1611
+ },
1612
+ "momus": {
1613
+ "type": "object",
1614
+ "properties": {
1615
+ "model": {
1616
+ "type": "string"
1617
+ },
1618
+ "fallback_models": {
1619
+ "anyOf": [
1620
+ {
1621
+ "type": "string"
1622
+ },
1623
+ {
1624
+ "type": "array",
1625
+ "items": {
1626
+ "type": "string"
1627
+ }
1628
+ }
1629
+ ]
1630
+ },
1631
+ "variant": {
1632
+ "type": "string"
1633
+ },
1634
+ "category": {
1635
+ "type": "string"
1636
+ },
1637
+ "skills": {
1638
+ "type": "array",
1639
+ "items": {
1640
+ "type": "string"
1641
+ }
1642
+ },
1643
+ "temperature": {
1644
+ "type": "number",
1645
+ "minimum": 0,
1646
+ "maximum": 2
1647
+ },
1648
+ "top_p": {
1649
+ "type": "number",
1650
+ "minimum": 0,
1651
+ "maximum": 1
1652
+ },
1653
+ "prompt": {
1654
+ "type": "string"
1655
+ },
1656
+ "prompt_append": {
1657
+ "type": "string"
1658
+ },
1659
+ "tools": {
1660
+ "type": "object",
1661
+ "propertyNames": {
1662
+ "type": "string"
1663
+ },
1664
+ "additionalProperties": {
1665
+ "type": "boolean"
1666
+ }
1667
+ },
1668
+ "disable": {
1669
+ "type": "boolean"
1670
+ },
1671
+ "description": {
1672
+ "type": "string"
1673
+ },
1674
+ "mode": {
1675
+ "type": "string",
1676
+ "enum": [
1677
+ "subagent",
1678
+ "primary",
1679
+ "all"
1680
+ ]
1681
+ },
1682
+ "color": {
1683
+ "type": "string",
1684
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1685
+ },
1686
+ "permission": {
1687
+ "type": "object",
1688
+ "properties": {
1689
+ "edit": {
1690
+ "type": "string",
1691
+ "enum": [
1692
+ "ask",
1693
+ "allow",
1694
+ "deny"
1695
+ ]
1696
+ },
1697
+ "bash": {
1698
+ "anyOf": [
1699
+ {
1700
+ "type": "string",
1701
+ "enum": [
1702
+ "ask",
1703
+ "allow",
1704
+ "deny"
1705
+ ]
1706
+ },
1707
+ {
1708
+ "type": "object",
1709
+ "propertyNames": {
1710
+ "type": "string"
1711
+ },
1712
+ "additionalProperties": {
1713
+ "type": "string",
1714
+ "enum": [
1715
+ "ask",
1716
+ "allow",
1717
+ "deny"
1718
+ ]
1719
+ }
1720
+ }
1721
+ ]
1722
+ },
1723
+ "webfetch": {
1724
+ "type": "string",
1725
+ "enum": [
1726
+ "ask",
1727
+ "allow",
1728
+ "deny"
1729
+ ]
1730
+ },
1731
+ "task": {
1732
+ "type": "string",
1733
+ "enum": [
1734
+ "ask",
1735
+ "allow",
1736
+ "deny"
1737
+ ]
1738
+ },
1739
+ "doom_loop": {
1740
+ "type": "string",
1741
+ "enum": [
1742
+ "ask",
1743
+ "allow",
1744
+ "deny"
1745
+ ]
1746
+ },
1747
+ "external_directory": {
1748
+ "type": "string",
1749
+ "enum": [
1750
+ "ask",
1751
+ "allow",
1752
+ "deny"
1753
+ ]
1754
+ }
1755
+ },
1756
+ "additionalProperties": false
1757
+ },
1758
+ "maxTokens": {
1759
+ "type": "number"
1760
+ },
1761
+ "thinking": {
1762
+ "type": "object",
1763
+ "properties": {
1764
+ "type": {
1765
+ "type": "string",
1766
+ "enum": [
1767
+ "enabled",
1768
+ "disabled"
1769
+ ]
1770
+ },
1771
+ "budgetTokens": {
1772
+ "type": "number"
1773
+ }
1774
+ },
1775
+ "required": [
1776
+ "type"
1777
+ ],
1778
+ "additionalProperties": false
1779
+ },
1780
+ "reasoningEffort": {
1781
+ "type": "string",
1782
+ "enum": [
1783
+ "low",
1784
+ "medium",
1785
+ "high",
1786
+ "xhigh"
1787
+ ]
1788
+ },
1789
+ "textVerbosity": {
1790
+ "type": "string",
1791
+ "enum": [
1792
+ "low",
1793
+ "medium",
1794
+ "high"
1795
+ ]
1796
+ },
1797
+ "providerOptions": {
1798
+ "type": "object",
1799
+ "propertyNames": {
1800
+ "type": "string"
1801
+ },
1802
+ "additionalProperties": {}
1803
+ },
1804
+ "ultrawork": {
1805
+ "type": "object",
1806
+ "properties": {
1807
+ "model": {
1808
+ "type": "string"
1809
+ },
1810
+ "variant": {
1811
+ "type": "string"
1812
+ }
1813
+ },
1814
+ "additionalProperties": false
1815
+ },
1816
+ "compaction": {
1817
+ "type": "object",
1818
+ "properties": {
1819
+ "model": {
1820
+ "type": "string"
1821
+ },
1822
+ "variant": {
1823
+ "type": "string"
1824
+ }
1825
+ },
1826
+ "additionalProperties": false
1827
+ }
1828
+ },
1829
+ "additionalProperties": false
1830
+ },
1831
+ "oracle": {
1832
+ "type": "object",
1833
+ "properties": {
1834
+ "model": {
1835
+ "type": "string"
1836
+ },
1837
+ "fallback_models": {
1838
+ "anyOf": [
1839
+ {
1840
+ "type": "string"
1841
+ },
1842
+ {
1843
+ "type": "array",
1844
+ "items": {
1845
+ "type": "string"
1846
+ }
1847
+ }
1848
+ ]
1849
+ },
1850
+ "variant": {
1851
+ "type": "string"
1852
+ },
1853
+ "category": {
1854
+ "type": "string"
1855
+ },
1856
+ "skills": {
1857
+ "type": "array",
1858
+ "items": {
1859
+ "type": "string"
1860
+ }
1861
+ },
1862
+ "temperature": {
1863
+ "type": "number",
1864
+ "minimum": 0,
1865
+ "maximum": 2
1866
+ },
1867
+ "top_p": {
1868
+ "type": "number",
1869
+ "minimum": 0,
1870
+ "maximum": 1
1871
+ },
1872
+ "prompt": {
1873
+ "type": "string"
1874
+ },
1875
+ "prompt_append": {
1876
+ "type": "string"
1877
+ },
1878
+ "tools": {
1879
+ "type": "object",
1880
+ "propertyNames": {
1881
+ "type": "string"
1882
+ },
1883
+ "additionalProperties": {
1884
+ "type": "boolean"
1885
+ }
1886
+ },
1887
+ "disable": {
1888
+ "type": "boolean"
1889
+ },
1890
+ "description": {
1891
+ "type": "string"
1892
+ },
1893
+ "mode": {
1894
+ "type": "string",
1895
+ "enum": [
1896
+ "subagent",
1897
+ "primary",
1898
+ "all"
1899
+ ]
1900
+ },
1901
+ "color": {
1902
+ "type": "string",
1903
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1904
+ },
1905
+ "permission": {
1906
+ "type": "object",
1907
+ "properties": {
1908
+ "edit": {
1909
+ "type": "string",
1910
+ "enum": [
1911
+ "ask",
1912
+ "allow",
1913
+ "deny"
1914
+ ]
1915
+ },
1916
+ "bash": {
1917
+ "anyOf": [
1918
+ {
1919
+ "type": "string",
1920
+ "enum": [
1921
+ "ask",
1922
+ "allow",
1923
+ "deny"
1924
+ ]
1925
+ },
1926
+ {
1927
+ "type": "object",
1928
+ "propertyNames": {
1929
+ "type": "string"
1930
+ },
1931
+ "additionalProperties": {
1932
+ "type": "string",
1933
+ "enum": [
1934
+ "ask",
1935
+ "allow",
1936
+ "deny"
1937
+ ]
1938
+ }
1939
+ }
1940
+ ]
1941
+ },
1942
+ "webfetch": {
1943
+ "type": "string",
1944
+ "enum": [
1945
+ "ask",
1946
+ "allow",
1947
+ "deny"
1948
+ ]
1949
+ },
1950
+ "task": {
1951
+ "type": "string",
1952
+ "enum": [
1953
+ "ask",
1954
+ "allow",
1955
+ "deny"
1956
+ ]
1957
+ },
1958
+ "doom_loop": {
1959
+ "type": "string",
1960
+ "enum": [
1961
+ "ask",
1962
+ "allow",
1963
+ "deny"
1964
+ ]
1965
+ },
1966
+ "external_directory": {
1967
+ "type": "string",
1968
+ "enum": [
1969
+ "ask",
1970
+ "allow",
1971
+ "deny"
1972
+ ]
1973
+ }
1974
+ },
1975
+ "additionalProperties": false
1976
+ },
1977
+ "maxTokens": {
1978
+ "type": "number"
1979
+ },
1980
+ "thinking": {
1981
+ "type": "object",
1982
+ "properties": {
1983
+ "type": {
1984
+ "type": "string",
1985
+ "enum": [
1986
+ "enabled",
1987
+ "disabled"
1988
+ ]
1989
+ },
1990
+ "budgetTokens": {
1991
+ "type": "number"
1992
+ }
1993
+ },
1994
+ "required": [
1995
+ "type"
1996
+ ],
1997
+ "additionalProperties": false
1998
+ },
1999
+ "reasoningEffort": {
2000
+ "type": "string",
2001
+ "enum": [
2002
+ "low",
2003
+ "medium",
2004
+ "high",
2005
+ "xhigh"
2006
+ ]
2007
+ },
2008
+ "textVerbosity": {
2009
+ "type": "string",
2010
+ "enum": [
2011
+ "low",
2012
+ "medium",
2013
+ "high"
2014
+ ]
2015
+ },
2016
+ "providerOptions": {
2017
+ "type": "object",
2018
+ "propertyNames": {
2019
+ "type": "string"
2020
+ },
2021
+ "additionalProperties": {}
2022
+ },
2023
+ "ultrawork": {
2024
+ "type": "object",
2025
+ "properties": {
2026
+ "model": {
2027
+ "type": "string"
2028
+ },
2029
+ "variant": {
2030
+ "type": "string"
2031
+ }
2032
+ },
2033
+ "additionalProperties": false
2034
+ },
2035
+ "compaction": {
2036
+ "type": "object",
2037
+ "properties": {
2038
+ "model": {
2039
+ "type": "string"
2040
+ },
2041
+ "variant": {
2042
+ "type": "string"
2043
+ }
2044
+ },
2045
+ "additionalProperties": false
2046
+ }
2047
+ },
2048
+ "additionalProperties": false
2049
+ },
2050
+ "librarian": {
2051
+ "type": "object",
2052
+ "properties": {
2053
+ "model": {
2054
+ "type": "string"
2055
+ },
2056
+ "fallback_models": {
2057
+ "anyOf": [
2058
+ {
2059
+ "type": "string"
2060
+ },
2061
+ {
2062
+ "type": "array",
2063
+ "items": {
2064
+ "type": "string"
2065
+ }
2066
+ }
2067
+ ]
2068
+ },
2069
+ "variant": {
2070
+ "type": "string"
2071
+ },
2072
+ "category": {
2073
+ "type": "string"
2074
+ },
2075
+ "skills": {
2076
+ "type": "array",
2077
+ "items": {
2078
+ "type": "string"
2079
+ }
2080
+ },
2081
+ "temperature": {
2082
+ "type": "number",
2083
+ "minimum": 0,
2084
+ "maximum": 2
2085
+ },
2086
+ "top_p": {
2087
+ "type": "number",
2088
+ "minimum": 0,
2089
+ "maximum": 1
2090
+ },
2091
+ "prompt": {
2092
+ "type": "string"
2093
+ },
2094
+ "prompt_append": {
2095
+ "type": "string"
2096
+ },
2097
+ "tools": {
2098
+ "type": "object",
2099
+ "propertyNames": {
2100
+ "type": "string"
2101
+ },
2102
+ "additionalProperties": {
2103
+ "type": "boolean"
2104
+ }
2105
+ },
2106
+ "disable": {
2107
+ "type": "boolean"
2108
+ },
2109
+ "description": {
2110
+ "type": "string"
2111
+ },
2112
+ "mode": {
2113
+ "type": "string",
2114
+ "enum": [
2115
+ "subagent",
2116
+ "primary",
2117
+ "all"
2118
+ ]
2119
+ },
2120
+ "color": {
2121
+ "type": "string",
2122
+ "pattern": "^#[0-9A-Fa-f]{6}$"
2123
+ },
2124
+ "permission": {
2125
+ "type": "object",
2126
+ "properties": {
2127
+ "edit": {
2128
+ "type": "string",
2129
+ "enum": [
2130
+ "ask",
2131
+ "allow",
2132
+ "deny"
2133
+ ]
2134
+ },
2135
+ "bash": {
2136
+ "anyOf": [
2137
+ {
2138
+ "type": "string",
2139
+ "enum": [
2140
+ "ask",
2141
+ "allow",
2142
+ "deny"
2143
+ ]
2144
+ },
2145
+ {
2146
+ "type": "object",
2147
+ "propertyNames": {
2148
+ "type": "string"
2149
+ },
2150
+ "additionalProperties": {
2151
+ "type": "string",
2152
+ "enum": [
2153
+ "ask",
2154
+ "allow",
2155
+ "deny"
2156
+ ]
2157
+ }
2158
+ }
2159
+ ]
2160
+ },
2161
+ "webfetch": {
2162
+ "type": "string",
2163
+ "enum": [
2164
+ "ask",
2165
+ "allow",
2166
+ "deny"
2167
+ ]
2168
+ },
2169
+ "task": {
2170
+ "type": "string",
2171
+ "enum": [
2172
+ "ask",
2173
+ "allow",
2174
+ "deny"
2175
+ ]
2176
+ },
2177
+ "doom_loop": {
2178
+ "type": "string",
2179
+ "enum": [
2180
+ "ask",
2181
+ "allow",
2182
+ "deny"
2183
+ ]
2184
+ },
2185
+ "external_directory": {
2186
+ "type": "string",
2187
+ "enum": [
2188
+ "ask",
2189
+ "allow",
2190
+ "deny"
2191
+ ]
2192
+ }
2193
+ },
2194
+ "additionalProperties": false
2195
+ },
2196
+ "maxTokens": {
2197
+ "type": "number"
2198
+ },
2199
+ "thinking": {
2200
+ "type": "object",
2201
+ "properties": {
2202
+ "type": {
2203
+ "type": "string",
2204
+ "enum": [
2205
+ "enabled",
2206
+ "disabled"
2207
+ ]
2208
+ },
2209
+ "budgetTokens": {
2210
+ "type": "number"
2211
+ }
2212
+ },
2213
+ "required": [
2214
+ "type"
2215
+ ],
2216
+ "additionalProperties": false
2217
+ },
2218
+ "reasoningEffort": {
2219
+ "type": "string",
2220
+ "enum": [
2221
+ "low",
2222
+ "medium",
2223
+ "high",
2224
+ "xhigh"
2225
+ ]
2226
+ },
2227
+ "textVerbosity": {
2228
+ "type": "string",
2229
+ "enum": [
2230
+ "low",
2231
+ "medium",
2232
+ "high"
2233
+ ]
2234
+ },
2235
+ "providerOptions": {
2236
+ "type": "object",
2237
+ "propertyNames": {
2238
+ "type": "string"
2239
+ },
2240
+ "additionalProperties": {}
2241
+ },
2242
+ "ultrawork": {
2243
+ "type": "object",
2244
+ "properties": {
2245
+ "model": {
2246
+ "type": "string"
2247
+ },
2248
+ "variant": {
2249
+ "type": "string"
2250
+ }
2251
+ },
2252
+ "additionalProperties": false
2253
+ },
2254
+ "compaction": {
2255
+ "type": "object",
2256
+ "properties": {
2257
+ "model": {
2258
+ "type": "string"
2259
+ },
2260
+ "variant": {
2261
+ "type": "string"
2262
+ }
2263
+ },
2264
+ "additionalProperties": false
2265
+ }
2266
+ },
2267
+ "additionalProperties": false
2268
+ },
2269
+ "explore": {
2270
+ "type": "object",
2271
+ "properties": {
2272
+ "model": {
2273
+ "type": "string"
2274
+ },
2275
+ "fallback_models": {
2276
+ "anyOf": [
2277
+ {
2278
+ "type": "string"
2279
+ },
2280
+ {
2281
+ "type": "array",
2282
+ "items": {
2283
+ "type": "string"
2284
+ }
2285
+ }
2286
+ ]
2287
+ },
2288
+ "variant": {
2289
+ "type": "string"
2290
+ },
2291
+ "category": {
2292
+ "type": "string"
2293
+ },
2294
+ "skills": {
2295
+ "type": "array",
2296
+ "items": {
2297
+ "type": "string"
2298
+ }
2299
+ },
2300
+ "temperature": {
2301
+ "type": "number",
2302
+ "minimum": 0,
2303
+ "maximum": 2
2304
+ },
2305
+ "top_p": {
2306
+ "type": "number",
2307
+ "minimum": 0,
2308
+ "maximum": 1
2309
+ },
2310
+ "prompt": {
2311
+ "type": "string"
2312
+ },
2313
+ "prompt_append": {
2314
+ "type": "string"
2315
+ },
2316
+ "tools": {
2317
+ "type": "object",
2318
+ "propertyNames": {
2319
+ "type": "string"
2320
+ },
2321
+ "additionalProperties": {
2322
+ "type": "boolean"
2323
+ }
2324
+ },
2325
+ "disable": {
2326
+ "type": "boolean"
2327
+ },
2328
+ "description": {
2329
+ "type": "string"
2330
+ },
2331
+ "mode": {
2332
+ "type": "string",
2333
+ "enum": [
2334
+ "subagent",
2335
+ "primary",
2336
+ "all"
2337
+ ]
2338
+ },
2339
+ "color": {
2340
+ "type": "string",
2341
+ "pattern": "^#[0-9A-Fa-f]{6}$"
2342
+ },
2343
+ "permission": {
2344
+ "type": "object",
2345
+ "properties": {
2346
+ "edit": {
2347
+ "type": "string",
2348
+ "enum": [
2349
+ "ask",
2350
+ "allow",
2351
+ "deny"
2352
+ ]
2353
+ },
2354
+ "bash": {
2355
+ "anyOf": [
2356
+ {
2357
+ "type": "string",
2358
+ "enum": [
2359
+ "ask",
2360
+ "allow",
2361
+ "deny"
2362
+ ]
2363
+ },
2364
+ {
2365
+ "type": "object",
2366
+ "propertyNames": {
2367
+ "type": "string"
2368
+ },
2369
+ "additionalProperties": {
2370
+ "type": "string",
2371
+ "enum": [
2372
+ "ask",
2373
+ "allow",
2374
+ "deny"
2375
+ ]
2376
+ }
2377
+ }
2378
+ ]
2379
+ },
2380
+ "webfetch": {
2381
+ "type": "string",
2382
+ "enum": [
2383
+ "ask",
2384
+ "allow",
2385
+ "deny"
2386
+ ]
2387
+ },
2388
+ "task": {
2389
+ "type": "string",
2390
+ "enum": [
2391
+ "ask",
2392
+ "allow",
2393
+ "deny"
2394
+ ]
2395
+ },
2396
+ "doom_loop": {
2397
+ "type": "string",
2398
+ "enum": [
2399
+ "ask",
2400
+ "allow",
2401
+ "deny"
2402
+ ]
2403
+ },
2404
+ "external_directory": {
2405
+ "type": "string",
2406
+ "enum": [
2407
+ "ask",
2408
+ "allow",
2409
+ "deny"
2410
+ ]
2411
+ }
2412
+ },
2413
+ "additionalProperties": false
2414
+ },
2415
+ "maxTokens": {
2416
+ "type": "number"
2417
+ },
2418
+ "thinking": {
2419
+ "type": "object",
2420
+ "properties": {
2421
+ "type": {
2422
+ "type": "string",
2423
+ "enum": [
2424
+ "enabled",
2425
+ "disabled"
2426
+ ]
2427
+ },
2428
+ "budgetTokens": {
2429
+ "type": "number"
2430
+ }
2431
+ },
2432
+ "required": [
2433
+ "type"
2434
+ ],
2435
+ "additionalProperties": false
2436
+ },
2437
+ "reasoningEffort": {
2438
+ "type": "string",
2439
+ "enum": [
2440
+ "low",
2441
+ "medium",
2442
+ "high",
2443
+ "xhigh"
2444
+ ]
2445
+ },
2446
+ "textVerbosity": {
2447
+ "type": "string",
2448
+ "enum": [
2449
+ "low",
2450
+ "medium",
2451
+ "high"
2452
+ ]
2453
+ },
2454
+ "providerOptions": {
2455
+ "type": "object",
2456
+ "propertyNames": {
2457
+ "type": "string"
2458
+ },
2459
+ "additionalProperties": {}
2460
+ },
2461
+ "ultrawork": {
2462
+ "type": "object",
2463
+ "properties": {
2464
+ "model": {
2465
+ "type": "string"
2466
+ },
2467
+ "variant": {
2468
+ "type": "string"
2469
+ }
2470
+ },
2471
+ "additionalProperties": false
2472
+ },
2473
+ "compaction": {
2474
+ "type": "object",
2475
+ "properties": {
2476
+ "model": {
2477
+ "type": "string"
2478
+ },
2479
+ "variant": {
2480
+ "type": "string"
2481
+ }
2482
+ },
2483
+ "additionalProperties": false
2484
+ }
2485
+ },
2486
+ "additionalProperties": false
2487
+ },
2488
+ "multimodal-looker": {
2489
+ "type": "object",
2490
+ "properties": {
2491
+ "model": {
2492
+ "type": "string"
2493
+ },
2494
+ "fallback_models": {
2495
+ "anyOf": [
2496
+ {
2497
+ "type": "string"
2498
+ },
2499
+ {
2500
+ "type": "array",
2501
+ "items": {
2502
+ "type": "string"
2503
+ }
2504
+ }
2505
+ ]
2506
+ },
2507
+ "variant": {
2508
+ "type": "string"
2509
+ },
2510
+ "category": {
2511
+ "type": "string"
2512
+ },
2513
+ "skills": {
2514
+ "type": "array",
2515
+ "items": {
2516
+ "type": "string"
2517
+ }
2518
+ },
2519
+ "temperature": {
2520
+ "type": "number",
2521
+ "minimum": 0,
2522
+ "maximum": 2
2523
+ },
2524
+ "top_p": {
2525
+ "type": "number",
2526
+ "minimum": 0,
2527
+ "maximum": 1
2528
+ },
2529
+ "prompt": {
2530
+ "type": "string"
2531
+ },
2532
+ "prompt_append": {
2533
+ "type": "string"
2534
+ },
2535
+ "tools": {
2536
+ "type": "object",
2537
+ "propertyNames": {
2538
+ "type": "string"
2539
+ },
2540
+ "additionalProperties": {
2541
+ "type": "boolean"
2542
+ }
2543
+ },
2544
+ "disable": {
2545
+ "type": "boolean"
2546
+ },
2547
+ "description": {
2548
+ "type": "string"
2549
+ },
2550
+ "mode": {
2551
+ "type": "string",
2552
+ "enum": [
2553
+ "subagent",
2554
+ "primary",
2555
+ "all"
2556
+ ]
2557
+ },
2558
+ "color": {
2559
+ "type": "string",
2560
+ "pattern": "^#[0-9A-Fa-f]{6}$"
2561
+ },
2562
+ "permission": {
2563
+ "type": "object",
2564
+ "properties": {
2565
+ "edit": {
2566
+ "type": "string",
2567
+ "enum": [
2568
+ "ask",
2569
+ "allow",
2570
+ "deny"
2571
+ ]
2572
+ },
2573
+ "bash": {
2574
+ "anyOf": [
2575
+ {
2576
+ "type": "string",
2577
+ "enum": [
2578
+ "ask",
2579
+ "allow",
2580
+ "deny"
2581
+ ]
2582
+ },
2583
+ {
2584
+ "type": "object",
2585
+ "propertyNames": {
2586
+ "type": "string"
2587
+ },
2588
+ "additionalProperties": {
2589
+ "type": "string",
2590
+ "enum": [
2591
+ "ask",
2592
+ "allow",
2593
+ "deny"
2594
+ ]
2595
+ }
2596
+ }
2597
+ ]
2598
+ },
2599
+ "webfetch": {
2600
+ "type": "string",
2601
+ "enum": [
2602
+ "ask",
2603
+ "allow",
2604
+ "deny"
2605
+ ]
2606
+ },
2607
+ "task": {
2608
+ "type": "string",
2609
+ "enum": [
2610
+ "ask",
2611
+ "allow",
2612
+ "deny"
2613
+ ]
2614
+ },
2615
+ "doom_loop": {
2616
+ "type": "string",
2617
+ "enum": [
2618
+ "ask",
2619
+ "allow",
2620
+ "deny"
2621
+ ]
2622
+ },
2623
+ "external_directory": {
2624
+ "type": "string",
2625
+ "enum": [
2626
+ "ask",
2627
+ "allow",
2628
+ "deny"
2629
+ ]
2630
+ }
2631
+ },
2632
+ "additionalProperties": false
2633
+ },
2634
+ "maxTokens": {
2635
+ "type": "number"
2636
+ },
2637
+ "thinking": {
2638
+ "type": "object",
2639
+ "properties": {
2640
+ "type": {
2641
+ "type": "string",
2642
+ "enum": [
2643
+ "enabled",
2644
+ "disabled"
2645
+ ]
2646
+ },
2647
+ "budgetTokens": {
2648
+ "type": "number"
2649
+ }
2650
+ },
2651
+ "required": [
2652
+ "type"
2653
+ ],
2654
+ "additionalProperties": false
2655
+ },
2656
+ "reasoningEffort": {
2657
+ "type": "string",
2658
+ "enum": [
2659
+ "low",
2660
+ "medium",
2661
+ "high",
2662
+ "xhigh"
2663
+ ]
2664
+ },
2665
+ "textVerbosity": {
2666
+ "type": "string",
2667
+ "enum": [
2668
+ "low",
2669
+ "medium",
2670
+ "high"
2671
+ ]
2672
+ },
2673
+ "providerOptions": {
2674
+ "type": "object",
2675
+ "propertyNames": {
2676
+ "type": "string"
2677
+ },
2678
+ "additionalProperties": {}
2679
+ },
2680
+ "ultrawork": {
2681
+ "type": "object",
2682
+ "properties": {
2683
+ "model": {
2684
+ "type": "string"
2685
+ },
2686
+ "variant": {
2687
+ "type": "string"
2688
+ }
2689
+ },
2690
+ "additionalProperties": false
2691
+ },
2692
+ "compaction": {
2693
+ "type": "object",
2694
+ "properties": {
2695
+ "model": {
2696
+ "type": "string"
2697
+ },
2698
+ "variant": {
2699
+ "type": "string"
2700
+ }
2701
+ },
2702
+ "additionalProperties": false
2703
+ }
2704
+ },
2705
+ "additionalProperties": false
2706
+ },
2707
+ "atlas": {
2708
+ "type": "object",
2709
+ "properties": {
2710
+ "model": {
2711
+ "type": "string"
2712
+ },
2713
+ "fallback_models": {
2714
+ "anyOf": [
2715
+ {
2716
+ "type": "string"
2717
+ },
2718
+ {
2719
+ "type": "array",
2720
+ "items": {
2721
+ "type": "string"
2722
+ }
2723
+ }
2724
+ ]
2725
+ },
2726
+ "variant": {
2727
+ "type": "string"
2728
+ },
2729
+ "category": {
2730
+ "type": "string"
2731
+ },
2732
+ "skills": {
2733
+ "type": "array",
2734
+ "items": {
2735
+ "type": "string"
2736
+ }
2737
+ },
2738
+ "temperature": {
2739
+ "type": "number",
2740
+ "minimum": 0,
2741
+ "maximum": 2
2742
+ },
2743
+ "top_p": {
2744
+ "type": "number",
2745
+ "minimum": 0,
2746
+ "maximum": 1
2747
+ },
2748
+ "prompt": {
2749
+ "type": "string"
2750
+ },
2751
+ "prompt_append": {
2752
+ "type": "string"
2753
+ },
2754
+ "tools": {
2755
+ "type": "object",
2756
+ "propertyNames": {
2757
+ "type": "string"
2758
+ },
2759
+ "additionalProperties": {
2760
+ "type": "boolean"
2761
+ }
2762
+ },
2763
+ "disable": {
2764
+ "type": "boolean"
2765
+ },
2766
+ "description": {
2767
+ "type": "string"
2768
+ },
2769
+ "mode": {
2770
+ "type": "string",
2771
+ "enum": [
2772
+ "subagent",
2773
+ "primary",
2774
+ "all"
2775
+ ]
2776
+ },
2777
+ "color": {
2778
+ "type": "string",
2779
+ "pattern": "^#[0-9A-Fa-f]{6}$"
2780
+ },
2781
+ "permission": {
2782
+ "type": "object",
2783
+ "properties": {
2784
+ "edit": {
2785
+ "type": "string",
2786
+ "enum": [
2787
+ "ask",
2788
+ "allow",
2789
+ "deny"
2790
+ ]
2791
+ },
2792
+ "bash": {
2793
+ "anyOf": [
2794
+ {
2795
+ "type": "string",
2796
+ "enum": [
2797
+ "ask",
2798
+ "allow",
2799
+ "deny"
2800
+ ]
2801
+ },
2802
+ {
2803
+ "type": "object",
2804
+ "propertyNames": {
2805
+ "type": "string"
2806
+ },
2807
+ "additionalProperties": {
2808
+ "type": "string",
2809
+ "enum": [
2810
+ "ask",
2811
+ "allow",
2812
+ "deny"
2813
+ ]
2814
+ }
2815
+ }
2816
+ ]
2817
+ },
2818
+ "webfetch": {
2819
+ "type": "string",
2820
+ "enum": [
2821
+ "ask",
2822
+ "allow",
2823
+ "deny"
2824
+ ]
2825
+ },
2826
+ "task": {
2827
+ "type": "string",
2828
+ "enum": [
2829
+ "ask",
2830
+ "allow",
2831
+ "deny"
2832
+ ]
2833
+ },
2834
+ "doom_loop": {
2835
+ "type": "string",
2836
+ "enum": [
2837
+ "ask",
2838
+ "allow",
2839
+ "deny"
2840
+ ]
2841
+ },
2842
+ "external_directory": {
2843
+ "type": "string",
2844
+ "enum": [
2845
+ "ask",
2846
+ "allow",
2847
+ "deny"
2848
+ ]
2849
+ }
2850
+ },
2851
+ "additionalProperties": false
2852
+ },
2853
+ "maxTokens": {
2854
+ "type": "number"
2855
+ },
2856
+ "thinking": {
2857
+ "type": "object",
2858
+ "properties": {
2859
+ "type": {
2860
+ "type": "string",
2861
+ "enum": [
2862
+ "enabled",
2863
+ "disabled"
2864
+ ]
2865
+ },
2866
+ "budgetTokens": {
2867
+ "type": "number"
2868
+ }
2869
+ },
2870
+ "required": [
2871
+ "type"
2872
+ ],
2873
+ "additionalProperties": false
2874
+ },
2875
+ "reasoningEffort": {
2876
+ "type": "string",
2877
+ "enum": [
2878
+ "low",
2879
+ "medium",
2880
+ "high",
2881
+ "xhigh"
2882
+ ]
2883
+ },
2884
+ "textVerbosity": {
2885
+ "type": "string",
2886
+ "enum": [
2887
+ "low",
2888
+ "medium",
2889
+ "high"
2890
+ ]
2891
+ },
2892
+ "providerOptions": {
2893
+ "type": "object",
2894
+ "propertyNames": {
2895
+ "type": "string"
2896
+ },
2897
+ "additionalProperties": {}
2898
+ },
2899
+ "ultrawork": {
2900
+ "type": "object",
2901
+ "properties": {
2902
+ "model": {
2903
+ "type": "string"
2904
+ },
2905
+ "variant": {
2906
+ "type": "string"
2907
+ }
2908
+ },
2909
+ "additionalProperties": false
2910
+ },
2911
+ "compaction": {
2912
+ "type": "object",
2913
+ "properties": {
2914
+ "model": {
2915
+ "type": "string"
2916
+ },
2917
+ "variant": {
2918
+ "type": "string"
2919
+ }
2920
+ },
2921
+ "additionalProperties": false
2922
+ }
2923
+ },
2924
+ "additionalProperties": false
2925
+ }
2926
+ },
2927
+ "additionalProperties": false
2928
+ },
2929
+ "categories": {
2930
+ "type": "object",
2931
+ "propertyNames": {
2932
+ "type": "string"
2933
+ },
2934
+ "additionalProperties": {
2935
+ "type": "object",
2936
+ "properties": {
2937
+ "description": {
2938
+ "type": "string"
2939
+ },
2940
+ "model": {
2941
+ "type": "string"
2942
+ },
2943
+ "fallback_models": {
2944
+ "anyOf": [
2945
+ {
2946
+ "type": "string"
2947
+ },
2948
+ {
2949
+ "type": "array",
2950
+ "items": {
2951
+ "type": "string"
2952
+ }
2953
+ }
2954
+ ]
2955
+ },
2956
+ "variant": {
2957
+ "type": "string"
2958
+ },
2959
+ "temperature": {
2960
+ "type": "number",
2961
+ "minimum": 0,
2962
+ "maximum": 2
2963
+ },
2964
+ "top_p": {
2965
+ "type": "number",
2966
+ "minimum": 0,
2967
+ "maximum": 1
2968
+ },
2969
+ "maxTokens": {
2970
+ "type": "number"
2971
+ },
2972
+ "thinking": {
2973
+ "type": "object",
2974
+ "properties": {
2975
+ "type": {
2976
+ "type": "string",
2977
+ "enum": [
2978
+ "enabled",
2979
+ "disabled"
2980
+ ]
2981
+ },
2982
+ "budgetTokens": {
2983
+ "type": "number"
2984
+ }
2985
+ },
2986
+ "required": [
2987
+ "type"
2988
+ ],
2989
+ "additionalProperties": false
2990
+ },
2991
+ "reasoningEffort": {
2992
+ "type": "string",
2993
+ "enum": [
2994
+ "low",
2995
+ "medium",
2996
+ "high",
2997
+ "xhigh"
2998
+ ]
2999
+ },
3000
+ "textVerbosity": {
3001
+ "type": "string",
3002
+ "enum": [
3003
+ "low",
3004
+ "medium",
3005
+ "high"
3006
+ ]
3007
+ },
3008
+ "tools": {
3009
+ "type": "object",
3010
+ "propertyNames": {
3011
+ "type": "string"
3012
+ },
3013
+ "additionalProperties": {
3014
+ "type": "boolean"
3015
+ }
3016
+ },
3017
+ "prompt_append": {
3018
+ "type": "string"
3019
+ },
3020
+ "max_prompt_tokens": {
3021
+ "type": "integer",
3022
+ "exclusiveMinimum": 0,
3023
+ "maximum": 9007199254740991
3024
+ },
3025
+ "is_unstable_agent": {
3026
+ "type": "boolean"
3027
+ },
3028
+ "disable": {
3029
+ "type": "boolean"
3030
+ }
3031
+ },
3032
+ "additionalProperties": false
3033
+ }
3034
+ },
3035
+ "claude_code": {
3036
+ "type": "object",
3037
+ "properties": {
3038
+ "mcp": {
3039
+ "type": "boolean"
3040
+ },
3041
+ "commands": {
3042
+ "type": "boolean"
3043
+ },
3044
+ "skills": {
3045
+ "type": "boolean"
3046
+ },
3047
+ "agents": {
3048
+ "type": "boolean"
3049
+ },
3050
+ "hooks": {
3051
+ "type": "boolean"
3052
+ },
3053
+ "plugins": {
3054
+ "type": "boolean"
3055
+ },
3056
+ "plugins_override": {
3057
+ "type": "object",
3058
+ "propertyNames": {
3059
+ "type": "string"
3060
+ },
3061
+ "additionalProperties": {
3062
+ "type": "boolean"
3063
+ }
3064
+ }
3065
+ },
3066
+ "additionalProperties": false
3067
+ },
3068
+ "sisyphus_agent": {
3069
+ "type": "object",
3070
+ "properties": {
3071
+ "disabled": {
3072
+ "type": "boolean"
3073
+ },
3074
+ "default_builder_enabled": {
3075
+ "type": "boolean"
3076
+ },
3077
+ "planner_enabled": {
3078
+ "type": "boolean"
3079
+ },
3080
+ "replace_plan": {
3081
+ "type": "boolean"
3082
+ }
3083
+ },
3084
+ "additionalProperties": false
3085
+ },
3086
+ "comment_checker": {
3087
+ "type": "object",
3088
+ "properties": {
3089
+ "custom_prompt": {
3090
+ "type": "string"
3091
+ }
3092
+ },
3093
+ "additionalProperties": false
3094
+ },
3095
+ "experimental": {
3096
+ "type": "object",
3097
+ "properties": {
3098
+ "aggressive_truncation": {
3099
+ "type": "boolean"
3100
+ },
3101
+ "auto_resume": {
3102
+ "type": "boolean"
3103
+ },
3104
+ "preemptive_compaction": {
3105
+ "type": "boolean"
3106
+ },
3107
+ "truncate_all_tool_outputs": {
3108
+ "type": "boolean"
3109
+ },
3110
+ "dynamic_context_pruning": {
3111
+ "type": "object",
3112
+ "properties": {
3113
+ "enabled": {
3114
+ "default": false,
3115
+ "type": "boolean"
3116
+ },
3117
+ "notification": {
3118
+ "default": "detailed",
3119
+ "type": "string",
3120
+ "enum": [
3121
+ "off",
3122
+ "minimal",
3123
+ "detailed"
3124
+ ]
3125
+ },
3126
+ "turn_protection": {
3127
+ "type": "object",
3128
+ "properties": {
3129
+ "enabled": {
3130
+ "default": true,
3131
+ "type": "boolean"
3132
+ },
3133
+ "turns": {
3134
+ "default": 3,
3135
+ "type": "number",
3136
+ "minimum": 1,
3137
+ "maximum": 10
3138
+ }
3139
+ },
3140
+ "required": [
3141
+ "enabled",
3142
+ "turns"
3143
+ ],
3144
+ "additionalProperties": false
3145
+ },
3146
+ "protected_tools": {
3147
+ "default": [
3148
+ "task",
3149
+ "todowrite",
3150
+ "todoread",
3151
+ "lsp_rename",
3152
+ "session_read",
3153
+ "session_write",
3154
+ "session_search"
3155
+ ],
3156
+ "type": "array",
3157
+ "items": {
3158
+ "type": "string"
3159
+ }
3160
+ },
3161
+ "strategies": {
3162
+ "type": "object",
3163
+ "properties": {
3164
+ "deduplication": {
3165
+ "type": "object",
3166
+ "properties": {
3167
+ "enabled": {
3168
+ "default": true,
3169
+ "type": "boolean"
3170
+ }
3171
+ },
3172
+ "required": [
3173
+ "enabled"
3174
+ ],
3175
+ "additionalProperties": false
3176
+ },
3177
+ "supersede_writes": {
3178
+ "type": "object",
3179
+ "properties": {
3180
+ "enabled": {
3181
+ "default": true,
3182
+ "type": "boolean"
3183
+ },
3184
+ "aggressive": {
3185
+ "default": false,
3186
+ "type": "boolean"
3187
+ }
3188
+ },
3189
+ "required": [
3190
+ "enabled",
3191
+ "aggressive"
3192
+ ],
3193
+ "additionalProperties": false
3194
+ },
3195
+ "purge_errors": {
3196
+ "type": "object",
3197
+ "properties": {
3198
+ "enabled": {
3199
+ "default": true,
3200
+ "type": "boolean"
3201
+ },
3202
+ "turns": {
3203
+ "default": 5,
3204
+ "type": "number",
3205
+ "minimum": 1,
3206
+ "maximum": 20
3207
+ }
3208
+ },
3209
+ "required": [
3210
+ "enabled",
3211
+ "turns"
3212
+ ],
3213
+ "additionalProperties": false
3214
+ }
3215
+ },
3216
+ "additionalProperties": false
3217
+ }
3218
+ },
3219
+ "required": [
3220
+ "enabled",
3221
+ "notification",
3222
+ "protected_tools"
3223
+ ],
3224
+ "additionalProperties": false
3225
+ },
3226
+ "task_system": {
3227
+ "type": "boolean"
3228
+ },
3229
+ "plugin_load_timeout_ms": {
3230
+ "type": "number",
3231
+ "minimum": 1000
3232
+ },
3233
+ "safe_hook_creation": {
3234
+ "type": "boolean"
3235
+ },
3236
+ "disable_omo_env": {
3237
+ "type": "boolean"
3238
+ },
3239
+ "hashline_edit": {
3240
+ "type": "boolean"
3241
+ },
3242
+ "model_fallback_title": {
3243
+ "type": "boolean"
3244
+ }
3245
+ },
3246
+ "additionalProperties": false
3247
+ },
3248
+ "auto_update": {
3249
+ "type": "boolean"
3250
+ },
3251
+ "skills": {
3252
+ "anyOf": [
3253
+ {
3254
+ "type": "array",
3255
+ "items": {
3256
+ "type": "string"
3257
+ }
3258
+ },
3259
+ {
3260
+ "type": "object",
3261
+ "properties": {
3262
+ "sources": {
3263
+ "type": "array",
3264
+ "items": {
3265
+ "anyOf": [
3266
+ {
3267
+ "type": "string"
3268
+ },
3269
+ {
3270
+ "type": "object",
3271
+ "properties": {
3272
+ "path": {
3273
+ "type": "string"
3274
+ },
3275
+ "recursive": {
3276
+ "type": "boolean"
3277
+ },
3278
+ "glob": {
3279
+ "type": "string"
3280
+ }
3281
+ },
3282
+ "required": [
3283
+ "path"
3284
+ ],
3285
+ "additionalProperties": false
3286
+ }
3287
+ ]
3288
+ }
3289
+ },
3290
+ "enable": {
3291
+ "type": "array",
3292
+ "items": {
3293
+ "type": "string"
3294
+ }
3295
+ },
3296
+ "disable": {
3297
+ "type": "array",
3298
+ "items": {
3299
+ "type": "string"
3300
+ }
3301
+ }
3302
+ },
3303
+ "additionalProperties": {
3304
+ "anyOf": [
3305
+ {
3306
+ "type": "boolean"
3307
+ },
3308
+ {
3309
+ "type": "object",
3310
+ "properties": {
3311
+ "description": {
3312
+ "type": "string"
3313
+ },
3314
+ "template": {
3315
+ "type": "string"
3316
+ },
3317
+ "from": {
3318
+ "type": "string"
3319
+ },
3320
+ "model": {
3321
+ "type": "string"
3322
+ },
3323
+ "agent": {
3324
+ "type": "string"
3325
+ },
3326
+ "subtask": {
3327
+ "type": "boolean"
3328
+ },
3329
+ "argument-hint": {
3330
+ "type": "string"
3331
+ },
3332
+ "license": {
3333
+ "type": "string"
3334
+ },
3335
+ "compatibility": {
3336
+ "type": "string"
3337
+ },
3338
+ "metadata": {
3339
+ "type": "object",
3340
+ "propertyNames": {
3341
+ "type": "string"
3342
+ },
3343
+ "additionalProperties": {}
3344
+ },
3345
+ "allowed-tools": {
3346
+ "type": "array",
3347
+ "items": {
3348
+ "type": "string"
3349
+ }
3350
+ },
3351
+ "disable": {
3352
+ "type": "boolean"
3353
+ }
3354
+ },
3355
+ "additionalProperties": false
3356
+ }
3357
+ ]
3358
+ }
3359
+ }
3360
+ ]
3361
+ },
3362
+ "ralph_loop": {
3363
+ "type": "object",
3364
+ "properties": {
3365
+ "enabled": {
3366
+ "default": false,
3367
+ "type": "boolean"
3368
+ },
3369
+ "default_max_iterations": {
3370
+ "default": 100,
3371
+ "type": "number",
3372
+ "minimum": 1,
3373
+ "maximum": 1000
3374
+ },
3375
+ "state_dir": {
3376
+ "type": "string"
3377
+ },
3378
+ "default_strategy": {
3379
+ "default": "continue",
3380
+ "type": "string",
3381
+ "enum": [
3382
+ "reset",
3383
+ "continue"
3384
+ ]
3385
+ }
3386
+ },
3387
+ "required": [
3388
+ "enabled",
3389
+ "default_max_iterations",
3390
+ "default_strategy"
3391
+ ],
3392
+ "additionalProperties": false
3393
+ },
3394
+ "runtime_fallback": {
3395
+ "anyOf": [
3396
+ {
3397
+ "type": "boolean"
3398
+ },
3399
+ {
3400
+ "type": "object",
3401
+ "properties": {
3402
+ "enabled": {
3403
+ "type": "boolean"
3404
+ },
3405
+ "retry_on_errors": {
3406
+ "type": "array",
3407
+ "items": {
3408
+ "type": "number"
3409
+ }
3410
+ },
3411
+ "max_fallback_attempts": {
3412
+ "type": "number",
3413
+ "minimum": 1,
3414
+ "maximum": 20
3415
+ },
3416
+ "cooldown_seconds": {
3417
+ "type": "number",
3418
+ "minimum": 0
3419
+ },
3420
+ "timeout_seconds": {
3421
+ "type": "number",
3422
+ "minimum": 0
3423
+ },
3424
+ "notify_on_fallback": {
3425
+ "type": "boolean"
3426
+ }
3427
+ },
3428
+ "additionalProperties": false
3429
+ }
3430
+ ]
3431
+ },
3432
+ "background_task": {
3433
+ "type": "object",
3434
+ "properties": {
3435
+ "defaultConcurrency": {
3436
+ "type": "number",
3437
+ "minimum": 1
3438
+ },
3439
+ "providerConcurrency": {
3440
+ "type": "object",
3441
+ "propertyNames": {
3442
+ "type": "string"
3443
+ },
3444
+ "additionalProperties": {
3445
+ "type": "number",
3446
+ "minimum": 0
3447
+ }
3448
+ },
3449
+ "modelConcurrency": {
3450
+ "type": "object",
3451
+ "propertyNames": {
3452
+ "type": "string"
3453
+ },
3454
+ "additionalProperties": {
3455
+ "type": "number",
3456
+ "minimum": 0
3457
+ }
3458
+ },
3459
+ "staleTimeoutMs": {
3460
+ "type": "number",
3461
+ "minimum": 60000
3462
+ },
3463
+ "messageStalenessTimeoutMs": {
3464
+ "type": "number",
3465
+ "minimum": 60000
3466
+ },
3467
+ "syncPollTimeoutMs": {
3468
+ "type": "number",
3469
+ "minimum": 60000
3470
+ }
3471
+ },
3472
+ "additionalProperties": false
3473
+ },
3474
+ "notification": {
3475
+ "type": "object",
3476
+ "properties": {
3477
+ "force_enable": {
3478
+ "type": "boolean"
3479
+ }
3480
+ },
3481
+ "additionalProperties": false
3482
+ },
3483
+ "babysitting": {
3484
+ "type": "object",
3485
+ "properties": {
3486
+ "timeout_ms": {
3487
+ "default": 120000,
3488
+ "type": "number"
3489
+ }
3490
+ },
3491
+ "required": [
3492
+ "timeout_ms"
3493
+ ],
3494
+ "additionalProperties": false
3495
+ },
3496
+ "git_master": {
3497
+ "type": "object",
3498
+ "properties": {
3499
+ "commit_footer": {
3500
+ "default": true,
3501
+ "anyOf": [
3502
+ {
3503
+ "type": "boolean"
3504
+ },
3505
+ {
3506
+ "type": "string"
3507
+ }
3508
+ ]
3509
+ },
3510
+ "include_co_authored_by": {
3511
+ "default": true,
3512
+ "type": "boolean"
3513
+ }
3514
+ },
3515
+ "required": [
3516
+ "commit_footer",
3517
+ "include_co_authored_by"
3518
+ ],
3519
+ "additionalProperties": false
3520
+ },
3521
+ "browser_automation_engine": {
3522
+ "type": "object",
3523
+ "properties": {
3524
+ "provider": {
3525
+ "default": "playwright",
3526
+ "type": "string",
3527
+ "enum": [
3528
+ "playwright",
3529
+ "agent-browser",
3530
+ "dev-browser",
3531
+ "playwright-cli"
3532
+ ]
3533
+ }
3534
+ },
3535
+ "required": [
3536
+ "provider"
3537
+ ],
3538
+ "additionalProperties": false
3539
+ },
3540
+ "websearch": {
3541
+ "type": "object",
3542
+ "properties": {
3543
+ "provider": {
3544
+ "type": "string",
3545
+ "enum": [
3546
+ "exa",
3547
+ "tavily"
3548
+ ]
3549
+ }
3550
+ },
3551
+ "additionalProperties": false
3552
+ },
3553
+ "tmux": {
3554
+ "type": "object",
3555
+ "properties": {
3556
+ "enabled": {
3557
+ "default": false,
3558
+ "type": "boolean"
3559
+ },
3560
+ "layout": {
3561
+ "default": "main-vertical",
3562
+ "type": "string",
3563
+ "enum": [
3564
+ "main-horizontal",
3565
+ "main-vertical",
3566
+ "tiled",
3567
+ "even-horizontal",
3568
+ "even-vertical"
3569
+ ]
3570
+ },
3571
+ "main_pane_size": {
3572
+ "default": 60,
3573
+ "type": "number",
3574
+ "minimum": 20,
3575
+ "maximum": 80
3576
+ },
3577
+ "main_pane_min_width": {
3578
+ "default": 120,
3579
+ "type": "number",
3580
+ "minimum": 40
3581
+ },
3582
+ "agent_pane_min_width": {
3583
+ "default": 40,
3584
+ "type": "number",
3585
+ "minimum": 20
3586
+ }
3587
+ },
3588
+ "required": [
3589
+ "enabled",
3590
+ "layout",
3591
+ "main_pane_size",
3592
+ "main_pane_min_width",
3593
+ "agent_pane_min_width"
3594
+ ],
3595
+ "additionalProperties": false
3596
+ },
3597
+ "sisyphus": {
3598
+ "type": "object",
3599
+ "properties": {
3600
+ "tasks": {
3601
+ "type": "object",
3602
+ "properties": {
3603
+ "storage_path": {
3604
+ "type": "string"
3605
+ },
3606
+ "task_list_id": {
3607
+ "type": "string"
3608
+ },
3609
+ "claude_code_compat": {
3610
+ "default": false,
3611
+ "type": "boolean"
3612
+ }
3613
+ },
3614
+ "required": [
3615
+ "claude_code_compat"
3616
+ ],
3617
+ "additionalProperties": false
3618
+ }
3619
+ },
3620
+ "additionalProperties": false
3621
+ },
3622
+ "start_work": {
3623
+ "type": "object",
3624
+ "properties": {
3625
+ "auto_commit": {
3626
+ "default": true,
3627
+ "type": "boolean"
3628
+ }
3629
+ },
3630
+ "required": [
3631
+ "auto_commit"
3632
+ ],
3633
+ "additionalProperties": false
3634
+ },
3635
+ "_migrations": {
3636
+ "type": "array",
3637
+ "items": {
3638
+ "type": "string"
3639
+ }
3640
+ }
3641
+ },
3642
+ "additionalProperties": false
3643
+ }