oh-my-opencode 3.14.0 → 3.15.1

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 (221) hide show
  1. package/README.md +14 -6
  2. package/bin/oh-my-opencode.js +11 -0
  3. package/bin/platform.js +13 -13
  4. package/bin/platform.test.ts +15 -0
  5. package/dist/agents/atlas/agent.d.ts +1 -1
  6. package/dist/agents/atlas/default-prompt-sections.d.ts +6 -0
  7. package/dist/agents/atlas/default.d.ts +0 -9
  8. package/dist/agents/atlas/gemini-prompt-sections.d.ts +6 -0
  9. package/dist/agents/atlas/gemini.d.ts +0 -9
  10. package/dist/agents/atlas/gpt-prompt-sections.d.ts +6 -0
  11. package/dist/agents/atlas/gpt.d.ts +0 -9
  12. package/dist/agents/atlas/shared-prompt.d.ts +9 -0
  13. package/dist/agents/dynamic-agent-category-skills-guide.d.ts +2 -0
  14. package/dist/agents/dynamic-agent-core-sections.d.ts +10 -0
  15. package/dist/agents/dynamic-agent-policy-sections.d.ts +6 -0
  16. package/dist/agents/dynamic-agent-prompt-builder.d.ts +5 -35
  17. package/dist/agents/dynamic-agent-prompt-types.d.ts +20 -0
  18. package/dist/agents/dynamic-agent-tool-categorization.d.ts +3 -0
  19. package/dist/agents/hephaestus/agent.d.ts +1 -1
  20. package/dist/agents/hephaestus/gpt-5-3-codex.d.ts +1 -1
  21. package/dist/agents/hephaestus/gpt.d.ts +1 -1
  22. package/dist/agents/momus.d.ts +2 -2
  23. package/dist/agents/prometheus/behavioral-summary.d.ts +1 -1
  24. package/dist/agents/prometheus/identity-constraints.d.ts +1 -1
  25. package/dist/agents/prometheus/plan-generation.d.ts +1 -1
  26. package/dist/agents/prometheus/plan-template.d.ts +1 -1
  27. package/dist/agents/sisyphus/gpt-5-4.d.ts +14 -14
  28. package/dist/agents/sisyphus/index.d.ts +1 -1
  29. package/dist/agents/sisyphus.d.ts +1 -1
  30. package/dist/agents/types.d.ts +1 -0
  31. package/dist/cli/index.js +832 -500
  32. package/dist/cli/mcp-oauth/login.d.ts +6 -1
  33. package/dist/cli/run/event-state.d.ts +0 -2
  34. package/dist/cli/run/types.d.ts +0 -1
  35. package/dist/config/schema/agent-names.d.ts +2 -0
  36. package/dist/config/schema/agent-overrides.d.ts +330 -15
  37. package/dist/config/schema/background-task.d.ts +2 -0
  38. package/dist/config/schema/categories.d.ts +44 -2
  39. package/dist/config/schema/commands.d.ts +1 -0
  40. package/dist/config/schema/experimental.d.ts +1 -0
  41. package/dist/config/schema/fallback-models.d.ts +67 -1
  42. package/dist/config/schema/hooks.d.ts +3 -0
  43. package/dist/config/schema/oh-my-opencode-config.d.ts +344 -16
  44. package/dist/config/schema/sisyphus-agent.d.ts +1 -0
  45. package/dist/config/schema/tmux.d.ts +11 -0
  46. package/dist/create-hooks.d.ts +6 -0
  47. package/dist/create-runtime-tmux-config.d.ts +9 -0
  48. package/dist/features/background-agent/abort-with-timeout.d.ts +2 -0
  49. package/dist/features/background-agent/background-task-notification-template.d.ts +10 -4
  50. package/dist/features/background-agent/constants.d.ts +1 -0
  51. package/dist/features/background-agent/fallback-retry-handler.d.ts +1 -1
  52. package/dist/features/background-agent/manager.d.ts +10 -0
  53. package/dist/features/background-agent/process-cleanup.d.ts +1 -1
  54. package/dist/features/background-agent/session-existence.d.ts +3 -0
  55. package/dist/features/background-agent/task-poller.d.ts +1 -0
  56. package/dist/features/background-agent/types.d.ts +2 -0
  57. package/dist/features/builtin-commands/commands.d.ts +4 -1
  58. package/dist/features/builtin-commands/templates/handoff.d.ts +1 -1
  59. package/dist/features/builtin-commands/templates/init-deep.d.ts +1 -1
  60. package/dist/features/builtin-commands/templates/remove-ai-slops.d.ts +1 -0
  61. package/dist/features/builtin-commands/templates/start-work.d.ts +1 -1
  62. package/dist/features/builtin-commands/types.d.ts +1 -1
  63. package/dist/features/builtin-skills/skills/ai-slop-remover.d.ts +2 -0
  64. package/dist/features/builtin-skills/skills/git-master-sections/commit-workflow.d.ts +1 -0
  65. package/dist/features/builtin-skills/skills/git-master-sections/history-search-workflow.d.ts +1 -0
  66. package/dist/features/builtin-skills/skills/git-master-sections/overview.d.ts +1 -0
  67. package/dist/features/builtin-skills/skills/git-master-sections/quick-reference.d.ts +1 -0
  68. package/dist/features/builtin-skills/skills/git-master-sections/rebase-workflow.d.ts +1 -0
  69. package/dist/features/builtin-skills/skills/index.d.ts +2 -0
  70. package/dist/features/builtin-skills/skills/playwright-cli.d.ts +1 -1
  71. package/dist/features/builtin-skills/skills/review-work.d.ts +2 -0
  72. package/dist/features/claude-code-mcp-loader/configure-allowed-env-vars.d.ts +5 -0
  73. package/dist/features/claude-code-mcp-loader/index.d.ts +1 -0
  74. package/dist/features/claude-code-mcp-loader/scope-filter.d.ts +2 -0
  75. package/dist/features/claude-code-mcp-loader/types.d.ts +8 -4
  76. package/dist/features/claude-code-session-state/state.d.ts +2 -0
  77. package/dist/features/context-injector/collector.d.ts +1 -0
  78. package/dist/features/opencode-skill-loader/async-loader.d.ts +2 -2
  79. package/dist/features/skill-mcp-manager/manager.d.ts +4 -1
  80. package/dist/features/skill-mcp-manager/oauth-handler.d.ts +5 -4
  81. package/dist/features/skill-mcp-manager/types.d.ts +7 -0
  82. package/dist/features/tmux-subagent/manager.d.ts +15 -13
  83. package/dist/features/tmux-subagent/polling-manager.d.ts +5 -0
  84. package/dist/features/tmux-subagent/types.d.ts +2 -0
  85. package/dist/hooks/agent-usage-reminder/constants.d.ts +1 -1
  86. package/dist/hooks/anthropic-context-window-limit-recovery/message-builder.d.ts +4 -1
  87. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-hook.d.ts +10 -0
  88. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-hook.test-support.d.ts +29 -0
  89. package/dist/hooks/anthropic-context-window-limit-recovery/session-timeout-map.d.ts +2 -0
  90. package/dist/hooks/anthropic-context-window-limit-recovery/state.d.ts +2 -0
  91. package/dist/hooks/anthropic-context-window-limit-recovery/types.d.ts +1 -0
  92. package/dist/hooks/atlas/subagent-session-id.d.ts +1 -0
  93. package/dist/hooks/atlas/system-reminder-templates.d.ts +2 -2
  94. package/dist/hooks/auto-slash-command/executor.d.ts +1 -0
  95. package/dist/hooks/auto-slash-command/hook.d.ts +1 -0
  96. package/dist/hooks/auto-update-checker/checker/sync-package-json.d.ts +1 -1
  97. package/dist/hooks/auto-update-checker/constants.d.ts +3 -2
  98. package/dist/hooks/auto-update-checker/hook/background-update-check.d.ts +29 -1
  99. package/dist/hooks/bash-file-read-guard.d.ts +2 -0
  100. package/dist/hooks/claude-code-hooks/claude-code-hooks-hook.d.ts +1 -0
  101. package/dist/hooks/claude-code-hooks/config-loader.d.ts +1 -0
  102. package/dist/hooks/claude-code-hooks/config.d.ts +1 -0
  103. package/dist/hooks/claude-code-hooks/handlers/session-event-handler.d.ts +3 -1
  104. package/dist/hooks/claude-code-hooks/session-hook-state.d.ts +1 -0
  105. package/dist/hooks/claude-code-hooks/tool-input-cache.d.ts +2 -0
  106. package/dist/hooks/claude-code-hooks/transcript.d.ts +1 -3
  107. package/dist/hooks/comment-checker/hook.d.ts +1 -0
  108. package/dist/hooks/comment-checker/pending-calls.d.ts +1 -0
  109. package/dist/hooks/index.d.ts +3 -0
  110. package/dist/hooks/keyword-detector/ultrawork/default.d.ts +1 -1
  111. package/dist/hooks/keyword-detector/ultrawork/gemini.d.ts +1 -1
  112. package/dist/hooks/keyword-detector/ultrawork/gpt.d.ts +1 -1
  113. package/dist/hooks/legacy-plugin-toast/auto-migrate-runner.d.ts +2 -0
  114. package/dist/hooks/legacy-plugin-toast/auto-migrate.d.ts +7 -0
  115. package/dist/hooks/legacy-plugin-toast/hook.d.ts +18 -0
  116. package/dist/hooks/legacy-plugin-toast/index.d.ts +1 -0
  117. package/dist/hooks/legacy-plugin-toast/plugin-entry-migrator.d.ts +1 -0
  118. package/dist/hooks/model-fallback/chat-message-fallback-handler.d.ts +23 -0
  119. package/dist/hooks/model-fallback/next-fallback.d.ts +6 -0
  120. package/dist/hooks/ralph-loop/completion-promise-detector-test-input.d.ts +11 -0
  121. package/dist/hooks/rules-injector/constants.d.ts +1 -0
  122. package/dist/hooks/rules-injector/finder.d.ts +1 -1
  123. package/dist/hooks/rules-injector/hook.d.ts +2 -0
  124. package/dist/hooks/rules-injector/injector.d.ts +2 -0
  125. package/dist/hooks/rules-injector/rule-file-finder.d.ts +9 -1
  126. package/dist/hooks/runtime-fallback/fallback-models.d.ts +1 -1
  127. package/dist/hooks/runtime-fallback/retry-model-payload.d.ts +5 -1
  128. package/dist/hooks/start-work/context-info-builder.d.ts +12 -0
  129. package/dist/hooks/start-work/start-work-hook.d.ts +6 -0
  130. package/dist/hooks/start-work/worktree-block.d.ts +1 -0
  131. package/dist/hooks/todo-continuation-enforcer/resolve-message-info.d.ts +2 -2
  132. package/dist/hooks/todo-continuation-enforcer/session-state.d.ts +4 -3
  133. package/dist/hooks/todo-continuation-enforcer/types.d.ts +7 -0
  134. package/dist/hooks/todo-description-override/description.d.ts +1 -1
  135. package/dist/hooks/tool-pair-validator/hook.d.ts +28 -0
  136. package/dist/hooks/tool-pair-validator/index.d.ts +1 -0
  137. package/dist/hooks/write-existing-file-guard/hook.d.ts +12 -0
  138. package/dist/hooks/write-existing-file-guard/session-read-permissions.d.ts +3 -0
  139. package/dist/hooks/write-existing-file-guard/tool-execute-before-handler.d.ts +15 -0
  140. package/dist/index.js +9660 -5056
  141. package/dist/mcp/websearch.d.ts +2 -2
  142. package/dist/oh-my-opencode.schema.json +1052 -3
  143. package/dist/openclaw/dispatcher.d.ts +6 -0
  144. package/dist/plugin/command-execute-before.d.ts +17 -0
  145. package/dist/plugin/hooks/create-core-hooks.d.ts +3 -0
  146. package/dist/plugin/hooks/create-session-hooks.d.ts +2 -1
  147. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +2 -1
  148. package/dist/plugin/hooks/create-transform-hooks.d.ts +2 -1
  149. package/dist/plugin/tool-registry.d.ts +1 -0
  150. package/dist/plugin/types.d.ts +1 -0
  151. package/dist/plugin-dispose.d.ts +3 -0
  152. package/dist/shared/agent-display-names.d.ts +8 -0
  153. package/dist/shared/archive-entry-validator.d.ts +6 -0
  154. package/dist/shared/background-output-consumption.d.ts +5 -0
  155. package/dist/shared/connected-providers-cache.d.ts +2 -1
  156. package/dist/shared/contains-path.d.ts +2 -0
  157. package/dist/shared/external-plugin-detector.d.ts +14 -0
  158. package/dist/shared/index.d.ts +3 -0
  159. package/dist/shared/is-abort-error.d.ts +1 -0
  160. package/dist/shared/json-file-cache-store.d.ts +16 -0
  161. package/dist/shared/jsonc-parser.d.ts +1 -0
  162. package/dist/shared/legacy-plugin-warning.d.ts +1 -0
  163. package/dist/shared/load-opencode-plugins.d.ts +1 -0
  164. package/dist/shared/log-legacy-plugin-startup-warning.d.ts +10 -1
  165. package/dist/shared/migrate-legacy-config-file.d.ts +1 -0
  166. package/dist/shared/migrate-legacy-plugin-entry.d.ts +1 -0
  167. package/dist/shared/model-capabilities/bundled-snapshot.d.ts +2 -0
  168. package/dist/shared/model-capabilities/get-model-capabilities.d.ts +2 -0
  169. package/dist/shared/model-capabilities/index.d.ts +3 -0
  170. package/dist/shared/model-capabilities/runtime-model-readers.d.ts +11 -0
  171. package/dist/shared/{model-capabilities.d.ts → model-capabilities/types.d.ts} +35 -32
  172. package/dist/shared/model-suggestion-retry.d.ts +0 -9
  173. package/dist/shared/plugin-entry-migrator.d.ts +3 -0
  174. package/dist/shared/session-category-registry.d.ts +0 -24
  175. package/dist/shared/session-cursor.d.ts +6 -0
  176. package/dist/shared/skill-path-resolver.d.ts +0 -8
  177. package/dist/shared/task-system-enabled.d.ts +6 -0
  178. package/dist/shared/tmux/tmux-utils/server-health.d.ts +1 -0
  179. package/dist/shared/tmux/tmux-utils/session-spawn.d.ts +3 -0
  180. package/dist/shared/tmux/tmux-utils/window-spawn.d.ts +3 -0
  181. package/dist/shared/tmux/tmux-utils.d.ts +3 -1
  182. package/dist/shared/write-file-atomically.d.ts +1 -0
  183. package/dist/shared/zip-entry-listing/powershell-zip-entry-listing.d.ts +4 -0
  184. package/dist/shared/zip-entry-listing/python-zip-entry-listing.d.ts +3 -0
  185. package/dist/shared/zip-entry-listing/read-zip-symlink-target.d.ts +1 -0
  186. package/dist/shared/zip-entry-listing/tar-zip-entry-listing.d.ts +3 -0
  187. package/dist/shared/zip-entry-listing/zipinfo-zip-entry-listing.d.ts +4 -0
  188. package/dist/shared/zip-entry-listing.d.ts +4 -0
  189. package/dist/tools/call-omo-agent/background-executor.d.ts +2 -1
  190. package/dist/tools/call-omo-agent/sync-executor.d.ts +2 -1
  191. package/dist/tools/delegate-task/anthropic-categories.d.ts +2 -0
  192. package/dist/tools/delegate-task/builtin-categories.d.ts +4 -0
  193. package/dist/tools/delegate-task/builtin-category-definition.d.ts +7 -0
  194. package/dist/tools/delegate-task/constants.d.ts +1 -12
  195. package/dist/tools/delegate-task/executor-types.d.ts +2 -1
  196. package/dist/tools/delegate-task/google-categories.d.ts +2 -0
  197. package/dist/tools/delegate-task/kimi-categories.d.ts +2 -0
  198. package/dist/tools/delegate-task/openai-categories.d.ts +2 -0
  199. package/dist/tools/delegate-task/prompt-builder.d.ts +1 -1
  200. package/dist/tools/delegate-task/sync-prompt-sender.d.ts +2 -0
  201. package/dist/tools/delegate-task/types.d.ts +2 -1
  202. package/dist/tools/grep/cli.d.ts +3 -2
  203. package/dist/tools/grep/constants.d.ts +1 -2
  204. package/dist/tools/hashline-edit/tool-description.d.ts +1 -1
  205. package/dist/tools/look-at/constants.d.ts +1 -1
  206. package/dist/tools/lsp/infer-extension.d.ts +1 -0
  207. package/dist/tools/session-manager/file-storage.d.ts +8 -0
  208. package/dist/tools/session-manager/sdk-storage.d.ts +8 -0
  209. package/dist/tools/session-manager/sdk-unavailable.d.ts +1 -0
  210. package/dist/tools/session-manager/storage.d.ts +1 -1
  211. package/dist/tools/skill/description-formatter.d.ts +3 -0
  212. package/dist/tools/skill/mcp-capability-formatter.d.ts +3 -0
  213. package/dist/tools/skill/native-skills.d.ts +12 -0
  214. package/dist/tools/skill/scope-priority.d.ts +4 -0
  215. package/dist/tools/skill/skill-body.d.ts +2 -0
  216. package/dist/tools/skill/skill-matcher.d.ts +5 -0
  217. package/dist/tools/skill/types.d.ts +30 -2
  218. package/dist/tools/skill-mcp/tools.d.ts +1 -1
  219. package/package.json +14 -14
  220. package/postinstall.mjs +12 -0
  221. package/dist/hooks/openclaw.d.ts +0 -11
@@ -36,7 +36,9 @@
36
36
  "agent-browser",
37
37
  "dev-browser",
38
38
  "frontend-ui-ux",
39
- "git-master"
39
+ "git-master",
40
+ "review-work",
41
+ "ai-slop-remover"
40
42
  ]
41
43
  }
42
44
  },
@@ -57,7 +59,8 @@
57
59
  "cancel-ralph",
58
60
  "refactor",
59
61
  "start-work",
60
- "stop-continuation"
62
+ "stop-continuation",
63
+ "remove-ai-slops"
61
64
  ]
62
65
  }
63
66
  },
@@ -67,6 +70,12 @@
67
70
  "type": "string"
68
71
  }
69
72
  },
73
+ "mcp_env_allowlist": {
74
+ "type": "array",
75
+ "items": {
76
+ "type": "string"
77
+ }
78
+ },
70
79
  "hashline_edit": {
71
80
  "type": "boolean"
72
81
  },
@@ -87,6 +96,73 @@
87
96
  {
88
97
  "type": "string"
89
98
  },
99
+ {
100
+ "type": "array",
101
+ "items": {
102
+ "type": "string"
103
+ }
104
+ },
105
+ {
106
+ "type": "array",
107
+ "items": {
108
+ "type": "object",
109
+ "properties": {
110
+ "model": {
111
+ "type": "string"
112
+ },
113
+ "variant": {
114
+ "type": "string"
115
+ },
116
+ "reasoningEffort": {
117
+ "type": "string",
118
+ "enum": [
119
+ "none",
120
+ "minimal",
121
+ "low",
122
+ "medium",
123
+ "high",
124
+ "xhigh"
125
+ ]
126
+ },
127
+ "temperature": {
128
+ "type": "number",
129
+ "minimum": 0,
130
+ "maximum": 2
131
+ },
132
+ "top_p": {
133
+ "type": "number",
134
+ "minimum": 0,
135
+ "maximum": 1
136
+ },
137
+ "maxTokens": {
138
+ "type": "number"
139
+ },
140
+ "thinking": {
141
+ "type": "object",
142
+ "properties": {
143
+ "type": {
144
+ "type": "string",
145
+ "enum": [
146
+ "enabled",
147
+ "disabled"
148
+ ]
149
+ },
150
+ "budgetTokens": {
151
+ "type": "number"
152
+ }
153
+ },
154
+ "required": [
155
+ "type"
156
+ ],
157
+ "additionalProperties": false
158
+ }
159
+ },
160
+ "required": [
161
+ "model"
162
+ ],
163
+ "additionalProperties": false
164
+ }
165
+ },
90
166
  {
91
167
  "type": "array",
92
168
  "items": {
@@ -370,6 +446,73 @@
370
446
  {
371
447
  "type": "string"
372
448
  },
449
+ {
450
+ "type": "array",
451
+ "items": {
452
+ "type": "string"
453
+ }
454
+ },
455
+ {
456
+ "type": "array",
457
+ "items": {
458
+ "type": "object",
459
+ "properties": {
460
+ "model": {
461
+ "type": "string"
462
+ },
463
+ "variant": {
464
+ "type": "string"
465
+ },
466
+ "reasoningEffort": {
467
+ "type": "string",
468
+ "enum": [
469
+ "none",
470
+ "minimal",
471
+ "low",
472
+ "medium",
473
+ "high",
474
+ "xhigh"
475
+ ]
476
+ },
477
+ "temperature": {
478
+ "type": "number",
479
+ "minimum": 0,
480
+ "maximum": 2
481
+ },
482
+ "top_p": {
483
+ "type": "number",
484
+ "minimum": 0,
485
+ "maximum": 1
486
+ },
487
+ "maxTokens": {
488
+ "type": "number"
489
+ },
490
+ "thinking": {
491
+ "type": "object",
492
+ "properties": {
493
+ "type": {
494
+ "type": "string",
495
+ "enum": [
496
+ "enabled",
497
+ "disabled"
498
+ ]
499
+ },
500
+ "budgetTokens": {
501
+ "type": "number"
502
+ }
503
+ },
504
+ "required": [
505
+ "type"
506
+ ],
507
+ "additionalProperties": false
508
+ }
509
+ },
510
+ "required": [
511
+ "model"
512
+ ],
513
+ "additionalProperties": false
514
+ }
515
+ },
373
516
  {
374
517
  "type": "array",
375
518
  "items": {
@@ -653,6 +796,73 @@
653
796
  {
654
797
  "type": "string"
655
798
  },
799
+ {
800
+ "type": "array",
801
+ "items": {
802
+ "type": "string"
803
+ }
804
+ },
805
+ {
806
+ "type": "array",
807
+ "items": {
808
+ "type": "object",
809
+ "properties": {
810
+ "model": {
811
+ "type": "string"
812
+ },
813
+ "variant": {
814
+ "type": "string"
815
+ },
816
+ "reasoningEffort": {
817
+ "type": "string",
818
+ "enum": [
819
+ "none",
820
+ "minimal",
821
+ "low",
822
+ "medium",
823
+ "high",
824
+ "xhigh"
825
+ ]
826
+ },
827
+ "temperature": {
828
+ "type": "number",
829
+ "minimum": 0,
830
+ "maximum": 2
831
+ },
832
+ "top_p": {
833
+ "type": "number",
834
+ "minimum": 0,
835
+ "maximum": 1
836
+ },
837
+ "maxTokens": {
838
+ "type": "number"
839
+ },
840
+ "thinking": {
841
+ "type": "object",
842
+ "properties": {
843
+ "type": {
844
+ "type": "string",
845
+ "enum": [
846
+ "enabled",
847
+ "disabled"
848
+ ]
849
+ },
850
+ "budgetTokens": {
851
+ "type": "number"
852
+ }
853
+ },
854
+ "required": [
855
+ "type"
856
+ ],
857
+ "additionalProperties": false
858
+ }
859
+ },
860
+ "required": [
861
+ "model"
862
+ ],
863
+ "additionalProperties": false
864
+ }
865
+ },
656
866
  {
657
867
  "type": "array",
658
868
  "items": {
@@ -936,6 +1146,73 @@
936
1146
  {
937
1147
  "type": "string"
938
1148
  },
1149
+ {
1150
+ "type": "array",
1151
+ "items": {
1152
+ "type": "string"
1153
+ }
1154
+ },
1155
+ {
1156
+ "type": "array",
1157
+ "items": {
1158
+ "type": "object",
1159
+ "properties": {
1160
+ "model": {
1161
+ "type": "string"
1162
+ },
1163
+ "variant": {
1164
+ "type": "string"
1165
+ },
1166
+ "reasoningEffort": {
1167
+ "type": "string",
1168
+ "enum": [
1169
+ "none",
1170
+ "minimal",
1171
+ "low",
1172
+ "medium",
1173
+ "high",
1174
+ "xhigh"
1175
+ ]
1176
+ },
1177
+ "temperature": {
1178
+ "type": "number",
1179
+ "minimum": 0,
1180
+ "maximum": 2
1181
+ },
1182
+ "top_p": {
1183
+ "type": "number",
1184
+ "minimum": 0,
1185
+ "maximum": 1
1186
+ },
1187
+ "maxTokens": {
1188
+ "type": "number"
1189
+ },
1190
+ "thinking": {
1191
+ "type": "object",
1192
+ "properties": {
1193
+ "type": {
1194
+ "type": "string",
1195
+ "enum": [
1196
+ "enabled",
1197
+ "disabled"
1198
+ ]
1199
+ },
1200
+ "budgetTokens": {
1201
+ "type": "number"
1202
+ }
1203
+ },
1204
+ "required": [
1205
+ "type"
1206
+ ],
1207
+ "additionalProperties": false
1208
+ }
1209
+ },
1210
+ "required": [
1211
+ "model"
1212
+ ],
1213
+ "additionalProperties": false
1214
+ }
1215
+ },
939
1216
  {
940
1217
  "type": "array",
941
1218
  "items": {
@@ -1222,6 +1499,73 @@
1222
1499
  {
1223
1500
  "type": "string"
1224
1501
  },
1502
+ {
1503
+ "type": "array",
1504
+ "items": {
1505
+ "type": "string"
1506
+ }
1507
+ },
1508
+ {
1509
+ "type": "array",
1510
+ "items": {
1511
+ "type": "object",
1512
+ "properties": {
1513
+ "model": {
1514
+ "type": "string"
1515
+ },
1516
+ "variant": {
1517
+ "type": "string"
1518
+ },
1519
+ "reasoningEffort": {
1520
+ "type": "string",
1521
+ "enum": [
1522
+ "none",
1523
+ "minimal",
1524
+ "low",
1525
+ "medium",
1526
+ "high",
1527
+ "xhigh"
1528
+ ]
1529
+ },
1530
+ "temperature": {
1531
+ "type": "number",
1532
+ "minimum": 0,
1533
+ "maximum": 2
1534
+ },
1535
+ "top_p": {
1536
+ "type": "number",
1537
+ "minimum": 0,
1538
+ "maximum": 1
1539
+ },
1540
+ "maxTokens": {
1541
+ "type": "number"
1542
+ },
1543
+ "thinking": {
1544
+ "type": "object",
1545
+ "properties": {
1546
+ "type": {
1547
+ "type": "string",
1548
+ "enum": [
1549
+ "enabled",
1550
+ "disabled"
1551
+ ]
1552
+ },
1553
+ "budgetTokens": {
1554
+ "type": "number"
1555
+ }
1556
+ },
1557
+ "required": [
1558
+ "type"
1559
+ ],
1560
+ "additionalProperties": false
1561
+ }
1562
+ },
1563
+ "required": [
1564
+ "model"
1565
+ ],
1566
+ "additionalProperties": false
1567
+ }
1568
+ },
1225
1569
  {
1226
1570
  "type": "array",
1227
1571
  "items": {
@@ -1505,6 +1849,73 @@
1505
1849
  {
1506
1850
  "type": "string"
1507
1851
  },
1852
+ {
1853
+ "type": "array",
1854
+ "items": {
1855
+ "type": "string"
1856
+ }
1857
+ },
1858
+ {
1859
+ "type": "array",
1860
+ "items": {
1861
+ "type": "object",
1862
+ "properties": {
1863
+ "model": {
1864
+ "type": "string"
1865
+ },
1866
+ "variant": {
1867
+ "type": "string"
1868
+ },
1869
+ "reasoningEffort": {
1870
+ "type": "string",
1871
+ "enum": [
1872
+ "none",
1873
+ "minimal",
1874
+ "low",
1875
+ "medium",
1876
+ "high",
1877
+ "xhigh"
1878
+ ]
1879
+ },
1880
+ "temperature": {
1881
+ "type": "number",
1882
+ "minimum": 0,
1883
+ "maximum": 2
1884
+ },
1885
+ "top_p": {
1886
+ "type": "number",
1887
+ "minimum": 0,
1888
+ "maximum": 1
1889
+ },
1890
+ "maxTokens": {
1891
+ "type": "number"
1892
+ },
1893
+ "thinking": {
1894
+ "type": "object",
1895
+ "properties": {
1896
+ "type": {
1897
+ "type": "string",
1898
+ "enum": [
1899
+ "enabled",
1900
+ "disabled"
1901
+ ]
1902
+ },
1903
+ "budgetTokens": {
1904
+ "type": "number"
1905
+ }
1906
+ },
1907
+ "required": [
1908
+ "type"
1909
+ ],
1910
+ "additionalProperties": false
1911
+ }
1912
+ },
1913
+ "required": [
1914
+ "model"
1915
+ ],
1916
+ "additionalProperties": false
1917
+ }
1918
+ },
1508
1919
  {
1509
1920
  "type": "array",
1510
1921
  "items": {
@@ -1788,6 +2199,73 @@
1788
2199
  {
1789
2200
  "type": "string"
1790
2201
  },
2202
+ {
2203
+ "type": "array",
2204
+ "items": {
2205
+ "type": "string"
2206
+ }
2207
+ },
2208
+ {
2209
+ "type": "array",
2210
+ "items": {
2211
+ "type": "object",
2212
+ "properties": {
2213
+ "model": {
2214
+ "type": "string"
2215
+ },
2216
+ "variant": {
2217
+ "type": "string"
2218
+ },
2219
+ "reasoningEffort": {
2220
+ "type": "string",
2221
+ "enum": [
2222
+ "none",
2223
+ "minimal",
2224
+ "low",
2225
+ "medium",
2226
+ "high",
2227
+ "xhigh"
2228
+ ]
2229
+ },
2230
+ "temperature": {
2231
+ "type": "number",
2232
+ "minimum": 0,
2233
+ "maximum": 2
2234
+ },
2235
+ "top_p": {
2236
+ "type": "number",
2237
+ "minimum": 0,
2238
+ "maximum": 1
2239
+ },
2240
+ "maxTokens": {
2241
+ "type": "number"
2242
+ },
2243
+ "thinking": {
2244
+ "type": "object",
2245
+ "properties": {
2246
+ "type": {
2247
+ "type": "string",
2248
+ "enum": [
2249
+ "enabled",
2250
+ "disabled"
2251
+ ]
2252
+ },
2253
+ "budgetTokens": {
2254
+ "type": "number"
2255
+ }
2256
+ },
2257
+ "required": [
2258
+ "type"
2259
+ ],
2260
+ "additionalProperties": false
2261
+ }
2262
+ },
2263
+ "required": [
2264
+ "model"
2265
+ ],
2266
+ "additionalProperties": false
2267
+ }
2268
+ },
1791
2269
  {
1792
2270
  "type": "array",
1793
2271
  "items": {
@@ -2071,6 +2549,73 @@
2071
2549
  {
2072
2550
  "type": "string"
2073
2551
  },
2552
+ {
2553
+ "type": "array",
2554
+ "items": {
2555
+ "type": "string"
2556
+ }
2557
+ },
2558
+ {
2559
+ "type": "array",
2560
+ "items": {
2561
+ "type": "object",
2562
+ "properties": {
2563
+ "model": {
2564
+ "type": "string"
2565
+ },
2566
+ "variant": {
2567
+ "type": "string"
2568
+ },
2569
+ "reasoningEffort": {
2570
+ "type": "string",
2571
+ "enum": [
2572
+ "none",
2573
+ "minimal",
2574
+ "low",
2575
+ "medium",
2576
+ "high",
2577
+ "xhigh"
2578
+ ]
2579
+ },
2580
+ "temperature": {
2581
+ "type": "number",
2582
+ "minimum": 0,
2583
+ "maximum": 2
2584
+ },
2585
+ "top_p": {
2586
+ "type": "number",
2587
+ "minimum": 0,
2588
+ "maximum": 1
2589
+ },
2590
+ "maxTokens": {
2591
+ "type": "number"
2592
+ },
2593
+ "thinking": {
2594
+ "type": "object",
2595
+ "properties": {
2596
+ "type": {
2597
+ "type": "string",
2598
+ "enum": [
2599
+ "enabled",
2600
+ "disabled"
2601
+ ]
2602
+ },
2603
+ "budgetTokens": {
2604
+ "type": "number"
2605
+ }
2606
+ },
2607
+ "required": [
2608
+ "type"
2609
+ ],
2610
+ "additionalProperties": false
2611
+ }
2612
+ },
2613
+ "required": [
2614
+ "model"
2615
+ ],
2616
+ "additionalProperties": false
2617
+ }
2618
+ },
2074
2619
  {
2075
2620
  "type": "array",
2076
2621
  "items": {
@@ -2354,6 +2899,73 @@
2354
2899
  {
2355
2900
  "type": "string"
2356
2901
  },
2902
+ {
2903
+ "type": "array",
2904
+ "items": {
2905
+ "type": "string"
2906
+ }
2907
+ },
2908
+ {
2909
+ "type": "array",
2910
+ "items": {
2911
+ "type": "object",
2912
+ "properties": {
2913
+ "model": {
2914
+ "type": "string"
2915
+ },
2916
+ "variant": {
2917
+ "type": "string"
2918
+ },
2919
+ "reasoningEffort": {
2920
+ "type": "string",
2921
+ "enum": [
2922
+ "none",
2923
+ "minimal",
2924
+ "low",
2925
+ "medium",
2926
+ "high",
2927
+ "xhigh"
2928
+ ]
2929
+ },
2930
+ "temperature": {
2931
+ "type": "number",
2932
+ "minimum": 0,
2933
+ "maximum": 2
2934
+ },
2935
+ "top_p": {
2936
+ "type": "number",
2937
+ "minimum": 0,
2938
+ "maximum": 1
2939
+ },
2940
+ "maxTokens": {
2941
+ "type": "number"
2942
+ },
2943
+ "thinking": {
2944
+ "type": "object",
2945
+ "properties": {
2946
+ "type": {
2947
+ "type": "string",
2948
+ "enum": [
2949
+ "enabled",
2950
+ "disabled"
2951
+ ]
2952
+ },
2953
+ "budgetTokens": {
2954
+ "type": "number"
2955
+ }
2956
+ },
2957
+ "required": [
2958
+ "type"
2959
+ ],
2960
+ "additionalProperties": false
2961
+ }
2962
+ },
2963
+ "required": [
2964
+ "model"
2965
+ ],
2966
+ "additionalProperties": false
2967
+ }
2968
+ },
2357
2969
  {
2358
2970
  "type": "array",
2359
2971
  "items": {
@@ -2637,6 +3249,73 @@
2637
3249
  {
2638
3250
  "type": "string"
2639
3251
  },
3252
+ {
3253
+ "type": "array",
3254
+ "items": {
3255
+ "type": "string"
3256
+ }
3257
+ },
3258
+ {
3259
+ "type": "array",
3260
+ "items": {
3261
+ "type": "object",
3262
+ "properties": {
3263
+ "model": {
3264
+ "type": "string"
3265
+ },
3266
+ "variant": {
3267
+ "type": "string"
3268
+ },
3269
+ "reasoningEffort": {
3270
+ "type": "string",
3271
+ "enum": [
3272
+ "none",
3273
+ "minimal",
3274
+ "low",
3275
+ "medium",
3276
+ "high",
3277
+ "xhigh"
3278
+ ]
3279
+ },
3280
+ "temperature": {
3281
+ "type": "number",
3282
+ "minimum": 0,
3283
+ "maximum": 2
3284
+ },
3285
+ "top_p": {
3286
+ "type": "number",
3287
+ "minimum": 0,
3288
+ "maximum": 1
3289
+ },
3290
+ "maxTokens": {
3291
+ "type": "number"
3292
+ },
3293
+ "thinking": {
3294
+ "type": "object",
3295
+ "properties": {
3296
+ "type": {
3297
+ "type": "string",
3298
+ "enum": [
3299
+ "enabled",
3300
+ "disabled"
3301
+ ]
3302
+ },
3303
+ "budgetTokens": {
3304
+ "type": "number"
3305
+ }
3306
+ },
3307
+ "required": [
3308
+ "type"
3309
+ ],
3310
+ "additionalProperties": false
3311
+ }
3312
+ },
3313
+ "required": [
3314
+ "model"
3315
+ ],
3316
+ "additionalProperties": false
3317
+ }
3318
+ },
2640
3319
  {
2641
3320
  "type": "array",
2642
3321
  "items": {
@@ -2920,6 +3599,73 @@
2920
3599
  {
2921
3600
  "type": "string"
2922
3601
  },
3602
+ {
3603
+ "type": "array",
3604
+ "items": {
3605
+ "type": "string"
3606
+ }
3607
+ },
3608
+ {
3609
+ "type": "array",
3610
+ "items": {
3611
+ "type": "object",
3612
+ "properties": {
3613
+ "model": {
3614
+ "type": "string"
3615
+ },
3616
+ "variant": {
3617
+ "type": "string"
3618
+ },
3619
+ "reasoningEffort": {
3620
+ "type": "string",
3621
+ "enum": [
3622
+ "none",
3623
+ "minimal",
3624
+ "low",
3625
+ "medium",
3626
+ "high",
3627
+ "xhigh"
3628
+ ]
3629
+ },
3630
+ "temperature": {
3631
+ "type": "number",
3632
+ "minimum": 0,
3633
+ "maximum": 2
3634
+ },
3635
+ "top_p": {
3636
+ "type": "number",
3637
+ "minimum": 0,
3638
+ "maximum": 1
3639
+ },
3640
+ "maxTokens": {
3641
+ "type": "number"
3642
+ },
3643
+ "thinking": {
3644
+ "type": "object",
3645
+ "properties": {
3646
+ "type": {
3647
+ "type": "string",
3648
+ "enum": [
3649
+ "enabled",
3650
+ "disabled"
3651
+ ]
3652
+ },
3653
+ "budgetTokens": {
3654
+ "type": "number"
3655
+ }
3656
+ },
3657
+ "required": [
3658
+ "type"
3659
+ ],
3660
+ "additionalProperties": false
3661
+ }
3662
+ },
3663
+ "required": [
3664
+ "model"
3665
+ ],
3666
+ "additionalProperties": false
3667
+ }
3668
+ },
2923
3669
  {
2924
3670
  "type": "array",
2925
3671
  "items": {
@@ -3203,6 +3949,73 @@
3203
3949
  {
3204
3950
  "type": "string"
3205
3951
  },
3952
+ {
3953
+ "type": "array",
3954
+ "items": {
3955
+ "type": "string"
3956
+ }
3957
+ },
3958
+ {
3959
+ "type": "array",
3960
+ "items": {
3961
+ "type": "object",
3962
+ "properties": {
3963
+ "model": {
3964
+ "type": "string"
3965
+ },
3966
+ "variant": {
3967
+ "type": "string"
3968
+ },
3969
+ "reasoningEffort": {
3970
+ "type": "string",
3971
+ "enum": [
3972
+ "none",
3973
+ "minimal",
3974
+ "low",
3975
+ "medium",
3976
+ "high",
3977
+ "xhigh"
3978
+ ]
3979
+ },
3980
+ "temperature": {
3981
+ "type": "number",
3982
+ "minimum": 0,
3983
+ "maximum": 2
3984
+ },
3985
+ "top_p": {
3986
+ "type": "number",
3987
+ "minimum": 0,
3988
+ "maximum": 1
3989
+ },
3990
+ "maxTokens": {
3991
+ "type": "number"
3992
+ },
3993
+ "thinking": {
3994
+ "type": "object",
3995
+ "properties": {
3996
+ "type": {
3997
+ "type": "string",
3998
+ "enum": [
3999
+ "enabled",
4000
+ "disabled"
4001
+ ]
4002
+ },
4003
+ "budgetTokens": {
4004
+ "type": "number"
4005
+ }
4006
+ },
4007
+ "required": [
4008
+ "type"
4009
+ ],
4010
+ "additionalProperties": false
4011
+ }
4012
+ },
4013
+ "required": [
4014
+ "model"
4015
+ ],
4016
+ "additionalProperties": false
4017
+ }
4018
+ },
3206
4019
  {
3207
4020
  "type": "array",
3208
4021
  "items": {
@@ -3486,6 +4299,73 @@
3486
4299
  {
3487
4300
  "type": "string"
3488
4301
  },
4302
+ {
4303
+ "type": "array",
4304
+ "items": {
4305
+ "type": "string"
4306
+ }
4307
+ },
4308
+ {
4309
+ "type": "array",
4310
+ "items": {
4311
+ "type": "object",
4312
+ "properties": {
4313
+ "model": {
4314
+ "type": "string"
4315
+ },
4316
+ "variant": {
4317
+ "type": "string"
4318
+ },
4319
+ "reasoningEffort": {
4320
+ "type": "string",
4321
+ "enum": [
4322
+ "none",
4323
+ "minimal",
4324
+ "low",
4325
+ "medium",
4326
+ "high",
4327
+ "xhigh"
4328
+ ]
4329
+ },
4330
+ "temperature": {
4331
+ "type": "number",
4332
+ "minimum": 0,
4333
+ "maximum": 2
4334
+ },
4335
+ "top_p": {
4336
+ "type": "number",
4337
+ "minimum": 0,
4338
+ "maximum": 1
4339
+ },
4340
+ "maxTokens": {
4341
+ "type": "number"
4342
+ },
4343
+ "thinking": {
4344
+ "type": "object",
4345
+ "properties": {
4346
+ "type": {
4347
+ "type": "string",
4348
+ "enum": [
4349
+ "enabled",
4350
+ "disabled"
4351
+ ]
4352
+ },
4353
+ "budgetTokens": {
4354
+ "type": "number"
4355
+ }
4356
+ },
4357
+ "required": [
4358
+ "type"
4359
+ ],
4360
+ "additionalProperties": false
4361
+ }
4362
+ },
4363
+ "required": [
4364
+ "model"
4365
+ ],
4366
+ "additionalProperties": false
4367
+ }
4368
+ },
3489
4369
  {
3490
4370
  "type": "array",
3491
4371
  "items": {
@@ -3769,6 +4649,73 @@
3769
4649
  {
3770
4650
  "type": "string"
3771
4651
  },
4652
+ {
4653
+ "type": "array",
4654
+ "items": {
4655
+ "type": "string"
4656
+ }
4657
+ },
4658
+ {
4659
+ "type": "array",
4660
+ "items": {
4661
+ "type": "object",
4662
+ "properties": {
4663
+ "model": {
4664
+ "type": "string"
4665
+ },
4666
+ "variant": {
4667
+ "type": "string"
4668
+ },
4669
+ "reasoningEffort": {
4670
+ "type": "string",
4671
+ "enum": [
4672
+ "none",
4673
+ "minimal",
4674
+ "low",
4675
+ "medium",
4676
+ "high",
4677
+ "xhigh"
4678
+ ]
4679
+ },
4680
+ "temperature": {
4681
+ "type": "number",
4682
+ "minimum": 0,
4683
+ "maximum": 2
4684
+ },
4685
+ "top_p": {
4686
+ "type": "number",
4687
+ "minimum": 0,
4688
+ "maximum": 1
4689
+ },
4690
+ "maxTokens": {
4691
+ "type": "number"
4692
+ },
4693
+ "thinking": {
4694
+ "type": "object",
4695
+ "properties": {
4696
+ "type": {
4697
+ "type": "string",
4698
+ "enum": [
4699
+ "enabled",
4700
+ "disabled"
4701
+ ]
4702
+ },
4703
+ "budgetTokens": {
4704
+ "type": "number"
4705
+ }
4706
+ },
4707
+ "required": [
4708
+ "type"
4709
+ ],
4710
+ "additionalProperties": false
4711
+ }
4712
+ },
4713
+ "required": [
4714
+ "model"
4715
+ ],
4716
+ "additionalProperties": false
4717
+ }
4718
+ },
3772
4719
  {
3773
4720
  "type": "array",
3774
4721
  "items": {
@@ -4063,6 +5010,73 @@
4063
5010
  {
4064
5011
  "type": "string"
4065
5012
  },
5013
+ {
5014
+ "type": "array",
5015
+ "items": {
5016
+ "type": "string"
5017
+ }
5018
+ },
5019
+ {
5020
+ "type": "array",
5021
+ "items": {
5022
+ "type": "object",
5023
+ "properties": {
5024
+ "model": {
5025
+ "type": "string"
5026
+ },
5027
+ "variant": {
5028
+ "type": "string"
5029
+ },
5030
+ "reasoningEffort": {
5031
+ "type": "string",
5032
+ "enum": [
5033
+ "none",
5034
+ "minimal",
5035
+ "low",
5036
+ "medium",
5037
+ "high",
5038
+ "xhigh"
5039
+ ]
5040
+ },
5041
+ "temperature": {
5042
+ "type": "number",
5043
+ "minimum": 0,
5044
+ "maximum": 2
5045
+ },
5046
+ "top_p": {
5047
+ "type": "number",
5048
+ "minimum": 0,
5049
+ "maximum": 1
5050
+ },
5051
+ "maxTokens": {
5052
+ "type": "number"
5053
+ },
5054
+ "thinking": {
5055
+ "type": "object",
5056
+ "properties": {
5057
+ "type": {
5058
+ "type": "string",
5059
+ "enum": [
5060
+ "enabled",
5061
+ "disabled"
5062
+ ]
5063
+ },
5064
+ "budgetTokens": {
5065
+ "type": "number"
5066
+ }
5067
+ },
5068
+ "required": [
5069
+ "type"
5070
+ ],
5071
+ "additionalProperties": false
5072
+ }
5073
+ },
5074
+ "required": [
5075
+ "model"
5076
+ ],
5077
+ "additionalProperties": false
5078
+ }
5079
+ },
4066
5080
  {
4067
5081
  "type": "array",
4068
5082
  "items": {
@@ -4261,6 +5275,10 @@
4261
5275
  },
4262
5276
  "replace_plan": {
4263
5277
  "type": "boolean"
5278
+ },
5279
+ "tdd": {
5280
+ "default": true,
5281
+ "type": "boolean"
4264
5282
  }
4265
5283
  },
4266
5284
  "additionalProperties": false
@@ -4423,6 +5441,11 @@
4423
5441
  },
4424
5442
  "model_fallback_title": {
4425
5443
  "type": "boolean"
5444
+ },
5445
+ "max_tools": {
5446
+ "type": "integer",
5447
+ "minimum": 1,
5448
+ "maximum": 9007199254740991
4426
5449
  }
4427
5450
  },
4428
5451
  "additionalProperties": false
@@ -4656,6 +5679,14 @@
4656
5679
  "type": "number",
4657
5680
  "minimum": 60000
4658
5681
  },
5682
+ "taskTtlMs": {
5683
+ "type": "number",
5684
+ "minimum": 300000
5685
+ },
5686
+ "sessionGoneTimeoutMs": {
5687
+ "type": "number",
5688
+ "minimum": 10000
5689
+ },
4659
5690
  "syncPollTimeoutMs": {
4660
5691
  "type": "number",
4661
5692
  "minimum": 60000
@@ -4872,6 +5903,11 @@
4872
5903
  "additionalProperties": false
4873
5904
  },
4874
5905
  "git_master": {
5906
+ "default": {
5907
+ "commit_footer": true,
5908
+ "include_co_authored_by": true,
5909
+ "git_env_prefix": "GIT_MASTER=1"
5910
+ },
4875
5911
  "type": "object",
4876
5912
  "properties": {
4877
5913
  "commit_footer": {
@@ -4966,6 +6002,15 @@
4966
6002
  "default": 40,
4967
6003
  "type": "number",
4968
6004
  "minimum": 20
6005
+ },
6006
+ "isolation": {
6007
+ "default": "inline",
6008
+ "type": "string",
6009
+ "enum": [
6010
+ "inline",
6011
+ "window",
6012
+ "session"
6013
+ ]
4969
6014
  }
4970
6015
  },
4971
6016
  "required": [
@@ -4973,7 +6018,8 @@
4973
6018
  "layout",
4974
6019
  "main_pane_size",
4975
6020
  "main_pane_min_width",
4976
- "agent_pane_min_width"
6021
+ "agent_pane_min_width",
6022
+ "isolation"
4977
6023
  ],
4978
6024
  "additionalProperties": false
4979
6025
  },
@@ -5022,5 +6068,8 @@
5022
6068
  }
5023
6069
  }
5024
6070
  },
6071
+ "required": [
6072
+ "git_master"
6073
+ ],
5025
6074
  "additionalProperties": false
5026
6075
  }