oh-my-parallel-agent-opencode 0.1.0 → 0.2.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 (529) hide show
  1. package/LICENSE.md +82 -0
  2. package/README.md +105 -42
  3. package/bin/oh-my-parallel-agent-opencode.js +80 -0
  4. package/bin/platform.js +38 -0
  5. package/bin/platform.test.ts +148 -0
  6. package/dist/agents/atlas.d.ts +22 -0
  7. package/dist/agents/dynamic-agent-prompt-builder.d.ts +30 -0
  8. package/dist/agents/explore.d.ts +7 -0
  9. package/dist/agents/hephaestus.d.ts +6 -0
  10. package/dist/agents/index.d.ts +12 -0
  11. package/dist/agents/librarian.d.ts +7 -0
  12. package/dist/agents/metis.d.ts +21 -0
  13. package/dist/agents/momus.d.ts +21 -0
  14. package/dist/agents/momus.test.d.ts +1 -0
  15. package/dist/agents/multimodal-looker.d.ts +7 -0
  16. package/dist/agents/oracle.d.ts +7 -0
  17. package/dist/agents/prometheus/behavioral-summary.d.ts +6 -0
  18. package/dist/agents/prometheus/high-accuracy-mode.d.ts +6 -0
  19. package/dist/agents/prometheus/identity-constraints.d.ts +7 -0
  20. package/dist/agents/prometheus/index.d.ts +39 -0
  21. package/dist/agents/prometheus/interview-mode.d.ts +7 -0
  22. package/dist/agents/prometheus/plan-generation.d.ts +7 -0
  23. package/dist/agents/prometheus/plan-template.d.ts +7 -0
  24. package/dist/agents/prometheus-prompt.test.d.ts +1 -0
  25. package/dist/agents/sisyphus-junior.d.ts +10 -0
  26. package/dist/agents/sisyphus-junior.test.d.ts +1 -0
  27. package/dist/agents/sisyphus.d.ts +8 -0
  28. package/dist/agents/types.d.ts +63 -0
  29. package/dist/agents/utils.d.ts +16 -0
  30. package/dist/agents/utils.test.d.ts +1 -0
  31. package/dist/cli/config-manager.d.ts +162 -0
  32. package/dist/cli/config-manager.test.d.ts +1 -0
  33. package/dist/cli/doctor/checks/auth.d.ts +7 -0
  34. package/dist/cli/doctor/checks/auth.test.d.ts +1 -0
  35. package/dist/cli/doctor/checks/config.d.ts +8 -0
  36. package/dist/cli/doctor/checks/config.test.d.ts +1 -0
  37. package/dist/cli/doctor/checks/dependencies.d.ts +8 -0
  38. package/dist/cli/doctor/checks/dependencies.test.d.ts +1 -0
  39. package/dist/cli/doctor/checks/gh.d.ts +13 -0
  40. package/dist/cli/doctor/checks/gh.test.d.ts +1 -0
  41. package/dist/cli/doctor/checks/index.d.ts +13 -0
  42. package/dist/cli/doctor/checks/lsp.d.ts +8 -0
  43. package/dist/cli/doctor/checks/lsp.test.d.ts +1 -0
  44. package/dist/cli/doctor/checks/mcp-oauth.d.ts +15 -0
  45. package/dist/cli/doctor/checks/mcp-oauth.test.d.ts +1 -0
  46. package/dist/cli/doctor/checks/mcp.d.ts +6 -0
  47. package/dist/cli/doctor/checks/mcp.test.d.ts +1 -0
  48. package/dist/cli/doctor/checks/model-resolution.d.ts +33 -0
  49. package/dist/cli/doctor/checks/model-resolution.test.d.ts +1 -0
  50. package/dist/cli/doctor/checks/opencode.d.ts +19 -0
  51. package/dist/cli/doctor/checks/opencode.test.d.ts +1 -0
  52. package/dist/cli/doctor/checks/plugin.d.ts +4 -0
  53. package/dist/cli/doctor/checks/plugin.test.d.ts +1 -0
  54. package/dist/cli/doctor/checks/version.d.ts +4 -0
  55. package/dist/cli/doctor/checks/version.test.d.ts +1 -0
  56. package/dist/cli/doctor/constants.d.ts +42 -0
  57. package/dist/cli/doctor/formatter.d.ts +12 -0
  58. package/dist/cli/doctor/formatter.test.d.ts +1 -0
  59. package/dist/cli/doctor/index.d.ts +5 -0
  60. package/dist/cli/doctor/runner.d.ts +7 -0
  61. package/dist/cli/doctor/runner.test.d.ts +1 -0
  62. package/dist/cli/doctor/types.d.ts +91 -0
  63. package/dist/cli/get-local-version/formatter.d.ts +3 -0
  64. package/dist/cli/get-local-version/index.d.ts +3 -0
  65. package/dist/cli/get-local-version/types.d.ts +13 -0
  66. package/dist/cli/index.d.ts +2 -0
  67. package/dist/cli/index.js +26903 -0
  68. package/dist/cli/index.test.d.ts +1 -0
  69. package/dist/cli/install.d.ts +2 -0
  70. package/dist/cli/install.test.d.ts +1 -0
  71. package/dist/cli/mcp-oauth/index.d.ts +6 -0
  72. package/dist/cli/mcp-oauth/index.test.d.ts +1 -0
  73. package/dist/cli/mcp-oauth/login.d.ts +6 -0
  74. package/dist/cli/mcp-oauth/login.test.d.ts +1 -0
  75. package/dist/cli/mcp-oauth/logout.d.ts +4 -0
  76. package/dist/cli/mcp-oauth/logout.test.d.ts +1 -0
  77. package/dist/cli/mcp-oauth/status.d.ts +1 -0
  78. package/dist/cli/mcp-oauth/status.test.d.ts +1 -0
  79. package/dist/cli/model-fallback.d.ts +18 -0
  80. package/dist/cli/model-fallback.test.d.ts +1 -0
  81. package/dist/cli/run/completion.d.ts +2 -0
  82. package/dist/cli/run/completion.test.d.ts +1 -0
  83. package/dist/cli/run/events.d.ts +14 -0
  84. package/dist/cli/run/events.test.d.ts +1 -0
  85. package/dist/cli/run/index.d.ts +2 -0
  86. package/dist/cli/run/runner.d.ts +2 -0
  87. package/dist/cli/run/types.d.ts +73 -0
  88. package/dist/cli/types.d.ts +39 -0
  89. package/dist/config/index.d.ts +2 -0
  90. package/dist/config/schema.d.ts +2651 -0
  91. package/dist/config/schema.test.d.ts +1 -0
  92. package/dist/features/background-agent/concurrency.d.ts +27 -0
  93. package/dist/features/background-agent/concurrency.test.d.ts +1 -0
  94. package/dist/features/background-agent/constants.d.ts +44 -0
  95. package/dist/features/background-agent/index.d.ts +4 -0
  96. package/dist/features/background-agent/manager.d.ts +118 -0
  97. package/dist/features/background-agent/manager.test.d.ts +1 -0
  98. package/dist/features/background-agent/result-handler.d.ts +15 -0
  99. package/dist/features/background-agent/spawner.d.ts +14 -0
  100. package/dist/features/background-agent/state.d.ts +35 -0
  101. package/dist/features/background-agent/types.d.ts +79 -0
  102. package/dist/features/boulder-state/constants.d.ts +10 -0
  103. package/dist/features/boulder-state/index.d.ts +3 -0
  104. package/dist/features/boulder-state/storage.d.ts +28 -0
  105. package/dist/features/boulder-state/storage.test.d.ts +1 -0
  106. package/dist/features/boulder-state/types.d.ts +24 -0
  107. package/dist/features/builtin-commands/commands.d.ts +2 -0
  108. package/dist/features/builtin-commands/index.d.ts +2 -0
  109. package/dist/features/builtin-commands/templates/init-deep.d.ts +1 -0
  110. package/dist/features/builtin-commands/templates/ralph-loop.d.ts +2 -0
  111. package/dist/features/builtin-commands/templates/refactor.d.ts +1 -0
  112. package/dist/features/builtin-commands/templates/start-work.d.ts +1 -0
  113. package/dist/features/builtin-commands/templates/stop-continuation.d.ts +1 -0
  114. package/dist/features/builtin-commands/templates/stop-continuation.test.d.ts +1 -0
  115. package/dist/features/builtin-commands/types.d.ts +6 -0
  116. package/dist/features/builtin-skills/index.d.ts +2 -0
  117. package/dist/features/builtin-skills/skills/dev-browser.d.ts +2 -0
  118. package/dist/features/builtin-skills/skills/frontend-ui-ux.d.ts +2 -0
  119. package/dist/features/builtin-skills/skills/git-master.d.ts +2 -0
  120. package/dist/features/builtin-skills/skills/index.d.ts +4 -0
  121. package/dist/features/builtin-skills/skills/playwright.d.ts +3 -0
  122. package/dist/features/builtin-skills/skills.d.ts +6 -0
  123. package/dist/features/builtin-skills/skills.test.d.ts +1 -0
  124. package/dist/features/builtin-skills/types.d.ts +15 -0
  125. package/dist/features/claude-code-agent-loader/index.d.ts +2 -0
  126. package/dist/features/claude-code-agent-loader/loader.d.ts +3 -0
  127. package/dist/features/claude-code-agent-loader/types.d.ts +14 -0
  128. package/dist/features/claude-code-command-loader/index.d.ts +2 -0
  129. package/dist/features/claude-code-command-loader/loader.d.ts +6 -0
  130. package/dist/features/claude-code-command-loader/types.d.ts +42 -0
  131. package/dist/features/claude-code-mcp-loader/env-expander.d.ts +2 -0
  132. package/dist/features/claude-code-mcp-loader/index.d.ts +10 -0
  133. package/dist/features/claude-code-mcp-loader/loader.d.ts +4 -0
  134. package/dist/features/claude-code-mcp-loader/loader.test.d.ts +1 -0
  135. package/dist/features/claude-code-mcp-loader/transformer.d.ts +2 -0
  136. package/dist/features/claude-code-mcp-loader/types.d.ts +39 -0
  137. package/dist/features/claude-code-plugin-loader/index.d.ts +3 -0
  138. package/dist/features/claude-code-plugin-loader/loader.d.ts +20 -0
  139. package/dist/features/claude-code-plugin-loader/types.d.ts +186 -0
  140. package/dist/features/claude-code-session-state/index.d.ts +1 -0
  141. package/dist/features/claude-code-session-state/state.d.ts +9 -0
  142. package/dist/features/claude-code-session-state/state.test.d.ts +1 -0
  143. package/dist/features/context-injector/collector.d.ts +11 -0
  144. package/dist/features/context-injector/collector.test.d.ts +1 -0
  145. package/dist/features/context-injector/index.d.ts +3 -0
  146. package/dist/features/context-injector/injector.d.ts +39 -0
  147. package/dist/features/context-injector/injector.test.d.ts +1 -0
  148. package/dist/features/context-injector/types.d.ts +83 -0
  149. package/dist/features/hook-message-injector/constants.d.ts +3 -0
  150. package/dist/features/hook-message-injector/index.d.ts +4 -0
  151. package/dist/features/hook-message-injector/injector.d.ts +19 -0
  152. package/dist/features/hook-message-injector/types.d.ts +46 -0
  153. package/dist/features/mcp-oauth/callback-server.d.ts +11 -0
  154. package/dist/features/mcp-oauth/callback-server.test.d.ts +1 -0
  155. package/dist/features/mcp-oauth/dcr.d.ts +34 -0
  156. package/dist/features/mcp-oauth/dcr.test.d.ts +1 -0
  157. package/dist/features/mcp-oauth/discovery.d.ts +8 -0
  158. package/dist/features/mcp-oauth/discovery.test.d.ts +1 -0
  159. package/dist/features/mcp-oauth/index.d.ts +1 -0
  160. package/dist/features/mcp-oauth/provider.d.ts +41 -0
  161. package/dist/features/mcp-oauth/provider.test.d.ts +1 -0
  162. package/dist/features/mcp-oauth/resource-indicator.d.ts +2 -0
  163. package/dist/features/mcp-oauth/resource-indicator.test.d.ts +1 -0
  164. package/dist/features/mcp-oauth/schema.d.ts +6 -0
  165. package/dist/features/mcp-oauth/schema.test.d.ts +1 -0
  166. package/dist/features/mcp-oauth/step-up.d.ts +8 -0
  167. package/dist/features/mcp-oauth/step-up.test.d.ts +1 -0
  168. package/dist/features/mcp-oauth/storage.d.ts +17 -0
  169. package/dist/features/mcp-oauth/storage.test.d.ts +1 -0
  170. package/dist/features/opencode-skill-loader/async-loader.d.ts +6 -0
  171. package/dist/features/opencode-skill-loader/async-loader.test.d.ts +1 -0
  172. package/dist/features/opencode-skill-loader/blocking.d.ts +2 -0
  173. package/dist/features/opencode-skill-loader/blocking.test.d.ts +1 -0
  174. package/dist/features/opencode-skill-loader/discover-worker.d.ts +1 -0
  175. package/dist/features/opencode-skill-loader/index.d.ts +4 -0
  176. package/dist/features/opencode-skill-loader/loader.d.ts +16 -0
  177. package/dist/features/opencode-skill-loader/loader.test.d.ts +1 -0
  178. package/dist/features/opencode-skill-loader/merger.d.ts +7 -0
  179. package/dist/features/opencode-skill-loader/skill-content.d.ts +21 -0
  180. package/dist/features/opencode-skill-loader/skill-content.test.d.ts +1 -0
  181. package/dist/features/opencode-skill-loader/types.d.ts +34 -0
  182. package/dist/features/sisyphus-swarm/mailbox/types.d.ts +191 -0
  183. package/dist/features/sisyphus-swarm/mailbox/types.test.d.ts +1 -0
  184. package/dist/features/sisyphus-tasks/storage.d.ts +9 -0
  185. package/dist/features/sisyphus-tasks/storage.test.d.ts +1 -0
  186. package/dist/features/sisyphus-tasks/types.d.ts +47 -0
  187. package/dist/features/sisyphus-tasks/types.test.d.ts +1 -0
  188. package/dist/features/skill-mcp-manager/env-cleaner.d.ts +2 -0
  189. package/dist/features/skill-mcp-manager/env-cleaner.test.d.ts +1 -0
  190. package/dist/features/skill-mcp-manager/index.d.ts +2 -0
  191. package/dist/features/skill-mcp-manager/manager.d.ts +50 -0
  192. package/dist/features/skill-mcp-manager/manager.test.d.ts +1 -0
  193. package/dist/features/skill-mcp-manager/types.d.ts +11 -0
  194. package/dist/features/task-toast-manager/index.d.ts +2 -0
  195. package/dist/features/task-toast-manager/manager.d.ts +58 -0
  196. package/dist/features/task-toast-manager/manager.test.d.ts +1 -0
  197. package/dist/features/task-toast-manager/types.d.ts +24 -0
  198. package/dist/features/tmux-subagent/action-executor.d.ts +22 -0
  199. package/dist/features/tmux-subagent/decision-engine.d.ts +38 -0
  200. package/dist/features/tmux-subagent/decision-engine.test.d.ts +1 -0
  201. package/dist/features/tmux-subagent/index.d.ts +5 -0
  202. package/dist/features/tmux-subagent/manager.d.ts +59 -0
  203. package/dist/features/tmux-subagent/manager.test.d.ts +1 -0
  204. package/dist/features/tmux-subagent/pane-state-querier.d.ts +2 -0
  205. package/dist/features/tmux-subagent/types.d.ts +53 -0
  206. package/dist/hooks/agent-usage-reminder/constants.d.ts +5 -0
  207. package/dist/hooks/agent-usage-reminder/index.d.ts +22 -0
  208. package/dist/hooks/agent-usage-reminder/storage.d.ts +4 -0
  209. package/dist/hooks/agent-usage-reminder/types.d.ts +6 -0
  210. package/dist/hooks/anthropic-context-window-limit-recovery/executor.d.ts +4 -0
  211. package/dist/hooks/anthropic-context-window-limit-recovery/executor.test.d.ts +1 -0
  212. package/dist/hooks/anthropic-context-window-limit-recovery/index.d.ts +16 -0
  213. package/dist/hooks/anthropic-context-window-limit-recovery/parser.d.ts +2 -0
  214. package/dist/hooks/anthropic-context-window-limit-recovery/pruning-deduplication.d.ts +7 -0
  215. package/dist/hooks/anthropic-context-window-limit-recovery/pruning-deduplication.test.d.ts +1 -0
  216. package/dist/hooks/anthropic-context-window-limit-recovery/pruning-types.d.ts +36 -0
  217. package/dist/hooks/anthropic-context-window-limit-recovery/storage.d.ts +28 -0
  218. package/dist/hooks/anthropic-context-window-limit-recovery/storage.test.d.ts +1 -0
  219. package/dist/hooks/anthropic-context-window-limit-recovery/types.d.ts +37 -0
  220. package/dist/hooks/atlas/index.d.ts +35 -0
  221. package/dist/hooks/atlas/index.test.d.ts +1 -0
  222. package/dist/hooks/auto-slash-command/constants.d.ts +5 -0
  223. package/dist/hooks/auto-slash-command/detector.d.ts +9 -0
  224. package/dist/hooks/auto-slash-command/detector.test.d.ts +1 -0
  225. package/dist/hooks/auto-slash-command/executor.d.ts +11 -0
  226. package/dist/hooks/auto-slash-command/index.d.ts +12 -0
  227. package/dist/hooks/auto-slash-command/index.test.d.ts +1 -0
  228. package/dist/hooks/auto-slash-command/types.d.ts +27 -0
  229. package/dist/hooks/auto-update-checker/cache.d.ts +3 -0
  230. package/dist/hooks/auto-update-checker/checker.d.ts +20 -0
  231. package/dist/hooks/auto-update-checker/checker.test.d.ts +1 -0
  232. package/dist/hooks/auto-update-checker/constants.d.ts +10 -0
  233. package/dist/hooks/auto-update-checker/index.d.ts +17 -0
  234. package/dist/hooks/auto-update-checker/index.test.d.ts +1 -0
  235. package/dist/hooks/auto-update-checker/types.d.ts +25 -0
  236. package/dist/hooks/background-notification/index.d.ts +18 -0
  237. package/dist/hooks/background-notification/types.d.ts +4 -0
  238. package/dist/hooks/category-skill-reminder/index.d.ts +22 -0
  239. package/dist/hooks/category-skill-reminder/index.test.d.ts +1 -0
  240. package/dist/hooks/claude-code-hooks/config-loader.d.ts +13 -0
  241. package/dist/hooks/claude-code-hooks/config.d.ts +3 -0
  242. package/dist/hooks/claude-code-hooks/index.d.ts +48 -0
  243. package/dist/hooks/claude-code-hooks/plugin-config.d.ts +8 -0
  244. package/dist/hooks/claude-code-hooks/post-tool-use.d.ts +40 -0
  245. package/dist/hooks/claude-code-hooks/pre-compact.d.ts +16 -0
  246. package/dist/hooks/claude-code-hooks/pre-tool-use.d.ts +25 -0
  247. package/dist/hooks/claude-code-hooks/stop.d.ts +20 -0
  248. package/dist/hooks/claude-code-hooks/todo.d.ts +12 -0
  249. package/dist/hooks/claude-code-hooks/tool-input-cache.d.ts +5 -0
  250. package/dist/hooks/claude-code-hooks/transcript.d.ts +34 -0
  251. package/dist/hooks/claude-code-hooks/types.d.ts +183 -0
  252. package/dist/hooks/claude-code-hooks/user-prompt-submit.d.ts +22 -0
  253. package/dist/hooks/comment-checker/cli.d.ts +52 -0
  254. package/dist/hooks/comment-checker/cli.test.d.ts +1 -0
  255. package/dist/hooks/comment-checker/downloader.d.ts +25 -0
  256. package/dist/hooks/comment-checker/index.d.ts +19 -0
  257. package/dist/hooks/comment-checker/types.d.ts +31 -0
  258. package/dist/hooks/compaction-context-injector/index.d.ts +8 -0
  259. package/dist/hooks/compaction-context-injector/index.test.d.ts +1 -0
  260. package/dist/hooks/context-window-monitor.d.ts +18 -0
  261. package/dist/hooks/delegate-task-retry/index.d.ts +24 -0
  262. package/dist/hooks/delegate-task-retry/index.test.d.ts +1 -0
  263. package/dist/hooks/directory-agents-injector/constants.d.ts +3 -0
  264. package/dist/hooks/directory-agents-injector/index.d.ts +26 -0
  265. package/dist/hooks/directory-agents-injector/storage.d.ts +1 -0
  266. package/dist/hooks/directory-readme-injector/constants.d.ts +3 -0
  267. package/dist/hooks/directory-readme-injector/index.d.ts +26 -0
  268. package/dist/hooks/directory-readme-injector/storage.d.ts +1 -0
  269. package/dist/hooks/edit-error-recovery/index.d.ts +31 -0
  270. package/dist/hooks/edit-error-recovery/index.test.d.ts +1 -0
  271. package/dist/hooks/empty-task-response-detector.d.ts +12 -0
  272. package/dist/hooks/index.d.ts +35 -0
  273. package/dist/hooks/interactive-bash-session/constants.d.ts +4 -0
  274. package/dist/hooks/interactive-bash-session/index.d.ts +23 -0
  275. package/dist/hooks/interactive-bash-session/storage.d.ts +4 -0
  276. package/dist/hooks/interactive-bash-session/types.d.ts +10 -0
  277. package/dist/hooks/keyword-detector/analyze/default.d.ts +12 -0
  278. package/dist/hooks/keyword-detector/analyze/index.d.ts +1 -0
  279. package/dist/hooks/keyword-detector/constants.d.ts +10 -0
  280. package/dist/hooks/keyword-detector/detector.d.ts +11 -0
  281. package/dist/hooks/keyword-detector/index.d.ts +23 -0
  282. package/dist/hooks/keyword-detector/index.test.d.ts +1 -0
  283. package/dist/hooks/keyword-detector/search/default.d.ts +12 -0
  284. package/dist/hooks/keyword-detector/search/index.d.ts +1 -0
  285. package/dist/hooks/keyword-detector/types.d.ts +4 -0
  286. package/dist/hooks/keyword-detector/ultrawork/default.d.ts +10 -0
  287. package/dist/hooks/keyword-detector/ultrawork/gpt5.2.d.ts +16 -0
  288. package/dist/hooks/keyword-detector/ultrawork/index.d.ts +17 -0
  289. package/dist/hooks/keyword-detector/ultrawork/planner.d.ts +6 -0
  290. package/dist/hooks/keyword-detector/ultrawork/utils.d.ts +24 -0
  291. package/dist/hooks/non-interactive-env/constants.d.ts +34 -0
  292. package/dist/hooks/non-interactive-env/detector.d.ts +1 -0
  293. package/dist/hooks/non-interactive-env/index.d.ts +14 -0
  294. package/dist/hooks/non-interactive-env/index.test.d.ts +1 -0
  295. package/dist/hooks/non-interactive-env/types.d.ts +3 -0
  296. package/dist/hooks/prometheus-md-only/constants.d.ts +7 -0
  297. package/dist/hooks/prometheus-md-only/index.d.ts +12 -0
  298. package/dist/hooks/prometheus-md-only/index.test.d.ts +1 -0
  299. package/dist/hooks/question-label-truncator/index.d.ts +7 -0
  300. package/dist/hooks/question-label-truncator/index.test.d.ts +1 -0
  301. package/dist/hooks/ralph-loop/constants.d.ts +5 -0
  302. package/dist/hooks/ralph-loop/index.d.ts +21 -0
  303. package/dist/hooks/ralph-loop/index.test.d.ts +1 -0
  304. package/dist/hooks/ralph-loop/storage.d.ts +6 -0
  305. package/dist/hooks/ralph-loop/types.d.ts +17 -0
  306. package/dist/hooks/rules-injector/constants.d.ts +8 -0
  307. package/dist/hooks/rules-injector/finder.d.ts +33 -0
  308. package/dist/hooks/rules-injector/finder.test.d.ts +1 -0
  309. package/dist/hooks/rules-injector/index.d.ts +26 -0
  310. package/dist/hooks/rules-injector/matcher.d.ts +21 -0
  311. package/dist/hooks/rules-injector/output-path.d.ts +5 -0
  312. package/dist/hooks/rules-injector/output-path.test.d.ts +1 -0
  313. package/dist/hooks/rules-injector/parser.d.ts +18 -0
  314. package/dist/hooks/rules-injector/parser.test.d.ts +1 -0
  315. package/dist/hooks/rules-injector/storage.d.ts +9 -0
  316. package/dist/hooks/rules-injector/types.d.ts +54 -0
  317. package/dist/hooks/session-notification-utils.d.ts +9 -0
  318. package/dist/hooks/session-notification.d.ts +20 -0
  319. package/dist/hooks/session-notification.test.d.ts +1 -0
  320. package/dist/hooks/session-recovery/constants.d.ts +6 -0
  321. package/dist/hooks/session-recovery/index.d.ts +22 -0
  322. package/dist/hooks/session-recovery/index.test.d.ts +1 -0
  323. package/dist/hooks/session-recovery/storage.d.ts +19 -0
  324. package/dist/hooks/session-recovery/types.d.ts +90 -0
  325. package/dist/hooks/sisyphus-junior-notepad/constants.d.ts +2 -0
  326. package/dist/hooks/sisyphus-junior-notepad/index.d.ts +12 -0
  327. package/dist/hooks/start-work/index.d.ts +16 -0
  328. package/dist/hooks/start-work/index.test.d.ts +1 -0
  329. package/dist/hooks/stop-continuation-guard/index.d.ts +16 -0
  330. package/dist/hooks/stop-continuation-guard/index.test.d.ts +1 -0
  331. package/dist/hooks/subagent-question-blocker/index.d.ts +2 -0
  332. package/dist/hooks/subagent-question-blocker/index.test.d.ts +1 -0
  333. package/dist/hooks/task-resume-info/index.d.ts +11 -0
  334. package/dist/hooks/think-mode/detector.d.ts +5 -0
  335. package/dist/hooks/think-mode/index.d.ts +14 -0
  336. package/dist/hooks/think-mode/index.test.d.ts +1 -0
  337. package/dist/hooks/think-mode/switcher.d.ts +69 -0
  338. package/dist/hooks/think-mode/switcher.test.d.ts +1 -0
  339. package/dist/hooks/think-mode/types.d.ts +21 -0
  340. package/dist/hooks/thinking-block-validator/index.d.ts +30 -0
  341. package/dist/hooks/todo-continuation-enforcer.d.ts +19 -0
  342. package/dist/hooks/todo-continuation-enforcer.test.d.ts +1 -0
  343. package/dist/hooks/tool-output-truncator.d.ts +17 -0
  344. package/dist/hooks/tool-output-truncator.test.d.ts +1 -0
  345. package/dist/hooks/unstable-agent-babysitter/index.d.ts +50 -0
  346. package/dist/hooks/unstable-agent-babysitter/index.test.d.ts +1 -0
  347. package/dist/index.d.ts +5 -0
  348. package/dist/index.js +76117 -0
  349. package/dist/index.test.d.ts +1 -0
  350. package/dist/mcp/context7.d.ts +9 -0
  351. package/dist/mcp/grep-app.d.ts +6 -0
  352. package/dist/mcp/index.d.ts +9 -0
  353. package/dist/mcp/index.test.d.ts +1 -0
  354. package/dist/mcp/types.d.ts +9 -0
  355. package/dist/mcp/websearch.d.ts +9 -0
  356. package/dist/oh-my-parallel-agent-opencode.schema.json +2182 -0
  357. package/dist/plugin-config.d.ts +4 -0
  358. package/dist/plugin-config.test.d.ts +1 -0
  359. package/dist/plugin-handlers/config-handler.d.ts +13 -0
  360. package/dist/plugin-handlers/config-handler.test.d.ts +1 -0
  361. package/dist/plugin-handlers/index.d.ts +1 -0
  362. package/dist/plugin-state.d.ts +6 -0
  363. package/dist/shared/agent-config-integration.test.d.ts +1 -0
  364. package/dist/shared/agent-display-names.d.ts +12 -0
  365. package/dist/shared/agent-display-names.test.d.ts +1 -0
  366. package/dist/shared/agent-tool-restrictions.d.ts +7 -0
  367. package/dist/shared/agent-variant.d.ts +9 -0
  368. package/dist/shared/agent-variant.test.d.ts +1 -0
  369. package/dist/shared/binary-downloader.d.ts +10 -0
  370. package/dist/shared/claude-config-dir.d.ts +1 -0
  371. package/dist/shared/claude-config-dir.test.d.ts +1 -0
  372. package/dist/shared/command-executor.d.ts +21 -0
  373. package/dist/shared/config-errors.d.ts +7 -0
  374. package/dist/shared/connected-providers-cache.d.ts +52 -0
  375. package/dist/shared/data-path.d.ts +30 -0
  376. package/dist/shared/deep-merge.d.ts +13 -0
  377. package/dist/shared/deep-merge.test.d.ts +1 -0
  378. package/dist/shared/dynamic-truncator.d.ts +27 -0
  379. package/dist/shared/external-plugin-detector.d.ts +18 -0
  380. package/dist/shared/external-plugin-detector.test.d.ts +1 -0
  381. package/dist/shared/file-reference-resolver.d.ts +1 -0
  382. package/dist/shared/file-utils.d.ts +7 -0
  383. package/dist/shared/first-message-variant.d.ts +11 -0
  384. package/dist/shared/first-message-variant.test.d.ts +1 -0
  385. package/dist/shared/frontmatter.d.ts +7 -0
  386. package/dist/shared/frontmatter.test.d.ts +1 -0
  387. package/dist/shared/hook-disabled.d.ts +2 -0
  388. package/dist/shared/index.d.ts +36 -0
  389. package/dist/shared/jsonc-parser.d.ts +15 -0
  390. package/dist/shared/jsonc-parser.test.d.ts +1 -0
  391. package/dist/shared/logger.d.ts +2 -0
  392. package/dist/shared/migration.d.ts +32 -0
  393. package/dist/shared/migration.test.d.ts +1 -0
  394. package/dist/shared/model-availability.d.ts +19 -0
  395. package/dist/shared/model-availability.test.d.ts +1 -0
  396. package/dist/shared/model-requirements.d.ts +13 -0
  397. package/dist/shared/model-requirements.test.d.ts +1 -0
  398. package/dist/shared/model-resolution-pipeline.d.ts +24 -0
  399. package/dist/shared/model-resolver.d.ts +22 -0
  400. package/dist/shared/model-resolver.test.d.ts +1 -0
  401. package/dist/shared/model-sanitizer.d.ts +3 -0
  402. package/dist/shared/model-suggestion-retry.d.ts +24 -0
  403. package/dist/shared/model-suggestion-retry.test.d.ts +1 -0
  404. package/dist/shared/ollama-ndjson-parser.d.ts +108 -0
  405. package/dist/shared/opencode-config-dir.d.ts +19 -0
  406. package/dist/shared/opencode-config-dir.test.d.ts +1 -0
  407. package/dist/shared/opencode-version.d.ts +19 -0
  408. package/dist/shared/opencode-version.test.d.ts +1 -0
  409. package/dist/shared/pattern-matcher.d.ts +3 -0
  410. package/dist/shared/permission-compat.d.ts +27 -0
  411. package/dist/shared/permission-compat.test.d.ts +1 -0
  412. package/dist/shared/session-cursor.d.ts +13 -0
  413. package/dist/shared/session-cursor.test.d.ts +1 -0
  414. package/dist/shared/session-injected-paths.d.ts +10 -0
  415. package/dist/shared/session-utils.d.ts +2 -0
  416. package/dist/shared/shell-env.d.ts +41 -0
  417. package/dist/shared/shell-env.test.d.ts +1 -0
  418. package/dist/shared/snake-case.d.ts +5 -0
  419. package/dist/shared/system-directive.d.ts +45 -0
  420. package/dist/shared/system-directive.test.d.ts +1 -0
  421. package/dist/shared/tmux/constants.d.ts +5 -0
  422. package/dist/shared/tmux/index.d.ts +3 -0
  423. package/dist/shared/tmux/tmux-utils.d.ts +17 -0
  424. package/dist/shared/tmux/tmux-utils.test.d.ts +1 -0
  425. package/dist/shared/tmux/types.d.ts +4 -0
  426. package/dist/shared/tool-name.d.ts +1 -0
  427. package/dist/shared/zip-extractor.d.ts +1 -0
  428. package/dist/tools/ast-grep/cli.d.ts +15 -0
  429. package/dist/tools/ast-grep/constants.d.ts +29 -0
  430. package/dist/tools/ast-grep/downloader.d.ts +5 -0
  431. package/dist/tools/ast-grep/index.d.ts +8 -0
  432. package/dist/tools/ast-grep/tools.d.ts +3 -0
  433. package/dist/tools/ast-grep/types.d.ts +58 -0
  434. package/dist/tools/ast-grep/utils.d.ts +5 -0
  435. package/dist/tools/background-task/constants.d.ts +3 -0
  436. package/dist/tools/background-task/index.d.ts +4 -0
  437. package/dist/tools/background-task/tools.d.ts +47 -0
  438. package/dist/tools/background-task/tools.test.d.ts +1 -0
  439. package/dist/tools/background-task/types.d.ts +20 -0
  440. package/dist/tools/call-omo-agent/constants.d.ts +2 -0
  441. package/dist/tools/call-omo-agent/index.d.ts +3 -0
  442. package/dist/tools/call-omo-agent/tools.d.ts +3 -0
  443. package/dist/tools/call-omo-agent/types.d.ts +24 -0
  444. package/dist/tools/delegate-task/categories.d.ts +17 -0
  445. package/dist/tools/delegate-task/constants.d.ts +30 -0
  446. package/dist/tools/delegate-task/executor.d.ts +75 -0
  447. package/dist/tools/delegate-task/helpers.d.ts +30 -0
  448. package/dist/tools/delegate-task/index.d.ts +4 -0
  449. package/dist/tools/delegate-task/prompt-builder.d.ts +6 -0
  450. package/dist/tools/delegate-task/timing.d.ts +11 -0
  451. package/dist/tools/delegate-task/tools.d.ts +6 -0
  452. package/dist/tools/delegate-task/tools.test.d.ts +1 -0
  453. package/dist/tools/delegate-task/types.d.ts +44 -0
  454. package/dist/tools/glob/cli.d.ts +11 -0
  455. package/dist/tools/glob/cli.test.d.ts +1 -0
  456. package/dist/tools/glob/constants.d.ts +6 -0
  457. package/dist/tools/glob/index.d.ts +2 -0
  458. package/dist/tools/glob/tools.d.ts +2 -0
  459. package/dist/tools/glob/types.d.ts +20 -0
  460. package/dist/tools/glob/utils.d.ts +2 -0
  461. package/dist/tools/grep/cli.d.ts +3 -0
  462. package/dist/tools/grep/constants.d.ts +17 -0
  463. package/dist/tools/grep/downloader.d.ts +3 -0
  464. package/dist/tools/grep/downloader.test.d.ts +1 -0
  465. package/dist/tools/grep/index.d.ts +2 -0
  466. package/dist/tools/grep/tools.d.ts +2 -0
  467. package/dist/tools/grep/types.d.ts +36 -0
  468. package/dist/tools/grep/utils.d.ts +3 -0
  469. package/dist/tools/index.d.ts +15 -0
  470. package/dist/tools/interactive-bash/constants.d.ts +3 -0
  471. package/dist/tools/interactive-bash/index.d.ts +3 -0
  472. package/dist/tools/interactive-bash/tools.d.ts +7 -0
  473. package/dist/tools/interactive-bash/utils.d.ts +3 -0
  474. package/dist/tools/look-at/constants.d.ts +2 -0
  475. package/dist/tools/look-at/index.d.ts +3 -0
  476. package/dist/tools/look-at/tools.d.ts +9 -0
  477. package/dist/tools/look-at/tools.test.d.ts +1 -0
  478. package/dist/tools/look-at/types.d.ts +4 -0
  479. package/dist/tools/lsp/client.d.ts +50 -0
  480. package/dist/tools/lsp/config.d.ts +17 -0
  481. package/dist/tools/lsp/config.test.d.ts +1 -0
  482. package/dist/tools/lsp/constants.d.ts +9 -0
  483. package/dist/tools/lsp/index.d.ts +6 -0
  484. package/dist/tools/lsp/tools.d.ts +7 -0
  485. package/dist/tools/lsp/types.d.ts +123 -0
  486. package/dist/tools/lsp/utils.d.ts +26 -0
  487. package/dist/tools/session-manager/constants.d.ts +12 -0
  488. package/dist/tools/session-manager/index.d.ts +3 -0
  489. package/dist/tools/session-manager/storage.d.ts +12 -0
  490. package/dist/tools/session-manager/storage.test.d.ts +1 -0
  491. package/dist/tools/session-manager/tools.d.ts +5 -0
  492. package/dist/tools/session-manager/tools.test.d.ts +1 -0
  493. package/dist/tools/session-manager/types.d.ts +89 -0
  494. package/dist/tools/session-manager/utils.d.ts +11 -0
  495. package/dist/tools/session-manager/utils.test.d.ts +1 -0
  496. package/dist/tools/skill/constants.d.ts +3 -0
  497. package/dist/tools/skill/index.d.ts +3 -0
  498. package/dist/tools/skill/tools.d.ts +4 -0
  499. package/dist/tools/skill/tools.test.d.ts +1 -0
  500. package/dist/tools/skill/types.d.ts +28 -0
  501. package/dist/tools/skill-mcp/constants.d.ts +2 -0
  502. package/dist/tools/skill-mcp/index.d.ts +3 -0
  503. package/dist/tools/skill-mcp/tools.d.ts +11 -0
  504. package/dist/tools/skill-mcp/tools.test.d.ts +1 -0
  505. package/dist/tools/skill-mcp/types.d.ts +8 -0
  506. package/dist/tools/slashcommand/index.d.ts +2 -0
  507. package/dist/tools/slashcommand/tools.d.ts +5 -0
  508. package/dist/tools/slashcommand/tools.test.d.ts +1 -0
  509. package/dist/tools/slashcommand/types.d.ts +24 -0
  510. package/package.json +77 -6
  511. package/postinstall.mjs +43 -0
  512. package/__tests__/agents.test.ts +0 -107
  513. package/__tests__/config-handler.test.ts +0 -198
  514. package/__tests__/dynamic-agent.test.ts +0 -68
  515. package/__tests__/schema.test.ts +0 -149
  516. package/__tests__/setup.test.ts +0 -16
  517. package/bun.lock +0 -29
  518. package/oh-my-parallel-agent-opencode.example.json +0 -7
  519. package/src/agents/explore.ts +0 -117
  520. package/src/agents/index.ts +0 -69
  521. package/src/agents/librarian.ts +0 -302
  522. package/src/agents/metis.ts +0 -341
  523. package/src/agents/momus.ts +0 -237
  524. package/src/agents/types.ts +0 -95
  525. package/src/config/schema.ts +0 -15
  526. package/src/index.ts +0 -116
  527. package/src/plugin-handlers/config-handler.ts +0 -129
  528. package/src/utils/dynamic-agent.ts +0 -37
  529. package/tsconfig.json +0 -19
@@ -0,0 +1,2182 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://raw.githubusercontent.com/noseung-gyeong/oh-my-parallel-agent-opencode/master/assets/oh-my-parallel-agent-opencode.schema.json",
4
+ "title": "Oh My Parallel Agent OpenCode Configuration",
5
+ "description": "Configuration schema for oh-my-opencode plugin",
6
+ "type": "object",
7
+ "properties": {
8
+ "$schema": {
9
+ "type": "string"
10
+ },
11
+ "disabled_mcps": {
12
+ "type": "array",
13
+ "items": {
14
+ "type": "string",
15
+ "minLength": 1
16
+ }
17
+ },
18
+ "disabled_agents": {
19
+ "type": "array",
20
+ "items": {
21
+ "type": "string",
22
+ "enum": [
23
+ "sisyphus",
24
+ "prometheus",
25
+ "oracle",
26
+ "librarian",
27
+ "explore",
28
+ "multimodal-looker",
29
+ "metis",
30
+ "momus",
31
+ "atlas"
32
+ ]
33
+ }
34
+ },
35
+ "disabled_skills": {
36
+ "type": "array",
37
+ "items": {
38
+ "type": "string",
39
+ "enum": [
40
+ "playwright",
41
+ "frontend-ui-ux",
42
+ "git-master"
43
+ ]
44
+ }
45
+ },
46
+ "disabled_hooks": {
47
+ "type": "array",
48
+ "items": {
49
+ "type": "string",
50
+ "enum": [
51
+ "todo-continuation-enforcer",
52
+ "context-window-monitor",
53
+ "session-recovery",
54
+ "session-notification",
55
+ "comment-checker",
56
+ "grep-output-truncator",
57
+ "tool-output-truncator",
58
+ "directory-agents-injector",
59
+ "directory-readme-injector",
60
+ "empty-task-response-detector",
61
+ "think-mode",
62
+ "anthropic-context-window-limit-recovery",
63
+ "rules-injector",
64
+ "background-notification",
65
+ "auto-update-checker",
66
+ "startup-toast",
67
+ "keyword-detector",
68
+ "agent-usage-reminder",
69
+ "non-interactive-env",
70
+ "interactive-bash-session",
71
+ "thinking-block-validator",
72
+ "ralph-loop",
73
+ "compaction-context-injector",
74
+ "claude-code-hooks",
75
+ "auto-slash-command",
76
+ "edit-error-recovery",
77
+ "delegate-task-retry",
78
+ "prometheus-md-only",
79
+ "start-work",
80
+ "atlas"
81
+ ]
82
+ }
83
+ },
84
+ "disabled_commands": {
85
+ "type": "array",
86
+ "items": {
87
+ "type": "string",
88
+ "enum": [
89
+ "init-deep",
90
+ "start-work"
91
+ ]
92
+ }
93
+ },
94
+ "agents": {
95
+ "type": "object",
96
+ "properties": {
97
+ "build": {
98
+ "type": "object",
99
+ "properties": {
100
+ "model": {
101
+ "type": "string"
102
+ },
103
+ "variant": {
104
+ "type": "string"
105
+ },
106
+ "category": {
107
+ "type": "string"
108
+ },
109
+ "skills": {
110
+ "type": "array",
111
+ "items": {
112
+ "type": "string"
113
+ }
114
+ },
115
+ "temperature": {
116
+ "type": "number",
117
+ "minimum": 0,
118
+ "maximum": 2
119
+ },
120
+ "top_p": {
121
+ "type": "number",
122
+ "minimum": 0,
123
+ "maximum": 1
124
+ },
125
+ "prompt": {
126
+ "type": "string"
127
+ },
128
+ "prompt_append": {
129
+ "type": "string"
130
+ },
131
+ "tools": {
132
+ "type": "object",
133
+ "propertyNames": {
134
+ "type": "string"
135
+ },
136
+ "additionalProperties": {
137
+ "type": "boolean"
138
+ }
139
+ },
140
+ "disable": {
141
+ "type": "boolean"
142
+ },
143
+ "description": {
144
+ "type": "string"
145
+ },
146
+ "mode": {
147
+ "type": "string",
148
+ "enum": [
149
+ "subagent",
150
+ "primary",
151
+ "all"
152
+ ]
153
+ },
154
+ "color": {
155
+ "type": "string",
156
+ "pattern": "^#[0-9A-Fa-f]{6}$"
157
+ },
158
+ "permission": {
159
+ "type": "object",
160
+ "properties": {
161
+ "edit": {
162
+ "type": "string",
163
+ "enum": [
164
+ "ask",
165
+ "allow",
166
+ "deny"
167
+ ]
168
+ },
169
+ "bash": {
170
+ "anyOf": [
171
+ {
172
+ "type": "string",
173
+ "enum": [
174
+ "ask",
175
+ "allow",
176
+ "deny"
177
+ ]
178
+ },
179
+ {
180
+ "type": "object",
181
+ "propertyNames": {
182
+ "type": "string"
183
+ },
184
+ "additionalProperties": {
185
+ "type": "string",
186
+ "enum": [
187
+ "ask",
188
+ "allow",
189
+ "deny"
190
+ ]
191
+ }
192
+ }
193
+ ]
194
+ },
195
+ "webfetch": {
196
+ "type": "string",
197
+ "enum": [
198
+ "ask",
199
+ "allow",
200
+ "deny"
201
+ ]
202
+ },
203
+ "doom_loop": {
204
+ "type": "string",
205
+ "enum": [
206
+ "ask",
207
+ "allow",
208
+ "deny"
209
+ ]
210
+ },
211
+ "external_directory": {
212
+ "type": "string",
213
+ "enum": [
214
+ "ask",
215
+ "allow",
216
+ "deny"
217
+ ]
218
+ }
219
+ }
220
+ }
221
+ }
222
+ },
223
+ "plan": {
224
+ "type": "object",
225
+ "properties": {
226
+ "model": {
227
+ "type": "string"
228
+ },
229
+ "variant": {
230
+ "type": "string"
231
+ },
232
+ "category": {
233
+ "type": "string"
234
+ },
235
+ "skills": {
236
+ "type": "array",
237
+ "items": {
238
+ "type": "string"
239
+ }
240
+ },
241
+ "temperature": {
242
+ "type": "number",
243
+ "minimum": 0,
244
+ "maximum": 2
245
+ },
246
+ "top_p": {
247
+ "type": "number",
248
+ "minimum": 0,
249
+ "maximum": 1
250
+ },
251
+ "prompt": {
252
+ "type": "string"
253
+ },
254
+ "prompt_append": {
255
+ "type": "string"
256
+ },
257
+ "tools": {
258
+ "type": "object",
259
+ "propertyNames": {
260
+ "type": "string"
261
+ },
262
+ "additionalProperties": {
263
+ "type": "boolean"
264
+ }
265
+ },
266
+ "disable": {
267
+ "type": "boolean"
268
+ },
269
+ "description": {
270
+ "type": "string"
271
+ },
272
+ "mode": {
273
+ "type": "string",
274
+ "enum": [
275
+ "subagent",
276
+ "primary",
277
+ "all"
278
+ ]
279
+ },
280
+ "color": {
281
+ "type": "string",
282
+ "pattern": "^#[0-9A-Fa-f]{6}$"
283
+ },
284
+ "permission": {
285
+ "type": "object",
286
+ "properties": {
287
+ "edit": {
288
+ "type": "string",
289
+ "enum": [
290
+ "ask",
291
+ "allow",
292
+ "deny"
293
+ ]
294
+ },
295
+ "bash": {
296
+ "anyOf": [
297
+ {
298
+ "type": "string",
299
+ "enum": [
300
+ "ask",
301
+ "allow",
302
+ "deny"
303
+ ]
304
+ },
305
+ {
306
+ "type": "object",
307
+ "propertyNames": {
308
+ "type": "string"
309
+ },
310
+ "additionalProperties": {
311
+ "type": "string",
312
+ "enum": [
313
+ "ask",
314
+ "allow",
315
+ "deny"
316
+ ]
317
+ }
318
+ }
319
+ ]
320
+ },
321
+ "webfetch": {
322
+ "type": "string",
323
+ "enum": [
324
+ "ask",
325
+ "allow",
326
+ "deny"
327
+ ]
328
+ },
329
+ "doom_loop": {
330
+ "type": "string",
331
+ "enum": [
332
+ "ask",
333
+ "allow",
334
+ "deny"
335
+ ]
336
+ },
337
+ "external_directory": {
338
+ "type": "string",
339
+ "enum": [
340
+ "ask",
341
+ "allow",
342
+ "deny"
343
+ ]
344
+ }
345
+ }
346
+ }
347
+ }
348
+ },
349
+ "sisyphus": {
350
+ "type": "object",
351
+ "properties": {
352
+ "model": {
353
+ "type": "string"
354
+ },
355
+ "variant": {
356
+ "type": "string"
357
+ },
358
+ "category": {
359
+ "type": "string"
360
+ },
361
+ "skills": {
362
+ "type": "array",
363
+ "items": {
364
+ "type": "string"
365
+ }
366
+ },
367
+ "temperature": {
368
+ "type": "number",
369
+ "minimum": 0,
370
+ "maximum": 2
371
+ },
372
+ "top_p": {
373
+ "type": "number",
374
+ "minimum": 0,
375
+ "maximum": 1
376
+ },
377
+ "prompt": {
378
+ "type": "string"
379
+ },
380
+ "prompt_append": {
381
+ "type": "string"
382
+ },
383
+ "tools": {
384
+ "type": "object",
385
+ "propertyNames": {
386
+ "type": "string"
387
+ },
388
+ "additionalProperties": {
389
+ "type": "boolean"
390
+ }
391
+ },
392
+ "disable": {
393
+ "type": "boolean"
394
+ },
395
+ "description": {
396
+ "type": "string"
397
+ },
398
+ "mode": {
399
+ "type": "string",
400
+ "enum": [
401
+ "subagent",
402
+ "primary",
403
+ "all"
404
+ ]
405
+ },
406
+ "color": {
407
+ "type": "string",
408
+ "pattern": "^#[0-9A-Fa-f]{6}$"
409
+ },
410
+ "permission": {
411
+ "type": "object",
412
+ "properties": {
413
+ "edit": {
414
+ "type": "string",
415
+ "enum": [
416
+ "ask",
417
+ "allow",
418
+ "deny"
419
+ ]
420
+ },
421
+ "bash": {
422
+ "anyOf": [
423
+ {
424
+ "type": "string",
425
+ "enum": [
426
+ "ask",
427
+ "allow",
428
+ "deny"
429
+ ]
430
+ },
431
+ {
432
+ "type": "object",
433
+ "propertyNames": {
434
+ "type": "string"
435
+ },
436
+ "additionalProperties": {
437
+ "type": "string",
438
+ "enum": [
439
+ "ask",
440
+ "allow",
441
+ "deny"
442
+ ]
443
+ }
444
+ }
445
+ ]
446
+ },
447
+ "webfetch": {
448
+ "type": "string",
449
+ "enum": [
450
+ "ask",
451
+ "allow",
452
+ "deny"
453
+ ]
454
+ },
455
+ "doom_loop": {
456
+ "type": "string",
457
+ "enum": [
458
+ "ask",
459
+ "allow",
460
+ "deny"
461
+ ]
462
+ },
463
+ "external_directory": {
464
+ "type": "string",
465
+ "enum": [
466
+ "ask",
467
+ "allow",
468
+ "deny"
469
+ ]
470
+ }
471
+ }
472
+ }
473
+ }
474
+ },
475
+ "sisyphus-junior": {
476
+ "type": "object",
477
+ "properties": {
478
+ "model": {
479
+ "type": "string"
480
+ },
481
+ "variant": {
482
+ "type": "string"
483
+ },
484
+ "category": {
485
+ "type": "string"
486
+ },
487
+ "skills": {
488
+ "type": "array",
489
+ "items": {
490
+ "type": "string"
491
+ }
492
+ },
493
+ "temperature": {
494
+ "type": "number",
495
+ "minimum": 0,
496
+ "maximum": 2
497
+ },
498
+ "top_p": {
499
+ "type": "number",
500
+ "minimum": 0,
501
+ "maximum": 1
502
+ },
503
+ "prompt": {
504
+ "type": "string"
505
+ },
506
+ "prompt_append": {
507
+ "type": "string"
508
+ },
509
+ "tools": {
510
+ "type": "object",
511
+ "propertyNames": {
512
+ "type": "string"
513
+ },
514
+ "additionalProperties": {
515
+ "type": "boolean"
516
+ }
517
+ },
518
+ "disable": {
519
+ "type": "boolean"
520
+ },
521
+ "description": {
522
+ "type": "string"
523
+ },
524
+ "mode": {
525
+ "type": "string",
526
+ "enum": [
527
+ "subagent",
528
+ "primary",
529
+ "all"
530
+ ]
531
+ },
532
+ "color": {
533
+ "type": "string",
534
+ "pattern": "^#[0-9A-Fa-f]{6}$"
535
+ },
536
+ "permission": {
537
+ "type": "object",
538
+ "properties": {
539
+ "edit": {
540
+ "type": "string",
541
+ "enum": [
542
+ "ask",
543
+ "allow",
544
+ "deny"
545
+ ]
546
+ },
547
+ "bash": {
548
+ "anyOf": [
549
+ {
550
+ "type": "string",
551
+ "enum": [
552
+ "ask",
553
+ "allow",
554
+ "deny"
555
+ ]
556
+ },
557
+ {
558
+ "type": "object",
559
+ "propertyNames": {
560
+ "type": "string"
561
+ },
562
+ "additionalProperties": {
563
+ "type": "string",
564
+ "enum": [
565
+ "ask",
566
+ "allow",
567
+ "deny"
568
+ ]
569
+ }
570
+ }
571
+ ]
572
+ },
573
+ "webfetch": {
574
+ "type": "string",
575
+ "enum": [
576
+ "ask",
577
+ "allow",
578
+ "deny"
579
+ ]
580
+ },
581
+ "doom_loop": {
582
+ "type": "string",
583
+ "enum": [
584
+ "ask",
585
+ "allow",
586
+ "deny"
587
+ ]
588
+ },
589
+ "external_directory": {
590
+ "type": "string",
591
+ "enum": [
592
+ "ask",
593
+ "allow",
594
+ "deny"
595
+ ]
596
+ }
597
+ }
598
+ }
599
+ }
600
+ },
601
+ "OpenCode-Builder": {
602
+ "type": "object",
603
+ "properties": {
604
+ "model": {
605
+ "type": "string"
606
+ },
607
+ "variant": {
608
+ "type": "string"
609
+ },
610
+ "category": {
611
+ "type": "string"
612
+ },
613
+ "skills": {
614
+ "type": "array",
615
+ "items": {
616
+ "type": "string"
617
+ }
618
+ },
619
+ "temperature": {
620
+ "type": "number",
621
+ "minimum": 0,
622
+ "maximum": 2
623
+ },
624
+ "top_p": {
625
+ "type": "number",
626
+ "minimum": 0,
627
+ "maximum": 1
628
+ },
629
+ "prompt": {
630
+ "type": "string"
631
+ },
632
+ "prompt_append": {
633
+ "type": "string"
634
+ },
635
+ "tools": {
636
+ "type": "object",
637
+ "propertyNames": {
638
+ "type": "string"
639
+ },
640
+ "additionalProperties": {
641
+ "type": "boolean"
642
+ }
643
+ },
644
+ "disable": {
645
+ "type": "boolean"
646
+ },
647
+ "description": {
648
+ "type": "string"
649
+ },
650
+ "mode": {
651
+ "type": "string",
652
+ "enum": [
653
+ "subagent",
654
+ "primary",
655
+ "all"
656
+ ]
657
+ },
658
+ "color": {
659
+ "type": "string",
660
+ "pattern": "^#[0-9A-Fa-f]{6}$"
661
+ },
662
+ "permission": {
663
+ "type": "object",
664
+ "properties": {
665
+ "edit": {
666
+ "type": "string",
667
+ "enum": [
668
+ "ask",
669
+ "allow",
670
+ "deny"
671
+ ]
672
+ },
673
+ "bash": {
674
+ "anyOf": [
675
+ {
676
+ "type": "string",
677
+ "enum": [
678
+ "ask",
679
+ "allow",
680
+ "deny"
681
+ ]
682
+ },
683
+ {
684
+ "type": "object",
685
+ "propertyNames": {
686
+ "type": "string"
687
+ },
688
+ "additionalProperties": {
689
+ "type": "string",
690
+ "enum": [
691
+ "ask",
692
+ "allow",
693
+ "deny"
694
+ ]
695
+ }
696
+ }
697
+ ]
698
+ },
699
+ "webfetch": {
700
+ "type": "string",
701
+ "enum": [
702
+ "ask",
703
+ "allow",
704
+ "deny"
705
+ ]
706
+ },
707
+ "doom_loop": {
708
+ "type": "string",
709
+ "enum": [
710
+ "ask",
711
+ "allow",
712
+ "deny"
713
+ ]
714
+ },
715
+ "external_directory": {
716
+ "type": "string",
717
+ "enum": [
718
+ "ask",
719
+ "allow",
720
+ "deny"
721
+ ]
722
+ }
723
+ }
724
+ }
725
+ }
726
+ },
727
+ "prometheus": {
728
+ "type": "object",
729
+ "properties": {
730
+ "model": {
731
+ "type": "string"
732
+ },
733
+ "variant": {
734
+ "type": "string"
735
+ },
736
+ "category": {
737
+ "type": "string"
738
+ },
739
+ "skills": {
740
+ "type": "array",
741
+ "items": {
742
+ "type": "string"
743
+ }
744
+ },
745
+ "temperature": {
746
+ "type": "number",
747
+ "minimum": 0,
748
+ "maximum": 2
749
+ },
750
+ "top_p": {
751
+ "type": "number",
752
+ "minimum": 0,
753
+ "maximum": 1
754
+ },
755
+ "prompt": {
756
+ "type": "string"
757
+ },
758
+ "prompt_append": {
759
+ "type": "string"
760
+ },
761
+ "tools": {
762
+ "type": "object",
763
+ "propertyNames": {
764
+ "type": "string"
765
+ },
766
+ "additionalProperties": {
767
+ "type": "boolean"
768
+ }
769
+ },
770
+ "disable": {
771
+ "type": "boolean"
772
+ },
773
+ "description": {
774
+ "type": "string"
775
+ },
776
+ "mode": {
777
+ "type": "string",
778
+ "enum": [
779
+ "subagent",
780
+ "primary",
781
+ "all"
782
+ ]
783
+ },
784
+ "color": {
785
+ "type": "string",
786
+ "pattern": "^#[0-9A-Fa-f]{6}$"
787
+ },
788
+ "permission": {
789
+ "type": "object",
790
+ "properties": {
791
+ "edit": {
792
+ "type": "string",
793
+ "enum": [
794
+ "ask",
795
+ "allow",
796
+ "deny"
797
+ ]
798
+ },
799
+ "bash": {
800
+ "anyOf": [
801
+ {
802
+ "type": "string",
803
+ "enum": [
804
+ "ask",
805
+ "allow",
806
+ "deny"
807
+ ]
808
+ },
809
+ {
810
+ "type": "object",
811
+ "propertyNames": {
812
+ "type": "string"
813
+ },
814
+ "additionalProperties": {
815
+ "type": "string",
816
+ "enum": [
817
+ "ask",
818
+ "allow",
819
+ "deny"
820
+ ]
821
+ }
822
+ }
823
+ ]
824
+ },
825
+ "webfetch": {
826
+ "type": "string",
827
+ "enum": [
828
+ "ask",
829
+ "allow",
830
+ "deny"
831
+ ]
832
+ },
833
+ "doom_loop": {
834
+ "type": "string",
835
+ "enum": [
836
+ "ask",
837
+ "allow",
838
+ "deny"
839
+ ]
840
+ },
841
+ "external_directory": {
842
+ "type": "string",
843
+ "enum": [
844
+ "ask",
845
+ "allow",
846
+ "deny"
847
+ ]
848
+ }
849
+ }
850
+ }
851
+ }
852
+ },
853
+ "metis": {
854
+ "type": "object",
855
+ "properties": {
856
+ "model": {
857
+ "type": "string"
858
+ },
859
+ "variant": {
860
+ "type": "string"
861
+ },
862
+ "category": {
863
+ "type": "string"
864
+ },
865
+ "skills": {
866
+ "type": "array",
867
+ "items": {
868
+ "type": "string"
869
+ }
870
+ },
871
+ "temperature": {
872
+ "type": "number",
873
+ "minimum": 0,
874
+ "maximum": 2
875
+ },
876
+ "top_p": {
877
+ "type": "number",
878
+ "minimum": 0,
879
+ "maximum": 1
880
+ },
881
+ "prompt": {
882
+ "type": "string"
883
+ },
884
+ "prompt_append": {
885
+ "type": "string"
886
+ },
887
+ "tools": {
888
+ "type": "object",
889
+ "propertyNames": {
890
+ "type": "string"
891
+ },
892
+ "additionalProperties": {
893
+ "type": "boolean"
894
+ }
895
+ },
896
+ "disable": {
897
+ "type": "boolean"
898
+ },
899
+ "description": {
900
+ "type": "string"
901
+ },
902
+ "mode": {
903
+ "type": "string",
904
+ "enum": [
905
+ "subagent",
906
+ "primary",
907
+ "all"
908
+ ]
909
+ },
910
+ "color": {
911
+ "type": "string",
912
+ "pattern": "^#[0-9A-Fa-f]{6}$"
913
+ },
914
+ "permission": {
915
+ "type": "object",
916
+ "properties": {
917
+ "edit": {
918
+ "type": "string",
919
+ "enum": [
920
+ "ask",
921
+ "allow",
922
+ "deny"
923
+ ]
924
+ },
925
+ "bash": {
926
+ "anyOf": [
927
+ {
928
+ "type": "string",
929
+ "enum": [
930
+ "ask",
931
+ "allow",
932
+ "deny"
933
+ ]
934
+ },
935
+ {
936
+ "type": "object",
937
+ "propertyNames": {
938
+ "type": "string"
939
+ },
940
+ "additionalProperties": {
941
+ "type": "string",
942
+ "enum": [
943
+ "ask",
944
+ "allow",
945
+ "deny"
946
+ ]
947
+ }
948
+ }
949
+ ]
950
+ },
951
+ "webfetch": {
952
+ "type": "string",
953
+ "enum": [
954
+ "ask",
955
+ "allow",
956
+ "deny"
957
+ ]
958
+ },
959
+ "doom_loop": {
960
+ "type": "string",
961
+ "enum": [
962
+ "ask",
963
+ "allow",
964
+ "deny"
965
+ ]
966
+ },
967
+ "external_directory": {
968
+ "type": "string",
969
+ "enum": [
970
+ "ask",
971
+ "allow",
972
+ "deny"
973
+ ]
974
+ }
975
+ }
976
+ }
977
+ }
978
+ },
979
+ "momus": {
980
+ "type": "object",
981
+ "properties": {
982
+ "model": {
983
+ "type": "string"
984
+ },
985
+ "variant": {
986
+ "type": "string"
987
+ },
988
+ "category": {
989
+ "type": "string"
990
+ },
991
+ "skills": {
992
+ "type": "array",
993
+ "items": {
994
+ "type": "string"
995
+ }
996
+ },
997
+ "temperature": {
998
+ "type": "number",
999
+ "minimum": 0,
1000
+ "maximum": 2
1001
+ },
1002
+ "top_p": {
1003
+ "type": "number",
1004
+ "minimum": 0,
1005
+ "maximum": 1
1006
+ },
1007
+ "prompt": {
1008
+ "type": "string"
1009
+ },
1010
+ "prompt_append": {
1011
+ "type": "string"
1012
+ },
1013
+ "tools": {
1014
+ "type": "object",
1015
+ "propertyNames": {
1016
+ "type": "string"
1017
+ },
1018
+ "additionalProperties": {
1019
+ "type": "boolean"
1020
+ }
1021
+ },
1022
+ "disable": {
1023
+ "type": "boolean"
1024
+ },
1025
+ "description": {
1026
+ "type": "string"
1027
+ },
1028
+ "mode": {
1029
+ "type": "string",
1030
+ "enum": [
1031
+ "subagent",
1032
+ "primary",
1033
+ "all"
1034
+ ]
1035
+ },
1036
+ "color": {
1037
+ "type": "string",
1038
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1039
+ },
1040
+ "permission": {
1041
+ "type": "object",
1042
+ "properties": {
1043
+ "edit": {
1044
+ "type": "string",
1045
+ "enum": [
1046
+ "ask",
1047
+ "allow",
1048
+ "deny"
1049
+ ]
1050
+ },
1051
+ "bash": {
1052
+ "anyOf": [
1053
+ {
1054
+ "type": "string",
1055
+ "enum": [
1056
+ "ask",
1057
+ "allow",
1058
+ "deny"
1059
+ ]
1060
+ },
1061
+ {
1062
+ "type": "object",
1063
+ "propertyNames": {
1064
+ "type": "string"
1065
+ },
1066
+ "additionalProperties": {
1067
+ "type": "string",
1068
+ "enum": [
1069
+ "ask",
1070
+ "allow",
1071
+ "deny"
1072
+ ]
1073
+ }
1074
+ }
1075
+ ]
1076
+ },
1077
+ "webfetch": {
1078
+ "type": "string",
1079
+ "enum": [
1080
+ "ask",
1081
+ "allow",
1082
+ "deny"
1083
+ ]
1084
+ },
1085
+ "doom_loop": {
1086
+ "type": "string",
1087
+ "enum": [
1088
+ "ask",
1089
+ "allow",
1090
+ "deny"
1091
+ ]
1092
+ },
1093
+ "external_directory": {
1094
+ "type": "string",
1095
+ "enum": [
1096
+ "ask",
1097
+ "allow",
1098
+ "deny"
1099
+ ]
1100
+ }
1101
+ }
1102
+ }
1103
+ }
1104
+ },
1105
+ "oracle": {
1106
+ "type": "object",
1107
+ "properties": {
1108
+ "model": {
1109
+ "type": "string"
1110
+ },
1111
+ "variant": {
1112
+ "type": "string"
1113
+ },
1114
+ "category": {
1115
+ "type": "string"
1116
+ },
1117
+ "skills": {
1118
+ "type": "array",
1119
+ "items": {
1120
+ "type": "string"
1121
+ }
1122
+ },
1123
+ "temperature": {
1124
+ "type": "number",
1125
+ "minimum": 0,
1126
+ "maximum": 2
1127
+ },
1128
+ "top_p": {
1129
+ "type": "number",
1130
+ "minimum": 0,
1131
+ "maximum": 1
1132
+ },
1133
+ "prompt": {
1134
+ "type": "string"
1135
+ },
1136
+ "prompt_append": {
1137
+ "type": "string"
1138
+ },
1139
+ "tools": {
1140
+ "type": "object",
1141
+ "propertyNames": {
1142
+ "type": "string"
1143
+ },
1144
+ "additionalProperties": {
1145
+ "type": "boolean"
1146
+ }
1147
+ },
1148
+ "disable": {
1149
+ "type": "boolean"
1150
+ },
1151
+ "description": {
1152
+ "type": "string"
1153
+ },
1154
+ "mode": {
1155
+ "type": "string",
1156
+ "enum": [
1157
+ "subagent",
1158
+ "primary",
1159
+ "all"
1160
+ ]
1161
+ },
1162
+ "color": {
1163
+ "type": "string",
1164
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1165
+ },
1166
+ "permission": {
1167
+ "type": "object",
1168
+ "properties": {
1169
+ "edit": {
1170
+ "type": "string",
1171
+ "enum": [
1172
+ "ask",
1173
+ "allow",
1174
+ "deny"
1175
+ ]
1176
+ },
1177
+ "bash": {
1178
+ "anyOf": [
1179
+ {
1180
+ "type": "string",
1181
+ "enum": [
1182
+ "ask",
1183
+ "allow",
1184
+ "deny"
1185
+ ]
1186
+ },
1187
+ {
1188
+ "type": "object",
1189
+ "propertyNames": {
1190
+ "type": "string"
1191
+ },
1192
+ "additionalProperties": {
1193
+ "type": "string",
1194
+ "enum": [
1195
+ "ask",
1196
+ "allow",
1197
+ "deny"
1198
+ ]
1199
+ }
1200
+ }
1201
+ ]
1202
+ },
1203
+ "webfetch": {
1204
+ "type": "string",
1205
+ "enum": [
1206
+ "ask",
1207
+ "allow",
1208
+ "deny"
1209
+ ]
1210
+ },
1211
+ "doom_loop": {
1212
+ "type": "string",
1213
+ "enum": [
1214
+ "ask",
1215
+ "allow",
1216
+ "deny"
1217
+ ]
1218
+ },
1219
+ "external_directory": {
1220
+ "type": "string",
1221
+ "enum": [
1222
+ "ask",
1223
+ "allow",
1224
+ "deny"
1225
+ ]
1226
+ }
1227
+ }
1228
+ }
1229
+ }
1230
+ },
1231
+ "librarian": {
1232
+ "type": "object",
1233
+ "properties": {
1234
+ "model": {
1235
+ "type": "string"
1236
+ },
1237
+ "variant": {
1238
+ "type": "string"
1239
+ },
1240
+ "category": {
1241
+ "type": "string"
1242
+ },
1243
+ "skills": {
1244
+ "type": "array",
1245
+ "items": {
1246
+ "type": "string"
1247
+ }
1248
+ },
1249
+ "temperature": {
1250
+ "type": "number",
1251
+ "minimum": 0,
1252
+ "maximum": 2
1253
+ },
1254
+ "top_p": {
1255
+ "type": "number",
1256
+ "minimum": 0,
1257
+ "maximum": 1
1258
+ },
1259
+ "prompt": {
1260
+ "type": "string"
1261
+ },
1262
+ "prompt_append": {
1263
+ "type": "string"
1264
+ },
1265
+ "tools": {
1266
+ "type": "object",
1267
+ "propertyNames": {
1268
+ "type": "string"
1269
+ },
1270
+ "additionalProperties": {
1271
+ "type": "boolean"
1272
+ }
1273
+ },
1274
+ "disable": {
1275
+ "type": "boolean"
1276
+ },
1277
+ "description": {
1278
+ "type": "string"
1279
+ },
1280
+ "mode": {
1281
+ "type": "string",
1282
+ "enum": [
1283
+ "subagent",
1284
+ "primary",
1285
+ "all"
1286
+ ]
1287
+ },
1288
+ "color": {
1289
+ "type": "string",
1290
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1291
+ },
1292
+ "permission": {
1293
+ "type": "object",
1294
+ "properties": {
1295
+ "edit": {
1296
+ "type": "string",
1297
+ "enum": [
1298
+ "ask",
1299
+ "allow",
1300
+ "deny"
1301
+ ]
1302
+ },
1303
+ "bash": {
1304
+ "anyOf": [
1305
+ {
1306
+ "type": "string",
1307
+ "enum": [
1308
+ "ask",
1309
+ "allow",
1310
+ "deny"
1311
+ ]
1312
+ },
1313
+ {
1314
+ "type": "object",
1315
+ "propertyNames": {
1316
+ "type": "string"
1317
+ },
1318
+ "additionalProperties": {
1319
+ "type": "string",
1320
+ "enum": [
1321
+ "ask",
1322
+ "allow",
1323
+ "deny"
1324
+ ]
1325
+ }
1326
+ }
1327
+ ]
1328
+ },
1329
+ "webfetch": {
1330
+ "type": "string",
1331
+ "enum": [
1332
+ "ask",
1333
+ "allow",
1334
+ "deny"
1335
+ ]
1336
+ },
1337
+ "doom_loop": {
1338
+ "type": "string",
1339
+ "enum": [
1340
+ "ask",
1341
+ "allow",
1342
+ "deny"
1343
+ ]
1344
+ },
1345
+ "external_directory": {
1346
+ "type": "string",
1347
+ "enum": [
1348
+ "ask",
1349
+ "allow",
1350
+ "deny"
1351
+ ]
1352
+ }
1353
+ }
1354
+ }
1355
+ }
1356
+ },
1357
+ "explore": {
1358
+ "type": "object",
1359
+ "properties": {
1360
+ "model": {
1361
+ "type": "string"
1362
+ },
1363
+ "variant": {
1364
+ "type": "string"
1365
+ },
1366
+ "category": {
1367
+ "type": "string"
1368
+ },
1369
+ "skills": {
1370
+ "type": "array",
1371
+ "items": {
1372
+ "type": "string"
1373
+ }
1374
+ },
1375
+ "temperature": {
1376
+ "type": "number",
1377
+ "minimum": 0,
1378
+ "maximum": 2
1379
+ },
1380
+ "top_p": {
1381
+ "type": "number",
1382
+ "minimum": 0,
1383
+ "maximum": 1
1384
+ },
1385
+ "prompt": {
1386
+ "type": "string"
1387
+ },
1388
+ "prompt_append": {
1389
+ "type": "string"
1390
+ },
1391
+ "tools": {
1392
+ "type": "object",
1393
+ "propertyNames": {
1394
+ "type": "string"
1395
+ },
1396
+ "additionalProperties": {
1397
+ "type": "boolean"
1398
+ }
1399
+ },
1400
+ "disable": {
1401
+ "type": "boolean"
1402
+ },
1403
+ "description": {
1404
+ "type": "string"
1405
+ },
1406
+ "mode": {
1407
+ "type": "string",
1408
+ "enum": [
1409
+ "subagent",
1410
+ "primary",
1411
+ "all"
1412
+ ]
1413
+ },
1414
+ "color": {
1415
+ "type": "string",
1416
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1417
+ },
1418
+ "permission": {
1419
+ "type": "object",
1420
+ "properties": {
1421
+ "edit": {
1422
+ "type": "string",
1423
+ "enum": [
1424
+ "ask",
1425
+ "allow",
1426
+ "deny"
1427
+ ]
1428
+ },
1429
+ "bash": {
1430
+ "anyOf": [
1431
+ {
1432
+ "type": "string",
1433
+ "enum": [
1434
+ "ask",
1435
+ "allow",
1436
+ "deny"
1437
+ ]
1438
+ },
1439
+ {
1440
+ "type": "object",
1441
+ "propertyNames": {
1442
+ "type": "string"
1443
+ },
1444
+ "additionalProperties": {
1445
+ "type": "string",
1446
+ "enum": [
1447
+ "ask",
1448
+ "allow",
1449
+ "deny"
1450
+ ]
1451
+ }
1452
+ }
1453
+ ]
1454
+ },
1455
+ "webfetch": {
1456
+ "type": "string",
1457
+ "enum": [
1458
+ "ask",
1459
+ "allow",
1460
+ "deny"
1461
+ ]
1462
+ },
1463
+ "doom_loop": {
1464
+ "type": "string",
1465
+ "enum": [
1466
+ "ask",
1467
+ "allow",
1468
+ "deny"
1469
+ ]
1470
+ },
1471
+ "external_directory": {
1472
+ "type": "string",
1473
+ "enum": [
1474
+ "ask",
1475
+ "allow",
1476
+ "deny"
1477
+ ]
1478
+ }
1479
+ }
1480
+ }
1481
+ }
1482
+ },
1483
+ "multimodal-looker": {
1484
+ "type": "object",
1485
+ "properties": {
1486
+ "model": {
1487
+ "type": "string"
1488
+ },
1489
+ "variant": {
1490
+ "type": "string"
1491
+ },
1492
+ "category": {
1493
+ "type": "string"
1494
+ },
1495
+ "skills": {
1496
+ "type": "array",
1497
+ "items": {
1498
+ "type": "string"
1499
+ }
1500
+ },
1501
+ "temperature": {
1502
+ "type": "number",
1503
+ "minimum": 0,
1504
+ "maximum": 2
1505
+ },
1506
+ "top_p": {
1507
+ "type": "number",
1508
+ "minimum": 0,
1509
+ "maximum": 1
1510
+ },
1511
+ "prompt": {
1512
+ "type": "string"
1513
+ },
1514
+ "prompt_append": {
1515
+ "type": "string"
1516
+ },
1517
+ "tools": {
1518
+ "type": "object",
1519
+ "propertyNames": {
1520
+ "type": "string"
1521
+ },
1522
+ "additionalProperties": {
1523
+ "type": "boolean"
1524
+ }
1525
+ },
1526
+ "disable": {
1527
+ "type": "boolean"
1528
+ },
1529
+ "description": {
1530
+ "type": "string"
1531
+ },
1532
+ "mode": {
1533
+ "type": "string",
1534
+ "enum": [
1535
+ "subagent",
1536
+ "primary",
1537
+ "all"
1538
+ ]
1539
+ },
1540
+ "color": {
1541
+ "type": "string",
1542
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1543
+ },
1544
+ "permission": {
1545
+ "type": "object",
1546
+ "properties": {
1547
+ "edit": {
1548
+ "type": "string",
1549
+ "enum": [
1550
+ "ask",
1551
+ "allow",
1552
+ "deny"
1553
+ ]
1554
+ },
1555
+ "bash": {
1556
+ "anyOf": [
1557
+ {
1558
+ "type": "string",
1559
+ "enum": [
1560
+ "ask",
1561
+ "allow",
1562
+ "deny"
1563
+ ]
1564
+ },
1565
+ {
1566
+ "type": "object",
1567
+ "propertyNames": {
1568
+ "type": "string"
1569
+ },
1570
+ "additionalProperties": {
1571
+ "type": "string",
1572
+ "enum": [
1573
+ "ask",
1574
+ "allow",
1575
+ "deny"
1576
+ ]
1577
+ }
1578
+ }
1579
+ ]
1580
+ },
1581
+ "webfetch": {
1582
+ "type": "string",
1583
+ "enum": [
1584
+ "ask",
1585
+ "allow",
1586
+ "deny"
1587
+ ]
1588
+ },
1589
+ "doom_loop": {
1590
+ "type": "string",
1591
+ "enum": [
1592
+ "ask",
1593
+ "allow",
1594
+ "deny"
1595
+ ]
1596
+ },
1597
+ "external_directory": {
1598
+ "type": "string",
1599
+ "enum": [
1600
+ "ask",
1601
+ "allow",
1602
+ "deny"
1603
+ ]
1604
+ }
1605
+ }
1606
+ }
1607
+ }
1608
+ },
1609
+ "atlas": {
1610
+ "type": "object",
1611
+ "properties": {
1612
+ "model": {
1613
+ "type": "string"
1614
+ },
1615
+ "variant": {
1616
+ "type": "string"
1617
+ },
1618
+ "category": {
1619
+ "type": "string"
1620
+ },
1621
+ "skills": {
1622
+ "type": "array",
1623
+ "items": {
1624
+ "type": "string"
1625
+ }
1626
+ },
1627
+ "temperature": {
1628
+ "type": "number",
1629
+ "minimum": 0,
1630
+ "maximum": 2
1631
+ },
1632
+ "top_p": {
1633
+ "type": "number",
1634
+ "minimum": 0,
1635
+ "maximum": 1
1636
+ },
1637
+ "prompt": {
1638
+ "type": "string"
1639
+ },
1640
+ "prompt_append": {
1641
+ "type": "string"
1642
+ },
1643
+ "tools": {
1644
+ "type": "object",
1645
+ "propertyNames": {
1646
+ "type": "string"
1647
+ },
1648
+ "additionalProperties": {
1649
+ "type": "boolean"
1650
+ }
1651
+ },
1652
+ "disable": {
1653
+ "type": "boolean"
1654
+ },
1655
+ "description": {
1656
+ "type": "string"
1657
+ },
1658
+ "mode": {
1659
+ "type": "string",
1660
+ "enum": [
1661
+ "subagent",
1662
+ "primary",
1663
+ "all"
1664
+ ]
1665
+ },
1666
+ "color": {
1667
+ "type": "string",
1668
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1669
+ },
1670
+ "permission": {
1671
+ "type": "object",
1672
+ "properties": {
1673
+ "edit": {
1674
+ "type": "string",
1675
+ "enum": [
1676
+ "ask",
1677
+ "allow",
1678
+ "deny"
1679
+ ]
1680
+ },
1681
+ "bash": {
1682
+ "anyOf": [
1683
+ {
1684
+ "type": "string",
1685
+ "enum": [
1686
+ "ask",
1687
+ "allow",
1688
+ "deny"
1689
+ ]
1690
+ },
1691
+ {
1692
+ "type": "object",
1693
+ "propertyNames": {
1694
+ "type": "string"
1695
+ },
1696
+ "additionalProperties": {
1697
+ "type": "string",
1698
+ "enum": [
1699
+ "ask",
1700
+ "allow",
1701
+ "deny"
1702
+ ]
1703
+ }
1704
+ }
1705
+ ]
1706
+ },
1707
+ "webfetch": {
1708
+ "type": "string",
1709
+ "enum": [
1710
+ "ask",
1711
+ "allow",
1712
+ "deny"
1713
+ ]
1714
+ },
1715
+ "doom_loop": {
1716
+ "type": "string",
1717
+ "enum": [
1718
+ "ask",
1719
+ "allow",
1720
+ "deny"
1721
+ ]
1722
+ },
1723
+ "external_directory": {
1724
+ "type": "string",
1725
+ "enum": [
1726
+ "ask",
1727
+ "allow",
1728
+ "deny"
1729
+ ]
1730
+ }
1731
+ }
1732
+ }
1733
+ }
1734
+ }
1735
+ },
1736
+ "patternProperties": {
1737
+ "^.*-\\d+$": {
1738
+ "type": "object",
1739
+ "properties": {
1740
+ "model": {
1741
+ "type": "string"
1742
+ },
1743
+ "variant": {
1744
+ "type": "string"
1745
+ },
1746
+ "category": {
1747
+ "type": "string"
1748
+ },
1749
+ "skills": {
1750
+ "type": "array",
1751
+ "items": {
1752
+ "type": "string"
1753
+ }
1754
+ },
1755
+ "temperature": {
1756
+ "type": "number",
1757
+ "minimum": 0,
1758
+ "maximum": 2
1759
+ },
1760
+ "top_p": {
1761
+ "type": "number",
1762
+ "minimum": 0,
1763
+ "maximum": 1
1764
+ },
1765
+ "prompt": {
1766
+ "type": "string"
1767
+ },
1768
+ "prompt_append": {
1769
+ "type": "string"
1770
+ },
1771
+ "tools": {
1772
+ "type": "object",
1773
+ "propertyNames": {
1774
+ "type": "string"
1775
+ },
1776
+ "additionalProperties": {
1777
+ "type": "boolean"
1778
+ }
1779
+ },
1780
+ "disable": {
1781
+ "type": "boolean"
1782
+ },
1783
+ "description": {
1784
+ "type": "string"
1785
+ },
1786
+ "mode": {
1787
+ "type": "string",
1788
+ "enum": [
1789
+ "subagent",
1790
+ "primary",
1791
+ "all"
1792
+ ]
1793
+ },
1794
+ "color": {
1795
+ "type": "string",
1796
+ "pattern": "^#[0-9A-Fa-f]{6}$"
1797
+ },
1798
+ "permission": {
1799
+ "type": "object",
1800
+ "properties": {
1801
+ "edit": {
1802
+ "type": "string",
1803
+ "enum": [
1804
+ "ask",
1805
+ "allow",
1806
+ "deny"
1807
+ ]
1808
+ },
1809
+ "bash": {
1810
+ "anyOf": [
1811
+ {
1812
+ "type": "string",
1813
+ "enum": [
1814
+ "ask",
1815
+ "allow",
1816
+ "deny"
1817
+ ]
1818
+ },
1819
+ {
1820
+ "type": "object",
1821
+ "propertyNames": {
1822
+ "type": "string"
1823
+ },
1824
+ "additionalProperties": {
1825
+ "type": "string",
1826
+ "enum": [
1827
+ "ask",
1828
+ "allow",
1829
+ "deny"
1830
+ ]
1831
+ }
1832
+ }
1833
+ ]
1834
+ },
1835
+ "webfetch": {
1836
+ "type": "string",
1837
+ "enum": [
1838
+ "ask",
1839
+ "allow",
1840
+ "deny"
1841
+ ]
1842
+ },
1843
+ "doom_loop": {
1844
+ "type": "string",
1845
+ "enum": [
1846
+ "ask",
1847
+ "allow",
1848
+ "deny"
1849
+ ]
1850
+ },
1851
+ "external_directory": {
1852
+ "type": "string",
1853
+ "enum": [
1854
+ "ask",
1855
+ "allow",
1856
+ "deny"
1857
+ ]
1858
+ }
1859
+ }
1860
+ }
1861
+ }
1862
+ }
1863
+ }
1864
+ },
1865
+ "skills": {
1866
+ "type": "object",
1867
+ "properties": {
1868
+ "playwright": {
1869
+ "type": "object",
1870
+ "properties": {
1871
+ "disable": {
1872
+ "type": "boolean"
1873
+ }
1874
+ }
1875
+ },
1876
+ "frontend-ui-ux": {
1877
+ "type": "object",
1878
+ "properties": {
1879
+ "disable": {
1880
+ "type": "boolean"
1881
+ }
1882
+ }
1883
+ },
1884
+ "git-master": {
1885
+ "type": "object",
1886
+ "properties": {
1887
+ "disable": {
1888
+ "type": "boolean"
1889
+ }
1890
+ }
1891
+ }
1892
+ }
1893
+ },
1894
+ "hooks": {
1895
+ "type": "object",
1896
+ "properties": {
1897
+ "todo-continuation-enforcer": {
1898
+ "type": "object",
1899
+ "properties": {
1900
+ "disable": {
1901
+ "type": "boolean"
1902
+ }
1903
+ }
1904
+ },
1905
+ "context-window-monitor": {
1906
+ "type": "object",
1907
+ "properties": {
1908
+ "disable": {
1909
+ "type": "boolean"
1910
+ }
1911
+ }
1912
+ },
1913
+ "session-recovery": {
1914
+ "type": "object",
1915
+ "properties": {
1916
+ "disable": {
1917
+ "type": "boolean"
1918
+ }
1919
+ }
1920
+ },
1921
+ "session-notification": {
1922
+ "type": "object",
1923
+ "properties": {
1924
+ "disable": {
1925
+ "type": "boolean"
1926
+ }
1927
+ }
1928
+ },
1929
+ "comment-checker": {
1930
+ "type": "object",
1931
+ "properties": {
1932
+ "disable": {
1933
+ "type": "boolean"
1934
+ }
1935
+ }
1936
+ },
1937
+ "grep-output-truncator": {
1938
+ "type": "object",
1939
+ "properties": {
1940
+ "disable": {
1941
+ "type": "boolean"
1942
+ }
1943
+ }
1944
+ },
1945
+ "tool-output-truncator": {
1946
+ "type": "object",
1947
+ "properties": {
1948
+ "disable": {
1949
+ "type": "boolean"
1950
+ }
1951
+ }
1952
+ },
1953
+ "directory-agents-injector": {
1954
+ "type": "object",
1955
+ "properties": {
1956
+ "disable": {
1957
+ "type": "boolean"
1958
+ }
1959
+ }
1960
+ },
1961
+ "directory-readme-injector": {
1962
+ "type": "object",
1963
+ "properties": {
1964
+ "disable": {
1965
+ "type": "boolean"
1966
+ }
1967
+ }
1968
+ },
1969
+ "empty-task-response-detector": {
1970
+ "type": "object",
1971
+ "properties": {
1972
+ "disable": {
1973
+ "type": "boolean"
1974
+ }
1975
+ }
1976
+ },
1977
+ "think-mode": {
1978
+ "type": "object",
1979
+ "properties": {
1980
+ "disable": {
1981
+ "type": "boolean"
1982
+ }
1983
+ }
1984
+ },
1985
+ "anthropic-context-window-limit-recovery": {
1986
+ "type": "object",
1987
+ "properties": {
1988
+ "disable": {
1989
+ "type": "boolean"
1990
+ }
1991
+ }
1992
+ },
1993
+ "rules-injector": {
1994
+ "type": "object",
1995
+ "properties": {
1996
+ "disable": {
1997
+ "type": "boolean"
1998
+ }
1999
+ }
2000
+ },
2001
+ "background-notification": {
2002
+ "type": "object",
2003
+ "properties": {
2004
+ "disable": {
2005
+ "type": "boolean"
2006
+ }
2007
+ }
2008
+ },
2009
+ "auto-update-checker": {
2010
+ "type": "object",
2011
+ "properties": {
2012
+ "disable": {
2013
+ "type": "boolean"
2014
+ }
2015
+ }
2016
+ },
2017
+ "startup-toast": {
2018
+ "type": "object",
2019
+ "properties": {
2020
+ "disable": {
2021
+ "type": "boolean"
2022
+ }
2023
+ }
2024
+ },
2025
+ "keyword-detector": {
2026
+ "type": "object",
2027
+ "properties": {
2028
+ "disable": {
2029
+ "type": "boolean"
2030
+ }
2031
+ }
2032
+ },
2033
+ "agent-usage-reminder": {
2034
+ "type": "object",
2035
+ "properties": {
2036
+ "disable": {
2037
+ "type": "boolean"
2038
+ }
2039
+ }
2040
+ },
2041
+ "non-interactive-env": {
2042
+ "type": "object",
2043
+ "properties": {
2044
+ "disable": {
2045
+ "type": "boolean"
2046
+ }
2047
+ }
2048
+ },
2049
+ "interactive-bash-session": {
2050
+ "type": "object",
2051
+ "properties": {
2052
+ "disable": {
2053
+ "type": "boolean"
2054
+ }
2055
+ }
2056
+ },
2057
+ "thinking-block-validator": {
2058
+ "type": "object",
2059
+ "properties": {
2060
+ "disable": {
2061
+ "type": "boolean"
2062
+ }
2063
+ }
2064
+ },
2065
+ "ralph-loop": {
2066
+ "type": "object",
2067
+ "properties": {
2068
+ "disable": {
2069
+ "type": "boolean"
2070
+ }
2071
+ }
2072
+ },
2073
+ "compaction-context-injector": {
2074
+ "type": "object",
2075
+ "properties": {
2076
+ "disable": {
2077
+ "type": "boolean"
2078
+ }
2079
+ }
2080
+ },
2081
+ "claude-code-hooks": {
2082
+ "type": "object",
2083
+ "properties": {
2084
+ "disable": {
2085
+ "type": "boolean"
2086
+ }
2087
+ }
2088
+ },
2089
+ "auto-slash-command": {
2090
+ "type": "object",
2091
+ "properties": {
2092
+ "disable": {
2093
+ "type": "boolean"
2094
+ }
2095
+ }
2096
+ },
2097
+ "edit-error-recovery": {
2098
+ "type": "object",
2099
+ "properties": {
2100
+ "disable": {
2101
+ "type": "boolean"
2102
+ }
2103
+ }
2104
+ },
2105
+ "delegate-task-retry": {
2106
+ "type": "object",
2107
+ "properties": {
2108
+ "disable": {
2109
+ "type": "boolean"
2110
+ }
2111
+ }
2112
+ },
2113
+ "prometheus-md-only": {
2114
+ "type": "object",
2115
+ "properties": {
2116
+ "disable": {
2117
+ "type": "boolean"
2118
+ }
2119
+ }
2120
+ },
2121
+ "start-work": {
2122
+ "type": "object",
2123
+ "properties": {
2124
+ "disable": {
2125
+ "type": "boolean"
2126
+ }
2127
+ }
2128
+ },
2129
+ "atlas": {
2130
+ "type": "object",
2131
+ "properties": {
2132
+ "disable": {
2133
+ "type": "boolean"
2134
+ }
2135
+ }
2136
+ }
2137
+ }
2138
+ },
2139
+ "commands": {
2140
+ "type": "object",
2141
+ "properties": {
2142
+ "init-deep": {
2143
+ "type": "object",
2144
+ "properties": {
2145
+ "disable": {
2146
+ "type": "boolean"
2147
+ }
2148
+ }
2149
+ },
2150
+ "start-work": {
2151
+ "type": "object",
2152
+ "properties": {
2153
+ "disable": {
2154
+ "type": "boolean"
2155
+ }
2156
+ }
2157
+ }
2158
+ }
2159
+ },
2160
+ "slash_commands": {
2161
+ "type": "object",
2162
+ "properties": {
2163
+ "init-deep": {
2164
+ "type": "object",
2165
+ "properties": {
2166
+ "disable": {
2167
+ "type": "boolean"
2168
+ }
2169
+ }
2170
+ },
2171
+ "start-work": {
2172
+ "type": "object",
2173
+ "properties": {
2174
+ "disable": {
2175
+ "type": "boolean"
2176
+ }
2177
+ }
2178
+ }
2179
+ }
2180
+ }
2181
+ }
2182
+ }