@skj1724/oh-my-opencode 3.11.8 → 3.17.5

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 (371) hide show
  1. package/README.ja.md +8 -4
  2. package/README.ko.md +8 -4
  3. package/README.md +20 -10
  4. package/README.ru.md +8 -4
  5. package/README.zh-cn.md +8 -4
  6. package/bin/oh-my-opencode.js +11 -0
  7. package/bin/platform.js +13 -13
  8. package/bin/platform.test.ts +15 -0
  9. package/dist/agents/atlas/agent.d.ts +1 -1
  10. package/dist/agents/atlas/default-prompt-sections.d.ts +6 -0
  11. package/dist/agents/atlas/default.d.ts +0 -9
  12. package/dist/agents/atlas/gemini-prompt-sections.d.ts +6 -0
  13. package/dist/agents/atlas/gpt-prompt-sections.d.ts +6 -0
  14. package/dist/agents/atlas/gpt.d.ts +0 -9
  15. package/dist/agents/atlas/prompt-section-builder.d.ts +2 -3
  16. package/dist/agents/atlas/shared-prompt.d.ts +9 -0
  17. package/dist/agents/dynamic-agent-category-skills-guide.d.ts +2 -0
  18. package/dist/agents/dynamic-agent-core-sections.d.ts +17 -0
  19. package/dist/agents/dynamic-agent-policy-sections.d.ts +6 -0
  20. package/dist/agents/dynamic-agent-prompt-builder.d.ts +5 -35
  21. package/dist/agents/dynamic-agent-prompt-types.d.ts +20 -0
  22. package/dist/agents/dynamic-agent-tool-categorization.d.ts +3 -0
  23. package/dist/agents/gpt-apply-patch-guard.d.ts +2 -0
  24. package/dist/agents/hephaestus/agent.d.ts +1 -1
  25. package/dist/agents/hephaestus/gpt-5-3-codex.d.ts +10 -11
  26. package/dist/agents/hephaestus/gpt-5-4.d.ts +22 -1
  27. package/dist/agents/hephaestus/gpt.d.ts +1 -1
  28. package/dist/agents/metis.d.ts +6 -6
  29. package/dist/agents/momus.d.ts +8 -11
  30. package/dist/agents/prometheus/behavioral-summary.d.ts +3 -3
  31. package/dist/agents/prometheus/gemini.d.ts +7 -7
  32. package/dist/agents/prometheus/gpt.d.ts +6 -6
  33. package/dist/agents/prometheus/identity-constraints.d.ts +2 -2
  34. package/dist/agents/prometheus/plan-generation.d.ts +2 -2
  35. package/dist/agents/prometheus/plan-template.d.ts +4 -4
  36. package/dist/agents/sisyphus/gemini.d.ts +10 -10
  37. package/dist/agents/sisyphus/gpt-5-4.d.ts +17 -17
  38. package/dist/agents/sisyphus/index.d.ts +1 -1
  39. package/dist/agents/sisyphus-junior/gemini.d.ts +6 -6
  40. package/dist/agents/sisyphus-junior/gpt-5-3-codex.d.ts +4 -4
  41. package/dist/agents/sisyphus-junior/gpt-5-4.d.ts +7 -7
  42. package/dist/agents/sisyphus-junior/gpt.d.ts +5 -5
  43. package/dist/agents/sisyphus.d.ts +1 -1
  44. package/dist/agents/types.d.ts +1 -0
  45. package/dist/cli/config-manager/backup-config.d.ts +6 -0
  46. package/dist/cli/config-manager/version-compatibility.d.ts +9 -0
  47. package/dist/cli/config-manager.d.ts +4 -0
  48. package/dist/cli/doctor/checks/system.d.ts +15 -2
  49. package/dist/cli/doctor/constants.d.ts +1 -1
  50. package/dist/cli/doctor/spawn-with-timeout.d.ts +8 -0
  51. package/dist/cli/index.js +27570 -18945
  52. package/dist/cli/install-validators.d.ts +1 -0
  53. package/dist/cli/mcp-oauth/login.d.ts +6 -1
  54. package/dist/cli/minimum-opencode-version.d.ts +1 -0
  55. package/dist/cli/model-fallback-types.d.ts +4 -0
  56. package/dist/cli/provider-model-id-transform.d.ts +1 -1
  57. package/dist/cli/run/continuation-state.d.ts +2 -1
  58. package/dist/cli/run/event-state.d.ts +0 -2
  59. package/dist/cli/run/types.d.ts +0 -1
  60. package/dist/cli/types.d.ts +4 -0
  61. package/dist/config/schema/agent-definitions.d.ts +3 -0
  62. package/dist/config/schema/agent-names.d.ts +2 -0
  63. package/dist/config/schema/agent-overrides.d.ts +330 -15
  64. package/dist/config/schema/background-task.d.ts +2 -1
  65. package/dist/config/schema/categories.d.ts +44 -2
  66. package/dist/config/schema/commands.d.ts +1 -0
  67. package/dist/config/schema/experimental.d.ts +1 -0
  68. package/dist/config/schema/fallback-models.d.ts +67 -1
  69. package/dist/config/schema/hooks.d.ts +3 -0
  70. package/dist/config/schema/oh-my-opencode-config.d.ts +345 -17
  71. package/dist/config/schema/sisyphus-agent.d.ts +1 -0
  72. package/dist/config/schema/tmux.d.ts +11 -0
  73. package/dist/create-hooks.d.ts +8 -0
  74. package/dist/create-managers.d.ts +16 -0
  75. package/dist/create-runtime-tmux-config.d.ts +10 -0
  76. package/dist/create-tools.d.ts +3 -2
  77. package/dist/features/background-agent/abort-with-timeout.d.ts +2 -0
  78. package/dist/features/background-agent/background-task-notification-template.d.ts +10 -4
  79. package/dist/features/background-agent/compaction-aware-message-resolver.d.ts +5 -2
  80. package/dist/features/background-agent/constants.d.ts +1 -0
  81. package/dist/features/background-agent/fallback-retry-handler.d.ts +1 -1
  82. package/dist/features/background-agent/index.d.ts +2 -0
  83. package/dist/features/background-agent/manager.d.ts +10 -0
  84. package/dist/features/background-agent/process-cleanup.d.ts +1 -1
  85. package/dist/features/background-agent/session-existence.d.ts +3 -0
  86. package/dist/features/background-agent/spawner.d.ts +3 -0
  87. package/dist/features/background-agent/subagent-spawn-limits.d.ts +1 -8
  88. package/dist/features/background-agent/task-poller.d.ts +2 -0
  89. package/dist/features/background-agent/types.d.ts +2 -0
  90. package/dist/features/background-agent/wait-for-task-session.d.ts +17 -0
  91. package/dist/features/boulder-state/storage.d.ts +8 -1
  92. package/dist/features/boulder-state/types.d.ts +1 -0
  93. package/dist/features/builtin-commands/commands.d.ts +5 -1
  94. package/dist/features/builtin-commands/templates/handoff.d.ts +1 -1
  95. package/dist/features/builtin-commands/templates/init-deep.d.ts +1 -1
  96. package/dist/features/builtin-commands/templates/ralph-loop.d.ts +3 -3
  97. package/dist/features/builtin-commands/templates/remove-ai-slops.d.ts +1 -0
  98. package/dist/features/builtin-commands/templates/start-work.d.ts +1 -1
  99. package/dist/features/builtin-commands/types.d.ts +1 -1
  100. package/dist/features/builtin-skills/skills/ai-slop-remover.d.ts +2 -0
  101. package/dist/features/builtin-skills/skills/git-master-sections/commit-workflow.d.ts +1 -0
  102. package/dist/features/builtin-skills/skills/git-master-sections/history-search-workflow.d.ts +1 -0
  103. package/dist/features/builtin-skills/skills/git-master-sections/overview.d.ts +1 -0
  104. package/dist/features/builtin-skills/skills/git-master-sections/quick-reference.d.ts +1 -0
  105. package/dist/features/builtin-skills/skills/git-master-sections/rebase-workflow.d.ts +1 -0
  106. package/dist/features/builtin-skills/skills/index.d.ts +2 -0
  107. package/dist/features/builtin-skills/skills/playwright-cli.d.ts +5 -5
  108. package/dist/features/builtin-skills/skills/review-work.d.ts +2 -0
  109. package/dist/features/claude-code-agent-loader/agent-definitions-loader.d.ts +3 -0
  110. package/dist/features/claude-code-agent-loader/index.d.ts +3 -0
  111. package/dist/features/claude-code-agent-loader/json-agent-loader.d.ts +2 -0
  112. package/dist/features/claude-code-agent-loader/loader.d.ts +2 -0
  113. package/dist/features/claude-code-agent-loader/opencode-config-agents-reader.d.ts +2 -0
  114. package/dist/features/claude-code-agent-loader/types.d.ts +9 -1
  115. package/dist/features/claude-code-mcp-loader/configure-allowed-env-vars.d.ts +5 -0
  116. package/dist/features/claude-code-mcp-loader/env-expander.d.ts +5 -2
  117. package/dist/features/claude-code-mcp-loader/index.d.ts +1 -0
  118. package/dist/features/claude-code-mcp-loader/scope-filter.d.ts +2 -0
  119. package/dist/features/claude-code-mcp-loader/types.d.ts +8 -4
  120. package/dist/features/claude-code-plugin-loader/discovery.d.ts +2 -1
  121. package/dist/features/claude-code-plugin-loader/loader.d.ts +16 -0
  122. package/dist/features/claude-code-plugin-loader/scope-filter.d.ts +2 -0
  123. package/dist/features/claude-code-plugin-loader/types.d.ts +21 -0
  124. package/dist/features/claude-code-session-state/state.d.ts +3 -0
  125. package/dist/features/context-injector/collector.d.ts +1 -0
  126. package/dist/features/mcp-oauth/provider.d.ts +1 -0
  127. package/dist/features/mcp-oauth/refresh-mutex.d.ts +26 -0
  128. package/dist/features/opencode-skill-loader/async-loader.d.ts +2 -2
  129. package/dist/features/skill-mcp-manager/connection.d.ts +3 -4
  130. package/dist/features/skill-mcp-manager/error-redaction.d.ts +10 -0
  131. package/dist/features/skill-mcp-manager/http-client.d.ts +17 -3
  132. package/dist/features/skill-mcp-manager/manager.d.ts +5 -3
  133. package/dist/features/skill-mcp-manager/oauth-handler.d.ts +12 -4
  134. package/dist/features/skill-mcp-manager/stdio-client.d.ts +16 -3
  135. package/dist/features/skill-mcp-manager/types.d.ts +25 -6
  136. package/dist/features/team-mode/index.d.ts +2 -0
  137. package/dist/features/team-mode/team-worktree/cleanup.d.ts +3 -0
  138. package/dist/features/team-mode/team-worktree/index.d.ts +2 -0
  139. package/dist/features/team-mode/team-worktree/manager.d.ts +15 -0
  140. package/dist/features/team-mode/types.d.ts +210 -0
  141. package/dist/features/tmux-subagent/manager.d.ts +16 -13
  142. package/dist/features/tmux-subagent/polling-manager.d.ts +5 -0
  143. package/dist/features/tmux-subagent/types.d.ts +2 -0
  144. package/dist/features/tool-metadata-store/index.d.ts +7 -0
  145. package/dist/features/tool-metadata-store/publish-tool-metadata.d.ts +9 -0
  146. package/dist/features/tool-metadata-store/recover-tool-metadata.d.ts +3 -0
  147. package/dist/features/tool-metadata-store/resolve-tool-call-id.d.ts +6 -0
  148. package/dist/features/tool-metadata-store/task-metadata-contract.d.ts +10 -0
  149. package/dist/hooks/agent-usage-reminder/constants.d.ts +1 -1
  150. package/dist/hooks/anthropic-context-window-limit-recovery/message-builder.d.ts +4 -1
  151. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-hook.d.ts +10 -0
  152. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-hook.test-support.d.ts +29 -0
  153. package/dist/hooks/anthropic-context-window-limit-recovery/session-timeout-map.d.ts +2 -0
  154. package/dist/hooks/anthropic-context-window-limit-recovery/state.d.ts +2 -0
  155. package/dist/hooks/anthropic-context-window-limit-recovery/types.d.ts +1 -0
  156. package/dist/hooks/atlas/background-launch-session-tracking.d.ts +11 -0
  157. package/dist/hooks/atlas/boulder-continuation-injector.d.ts +2 -1
  158. package/dist/hooks/atlas/session-last-agent.d.ts +10 -1
  159. package/dist/hooks/atlas/subagent-session-id.d.ts +1 -0
  160. package/dist/hooks/atlas/system-reminder-templates.d.ts +2 -2
  161. package/dist/hooks/atlas/task-context.d.ts +7 -0
  162. package/dist/hooks/atlas/types.d.ts +2 -0
  163. package/dist/hooks/auto-slash-command/executor.d.ts +1 -0
  164. package/dist/hooks/auto-slash-command/hook.d.ts +1 -0
  165. package/dist/hooks/auto-update-checker/checker/sync-package-json.d.ts +1 -1
  166. package/dist/hooks/auto-update-checker/constants.d.ts +19 -3
  167. package/dist/hooks/auto-update-checker/hook/background-update-check.d.ts +29 -1
  168. package/dist/hooks/auto-update-checker/hook.d.ts +22 -1
  169. package/dist/hooks/bash-file-read-guard.d.ts +2 -0
  170. package/dist/hooks/claude-code-hooks/claude-code-hooks-hook.d.ts +1 -0
  171. package/dist/hooks/claude-code-hooks/config-loader.d.ts +1 -0
  172. package/dist/hooks/claude-code-hooks/config.d.ts +1 -0
  173. package/dist/hooks/claude-code-hooks/handlers/session-event-handler.d.ts +3 -1
  174. package/dist/hooks/claude-code-hooks/session-hook-state.d.ts +1 -0
  175. package/dist/hooks/claude-code-hooks/tool-input-cache.d.ts +2 -0
  176. package/dist/hooks/claude-code-hooks/transcript.d.ts +1 -3
  177. package/dist/hooks/comment-checker/cli-runner.d.ts +4 -1
  178. package/dist/hooks/comment-checker/hook.d.ts +1 -0
  179. package/dist/hooks/comment-checker/pending-calls.d.ts +1 -0
  180. package/dist/hooks/directory-agents-injector/hook.d.ts +7 -7
  181. package/dist/hooks/directory-readme-injector/hook.d.ts +7 -7
  182. package/dist/hooks/edit-error-recovery/hook.d.ts +1 -1
  183. package/dist/hooks/index.d.ts +4 -1
  184. package/dist/hooks/json-error-recovery/hook.d.ts +1 -1
  185. package/dist/hooks/keyword-detector/hook.d.ts +2 -1
  186. package/dist/hooks/keyword-detector/ultrawork/default.d.ts +3 -4
  187. package/dist/hooks/keyword-detector/ultrawork/gemini.d.ts +11 -12
  188. package/dist/hooks/keyword-detector/ultrawork/gpt.d.ts +4 -5
  189. package/dist/hooks/keyword-detector/ultrawork/planner.d.ts +1 -2
  190. package/dist/hooks/legacy-plugin-toast/auto-migrate-runner.d.ts +2 -0
  191. package/dist/hooks/legacy-plugin-toast/auto-migrate.d.ts +7 -0
  192. package/dist/hooks/legacy-plugin-toast/hook.d.ts +18 -0
  193. package/dist/hooks/legacy-plugin-toast/index.d.ts +1 -0
  194. package/dist/hooks/legacy-plugin-toast/plugin-entry-migrator.d.ts +1 -0
  195. package/dist/hooks/model-fallback/chat-message-fallback-handler.d.ts +23 -0
  196. package/dist/hooks/model-fallback/controller-accessor.d.ts +8 -0
  197. package/dist/hooks/model-fallback/fallback-state-controller.d.ts +26 -0
  198. package/dist/hooks/model-fallback/hook.d.ts +21 -16
  199. package/dist/hooks/model-fallback/index.d.ts +2 -0
  200. package/dist/hooks/model-fallback/next-fallback.d.ts +14 -0
  201. package/dist/hooks/preemptive-compaction-trigger.d.ts +13 -0
  202. package/dist/hooks/preemptive-compaction-types.d.ts +53 -0
  203. package/dist/hooks/preemptive-compaction.d.ts +3 -15
  204. package/dist/hooks/ralph-loop/completion-promise-detector-test-input.d.ts +11 -0
  205. package/dist/hooks/ralph-loop/constants.d.ts +1 -0
  206. package/dist/hooks/ralph-loop/oracle-verification-detector.d.ts +8 -0
  207. package/dist/hooks/read-image-resizer/image-resizer.d.ts +3 -1
  208. package/dist/hooks/read-image-resizer/png-fallback-resizer.d.ts +2 -0
  209. package/dist/hooks/rules-injector/constants.d.ts +1 -0
  210. package/dist/hooks/rules-injector/finder.d.ts +1 -1
  211. package/dist/hooks/rules-injector/hook.d.ts +2 -0
  212. package/dist/hooks/rules-injector/injector.d.ts +14 -0
  213. package/dist/hooks/rules-injector/rule-file-finder.d.ts +9 -1
  214. package/dist/hooks/runtime-fallback/auto-retry-signal.d.ts +4 -0
  215. package/dist/hooks/runtime-fallback/error-classifier.d.ts +1 -5
  216. package/dist/hooks/runtime-fallback/fallback-models.d.ts +1 -1
  217. package/dist/hooks/runtime-fallback/retry-model-payload.d.ts +5 -1
  218. package/dist/hooks/session-notification-event-properties.d.ts +5 -0
  219. package/dist/hooks/session-recovery/types.d.ts +2 -0
  220. package/dist/hooks/start-work/context-info-builder.d.ts +12 -0
  221. package/dist/hooks/start-work/start-work-hook.d.ts +6 -0
  222. package/dist/hooks/start-work/worktree-block.d.ts +1 -0
  223. package/dist/hooks/todo-continuation-enforcer/pending-question-detection.d.ts +1 -1
  224. package/dist/hooks/todo-continuation-enforcer/resolve-message-info.d.ts +2 -2
  225. package/dist/hooks/todo-continuation-enforcer/session-state.d.ts +4 -3
  226. package/dist/hooks/todo-continuation-enforcer/token-limit-detection.d.ts +4 -0
  227. package/dist/hooks/todo-continuation-enforcer/types.d.ts +14 -0
  228. package/dist/hooks/todo-description-override/description.d.ts +1 -1
  229. package/dist/hooks/tool-pair-validator/hook.d.ts +28 -0
  230. package/dist/hooks/tool-pair-validator/index.d.ts +1 -0
  231. package/dist/hooks/unstable-agent-babysitter/task-message-analyzer.d.ts +1 -0
  232. package/dist/hooks/unstable-agent-babysitter/unstable-agent-babysitter-hook.d.ts +2 -0
  233. package/dist/hooks/write-existing-file-guard/hook.d.ts +12 -0
  234. package/dist/hooks/write-existing-file-guard/session-read-permissions.d.ts +3 -0
  235. package/dist/hooks/write-existing-file-guard/tool-execute-before-handler.d.ts +15 -0
  236. package/dist/index.d.ts +3 -3
  237. package/dist/index.js +83174 -93787
  238. package/dist/mcp/websearch.d.ts +2 -2
  239. package/dist/oh-my-opencode.schema.json +1059 -8
  240. package/dist/openclaw/config.d.ts +1 -1
  241. package/dist/openclaw/dispatcher.d.ts +9 -13
  242. package/dist/openclaw/gateway-url-validation.d.ts +1 -0
  243. package/dist/openclaw/reply-listener-discord.d.ts +4 -0
  244. package/dist/openclaw/reply-listener-injection.d.ts +10 -0
  245. package/dist/openclaw/reply-listener-log.d.ts +2 -0
  246. package/dist/openclaw/reply-listener-paths.d.ts +7 -0
  247. package/dist/openclaw/reply-listener-process.d.ts +4 -0
  248. package/dist/openclaw/reply-listener-spawn.d.ts +5 -0
  249. package/dist/openclaw/reply-listener-startup.d.ts +12 -0
  250. package/dist/openclaw/reply-listener-state.d.ts +29 -0
  251. package/dist/openclaw/reply-listener-telegram.d.ts +4 -0
  252. package/dist/openclaw/reply-listener.d.ts +5 -18
  253. package/dist/openclaw/runtime-dispatch.d.ts +17 -0
  254. package/dist/openclaw/types.d.ts +4 -0
  255. package/dist/plugin/chat-params.d.ts +1 -0
  256. package/dist/plugin/command-execute-before.d.ts +19 -0
  257. package/dist/plugin/hooks/create-core-hooks.d.ts +5 -0
  258. package/dist/plugin/hooks/create-session-hooks.d.ts +4 -1
  259. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +2 -1
  260. package/dist/plugin/hooks/create-transform-hooks.d.ts +4 -1
  261. package/dist/plugin/tool-registry.d.ts +26 -1
  262. package/dist/plugin/types.d.ts +1 -0
  263. package/dist/plugin-handlers/agent-priority-order.d.ts +11 -0
  264. package/dist/shared/agent-display-names.d.ts +23 -2
  265. package/dist/shared/agent-tool-restrictions.d.ts +0 -5
  266. package/dist/shared/archive-entry-validator.d.ts +6 -0
  267. package/dist/shared/background-output-consumption.d.ts +5 -0
  268. package/dist/shared/compaction-marker.d.ts +13 -0
  269. package/dist/shared/connected-providers-cache.d.ts +2 -1
  270. package/dist/shared/contains-path.d.ts +2 -0
  271. package/dist/shared/external-plugin-detector.d.ts +14 -0
  272. package/dist/shared/index.d.ts +9 -0
  273. package/dist/shared/internal-initiator-marker.d.ts +1 -0
  274. package/dist/shared/is-abort-error.d.ts +1 -0
  275. package/dist/shared/json-file-cache-store.d.ts +16 -0
  276. package/dist/shared/jsonc-parser.d.ts +1 -0
  277. package/dist/shared/legacy-plugin-warning.d.ts +7 -0
  278. package/dist/shared/load-opencode-plugins.d.ts +1 -0
  279. package/dist/shared/log-legacy-plugin-startup-warning.d.ts +10 -0
  280. package/dist/shared/migrate-legacy-config-file.d.ts +1 -0
  281. package/dist/shared/migrate-legacy-plugin-entry.d.ts +1 -0
  282. package/dist/shared/migration/migrations-sidecar.d.ts +41 -0
  283. package/dist/shared/model-capabilities/bundled-snapshot.d.ts +2 -0
  284. package/dist/shared/model-capabilities/get-model-capabilities.d.ts +2 -0
  285. package/dist/shared/model-capabilities/index.d.ts +3 -0
  286. package/dist/shared/model-capabilities/runtime-model-readers.d.ts +11 -0
  287. package/dist/shared/{model-capabilities.d.ts → model-capabilities/types.d.ts} +35 -32
  288. package/dist/shared/model-suggestion-retry.d.ts +0 -9
  289. package/dist/shared/opencode-provider-auth.d.ts +3 -0
  290. package/dist/shared/parse-tools-config.d.ts +6 -0
  291. package/dist/shared/permission-compat.d.ts +1 -1
  292. package/dist/shared/plugin-entry-migrator.d.ts +3 -0
  293. package/dist/shared/plugin-identity.d.ts +6 -3
  294. package/dist/shared/posthog-activity-state.d.ts +8 -0
  295. package/dist/shared/posthog.d.ts +14 -0
  296. package/dist/shared/resolve-agent-definition-paths.d.ts +1 -0
  297. package/dist/shared/ripgrep-cli.d.ts +8 -0
  298. package/dist/shared/session-category-registry.d.ts +0 -24
  299. package/dist/shared/session-cursor.d.ts +6 -0
  300. package/dist/shared/session-prompt-params-state.d.ts +1 -0
  301. package/dist/shared/shell-env.d.ts +6 -2
  302. package/dist/shared/skill-path-resolver.d.ts +0 -8
  303. package/dist/shared/task-system-enabled.d.ts +6 -0
  304. package/dist/shared/tmux/tmux-utils/server-health.d.ts +1 -0
  305. package/dist/shared/tmux/tmux-utils/session-spawn.d.ts +3 -0
  306. package/dist/shared/tmux/tmux-utils/window-spawn.d.ts +3 -0
  307. package/dist/shared/tmux/tmux-utils.d.ts +3 -1
  308. package/dist/shared/write-file-atomically.d.ts +1 -0
  309. package/dist/shared/zip-entry-listing/powershell-zip-entry-listing.d.ts +4 -0
  310. package/dist/shared/zip-entry-listing/python-zip-entry-listing.d.ts +3 -0
  311. package/dist/shared/zip-entry-listing/read-zip-symlink-target.d.ts +1 -0
  312. package/dist/shared/zip-entry-listing/tar-zip-entry-listing.d.ts +3 -0
  313. package/dist/shared/zip-entry-listing/zipinfo-zip-entry-listing.d.ts +4 -0
  314. package/dist/shared/zip-entry-listing.d.ts +4 -0
  315. package/dist/testing/module-mock-lifecycle.d.ts +21 -0
  316. package/dist/tools/background-task/constants.d.ts +3 -3
  317. package/dist/tools/call-omo-agent/agent-resolver.d.ts +17 -0
  318. package/dist/tools/call-omo-agent/background-executor.d.ts +2 -1
  319. package/dist/tools/call-omo-agent/constants.d.ts +1 -1
  320. package/dist/tools/call-omo-agent/sync-executor.d.ts +4 -4
  321. package/dist/tools/call-omo-agent/tools.d.ts +2 -1
  322. package/dist/tools/delegate-task/anthropic-categories.d.ts +2 -0
  323. package/dist/tools/delegate-task/builtin-categories.d.ts +4 -0
  324. package/dist/tools/delegate-task/builtin-category-definition.d.ts +7 -0
  325. package/dist/tools/delegate-task/constants.d.ts +3 -14
  326. package/dist/tools/delegate-task/delegated-model-config.d.ts +3 -0
  327. package/dist/tools/delegate-task/executor-types.d.ts +4 -1
  328. package/dist/tools/delegate-task/fallback-entry-resolution.d.ts +12 -0
  329. package/dist/tools/delegate-task/fallback-entry-settings.d.ts +7 -0
  330. package/dist/tools/delegate-task/google-categories.d.ts +2 -0
  331. package/dist/tools/delegate-task/kimi-categories.d.ts +2 -0
  332. package/dist/tools/delegate-task/openai-categories.d.ts +2 -0
  333. package/dist/tools/delegate-task/prompt-builder.d.ts +1 -1
  334. package/dist/tools/delegate-task/resolve-metadata-model.d.ts +8 -0
  335. package/dist/tools/delegate-task/subagent-discovery.d.ts +15 -0
  336. package/dist/tools/delegate-task/sync-continuation.d.ts +2 -2
  337. package/dist/tools/delegate-task/sync-prompt-sender.d.ts +2 -0
  338. package/dist/tools/delegate-task/sync-task-fallback.d.ts +12 -0
  339. package/dist/tools/delegate-task/task-id.d.ts +2 -0
  340. package/dist/tools/delegate-task/tool-argument-preparation.d.ts +2 -0
  341. package/dist/tools/delegate-task/tool-description.d.ts +9 -0
  342. package/dist/tools/delegate-task/types.d.ts +5 -2
  343. package/dist/tools/glob/constants.d.ts +1 -1
  344. package/dist/tools/grep/cli.d.ts +3 -2
  345. package/dist/tools/grep/constants.d.ts +0 -9
  346. package/dist/tools/hashline-edit/tool-description.d.ts +1 -1
  347. package/dist/tools/look-at/constants.d.ts +1 -1
  348. package/dist/tools/look-at/look-at-input-preparer.d.ts +22 -0
  349. package/dist/tools/look-at/look-at-prompt.d.ts +2 -0
  350. package/dist/tools/look-at/look-at-session-runner.d.ts +12 -0
  351. package/dist/tools/lsp/infer-extension.d.ts +1 -0
  352. package/dist/tools/session-manager/file-storage.d.ts +8 -0
  353. package/dist/tools/session-manager/sdk-storage.d.ts +8 -0
  354. package/dist/tools/session-manager/sdk-unavailable.d.ts +1 -0
  355. package/dist/tools/session-manager/storage.d.ts +1 -1
  356. package/dist/tools/session-manager/tools.d.ts +19 -1
  357. package/dist/tools/skill/constants.d.ts +2 -2
  358. package/dist/tools/skill/description-formatter.d.ts +3 -0
  359. package/dist/tools/skill/mcp-capability-formatter.d.ts +3 -0
  360. package/dist/tools/skill/native-skills.d.ts +12 -0
  361. package/dist/tools/skill/scope-priority.d.ts +4 -0
  362. package/dist/tools/skill/skill-body.d.ts +2 -0
  363. package/dist/tools/skill/skill-matcher.d.ts +5 -0
  364. package/dist/tools/skill/types.d.ts +30 -2
  365. package/dist/tools/skill-mcp/parse-skill-mcp-arguments.d.ts +1 -0
  366. package/dist/tools/skill-mcp/tools.d.ts +1 -1
  367. package/package.json +26 -25
  368. package/postinstall.mjs +75 -1
  369. package/dist/hooks/openclaw.d.ts +0 -11
  370. package/dist/plugin-dispose.d.ts +0 -10
  371. /package/dist/{tools/delegate-task → shared}/model-string-parser.d.ts +0 -0
@@ -14,6 +14,13 @@
14
14
  "default_run_agent": {
15
15
  "type": "string"
16
16
  },
17
+ "agent_definitions": {
18
+ "type": "array",
19
+ "items": {
20
+ "type": "string",
21
+ "minLength": 1
22
+ }
23
+ },
17
24
  "disabled_mcps": {
18
25
  "type": "array",
19
26
  "items": {
@@ -36,7 +43,9 @@
36
43
  "agent-browser",
37
44
  "dev-browser",
38
45
  "frontend-ui-ux",
39
- "git-master"
46
+ "git-master",
47
+ "review-work",
48
+ "ai-slop-remover"
40
49
  ]
41
50
  }
42
51
  },
@@ -57,7 +66,8 @@
57
66
  "cancel-ralph",
58
67
  "refactor",
59
68
  "start-work",
60
- "stop-continuation"
69
+ "stop-continuation",
70
+ "remove-ai-slops"
61
71
  ]
62
72
  }
63
73
  },
@@ -67,6 +77,12 @@
67
77
  "type": "string"
68
78
  }
69
79
  },
80
+ "mcp_env_allowlist": {
81
+ "type": "array",
82
+ "items": {
83
+ "type": "string"
84
+ }
85
+ },
70
86
  "hashline_edit": {
71
87
  "type": "boolean"
72
88
  },
@@ -87,6 +103,73 @@
87
103
  {
88
104
  "type": "string"
89
105
  },
106
+ {
107
+ "type": "array",
108
+ "items": {
109
+ "type": "string"
110
+ }
111
+ },
112
+ {
113
+ "type": "array",
114
+ "items": {
115
+ "type": "object",
116
+ "properties": {
117
+ "model": {
118
+ "type": "string"
119
+ },
120
+ "variant": {
121
+ "type": "string"
122
+ },
123
+ "reasoningEffort": {
124
+ "type": "string",
125
+ "enum": [
126
+ "none",
127
+ "minimal",
128
+ "low",
129
+ "medium",
130
+ "high",
131
+ "xhigh"
132
+ ]
133
+ },
134
+ "temperature": {
135
+ "type": "number",
136
+ "minimum": 0,
137
+ "maximum": 2
138
+ },
139
+ "top_p": {
140
+ "type": "number",
141
+ "minimum": 0,
142
+ "maximum": 1
143
+ },
144
+ "maxTokens": {
145
+ "type": "number"
146
+ },
147
+ "thinking": {
148
+ "type": "object",
149
+ "properties": {
150
+ "type": {
151
+ "type": "string",
152
+ "enum": [
153
+ "enabled",
154
+ "disabled"
155
+ ]
156
+ },
157
+ "budgetTokens": {
158
+ "type": "number"
159
+ }
160
+ },
161
+ "required": [
162
+ "type"
163
+ ],
164
+ "additionalProperties": false
165
+ }
166
+ },
167
+ "required": [
168
+ "model"
169
+ ],
170
+ "additionalProperties": false
171
+ }
172
+ },
90
173
  {
91
174
  "type": "array",
92
175
  "items": {
@@ -370,6 +453,73 @@
370
453
  {
371
454
  "type": "string"
372
455
  },
456
+ {
457
+ "type": "array",
458
+ "items": {
459
+ "type": "string"
460
+ }
461
+ },
462
+ {
463
+ "type": "array",
464
+ "items": {
465
+ "type": "object",
466
+ "properties": {
467
+ "model": {
468
+ "type": "string"
469
+ },
470
+ "variant": {
471
+ "type": "string"
472
+ },
473
+ "reasoningEffort": {
474
+ "type": "string",
475
+ "enum": [
476
+ "none",
477
+ "minimal",
478
+ "low",
479
+ "medium",
480
+ "high",
481
+ "xhigh"
482
+ ]
483
+ },
484
+ "temperature": {
485
+ "type": "number",
486
+ "minimum": 0,
487
+ "maximum": 2
488
+ },
489
+ "top_p": {
490
+ "type": "number",
491
+ "minimum": 0,
492
+ "maximum": 1
493
+ },
494
+ "maxTokens": {
495
+ "type": "number"
496
+ },
497
+ "thinking": {
498
+ "type": "object",
499
+ "properties": {
500
+ "type": {
501
+ "type": "string",
502
+ "enum": [
503
+ "enabled",
504
+ "disabled"
505
+ ]
506
+ },
507
+ "budgetTokens": {
508
+ "type": "number"
509
+ }
510
+ },
511
+ "required": [
512
+ "type"
513
+ ],
514
+ "additionalProperties": false
515
+ }
516
+ },
517
+ "required": [
518
+ "model"
519
+ ],
520
+ "additionalProperties": false
521
+ }
522
+ },
373
523
  {
374
524
  "type": "array",
375
525
  "items": {
@@ -653,6 +803,73 @@
653
803
  {
654
804
  "type": "string"
655
805
  },
806
+ {
807
+ "type": "array",
808
+ "items": {
809
+ "type": "string"
810
+ }
811
+ },
812
+ {
813
+ "type": "array",
814
+ "items": {
815
+ "type": "object",
816
+ "properties": {
817
+ "model": {
818
+ "type": "string"
819
+ },
820
+ "variant": {
821
+ "type": "string"
822
+ },
823
+ "reasoningEffort": {
824
+ "type": "string",
825
+ "enum": [
826
+ "none",
827
+ "minimal",
828
+ "low",
829
+ "medium",
830
+ "high",
831
+ "xhigh"
832
+ ]
833
+ },
834
+ "temperature": {
835
+ "type": "number",
836
+ "minimum": 0,
837
+ "maximum": 2
838
+ },
839
+ "top_p": {
840
+ "type": "number",
841
+ "minimum": 0,
842
+ "maximum": 1
843
+ },
844
+ "maxTokens": {
845
+ "type": "number"
846
+ },
847
+ "thinking": {
848
+ "type": "object",
849
+ "properties": {
850
+ "type": {
851
+ "type": "string",
852
+ "enum": [
853
+ "enabled",
854
+ "disabled"
855
+ ]
856
+ },
857
+ "budgetTokens": {
858
+ "type": "number"
859
+ }
860
+ },
861
+ "required": [
862
+ "type"
863
+ ],
864
+ "additionalProperties": false
865
+ }
866
+ },
867
+ "required": [
868
+ "model"
869
+ ],
870
+ "additionalProperties": false
871
+ }
872
+ },
656
873
  {
657
874
  "type": "array",
658
875
  "items": {
@@ -936,6 +1153,73 @@
936
1153
  {
937
1154
  "type": "string"
938
1155
  },
1156
+ {
1157
+ "type": "array",
1158
+ "items": {
1159
+ "type": "string"
1160
+ }
1161
+ },
1162
+ {
1163
+ "type": "array",
1164
+ "items": {
1165
+ "type": "object",
1166
+ "properties": {
1167
+ "model": {
1168
+ "type": "string"
1169
+ },
1170
+ "variant": {
1171
+ "type": "string"
1172
+ },
1173
+ "reasoningEffort": {
1174
+ "type": "string",
1175
+ "enum": [
1176
+ "none",
1177
+ "minimal",
1178
+ "low",
1179
+ "medium",
1180
+ "high",
1181
+ "xhigh"
1182
+ ]
1183
+ },
1184
+ "temperature": {
1185
+ "type": "number",
1186
+ "minimum": 0,
1187
+ "maximum": 2
1188
+ },
1189
+ "top_p": {
1190
+ "type": "number",
1191
+ "minimum": 0,
1192
+ "maximum": 1
1193
+ },
1194
+ "maxTokens": {
1195
+ "type": "number"
1196
+ },
1197
+ "thinking": {
1198
+ "type": "object",
1199
+ "properties": {
1200
+ "type": {
1201
+ "type": "string",
1202
+ "enum": [
1203
+ "enabled",
1204
+ "disabled"
1205
+ ]
1206
+ },
1207
+ "budgetTokens": {
1208
+ "type": "number"
1209
+ }
1210
+ },
1211
+ "required": [
1212
+ "type"
1213
+ ],
1214
+ "additionalProperties": false
1215
+ }
1216
+ },
1217
+ "required": [
1218
+ "model"
1219
+ ],
1220
+ "additionalProperties": false
1221
+ }
1222
+ },
939
1223
  {
940
1224
  "type": "array",
941
1225
  "items": {
@@ -1222,6 +1506,73 @@
1222
1506
  {
1223
1507
  "type": "string"
1224
1508
  },
1509
+ {
1510
+ "type": "array",
1511
+ "items": {
1512
+ "type": "string"
1513
+ }
1514
+ },
1515
+ {
1516
+ "type": "array",
1517
+ "items": {
1518
+ "type": "object",
1519
+ "properties": {
1520
+ "model": {
1521
+ "type": "string"
1522
+ },
1523
+ "variant": {
1524
+ "type": "string"
1525
+ },
1526
+ "reasoningEffort": {
1527
+ "type": "string",
1528
+ "enum": [
1529
+ "none",
1530
+ "minimal",
1531
+ "low",
1532
+ "medium",
1533
+ "high",
1534
+ "xhigh"
1535
+ ]
1536
+ },
1537
+ "temperature": {
1538
+ "type": "number",
1539
+ "minimum": 0,
1540
+ "maximum": 2
1541
+ },
1542
+ "top_p": {
1543
+ "type": "number",
1544
+ "minimum": 0,
1545
+ "maximum": 1
1546
+ },
1547
+ "maxTokens": {
1548
+ "type": "number"
1549
+ },
1550
+ "thinking": {
1551
+ "type": "object",
1552
+ "properties": {
1553
+ "type": {
1554
+ "type": "string",
1555
+ "enum": [
1556
+ "enabled",
1557
+ "disabled"
1558
+ ]
1559
+ },
1560
+ "budgetTokens": {
1561
+ "type": "number"
1562
+ }
1563
+ },
1564
+ "required": [
1565
+ "type"
1566
+ ],
1567
+ "additionalProperties": false
1568
+ }
1569
+ },
1570
+ "required": [
1571
+ "model"
1572
+ ],
1573
+ "additionalProperties": false
1574
+ }
1575
+ },
1225
1576
  {
1226
1577
  "type": "array",
1227
1578
  "items": {
@@ -1505,6 +1856,73 @@
1505
1856
  {
1506
1857
  "type": "string"
1507
1858
  },
1859
+ {
1860
+ "type": "array",
1861
+ "items": {
1862
+ "type": "string"
1863
+ }
1864
+ },
1865
+ {
1866
+ "type": "array",
1867
+ "items": {
1868
+ "type": "object",
1869
+ "properties": {
1870
+ "model": {
1871
+ "type": "string"
1872
+ },
1873
+ "variant": {
1874
+ "type": "string"
1875
+ },
1876
+ "reasoningEffort": {
1877
+ "type": "string",
1878
+ "enum": [
1879
+ "none",
1880
+ "minimal",
1881
+ "low",
1882
+ "medium",
1883
+ "high",
1884
+ "xhigh"
1885
+ ]
1886
+ },
1887
+ "temperature": {
1888
+ "type": "number",
1889
+ "minimum": 0,
1890
+ "maximum": 2
1891
+ },
1892
+ "top_p": {
1893
+ "type": "number",
1894
+ "minimum": 0,
1895
+ "maximum": 1
1896
+ },
1897
+ "maxTokens": {
1898
+ "type": "number"
1899
+ },
1900
+ "thinking": {
1901
+ "type": "object",
1902
+ "properties": {
1903
+ "type": {
1904
+ "type": "string",
1905
+ "enum": [
1906
+ "enabled",
1907
+ "disabled"
1908
+ ]
1909
+ },
1910
+ "budgetTokens": {
1911
+ "type": "number"
1912
+ }
1913
+ },
1914
+ "required": [
1915
+ "type"
1916
+ ],
1917
+ "additionalProperties": false
1918
+ }
1919
+ },
1920
+ "required": [
1921
+ "model"
1922
+ ],
1923
+ "additionalProperties": false
1924
+ }
1925
+ },
1508
1926
  {
1509
1927
  "type": "array",
1510
1928
  "items": {
@@ -1788,6 +2206,73 @@
1788
2206
  {
1789
2207
  "type": "string"
1790
2208
  },
2209
+ {
2210
+ "type": "array",
2211
+ "items": {
2212
+ "type": "string"
2213
+ }
2214
+ },
2215
+ {
2216
+ "type": "array",
2217
+ "items": {
2218
+ "type": "object",
2219
+ "properties": {
2220
+ "model": {
2221
+ "type": "string"
2222
+ },
2223
+ "variant": {
2224
+ "type": "string"
2225
+ },
2226
+ "reasoningEffort": {
2227
+ "type": "string",
2228
+ "enum": [
2229
+ "none",
2230
+ "minimal",
2231
+ "low",
2232
+ "medium",
2233
+ "high",
2234
+ "xhigh"
2235
+ ]
2236
+ },
2237
+ "temperature": {
2238
+ "type": "number",
2239
+ "minimum": 0,
2240
+ "maximum": 2
2241
+ },
2242
+ "top_p": {
2243
+ "type": "number",
2244
+ "minimum": 0,
2245
+ "maximum": 1
2246
+ },
2247
+ "maxTokens": {
2248
+ "type": "number"
2249
+ },
2250
+ "thinking": {
2251
+ "type": "object",
2252
+ "properties": {
2253
+ "type": {
2254
+ "type": "string",
2255
+ "enum": [
2256
+ "enabled",
2257
+ "disabled"
2258
+ ]
2259
+ },
2260
+ "budgetTokens": {
2261
+ "type": "number"
2262
+ }
2263
+ },
2264
+ "required": [
2265
+ "type"
2266
+ ],
2267
+ "additionalProperties": false
2268
+ }
2269
+ },
2270
+ "required": [
2271
+ "model"
2272
+ ],
2273
+ "additionalProperties": false
2274
+ }
2275
+ },
1791
2276
  {
1792
2277
  "type": "array",
1793
2278
  "items": {
@@ -2071,6 +2556,73 @@
2071
2556
  {
2072
2557
  "type": "string"
2073
2558
  },
2559
+ {
2560
+ "type": "array",
2561
+ "items": {
2562
+ "type": "string"
2563
+ }
2564
+ },
2565
+ {
2566
+ "type": "array",
2567
+ "items": {
2568
+ "type": "object",
2569
+ "properties": {
2570
+ "model": {
2571
+ "type": "string"
2572
+ },
2573
+ "variant": {
2574
+ "type": "string"
2575
+ },
2576
+ "reasoningEffort": {
2577
+ "type": "string",
2578
+ "enum": [
2579
+ "none",
2580
+ "minimal",
2581
+ "low",
2582
+ "medium",
2583
+ "high",
2584
+ "xhigh"
2585
+ ]
2586
+ },
2587
+ "temperature": {
2588
+ "type": "number",
2589
+ "minimum": 0,
2590
+ "maximum": 2
2591
+ },
2592
+ "top_p": {
2593
+ "type": "number",
2594
+ "minimum": 0,
2595
+ "maximum": 1
2596
+ },
2597
+ "maxTokens": {
2598
+ "type": "number"
2599
+ },
2600
+ "thinking": {
2601
+ "type": "object",
2602
+ "properties": {
2603
+ "type": {
2604
+ "type": "string",
2605
+ "enum": [
2606
+ "enabled",
2607
+ "disabled"
2608
+ ]
2609
+ },
2610
+ "budgetTokens": {
2611
+ "type": "number"
2612
+ }
2613
+ },
2614
+ "required": [
2615
+ "type"
2616
+ ],
2617
+ "additionalProperties": false
2618
+ }
2619
+ },
2620
+ "required": [
2621
+ "model"
2622
+ ],
2623
+ "additionalProperties": false
2624
+ }
2625
+ },
2074
2626
  {
2075
2627
  "type": "array",
2076
2628
  "items": {
@@ -2354,6 +2906,73 @@
2354
2906
  {
2355
2907
  "type": "string"
2356
2908
  },
2909
+ {
2910
+ "type": "array",
2911
+ "items": {
2912
+ "type": "string"
2913
+ }
2914
+ },
2915
+ {
2916
+ "type": "array",
2917
+ "items": {
2918
+ "type": "object",
2919
+ "properties": {
2920
+ "model": {
2921
+ "type": "string"
2922
+ },
2923
+ "variant": {
2924
+ "type": "string"
2925
+ },
2926
+ "reasoningEffort": {
2927
+ "type": "string",
2928
+ "enum": [
2929
+ "none",
2930
+ "minimal",
2931
+ "low",
2932
+ "medium",
2933
+ "high",
2934
+ "xhigh"
2935
+ ]
2936
+ },
2937
+ "temperature": {
2938
+ "type": "number",
2939
+ "minimum": 0,
2940
+ "maximum": 2
2941
+ },
2942
+ "top_p": {
2943
+ "type": "number",
2944
+ "minimum": 0,
2945
+ "maximum": 1
2946
+ },
2947
+ "maxTokens": {
2948
+ "type": "number"
2949
+ },
2950
+ "thinking": {
2951
+ "type": "object",
2952
+ "properties": {
2953
+ "type": {
2954
+ "type": "string",
2955
+ "enum": [
2956
+ "enabled",
2957
+ "disabled"
2958
+ ]
2959
+ },
2960
+ "budgetTokens": {
2961
+ "type": "number"
2962
+ }
2963
+ },
2964
+ "required": [
2965
+ "type"
2966
+ ],
2967
+ "additionalProperties": false
2968
+ }
2969
+ },
2970
+ "required": [
2971
+ "model"
2972
+ ],
2973
+ "additionalProperties": false
2974
+ }
2975
+ },
2357
2976
  {
2358
2977
  "type": "array",
2359
2978
  "items": {
@@ -2637,6 +3256,73 @@
2637
3256
  {
2638
3257
  "type": "string"
2639
3258
  },
3259
+ {
3260
+ "type": "array",
3261
+ "items": {
3262
+ "type": "string"
3263
+ }
3264
+ },
3265
+ {
3266
+ "type": "array",
3267
+ "items": {
3268
+ "type": "object",
3269
+ "properties": {
3270
+ "model": {
3271
+ "type": "string"
3272
+ },
3273
+ "variant": {
3274
+ "type": "string"
3275
+ },
3276
+ "reasoningEffort": {
3277
+ "type": "string",
3278
+ "enum": [
3279
+ "none",
3280
+ "minimal",
3281
+ "low",
3282
+ "medium",
3283
+ "high",
3284
+ "xhigh"
3285
+ ]
3286
+ },
3287
+ "temperature": {
3288
+ "type": "number",
3289
+ "minimum": 0,
3290
+ "maximum": 2
3291
+ },
3292
+ "top_p": {
3293
+ "type": "number",
3294
+ "minimum": 0,
3295
+ "maximum": 1
3296
+ },
3297
+ "maxTokens": {
3298
+ "type": "number"
3299
+ },
3300
+ "thinking": {
3301
+ "type": "object",
3302
+ "properties": {
3303
+ "type": {
3304
+ "type": "string",
3305
+ "enum": [
3306
+ "enabled",
3307
+ "disabled"
3308
+ ]
3309
+ },
3310
+ "budgetTokens": {
3311
+ "type": "number"
3312
+ }
3313
+ },
3314
+ "required": [
3315
+ "type"
3316
+ ],
3317
+ "additionalProperties": false
3318
+ }
3319
+ },
3320
+ "required": [
3321
+ "model"
3322
+ ],
3323
+ "additionalProperties": false
3324
+ }
3325
+ },
2640
3326
  {
2641
3327
  "type": "array",
2642
3328
  "items": {
@@ -2920,6 +3606,73 @@
2920
3606
  {
2921
3607
  "type": "string"
2922
3608
  },
3609
+ {
3610
+ "type": "array",
3611
+ "items": {
3612
+ "type": "string"
3613
+ }
3614
+ },
3615
+ {
3616
+ "type": "array",
3617
+ "items": {
3618
+ "type": "object",
3619
+ "properties": {
3620
+ "model": {
3621
+ "type": "string"
3622
+ },
3623
+ "variant": {
3624
+ "type": "string"
3625
+ },
3626
+ "reasoningEffort": {
3627
+ "type": "string",
3628
+ "enum": [
3629
+ "none",
3630
+ "minimal",
3631
+ "low",
3632
+ "medium",
3633
+ "high",
3634
+ "xhigh"
3635
+ ]
3636
+ },
3637
+ "temperature": {
3638
+ "type": "number",
3639
+ "minimum": 0,
3640
+ "maximum": 2
3641
+ },
3642
+ "top_p": {
3643
+ "type": "number",
3644
+ "minimum": 0,
3645
+ "maximum": 1
3646
+ },
3647
+ "maxTokens": {
3648
+ "type": "number"
3649
+ },
3650
+ "thinking": {
3651
+ "type": "object",
3652
+ "properties": {
3653
+ "type": {
3654
+ "type": "string",
3655
+ "enum": [
3656
+ "enabled",
3657
+ "disabled"
3658
+ ]
3659
+ },
3660
+ "budgetTokens": {
3661
+ "type": "number"
3662
+ }
3663
+ },
3664
+ "required": [
3665
+ "type"
3666
+ ],
3667
+ "additionalProperties": false
3668
+ }
3669
+ },
3670
+ "required": [
3671
+ "model"
3672
+ ],
3673
+ "additionalProperties": false
3674
+ }
3675
+ },
2923
3676
  {
2924
3677
  "type": "array",
2925
3678
  "items": {
@@ -3203,6 +3956,73 @@
3203
3956
  {
3204
3957
  "type": "string"
3205
3958
  },
3959
+ {
3960
+ "type": "array",
3961
+ "items": {
3962
+ "type": "string"
3963
+ }
3964
+ },
3965
+ {
3966
+ "type": "array",
3967
+ "items": {
3968
+ "type": "object",
3969
+ "properties": {
3970
+ "model": {
3971
+ "type": "string"
3972
+ },
3973
+ "variant": {
3974
+ "type": "string"
3975
+ },
3976
+ "reasoningEffort": {
3977
+ "type": "string",
3978
+ "enum": [
3979
+ "none",
3980
+ "minimal",
3981
+ "low",
3982
+ "medium",
3983
+ "high",
3984
+ "xhigh"
3985
+ ]
3986
+ },
3987
+ "temperature": {
3988
+ "type": "number",
3989
+ "minimum": 0,
3990
+ "maximum": 2
3991
+ },
3992
+ "top_p": {
3993
+ "type": "number",
3994
+ "minimum": 0,
3995
+ "maximum": 1
3996
+ },
3997
+ "maxTokens": {
3998
+ "type": "number"
3999
+ },
4000
+ "thinking": {
4001
+ "type": "object",
4002
+ "properties": {
4003
+ "type": {
4004
+ "type": "string",
4005
+ "enum": [
4006
+ "enabled",
4007
+ "disabled"
4008
+ ]
4009
+ },
4010
+ "budgetTokens": {
4011
+ "type": "number"
4012
+ }
4013
+ },
4014
+ "required": [
4015
+ "type"
4016
+ ],
4017
+ "additionalProperties": false
4018
+ }
4019
+ },
4020
+ "required": [
4021
+ "model"
4022
+ ],
4023
+ "additionalProperties": false
4024
+ }
4025
+ },
3206
4026
  {
3207
4027
  "type": "array",
3208
4028
  "items": {
@@ -3486,6 +4306,73 @@
3486
4306
  {
3487
4307
  "type": "string"
3488
4308
  },
4309
+ {
4310
+ "type": "array",
4311
+ "items": {
4312
+ "type": "string"
4313
+ }
4314
+ },
4315
+ {
4316
+ "type": "array",
4317
+ "items": {
4318
+ "type": "object",
4319
+ "properties": {
4320
+ "model": {
4321
+ "type": "string"
4322
+ },
4323
+ "variant": {
4324
+ "type": "string"
4325
+ },
4326
+ "reasoningEffort": {
4327
+ "type": "string",
4328
+ "enum": [
4329
+ "none",
4330
+ "minimal",
4331
+ "low",
4332
+ "medium",
4333
+ "high",
4334
+ "xhigh"
4335
+ ]
4336
+ },
4337
+ "temperature": {
4338
+ "type": "number",
4339
+ "minimum": 0,
4340
+ "maximum": 2
4341
+ },
4342
+ "top_p": {
4343
+ "type": "number",
4344
+ "minimum": 0,
4345
+ "maximum": 1
4346
+ },
4347
+ "maxTokens": {
4348
+ "type": "number"
4349
+ },
4350
+ "thinking": {
4351
+ "type": "object",
4352
+ "properties": {
4353
+ "type": {
4354
+ "type": "string",
4355
+ "enum": [
4356
+ "enabled",
4357
+ "disabled"
4358
+ ]
4359
+ },
4360
+ "budgetTokens": {
4361
+ "type": "number"
4362
+ }
4363
+ },
4364
+ "required": [
4365
+ "type"
4366
+ ],
4367
+ "additionalProperties": false
4368
+ }
4369
+ },
4370
+ "required": [
4371
+ "model"
4372
+ ],
4373
+ "additionalProperties": false
4374
+ }
4375
+ },
3489
4376
  {
3490
4377
  "type": "array",
3491
4378
  "items": {
@@ -3769,6 +4656,73 @@
3769
4656
  {
3770
4657
  "type": "string"
3771
4658
  },
4659
+ {
4660
+ "type": "array",
4661
+ "items": {
4662
+ "type": "string"
4663
+ }
4664
+ },
4665
+ {
4666
+ "type": "array",
4667
+ "items": {
4668
+ "type": "object",
4669
+ "properties": {
4670
+ "model": {
4671
+ "type": "string"
4672
+ },
4673
+ "variant": {
4674
+ "type": "string"
4675
+ },
4676
+ "reasoningEffort": {
4677
+ "type": "string",
4678
+ "enum": [
4679
+ "none",
4680
+ "minimal",
4681
+ "low",
4682
+ "medium",
4683
+ "high",
4684
+ "xhigh"
4685
+ ]
4686
+ },
4687
+ "temperature": {
4688
+ "type": "number",
4689
+ "minimum": 0,
4690
+ "maximum": 2
4691
+ },
4692
+ "top_p": {
4693
+ "type": "number",
4694
+ "minimum": 0,
4695
+ "maximum": 1
4696
+ },
4697
+ "maxTokens": {
4698
+ "type": "number"
4699
+ },
4700
+ "thinking": {
4701
+ "type": "object",
4702
+ "properties": {
4703
+ "type": {
4704
+ "type": "string",
4705
+ "enum": [
4706
+ "enabled",
4707
+ "disabled"
4708
+ ]
4709
+ },
4710
+ "budgetTokens": {
4711
+ "type": "number"
4712
+ }
4713
+ },
4714
+ "required": [
4715
+ "type"
4716
+ ],
4717
+ "additionalProperties": false
4718
+ }
4719
+ },
4720
+ "required": [
4721
+ "model"
4722
+ ],
4723
+ "additionalProperties": false
4724
+ }
4725
+ },
3772
4726
  {
3773
4727
  "type": "array",
3774
4728
  "items": {
@@ -4063,6 +5017,73 @@
4063
5017
  {
4064
5018
  "type": "string"
4065
5019
  },
5020
+ {
5021
+ "type": "array",
5022
+ "items": {
5023
+ "type": "string"
5024
+ }
5025
+ },
5026
+ {
5027
+ "type": "array",
5028
+ "items": {
5029
+ "type": "object",
5030
+ "properties": {
5031
+ "model": {
5032
+ "type": "string"
5033
+ },
5034
+ "variant": {
5035
+ "type": "string"
5036
+ },
5037
+ "reasoningEffort": {
5038
+ "type": "string",
5039
+ "enum": [
5040
+ "none",
5041
+ "minimal",
5042
+ "low",
5043
+ "medium",
5044
+ "high",
5045
+ "xhigh"
5046
+ ]
5047
+ },
5048
+ "temperature": {
5049
+ "type": "number",
5050
+ "minimum": 0,
5051
+ "maximum": 2
5052
+ },
5053
+ "top_p": {
5054
+ "type": "number",
5055
+ "minimum": 0,
5056
+ "maximum": 1
5057
+ },
5058
+ "maxTokens": {
5059
+ "type": "number"
5060
+ },
5061
+ "thinking": {
5062
+ "type": "object",
5063
+ "properties": {
5064
+ "type": {
5065
+ "type": "string",
5066
+ "enum": [
5067
+ "enabled",
5068
+ "disabled"
5069
+ ]
5070
+ },
5071
+ "budgetTokens": {
5072
+ "type": "number"
5073
+ }
5074
+ },
5075
+ "required": [
5076
+ "type"
5077
+ ],
5078
+ "additionalProperties": false
5079
+ }
5080
+ },
5081
+ "required": [
5082
+ "model"
5083
+ ],
5084
+ "additionalProperties": false
5085
+ }
5086
+ },
4066
5087
  {
4067
5088
  "type": "array",
4068
5089
  "items": {
@@ -4261,6 +5282,10 @@
4261
5282
  },
4262
5283
  "replace_plan": {
4263
5284
  "type": "boolean"
5285
+ },
5286
+ "tdd": {
5287
+ "default": true,
5288
+ "type": "boolean"
4264
5289
  }
4265
5290
  },
4266
5291
  "additionalProperties": false
@@ -4423,6 +5448,11 @@
4423
5448
  },
4424
5449
  "model_fallback_title": {
4425
5450
  "type": "boolean"
5451
+ },
5452
+ "max_tools": {
5453
+ "type": "integer",
5454
+ "minimum": 1,
5455
+ "maximum": 9007199254740991
4426
5456
  }
4427
5457
  },
4428
5458
  "additionalProperties": false
@@ -4643,11 +5673,6 @@
4643
5673
  "minimum": 1,
4644
5674
  "maximum": 9007199254740991
4645
5675
  },
4646
- "maxDescendants": {
4647
- "type": "integer",
4648
- "minimum": 1,
4649
- "maximum": 9007199254740991
4650
- },
4651
5676
  "staleTimeoutMs": {
4652
5677
  "type": "number",
4653
5678
  "minimum": 60000
@@ -4656,6 +5681,14 @@
4656
5681
  "type": "number",
4657
5682
  "minimum": 60000
4658
5683
  },
5684
+ "taskTtlMs": {
5685
+ "type": "number",
5686
+ "minimum": 300000
5687
+ },
5688
+ "sessionGoneTimeoutMs": {
5689
+ "type": "number",
5690
+ "minimum": 10000
5691
+ },
4659
5692
  "syncPollTimeoutMs": {
4660
5693
  "type": "number",
4661
5694
  "minimum": 60000
@@ -4872,6 +5905,11 @@
4872
5905
  "additionalProperties": false
4873
5906
  },
4874
5907
  "git_master": {
5908
+ "default": {
5909
+ "commit_footer": true,
5910
+ "include_co_authored_by": true,
5911
+ "git_env_prefix": "GIT_MASTER=1"
5912
+ },
4875
5913
  "type": "object",
4876
5914
  "properties": {
4877
5915
  "commit_footer": {
@@ -4966,6 +6004,15 @@
4966
6004
  "default": 40,
4967
6005
  "type": "number",
4968
6006
  "minimum": 20
6007
+ },
6008
+ "isolation": {
6009
+ "default": "inline",
6010
+ "type": "string",
6011
+ "enum": [
6012
+ "inline",
6013
+ "window",
6014
+ "session"
6015
+ ]
4969
6016
  }
4970
6017
  },
4971
6018
  "required": [
@@ -4973,7 +6020,8 @@
4973
6020
  "layout",
4974
6021
  "main_pane_size",
4975
6022
  "main_pane_min_width",
4976
- "agent_pane_min_width"
6023
+ "agent_pane_min_width",
6024
+ "isolation"
4977
6025
  ],
4978
6026
  "additionalProperties": false
4979
6027
  },
@@ -5022,5 +6070,8 @@
5022
6070
  }
5023
6071
  }
5024
6072
  },
6073
+ "required": [
6074
+ "git_master"
6075
+ ],
5025
6076
  "additionalProperties": false
5026
6077
  }