evil-omo 3.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1024) hide show
  1. package/LICENSE.md +82 -0
  2. package/README.ja.md +342 -0
  3. package/README.ko.md +336 -0
  4. package/README.md +381 -0
  5. package/README.ru.md +363 -0
  6. package/README.zh-cn.md +341 -0
  7. package/bin/oh-my-opencode.js +142 -0
  8. package/bin/platform.d.ts +14 -0
  9. package/bin/platform.js +82 -0
  10. package/bin/platform.test.ts +203 -0
  11. package/dist/agents/agent-builder.d.ts +7 -0
  12. package/dist/agents/atlas/agent.d.ts +35 -0
  13. package/dist/agents/atlas/default.d.ts +11 -0
  14. package/dist/agents/atlas/gemini.d.ts +11 -0
  15. package/dist/agents/atlas/gpt.d.ts +11 -0
  16. package/dist/agents/atlas/index.d.ts +2 -0
  17. package/dist/agents/atlas/prompt-section-builder.d.ts +13 -0
  18. package/dist/agents/authorized-research-framework.d.ts +1 -0
  19. package/dist/agents/builtin-agents/agent-overrides.d.ts +12 -0
  20. package/dist/agents/builtin-agents/atlas-agent.d.ts +17 -0
  21. package/dist/agents/builtin-agents/available-skills.d.ts +4 -0
  22. package/dist/agents/builtin-agents/environment-context.d.ts +6 -0
  23. package/dist/agents/builtin-agents/general-agents.d.ts +25 -0
  24. package/dist/agents/builtin-agents/hephaestus-agent.d.ts +18 -0
  25. package/dist/agents/builtin-agents/model-resolution.d.ts +24 -0
  26. package/dist/agents/builtin-agents/resolve-file-uri.d.ts +1 -0
  27. package/dist/agents/builtin-agents/sisyphus-agent.d.ts +20 -0
  28. package/dist/agents/builtin-agents.d.ts +6 -0
  29. package/dist/agents/custom-agent-summaries.d.ts +8 -0
  30. package/dist/agents/dynamic-agent-prompt-builder.d.ts +35 -0
  31. package/dist/agents/env-context.d.ts +7 -0
  32. package/dist/agents/explore.d.ts +7 -0
  33. package/dist/agents/hephaestus/agent.d.ts +19 -0
  34. package/dist/agents/hephaestus/gpt-5-3-codex.d.ts +21 -0
  35. package/dist/agents/hephaestus/gpt-5-4.d.ts +3 -0
  36. package/dist/agents/hephaestus/gpt.d.ts +3 -0
  37. package/dist/agents/hephaestus/index.d.ts +2 -0
  38. package/dist/agents/index.d.ts +5 -0
  39. package/dist/agents/librarian.d.ts +7 -0
  40. package/dist/agents/metis.d.ts +21 -0
  41. package/dist/agents/momus.d.ts +25 -0
  42. package/dist/agents/multimodal-looker.d.ts +7 -0
  43. package/dist/agents/oracle.d.ts +7 -0
  44. package/dist/agents/prometheus/behavioral-summary.d.ts +6 -0
  45. package/dist/agents/prometheus/gemini.d.ts +12 -0
  46. package/dist/agents/prometheus/gpt.d.ts +11 -0
  47. package/dist/agents/prometheus/high-accuracy-mode.d.ts +6 -0
  48. package/dist/agents/prometheus/identity-constraints.d.ts +7 -0
  49. package/dist/agents/prometheus/index.d.ts +2 -0
  50. package/dist/agents/prometheus/interview-mode.d.ts +7 -0
  51. package/dist/agents/prometheus/plan-generation.d.ts +7 -0
  52. package/dist/agents/prometheus/plan-template.d.ts +7 -0
  53. package/dist/agents/prometheus/system-prompt.d.ts +28 -0
  54. package/dist/agents/sisyphus/default.d.ts +9 -0
  55. package/dist/agents/sisyphus/gemini.d.ts +20 -0
  56. package/dist/agents/sisyphus/gpt-5-4.d.ts +26 -0
  57. package/dist/agents/sisyphus/index.d.ts +11 -0
  58. package/dist/agents/sisyphus-junior/agent.d.ts +27 -0
  59. package/dist/agents/sisyphus-junior/default.d.ts +9 -0
  60. package/dist/agents/sisyphus-junior/gemini.d.ts +10 -0
  61. package/dist/agents/sisyphus-junior/gpt-5-3-codex.d.ts +8 -0
  62. package/dist/agents/sisyphus-junior/gpt-5-4.d.ts +11 -0
  63. package/dist/agents/sisyphus-junior/gpt.d.ts +9 -0
  64. package/dist/agents/sisyphus-junior/index.d.ts +7 -0
  65. package/dist/agents/sisyphus.d.ts +8 -0
  66. package/dist/agents/types.d.ts +67 -0
  67. package/dist/cli/cli-installer.d.ts +2 -0
  68. package/dist/cli/cli-program.d.ts +1 -0
  69. package/dist/cli/config-manager/add-plugin-to-opencode-config.d.ts +2 -0
  70. package/dist/cli/config-manager/bun-install.d.ts +12 -0
  71. package/dist/cli/config-manager/config-context.d.ts +13 -0
  72. package/dist/cli/config-manager/deep-merge-record.d.ts +1 -0
  73. package/dist/cli/config-manager/detect-current-config.d.ts +2 -0
  74. package/dist/cli/config-manager/ensure-config-directory-exists.d.ts +1 -0
  75. package/dist/cli/config-manager/format-error-with-suggestion.d.ts +1 -0
  76. package/dist/cli/config-manager/generate-omo-config.d.ts +2 -0
  77. package/dist/cli/config-manager/npm-dist-tags.d.ts +7 -0
  78. package/dist/cli/config-manager/opencode-binary.d.ts +2 -0
  79. package/dist/cli/config-manager/opencode-config-format.d.ts +5 -0
  80. package/dist/cli/config-manager/parse-opencode-config-file.d.ts +10 -0
  81. package/dist/cli/config-manager/plugin-name-with-version.d.ts +1 -0
  82. package/dist/cli/config-manager/write-omo-config.d.ts +2 -0
  83. package/dist/cli/config-manager.d.ts +11 -0
  84. package/dist/cli/doctor/checks/config.d.ts +2 -0
  85. package/dist/cli/doctor/checks/dependencies.d.ts +4 -0
  86. package/dist/cli/doctor/checks/index.d.ts +7 -0
  87. package/dist/cli/doctor/checks/model-resolution-cache.d.ts +2 -0
  88. package/dist/cli/doctor/checks/model-resolution-config.d.ts +2 -0
  89. package/dist/cli/doctor/checks/model-resolution-details.d.ts +6 -0
  90. package/dist/cli/doctor/checks/model-resolution-effective-model.d.ts +3 -0
  91. package/dist/cli/doctor/checks/model-resolution-types.d.ts +37 -0
  92. package/dist/cli/doctor/checks/model-resolution-variant.d.ts +5 -0
  93. package/dist/cli/doctor/checks/model-resolution.d.ts +6 -0
  94. package/dist/cli/doctor/checks/system-binary.d.ts +13 -0
  95. package/dist/cli/doctor/checks/system-loaded-version.d.ts +10 -0
  96. package/dist/cli/doctor/checks/system-plugin.d.ts +15 -0
  97. package/dist/cli/doctor/checks/system.d.ts +3 -0
  98. package/dist/cli/doctor/checks/tools-gh.d.ts +10 -0
  99. package/dist/cli/doctor/checks/tools-lsp.d.ts +4 -0
  100. package/dist/cli/doctor/checks/tools-mcp.d.ts +3 -0
  101. package/dist/cli/doctor/checks/tools.d.ts +3 -0
  102. package/dist/cli/doctor/constants.d.ts +29 -0
  103. package/dist/cli/doctor/format-default.d.ts +2 -0
  104. package/dist/cli/doctor/format-shared.d.ts +6 -0
  105. package/dist/cli/doctor/format-status.d.ts +2 -0
  106. package/dist/cli/doctor/format-verbose.d.ts +2 -0
  107. package/dist/cli/doctor/formatter.d.ts +3 -0
  108. package/dist/cli/doctor/index.d.ts +5 -0
  109. package/dist/cli/doctor/runner.d.ts +5 -0
  110. package/dist/cli/doctor/types.d.ts +120 -0
  111. package/dist/cli/fallback-chain-resolution.d.ts +10 -0
  112. package/dist/cli/get-local-version/formatter.d.ts +3 -0
  113. package/dist/cli/get-local-version/get-local-version.d.ts +2 -0
  114. package/dist/cli/get-local-version/index.d.ts +2 -0
  115. package/dist/cli/get-local-version/types.d.ts +13 -0
  116. package/dist/cli/index.d.ts +2 -0
  117. package/dist/cli/index.js +29713 -0
  118. package/dist/cli/install-validators.d.ts +33 -0
  119. package/dist/cli/install.d.ts +2 -0
  120. package/dist/cli/mcp-oauth/index.d.ts +6 -0
  121. package/dist/cli/mcp-oauth/login.d.ts +6 -0
  122. package/dist/cli/mcp-oauth/logout.d.ts +4 -0
  123. package/dist/cli/mcp-oauth/status.d.ts +1 -0
  124. package/dist/cli/model-fallback-requirements.d.ts +3 -0
  125. package/dist/cli/model-fallback-types.d.ts +27 -0
  126. package/dist/cli/model-fallback.d.ts +5 -0
  127. package/dist/cli/openai-only-model-catalog.d.ts +3 -0
  128. package/dist/cli/provider-availability.d.ts +4 -0
  129. package/dist/cli/provider-model-id-transform.d.ts +1 -0
  130. package/dist/cli/run/agent-profile-colors.d.ts +2 -0
  131. package/dist/cli/run/agent-resolver.d.ts +5 -0
  132. package/dist/cli/run/completion.d.ts +2 -0
  133. package/dist/cli/run/continuation-state.d.ts +9 -0
  134. package/dist/cli/run/display-chars.d.ts +5 -0
  135. package/dist/cli/run/event-formatting.d.ts +3 -0
  136. package/dist/cli/run/event-handlers.d.ts +11 -0
  137. package/dist/cli/run/event-state.d.ts +49 -0
  138. package/dist/cli/run/event-stream-processor.d.ts +3 -0
  139. package/dist/cli/run/events.d.ts +4 -0
  140. package/dist/cli/run/index.d.ts +10 -0
  141. package/dist/cli/run/json-output.d.ts +12 -0
  142. package/dist/cli/run/model-resolver.d.ts +4 -0
  143. package/dist/cli/run/on-complete-hook.d.ts +7 -0
  144. package/dist/cli/run/opencode-binary-resolver.d.ts +5 -0
  145. package/dist/cli/run/output-renderer.d.ts +7 -0
  146. package/dist/cli/run/poll-for-completion.d.ts +10 -0
  147. package/dist/cli/run/runner.d.ts +5 -0
  148. package/dist/cli/run/server-connection.d.ts +6 -0
  149. package/dist/cli/run/session-resolver.d.ts +6 -0
  150. package/dist/cli/run/stdin-suppression.d.ts +12 -0
  151. package/dist/cli/run/timestamp-output.d.ts +5 -0
  152. package/dist/cli/run/tool-input-preview.d.ts +6 -0
  153. package/dist/cli/run/types.d.ts +132 -0
  154. package/dist/cli/tui-install-prompts.d.ts +2 -0
  155. package/dist/cli/tui-installer.d.ts +2 -0
  156. package/dist/cli/types.d.ts +42 -0
  157. package/dist/config/index.d.ts +2 -0
  158. package/dist/config/schema/agent-names.d.ts +52 -0
  159. package/dist/config/schema/agent-overrides.d.ts +1266 -0
  160. package/dist/config/schema/babysitting.d.ts +5 -0
  161. package/dist/config/schema/background-task.d.ts +12 -0
  162. package/dist/config/schema/browser-automation.d.ts +17 -0
  163. package/dist/config/schema/categories.d.ts +78 -0
  164. package/dist/config/schema/claude-code.d.ts +11 -0
  165. package/dist/config/schema/commands.d.ts +11 -0
  166. package/dist/config/schema/comment-checker.d.ts +5 -0
  167. package/dist/config/schema/dynamic-context-pruning.d.ts +28 -0
  168. package/dist/config/schema/experimental.d.ts +40 -0
  169. package/dist/config/schema/fallback-models.d.ts +3 -0
  170. package/dist/config/schema/git-env-prefix.d.ts +5 -0
  171. package/dist/config/schema/git-master.d.ts +7 -0
  172. package/dist/config/schema/hooks.d.ts +52 -0
  173. package/dist/config/schema/internal/permission.d.ts +44 -0
  174. package/dist/config/schema/notification.d.ts +5 -0
  175. package/dist/config/schema/oh-my-opencode-config.d.ts +1395 -0
  176. package/dist/config/schema/ralph-loop.d.ts +11 -0
  177. package/dist/config/schema/runtime-fallback.d.ts +10 -0
  178. package/dist/config/schema/sisyphus-agent.d.ts +8 -0
  179. package/dist/config/schema/sisyphus.d.ts +15 -0
  180. package/dist/config/schema/skills.d.ts +58 -0
  181. package/dist/config/schema/start-work.d.ts +5 -0
  182. package/dist/config/schema/tmux.d.ts +23 -0
  183. package/dist/config/schema/websearch.d.ts +13 -0
  184. package/dist/config/schema.d.ts +25 -0
  185. package/dist/create-hooks.d.ts +77 -0
  186. package/dist/create-managers.d.ts +20 -0
  187. package/dist/create-tools.d.ts +20 -0
  188. package/dist/features/background-agent/background-task-notification-template.d.ts +10 -0
  189. package/dist/features/background-agent/compaction-aware-message-resolver.d.ts +18 -0
  190. package/dist/features/background-agent/concurrency.d.ts +27 -0
  191. package/dist/features/background-agent/constants.d.ts +45 -0
  192. package/dist/features/background-agent/duration-formatter.d.ts +1 -0
  193. package/dist/features/background-agent/error-classifier.d.ts +10 -0
  194. package/dist/features/background-agent/fallback-retry-handler.d.ts +16 -0
  195. package/dist/features/background-agent/index.d.ts +2 -0
  196. package/dist/features/background-agent/manager.d.ts +156 -0
  197. package/dist/features/background-agent/opencode-client.d.ts +2 -0
  198. package/dist/features/background-agent/process-cleanup.d.ts +8 -0
  199. package/dist/features/background-agent/remove-task-toast-tracking.d.ts +1 -0
  200. package/dist/features/background-agent/session-idle-event-handler.d.ts +10 -0
  201. package/dist/features/background-agent/spawner/parent-directory-resolver.d.ts +6 -0
  202. package/dist/features/background-agent/spawner.d.ts +14 -0
  203. package/dist/features/background-agent/state.d.ts +35 -0
  204. package/dist/features/background-agent/subagent-spawn-limits.d.ts +23 -0
  205. package/dist/features/background-agent/task-history.d.ts +19 -0
  206. package/dist/features/background-agent/task-poller.d.ts +21 -0
  207. package/dist/features/background-agent/types.d.ts +94 -0
  208. package/dist/features/boulder-state/constants.d.ts +10 -0
  209. package/dist/features/boulder-state/index.d.ts +3 -0
  210. package/dist/features/boulder-state/storage.d.ts +28 -0
  211. package/dist/features/boulder-state/types.d.ts +28 -0
  212. package/dist/features/builtin-commands/commands.d.ts +2 -0
  213. package/dist/features/builtin-commands/index.d.ts +2 -0
  214. package/dist/features/builtin-commands/templates/handoff.d.ts +1 -0
  215. package/dist/features/builtin-commands/templates/init-deep.d.ts +1 -0
  216. package/dist/features/builtin-commands/templates/ralph-loop.d.ts +3 -0
  217. package/dist/features/builtin-commands/templates/refactor.d.ts +1 -0
  218. package/dist/features/builtin-commands/templates/start-work.d.ts +1 -0
  219. package/dist/features/builtin-commands/templates/stop-continuation.d.ts +1 -0
  220. package/dist/features/builtin-commands/types.d.ts +6 -0
  221. package/dist/features/builtin-skills/index.d.ts +2 -0
  222. package/dist/features/builtin-skills/skills/dev-browser.d.ts +2 -0
  223. package/dist/features/builtin-skills/skills/frontend-ui-ux.d.ts +2 -0
  224. package/dist/features/builtin-skills/skills/git-master-skill-metadata.d.ts +2 -0
  225. package/dist/features/builtin-skills/skills/git-master.d.ts +2 -0
  226. package/dist/features/builtin-skills/skills/index.d.ts +5 -0
  227. package/dist/features/builtin-skills/skills/playwright-cli.d.ts +10 -0
  228. package/dist/features/builtin-skills/skills/playwright.d.ts +3 -0
  229. package/dist/features/builtin-skills/skills.d.ts +7 -0
  230. package/dist/features/builtin-skills/types.d.ts +15 -0
  231. package/dist/features/claude-code-agent-loader/claude-model-mapper.d.ts +4 -0
  232. package/dist/features/claude-code-agent-loader/index.d.ts +2 -0
  233. package/dist/features/claude-code-agent-loader/loader.d.ts +3 -0
  234. package/dist/features/claude-code-agent-loader/types.d.ts +21 -0
  235. package/dist/features/claude-code-command-loader/index.d.ts +2 -0
  236. package/dist/features/claude-code-command-loader/loader.d.ts +6 -0
  237. package/dist/features/claude-code-command-loader/types.d.ts +42 -0
  238. package/dist/features/claude-code-mcp-loader/env-expander.d.ts +2 -0
  239. package/dist/features/claude-code-mcp-loader/index.d.ts +10 -0
  240. package/dist/features/claude-code-mcp-loader/loader.d.ts +4 -0
  241. package/dist/features/claude-code-mcp-loader/transformer.d.ts +2 -0
  242. package/dist/features/claude-code-mcp-loader/types.d.ts +39 -0
  243. package/dist/features/claude-code-plugin-loader/agent-loader.d.ts +3 -0
  244. package/dist/features/claude-code-plugin-loader/command-loader.d.ts +3 -0
  245. package/dist/features/claude-code-plugin-loader/discovery.d.ts +2 -0
  246. package/dist/features/claude-code-plugin-loader/hook-loader.d.ts +2 -0
  247. package/dist/features/claude-code-plugin-loader/index.d.ts +10 -0
  248. package/dist/features/claude-code-plugin-loader/loader.d.ts +20 -0
  249. package/dist/features/claude-code-plugin-loader/mcp-server-loader.d.ts +3 -0
  250. package/dist/features/claude-code-plugin-loader/plugin-path-resolver.d.ts +2 -0
  251. package/dist/features/claude-code-plugin-loader/skill-loader.d.ts +3 -0
  252. package/dist/features/claude-code-plugin-loader/types.d.ts +215 -0
  253. package/dist/features/claude-code-session-state/index.d.ts +1 -0
  254. package/dist/features/claude-code-session-state/state.d.ts +10 -0
  255. package/dist/features/claude-tasks/session-storage.d.ts +9 -0
  256. package/dist/features/claude-tasks/storage.d.ts +14 -0
  257. package/dist/features/claude-tasks/types.d.ts +25 -0
  258. package/dist/features/context-injector/collector.d.ts +11 -0
  259. package/dist/features/context-injector/index.d.ts +3 -0
  260. package/dist/features/context-injector/injector.d.ts +39 -0
  261. package/dist/features/context-injector/types.d.ts +83 -0
  262. package/dist/features/hook-message-injector/constants.d.ts +1 -0
  263. package/dist/features/hook-message-injector/index.d.ts +4 -0
  264. package/dist/features/hook-message-injector/injector.d.ts +69 -0
  265. package/dist/features/hook-message-injector/types.d.ts +46 -0
  266. package/dist/features/mcp-oauth/callback-server.d.ts +11 -0
  267. package/dist/features/mcp-oauth/dcr.d.ts +34 -0
  268. package/dist/features/mcp-oauth/discovery.d.ts +8 -0
  269. package/dist/features/mcp-oauth/oauth-authorization-flow.d.ts +26 -0
  270. package/dist/features/mcp-oauth/provider.d.ts +29 -0
  271. package/dist/features/mcp-oauth/resource-indicator.d.ts +2 -0
  272. package/dist/features/mcp-oauth/schema.d.ts +6 -0
  273. package/dist/features/mcp-oauth/step-up.d.ts +8 -0
  274. package/dist/features/mcp-oauth/storage.d.ts +17 -0
  275. package/dist/features/opencode-skill-loader/allowed-tools-parser.d.ts +1 -0
  276. package/dist/features/opencode-skill-loader/async-loader.d.ts +6 -0
  277. package/dist/features/opencode-skill-loader/blocking.d.ts +2 -0
  278. package/dist/features/opencode-skill-loader/config-source-discovery.d.ts +7 -0
  279. package/dist/features/opencode-skill-loader/discover-worker.d.ts +1 -0
  280. package/dist/features/opencode-skill-loader/git-master-template-injection.d.ts +2 -0
  281. package/dist/features/opencode-skill-loader/index.d.ts +15 -0
  282. package/dist/features/opencode-skill-loader/loaded-skill-from-path.d.ts +9 -0
  283. package/dist/features/opencode-skill-loader/loaded-skill-template-extractor.d.ts +2 -0
  284. package/dist/features/opencode-skill-loader/loader.d.ts +19 -0
  285. package/dist/features/opencode-skill-loader/merger/builtin-skill-converter.d.ts +3 -0
  286. package/dist/features/opencode-skill-loader/merger/config-skill-entry-loader.d.ts +3 -0
  287. package/dist/features/opencode-skill-loader/merger/scope-priority.d.ts +2 -0
  288. package/dist/features/opencode-skill-loader/merger/skill-definition-merger.d.ts +3 -0
  289. package/dist/features/opencode-skill-loader/merger/skills-config-normalizer.d.ts +11 -0
  290. package/dist/features/opencode-skill-loader/merger.d.ts +7 -0
  291. package/dist/features/opencode-skill-loader/skill-content.d.ts +5 -0
  292. package/dist/features/opencode-skill-loader/skill-deduplication.d.ts +2 -0
  293. package/dist/features/opencode-skill-loader/skill-definition-record.d.ts +3 -0
  294. package/dist/features/opencode-skill-loader/skill-directory-loader.d.ts +8 -0
  295. package/dist/features/opencode-skill-loader/skill-discovery.d.ts +4 -0
  296. package/dist/features/opencode-skill-loader/skill-mcp-config.d.ts +3 -0
  297. package/dist/features/opencode-skill-loader/skill-resolution-options.d.ts +8 -0
  298. package/dist/features/opencode-skill-loader/skill-template-resolver.d.ts +11 -0
  299. package/dist/features/opencode-skill-loader/types.d.ts +34 -0
  300. package/dist/features/run-continuation-state/constants.d.ts +1 -0
  301. package/dist/features/run-continuation-state/index.d.ts +3 -0
  302. package/dist/features/run-continuation-state/storage.d.ts +6 -0
  303. package/dist/features/run-continuation-state/types.d.ts +12 -0
  304. package/dist/features/skill-mcp-manager/cleanup.d.ts +8 -0
  305. package/dist/features/skill-mcp-manager/connection-type.d.ts +7 -0
  306. package/dist/features/skill-mcp-manager/connection.d.ts +15 -0
  307. package/dist/features/skill-mcp-manager/env-cleaner.d.ts +2 -0
  308. package/dist/features/skill-mcp-manager/http-client.d.ts +3 -0
  309. package/dist/features/skill-mcp-manager/index.d.ts +2 -0
  310. package/dist/features/skill-mcp-manager/manager.d.ts +21 -0
  311. package/dist/features/skill-mcp-manager/oauth-handler.d.ts +9 -0
  312. package/dist/features/skill-mcp-manager/stdio-client.d.ts +3 -0
  313. package/dist/features/skill-mcp-manager/types.d.ts +59 -0
  314. package/dist/features/task-toast-manager/index.d.ts +2 -0
  315. package/dist/features/task-toast-manager/manager.d.ts +64 -0
  316. package/dist/features/task-toast-manager/types.d.ts +25 -0
  317. package/dist/features/tmux-subagent/action-executor-core.d.ts +21 -0
  318. package/dist/features/tmux-subagent/action-executor.d.ts +20 -0
  319. package/dist/features/tmux-subagent/cleanup.d.ts +9 -0
  320. package/dist/features/tmux-subagent/decision-engine.d.ts +7 -0
  321. package/dist/features/tmux-subagent/event-handlers.d.ts +6 -0
  322. package/dist/features/tmux-subagent/grid-planning.d.ts +21 -0
  323. package/dist/features/tmux-subagent/index.d.ts +16 -0
  324. package/dist/features/tmux-subagent/manager.d.ts +73 -0
  325. package/dist/features/tmux-subagent/oldest-agent-pane.d.ts +7 -0
  326. package/dist/features/tmux-subagent/pane-split-availability.d.ts +8 -0
  327. package/dist/features/tmux-subagent/pane-state-parser.d.ts +8 -0
  328. package/dist/features/tmux-subagent/pane-state-querier.d.ts +2 -0
  329. package/dist/features/tmux-subagent/polling-constants.d.ts +3 -0
  330. package/dist/features/tmux-subagent/polling-manager.d.ts +13 -0
  331. package/dist/features/tmux-subagent/polling.d.ts +19 -0
  332. package/dist/features/tmux-subagent/session-created-event.d.ts +14 -0
  333. package/dist/features/tmux-subagent/session-created-handler.d.ts +22 -0
  334. package/dist/features/tmux-subagent/session-deleted-handler.d.ts +15 -0
  335. package/dist/features/tmux-subagent/session-message-count.d.ts +1 -0
  336. package/dist/features/tmux-subagent/session-ready-waiter.d.ts +7 -0
  337. package/dist/features/tmux-subagent/session-status-parser.d.ts +5 -0
  338. package/dist/features/tmux-subagent/spawn-action-decider.d.ts +4 -0
  339. package/dist/features/tmux-subagent/spawn-target-finder.d.ts +6 -0
  340. package/dist/features/tmux-subagent/tmux-grid-constants.d.ts +11 -0
  341. package/dist/features/tmux-subagent/tracked-session-state.d.ts +8 -0
  342. package/dist/features/tmux-subagent/types.d.ts +57 -0
  343. package/dist/features/tool-metadata-store/index.d.ts +2 -0
  344. package/dist/features/tool-metadata-store/store.d.ts +39 -0
  345. package/dist/hooks/agent-usage-reminder/constants.d.ts +4 -0
  346. package/dist/hooks/agent-usage-reminder/hook.d.ts +22 -0
  347. package/dist/hooks/agent-usage-reminder/index.d.ts +1 -0
  348. package/dist/hooks/agent-usage-reminder/storage.d.ts +4 -0
  349. package/dist/hooks/agent-usage-reminder/types.d.ts +6 -0
  350. package/dist/hooks/anthropic-context-window-limit-recovery/aggressive-truncation-strategy.d.ts +14 -0
  351. package/dist/hooks/anthropic-context-window-limit-recovery/client.d.ts +29 -0
  352. package/dist/hooks/anthropic-context-window-limit-recovery/deduplication-recovery.d.ts +6 -0
  353. package/dist/hooks/anthropic-context-window-limit-recovery/empty-content-recovery-sdk.d.ts +11 -0
  354. package/dist/hooks/anthropic-context-window-limit-recovery/empty-content-recovery.d.ts +8 -0
  355. package/dist/hooks/anthropic-context-window-limit-recovery/executor.d.ts +6 -0
  356. package/dist/hooks/anthropic-context-window-limit-recovery/index.d.ts +8 -0
  357. package/dist/hooks/anthropic-context-window-limit-recovery/message-builder.d.ts +7 -0
  358. package/dist/hooks/anthropic-context-window-limit-recovery/message-storage-directory.d.ts +6 -0
  359. package/dist/hooks/anthropic-context-window-limit-recovery/parser.d.ts +2 -0
  360. package/dist/hooks/anthropic-context-window-limit-recovery/pruning-deduplication.d.ts +10 -0
  361. package/dist/hooks/anthropic-context-window-limit-recovery/pruning-tool-output-truncation.d.ts +6 -0
  362. package/dist/hooks/anthropic-context-window-limit-recovery/pruning-types.d.ts +36 -0
  363. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-hook.d.ts +14 -0
  364. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-strategy.d.ts +2 -0
  365. package/dist/hooks/anthropic-context-window-limit-recovery/state.d.ts +6 -0
  366. package/dist/hooks/anthropic-context-window-limit-recovery/storage-paths.d.ts +3 -0
  367. package/dist/hooks/anthropic-context-window-limit-recovery/storage.d.ts +4 -0
  368. package/dist/hooks/anthropic-context-window-limit-recovery/summarize-retry-strategy.d.ts +13 -0
  369. package/dist/hooks/anthropic-context-window-limit-recovery/target-token-truncation.d.ts +5 -0
  370. package/dist/hooks/anthropic-context-window-limit-recovery/tool-part-types.d.ts +39 -0
  371. package/dist/hooks/anthropic-context-window-limit-recovery/tool-result-storage-sdk.d.ts +29 -0
  372. package/dist/hooks/anthropic-context-window-limit-recovery/tool-result-storage.d.ts +10 -0
  373. package/dist/hooks/anthropic-context-window-limit-recovery/types.d.ts +38 -0
  374. package/dist/hooks/anthropic-effort/hook.d.ts +26 -0
  375. package/dist/hooks/anthropic-effort/index.d.ts +1 -0
  376. package/dist/hooks/atlas/atlas-hook.d.ts +19 -0
  377. package/dist/hooks/atlas/boulder-continuation-injector.d.ts +14 -0
  378. package/dist/hooks/atlas/boulder-session-lineage.d.ts +6 -0
  379. package/dist/hooks/atlas/event-handler.d.ts +13 -0
  380. package/dist/hooks/atlas/final-wave-approval-gate.d.ts +6 -0
  381. package/dist/hooks/atlas/final-wave-plan-state.d.ts +5 -0
  382. package/dist/hooks/atlas/hook-name.d.ts +1 -0
  383. package/dist/hooks/atlas/idle-event.d.ts +8 -0
  384. package/dist/hooks/atlas/index.d.ts +3 -0
  385. package/dist/hooks/atlas/is-abort-error.d.ts +1 -0
  386. package/dist/hooks/atlas/recent-model-resolver.d.ts +9 -0
  387. package/dist/hooks/atlas/resolve-active-boulder-session.d.ts +11 -0
  388. package/dist/hooks/atlas/session-last-agent.d.ts +11 -0
  389. package/dist/hooks/atlas/sisyphus-path.d.ts +6 -0
  390. package/dist/hooks/atlas/subagent-session-id.d.ts +1 -0
  391. package/dist/hooks/atlas/system-reminder-templates.d.ts +6 -0
  392. package/dist/hooks/atlas/tool-execute-after.d.ts +9 -0
  393. package/dist/hooks/atlas/tool-execute-before.d.ts +12 -0
  394. package/dist/hooks/atlas/types.d.ts +35 -0
  395. package/dist/hooks/atlas/verification-reminders.d.ts +10 -0
  396. package/dist/hooks/atlas/write-edit-tool-policy.d.ts +1 -0
  397. package/dist/hooks/auto-slash-command/constants.d.ts +5 -0
  398. package/dist/hooks/auto-slash-command/detector.d.ts +13 -0
  399. package/dist/hooks/auto-slash-command/executor.d.ts +14 -0
  400. package/dist/hooks/auto-slash-command/hook.d.ts +18 -0
  401. package/dist/hooks/auto-slash-command/index.d.ts +6 -0
  402. package/dist/hooks/auto-slash-command/processed-command-store.d.ts +7 -0
  403. package/dist/hooks/auto-slash-command/types.d.ts +48 -0
  404. package/dist/hooks/auto-update-checker/cache.d.ts +3 -0
  405. package/dist/hooks/auto-update-checker/checker/cached-version.d.ts +1 -0
  406. package/dist/hooks/auto-update-checker/checker/check-for-update.d.ts +2 -0
  407. package/dist/hooks/auto-update-checker/checker/config-paths.d.ts +1 -0
  408. package/dist/hooks/auto-update-checker/checker/jsonc-strip.d.ts +1 -0
  409. package/dist/hooks/auto-update-checker/checker/latest-version.d.ts +1 -0
  410. package/dist/hooks/auto-update-checker/checker/local-dev-path.d.ts +2 -0
  411. package/dist/hooks/auto-update-checker/checker/local-dev-version.d.ts +1 -0
  412. package/dist/hooks/auto-update-checker/checker/package-json-locator.d.ts +1 -0
  413. package/dist/hooks/auto-update-checker/checker/pinned-version-updater.d.ts +2 -0
  414. package/dist/hooks/auto-update-checker/checker/plugin-entry.d.ts +7 -0
  415. package/dist/hooks/auto-update-checker/checker/sync-package-json.d.ts +7 -0
  416. package/dist/hooks/auto-update-checker/checker.d.ts +10 -0
  417. package/dist/hooks/auto-update-checker/constants.d.ts +10 -0
  418. package/dist/hooks/auto-update-checker/hook/background-update-check.d.ts +2 -0
  419. package/dist/hooks/auto-update-checker/hook/config-errors-toast.d.ts +2 -0
  420. package/dist/hooks/auto-update-checker/hook/connected-providers-status.d.ts +2 -0
  421. package/dist/hooks/auto-update-checker/hook/model-cache-warning.d.ts +2 -0
  422. package/dist/hooks/auto-update-checker/hook/spinner-toast.d.ts +2 -0
  423. package/dist/hooks/auto-update-checker/hook/startup-toasts.d.ts +3 -0
  424. package/dist/hooks/auto-update-checker/hook/update-toasts.d.ts +3 -0
  425. package/dist/hooks/auto-update-checker/hook.d.ts +10 -0
  426. package/dist/hooks/auto-update-checker/index.d.ts +5 -0
  427. package/dist/hooks/auto-update-checker/types.d.ts +25 -0
  428. package/dist/hooks/auto-update-checker/version-channel.d.ts +4 -0
  429. package/dist/hooks/background-notification/hook.d.ts +29 -0
  430. package/dist/hooks/background-notification/index.d.ts +2 -0
  431. package/dist/hooks/background-notification/types.d.ts +4 -0
  432. package/dist/hooks/category-skill-reminder/formatter.d.ts +2 -0
  433. package/dist/hooks/category-skill-reminder/hook.d.ts +23 -0
  434. package/dist/hooks/category-skill-reminder/index.d.ts +1 -0
  435. package/dist/hooks/claude-code-hooks/claude-code-hooks-hook.d.ts +48 -0
  436. package/dist/hooks/claude-code-hooks/config-loader.d.ts +13 -0
  437. package/dist/hooks/claude-code-hooks/config.d.ts +3 -0
  438. package/dist/hooks/claude-code-hooks/dispatch-hook.d.ts +4 -0
  439. package/dist/hooks/claude-code-hooks/execute-http-hook.d.ts +4 -0
  440. package/dist/hooks/claude-code-hooks/handlers/chat-message-handler.d.ts +19 -0
  441. package/dist/hooks/claude-code-hooks/handlers/pre-compact-handler.d.ts +7 -0
  442. package/dist/hooks/claude-code-hooks/handlers/session-event-handler.d.ts +8 -0
  443. package/dist/hooks/claude-code-hooks/handlers/tool-execute-after-handler.d.ts +11 -0
  444. package/dist/hooks/claude-code-hooks/handlers/tool-execute-before-handler.d.ts +9 -0
  445. package/dist/hooks/claude-code-hooks/index.d.ts +1 -0
  446. package/dist/hooks/claude-code-hooks/plugin-config.d.ts +8 -0
  447. package/dist/hooks/claude-code-hooks/post-tool-use.d.ts +40 -0
  448. package/dist/hooks/claude-code-hooks/pre-compact.d.ts +16 -0
  449. package/dist/hooks/claude-code-hooks/pre-tool-use.d.ts +25 -0
  450. package/dist/hooks/claude-code-hooks/session-hook-state.d.ts +9 -0
  451. package/dist/hooks/claude-code-hooks/stop.d.ts +20 -0
  452. package/dist/hooks/claude-code-hooks/todo.d.ts +12 -0
  453. package/dist/hooks/claude-code-hooks/tool-input-cache.d.ts +5 -0
  454. package/dist/hooks/claude-code-hooks/transcript.d.ts +29 -0
  455. package/dist/hooks/claude-code-hooks/types.d.ts +191 -0
  456. package/dist/hooks/claude-code-hooks/user-prompt-submit.d.ts +22 -0
  457. package/dist/hooks/comment-checker/cli-runner.d.ts +19 -0
  458. package/dist/hooks/comment-checker/cli.d.ts +52 -0
  459. package/dist/hooks/comment-checker/downloader.d.ts +25 -0
  460. package/dist/hooks/comment-checker/hook.d.ts +19 -0
  461. package/dist/hooks/comment-checker/index.d.ts +1 -0
  462. package/dist/hooks/comment-checker/pending-calls.d.ts +4 -0
  463. package/dist/hooks/comment-checker/types.d.ts +31 -0
  464. package/dist/hooks/compaction-context-injector/compaction-context-prompt.d.ts +1 -0
  465. package/dist/hooks/compaction-context-injector/constants.d.ts +5 -0
  466. package/dist/hooks/compaction-context-injector/hook.d.ts +6 -0
  467. package/dist/hooks/compaction-context-injector/index.d.ts +1 -0
  468. package/dist/hooks/compaction-context-injector/recovery-prompt-config.d.ts +6 -0
  469. package/dist/hooks/compaction-context-injector/recovery.d.ts +6 -0
  470. package/dist/hooks/compaction-context-injector/session-id.d.ts +2 -0
  471. package/dist/hooks/compaction-context-injector/session-prompt-config-resolver.d.ts +16 -0
  472. package/dist/hooks/compaction-context-injector/tail-monitor.d.ts +13 -0
  473. package/dist/hooks/compaction-context-injector/types.d.ts +43 -0
  474. package/dist/hooks/compaction-context-injector/validated-model.d.ts +13 -0
  475. package/dist/hooks/compaction-todo-preserver/hook.d.ts +11 -0
  476. package/dist/hooks/compaction-todo-preserver/index.d.ts +2 -0
  477. package/dist/hooks/context-window-monitor.d.ts +19 -0
  478. package/dist/hooks/delegate-task-retry/guidance.d.ts +2 -0
  479. package/dist/hooks/delegate-task-retry/hook.d.ts +12 -0
  480. package/dist/hooks/delegate-task-retry/index.d.ts +4 -0
  481. package/dist/hooks/delegate-task-retry/patterns.d.ts +11 -0
  482. package/dist/hooks/directory-agents-injector/constants.d.ts +2 -0
  483. package/dist/hooks/directory-agents-injector/finder.d.ts +5 -0
  484. package/dist/hooks/directory-agents-injector/hook.d.ts +28 -0
  485. package/dist/hooks/directory-agents-injector/index.d.ts +1 -0
  486. package/dist/hooks/directory-agents-injector/injector.d.ts +16 -0
  487. package/dist/hooks/directory-agents-injector/storage.d.ts +1 -0
  488. package/dist/hooks/directory-readme-injector/constants.d.ts +2 -0
  489. package/dist/hooks/directory-readme-injector/finder.d.ts +5 -0
  490. package/dist/hooks/directory-readme-injector/hook.d.ts +28 -0
  491. package/dist/hooks/directory-readme-injector/index.d.ts +1 -0
  492. package/dist/hooks/directory-readme-injector/injector.d.ts +16 -0
  493. package/dist/hooks/directory-readme-injector/storage.d.ts +1 -0
  494. package/dist/hooks/edit-error-recovery/hook.d.ts +31 -0
  495. package/dist/hooks/edit-error-recovery/index.d.ts +1 -0
  496. package/dist/hooks/empty-task-response-detector.d.ts +12 -0
  497. package/dist/hooks/gpt-permission-continuation/assistant-message.d.ts +23 -0
  498. package/dist/hooks/gpt-permission-continuation/constants.d.ts +4 -0
  499. package/dist/hooks/gpt-permission-continuation/detector.d.ts +1 -0
  500. package/dist/hooks/gpt-permission-continuation/handler.d.ts +12 -0
  501. package/dist/hooks/gpt-permission-continuation/index.d.ts +13 -0
  502. package/dist/hooks/gpt-permission-continuation/session-state.d.ts +15 -0
  503. package/dist/hooks/hashline-edit-diff-enhancer/hook.d.ts +28 -0
  504. package/dist/hooks/hashline-read-enhancer/hook.d.ts +18 -0
  505. package/dist/hooks/hashline-read-enhancer/index.d.ts +1 -0
  506. package/dist/hooks/index.d.ts +50 -0
  507. package/dist/hooks/interactive-bash-session/constants.d.ts +3 -0
  508. package/dist/hooks/interactive-bash-session/hook.d.ts +23 -0
  509. package/dist/hooks/interactive-bash-session/index.d.ts +3 -0
  510. package/dist/hooks/interactive-bash-session/interactive-bash-session-tracker.d.ts +21 -0
  511. package/dist/hooks/interactive-bash-session/parser.d.ts +26 -0
  512. package/dist/hooks/interactive-bash-session/state-manager.d.ts +4 -0
  513. package/dist/hooks/interactive-bash-session/storage.d.ts +4 -0
  514. package/dist/hooks/interactive-bash-session/tmux-command-parser.d.ts +4 -0
  515. package/dist/hooks/interactive-bash-session/types.d.ts +10 -0
  516. package/dist/hooks/json-error-recovery/hook.d.ts +15 -0
  517. package/dist/hooks/json-error-recovery/index.d.ts +1 -0
  518. package/dist/hooks/keyword-detector/analyze/default.d.ts +12 -0
  519. package/dist/hooks/keyword-detector/analyze/index.d.ts +1 -0
  520. package/dist/hooks/keyword-detector/constants.d.ts +10 -0
  521. package/dist/hooks/keyword-detector/detector.d.ts +11 -0
  522. package/dist/hooks/keyword-detector/hook.d.ts +21 -0
  523. package/dist/hooks/keyword-detector/index.d.ts +4 -0
  524. package/dist/hooks/keyword-detector/search/default.d.ts +12 -0
  525. package/dist/hooks/keyword-detector/search/index.d.ts +1 -0
  526. package/dist/hooks/keyword-detector/types.d.ts +4 -0
  527. package/dist/hooks/keyword-detector/ultrawork/default.d.ts +10 -0
  528. package/dist/hooks/keyword-detector/ultrawork/gemini.d.ts +17 -0
  529. package/dist/hooks/keyword-detector/ultrawork/gpt.d.ts +11 -0
  530. package/dist/hooks/keyword-detector/ultrawork/index.d.ts +19 -0
  531. package/dist/hooks/keyword-detector/ultrawork/planner.d.ts +6 -0
  532. package/dist/hooks/keyword-detector/ultrawork/source-detector.d.ts +22 -0
  533. package/dist/hooks/model-fallback/hook.d.ts +60 -0
  534. package/dist/hooks/no-hephaestus-non-gpt/hook.d.ts +20 -0
  535. package/dist/hooks/no-hephaestus-non-gpt/index.d.ts +1 -0
  536. package/dist/hooks/no-sisyphus-gpt/hook.d.ts +16 -0
  537. package/dist/hooks/no-sisyphus-gpt/index.d.ts +1 -0
  538. package/dist/hooks/non-interactive-env/constants.d.ts +34 -0
  539. package/dist/hooks/non-interactive-env/detector.d.ts +1 -0
  540. package/dist/hooks/non-interactive-env/index.d.ts +4 -0
  541. package/dist/hooks/non-interactive-env/non-interactive-env-hook.d.ts +14 -0
  542. package/dist/hooks/non-interactive-env/types.d.ts +3 -0
  543. package/dist/hooks/preemptive-compaction.d.ts +32 -0
  544. package/dist/hooks/prometheus-md-only/agent-matcher.d.ts +1 -0
  545. package/dist/hooks/prometheus-md-only/agent-resolution.d.ts +16 -0
  546. package/dist/hooks/prometheus-md-only/constants.d.ts +7 -0
  547. package/dist/hooks/prometheus-md-only/hook.d.ts +11 -0
  548. package/dist/hooks/prometheus-md-only/index.d.ts +2 -0
  549. package/dist/hooks/prometheus-md-only/path-policy.d.ts +10 -0
  550. package/dist/hooks/question-label-truncator/hook.d.ts +7 -0
  551. package/dist/hooks/question-label-truncator/index.d.ts +1 -0
  552. package/dist/hooks/ralph-loop/command-arguments.d.ts +8 -0
  553. package/dist/hooks/ralph-loop/completion-handler.d.ts +14 -0
  554. package/dist/hooks/ralph-loop/completion-promise-detector.d.ts +9 -0
  555. package/dist/hooks/ralph-loop/constants.d.ts +6 -0
  556. package/dist/hooks/ralph-loop/continuation-prompt-builder.d.ts +3 -0
  557. package/dist/hooks/ralph-loop/continuation-prompt-injector.d.ts +8 -0
  558. package/dist/hooks/ralph-loop/index.d.ts +5 -0
  559. package/dist/hooks/ralph-loop/iteration-continuation.d.ts +12 -0
  560. package/dist/hooks/ralph-loop/loop-session-recovery.d.ts +7 -0
  561. package/dist/hooks/ralph-loop/loop-state-controller.d.ts +23 -0
  562. package/dist/hooks/ralph-loop/message-storage-directory.d.ts +1 -0
  563. package/dist/hooks/ralph-loop/pending-verification-handler.d.ts +16 -0
  564. package/dist/hooks/ralph-loop/ralph-loop-event-handler.d.ts +31 -0
  565. package/dist/hooks/ralph-loop/ralph-loop-hook.d.ts +20 -0
  566. package/dist/hooks/ralph-loop/session-event-handler.d.ts +12 -0
  567. package/dist/hooks/ralph-loop/session-reset-strategy.d.ts +3 -0
  568. package/dist/hooks/ralph-loop/storage.d.ts +6 -0
  569. package/dist/hooks/ralph-loop/types.d.ts +23 -0
  570. package/dist/hooks/ralph-loop/verification-failure-handler.d.ts +12 -0
  571. package/dist/hooks/ralph-loop/with-timeout.d.ts +1 -0
  572. package/dist/hooks/read-image-resizer/hook.d.ts +12 -0
  573. package/dist/hooks/read-image-resizer/image-dimensions.d.ts +2 -0
  574. package/dist/hooks/read-image-resizer/image-resizer.d.ts +3 -0
  575. package/dist/hooks/read-image-resizer/index.d.ts +1 -0
  576. package/dist/hooks/read-image-resizer/types.d.ts +14 -0
  577. package/dist/hooks/rules-injector/cache.d.ts +8 -0
  578. package/dist/hooks/rules-injector/constants.d.ts +7 -0
  579. package/dist/hooks/rules-injector/finder.d.ts +3 -0
  580. package/dist/hooks/rules-injector/hook.d.ts +28 -0
  581. package/dist/hooks/rules-injector/index.d.ts +2 -0
  582. package/dist/hooks/rules-injector/injector.d.ts +20 -0
  583. package/dist/hooks/rules-injector/matcher.d.ts +21 -0
  584. package/dist/hooks/rules-injector/output-path.d.ts +5 -0
  585. package/dist/hooks/rules-injector/parser.d.ts +18 -0
  586. package/dist/hooks/rules-injector/project-root-finder.d.ts +8 -0
  587. package/dist/hooks/rules-injector/rule-distance.d.ts +10 -0
  588. package/dist/hooks/rules-injector/rule-file-finder.d.ts +15 -0
  589. package/dist/hooks/rules-injector/rule-file-scanner.d.ts +14 -0
  590. package/dist/hooks/rules-injector/storage.d.ts +9 -0
  591. package/dist/hooks/rules-injector/types.d.ts +54 -0
  592. package/dist/hooks/runtime-fallback/agent-resolver.d.ts +5 -0
  593. package/dist/hooks/runtime-fallback/auto-retry.d.ts +10 -0
  594. package/dist/hooks/runtime-fallback/chat-message-handler.d.ts +20 -0
  595. package/dist/hooks/runtime-fallback/constants.d.ts +19 -0
  596. package/dist/hooks/runtime-fallback/error-classifier.d.ts +17 -0
  597. package/dist/hooks/runtime-fallback/event-handler.d.ts +8 -0
  598. package/dist/hooks/runtime-fallback/fallback-bootstrap-model.d.ts +10 -0
  599. package/dist/hooks/runtime-fallback/fallback-models.d.ts +2 -0
  600. package/dist/hooks/runtime-fallback/fallback-retry-dispatcher.d.ts +11 -0
  601. package/dist/hooks/runtime-fallback/fallback-state.d.ts +6 -0
  602. package/dist/hooks/runtime-fallback/hook.d.ts +2 -0
  603. package/dist/hooks/runtime-fallback/index.d.ts +2 -0
  604. package/dist/hooks/runtime-fallback/last-user-retry-parts.d.ts +4 -0
  605. package/dist/hooks/runtime-fallback/message-update-handler.d.ts +4 -0
  606. package/dist/hooks/runtime-fallback/retry-model-payload.d.ts +7 -0
  607. package/dist/hooks/runtime-fallback/session-messages.d.ts +9 -0
  608. package/dist/hooks/runtime-fallback/session-status-handler.d.ts +3 -0
  609. package/dist/hooks/runtime-fallback/types.d.ts +113 -0
  610. package/dist/hooks/runtime-fallback/visible-assistant-response.d.ts +3 -0
  611. package/dist/hooks/session-notification-content.d.ts +30 -0
  612. package/dist/hooks/session-notification-formatting.d.ts +3 -0
  613. package/dist/hooks/session-notification-scheduler.d.ts +24 -0
  614. package/dist/hooks/session-notification-sender.d.ts +6 -0
  615. package/dist/hooks/session-notification-utils.d.ts +10 -0
  616. package/dist/hooks/session-notification.d.ts +25 -0
  617. package/dist/hooks/session-recovery/constants.d.ts +4 -0
  618. package/dist/hooks/session-recovery/detect-error-type.d.ts +4 -0
  619. package/dist/hooks/session-recovery/hook.d.ts +20 -0
  620. package/dist/hooks/session-recovery/index.d.ts +5 -0
  621. package/dist/hooks/session-recovery/recover-empty-content-message-sdk.d.ts +13 -0
  622. package/dist/hooks/session-recovery/recover-thinking-block-order.d.ts +5 -0
  623. package/dist/hooks/session-recovery/recover-thinking-disabled-violation.d.ts +5 -0
  624. package/dist/hooks/session-recovery/recover-tool-result-missing.d.ts +5 -0
  625. package/dist/hooks/session-recovery/recover-unavailable-tool.d.ts +5 -0
  626. package/dist/hooks/session-recovery/resume.d.ts +7 -0
  627. package/dist/hooks/session-recovery/storage/empty-messages.d.ts +3 -0
  628. package/dist/hooks/session-recovery/storage/empty-text.d.ts +7 -0
  629. package/dist/hooks/session-recovery/storage/message-dir.d.ts +1 -0
  630. package/dist/hooks/session-recovery/storage/messages-reader.d.ts +6 -0
  631. package/dist/hooks/session-recovery/storage/orphan-thinking-search.d.ts +2 -0
  632. package/dist/hooks/session-recovery/storage/part-content.d.ts +3 -0
  633. package/dist/hooks/session-recovery/storage/part-id.d.ts +1 -0
  634. package/dist/hooks/session-recovery/storage/parts-reader.d.ts +6 -0
  635. package/dist/hooks/session-recovery/storage/text-part-injector.d.ts +5 -0
  636. package/dist/hooks/session-recovery/storage/thinking-block-search.d.ts +2 -0
  637. package/dist/hooks/session-recovery/storage/thinking-prepend.d.ts +5 -0
  638. package/dist/hooks/session-recovery/storage/thinking-strip.d.ts +5 -0
  639. package/dist/hooks/session-recovery/storage.d.ts +20 -0
  640. package/dist/hooks/session-recovery/types.d.ts +91 -0
  641. package/dist/hooks/session-todo-status.d.ts +2 -0
  642. package/dist/hooks/shared/compaction-model-resolver.d.ts +5 -0
  643. package/dist/hooks/sisyphus-junior-notepad/constants.d.ts +2 -0
  644. package/dist/hooks/sisyphus-junior-notepad/hook.d.ts +11 -0
  645. package/dist/hooks/sisyphus-junior-notepad/index.d.ts +2 -0
  646. package/dist/hooks/start-work/index.d.ts +4 -0
  647. package/dist/hooks/start-work/parse-user-request.d.ts +5 -0
  648. package/dist/hooks/start-work/start-work-hook.d.ts +16 -0
  649. package/dist/hooks/start-work/worktree-detector.d.ts +8 -0
  650. package/dist/hooks/stop-continuation-guard/hook.d.ts +21 -0
  651. package/dist/hooks/stop-continuation-guard/index.d.ts +2 -0
  652. package/dist/hooks/task-reminder/hook.d.ts +19 -0
  653. package/dist/hooks/task-reminder/index.d.ts +1 -0
  654. package/dist/hooks/task-resume-info/hook.d.ts +11 -0
  655. package/dist/hooks/task-resume-info/index.d.ts +1 -0
  656. package/dist/hooks/tasks-todowrite-disabler/constants.d.ts +3 -0
  657. package/dist/hooks/tasks-todowrite-disabler/hook.d.ts +14 -0
  658. package/dist/hooks/tasks-todowrite-disabler/index.d.ts +2 -0
  659. package/dist/hooks/think-mode/detector.d.ts +5 -0
  660. package/dist/hooks/think-mode/hook.d.ts +23 -0
  661. package/dist/hooks/think-mode/index.d.ts +4 -0
  662. package/dist/hooks/think-mode/switcher.d.ts +19 -0
  663. package/dist/hooks/think-mode/types.d.ts +7 -0
  664. package/dist/hooks/thinking-block-validator/hook.d.ts +30 -0
  665. package/dist/hooks/thinking-block-validator/index.d.ts +1 -0
  666. package/dist/hooks/todo-continuation-enforcer/abort-detection.d.ts +4 -0
  667. package/dist/hooks/todo-continuation-enforcer/compaction-guard.d.ts +2 -0
  668. package/dist/hooks/todo-continuation-enforcer/constants.d.ts +12 -0
  669. package/dist/hooks/todo-continuation-enforcer/continuation-injection.d.ts +13 -0
  670. package/dist/hooks/todo-continuation-enforcer/countdown.d.ts +15 -0
  671. package/dist/hooks/todo-continuation-enforcer/handler.d.ts +16 -0
  672. package/dist/hooks/todo-continuation-enforcer/idle-event.d.ts +12 -0
  673. package/dist/hooks/todo-continuation-enforcer/index.d.ts +4 -0
  674. package/dist/hooks/todo-continuation-enforcer/message-directory.d.ts +1 -0
  675. package/dist/hooks/todo-continuation-enforcer/non-idle-events.d.ts +6 -0
  676. package/dist/hooks/todo-continuation-enforcer/pending-question-detection.d.ts +14 -0
  677. package/dist/hooks/todo-continuation-enforcer/resolve-message-info.d.ts +3 -0
  678. package/dist/hooks/todo-continuation-enforcer/session-state.d.ts +19 -0
  679. package/dist/hooks/todo-continuation-enforcer/stagnation-detection.d.ts +6 -0
  680. package/dist/hooks/todo-continuation-enforcer/todo.d.ts +2 -0
  681. package/dist/hooks/todo-continuation-enforcer/types.d.ts +68 -0
  682. package/dist/hooks/tool-output-truncator.d.ts +21 -0
  683. package/dist/hooks/unstable-agent-babysitter/index.d.ts +2 -0
  684. package/dist/hooks/unstable-agent-babysitter/task-message-analyzer.d.ts +24 -0
  685. package/dist/hooks/unstable-agent-babysitter/unstable-agent-babysitter-hook.d.ts +71 -0
  686. package/dist/hooks/write-existing-file-guard/hook.d.ts +3 -0
  687. package/dist/hooks/write-existing-file-guard/index.d.ts +1 -0
  688. package/dist/index.d.ts +5 -0
  689. package/dist/index.js +97563 -0
  690. package/dist/mcp/context7.d.ts +9 -0
  691. package/dist/mcp/grep-app.d.ts +6 -0
  692. package/dist/mcp/index.d.ts +10 -0
  693. package/dist/mcp/types.d.ts +9 -0
  694. package/dist/mcp/websearch.d.ts +11 -0
  695. package/dist/oh-my-opencode.schema.json +3880 -0
  696. package/dist/plugin/available-categories.d.ts +3 -0
  697. package/dist/plugin/chat-headers.d.ts +4 -0
  698. package/dist/plugin/chat-message.d.ts +31 -0
  699. package/dist/plugin/chat-params.d.ts +27 -0
  700. package/dist/plugin/event.d.ts +21 -0
  701. package/dist/plugin/hooks/create-continuation-hooks.d.ts +28 -0
  702. package/dist/plugin/hooks/create-core-hooks.d.ts +49 -0
  703. package/dist/plugin/hooks/create-session-hooks.d.ts +37 -0
  704. package/dist/plugin/hooks/create-skill-hooks.d.ts +17 -0
  705. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +24 -0
  706. package/dist/plugin/hooks/create-transform-hooks.d.ts +16 -0
  707. package/dist/plugin/messages-transform.d.ts +13 -0
  708. package/dist/plugin/normalize-tool-arg-schemas.d.ts +2 -0
  709. package/dist/plugin/recent-synthetic-idles.d.ts +6 -0
  710. package/dist/plugin/session-agent-resolver.d.ts +19 -0
  711. package/dist/plugin/session-status-normalizer.d.ts +8 -0
  712. package/dist/plugin/skill-context.d.ts +14 -0
  713. package/dist/plugin/system-transform.d.ts +10 -0
  714. package/dist/plugin/tool-execute-after.d.ts +14 -0
  715. package/dist/plugin/tool-execute-before.d.ts +12 -0
  716. package/dist/plugin/tool-registry.d.ts +16 -0
  717. package/dist/plugin/types.d.ts +18 -0
  718. package/dist/plugin/ultrawork-db-model-override.d.ts +11 -0
  719. package/dist/plugin/ultrawork-model-override.d.ts +23 -0
  720. package/dist/plugin/ultrawork-variant-availability.d.ts +6 -0
  721. package/dist/plugin/unstable-agent-babysitter.d.ts +15 -0
  722. package/dist/plugin-config.d.ts +5 -0
  723. package/dist/plugin-dispose.d.ts +10 -0
  724. package/dist/plugin-handlers/agent-config-handler.d.ts +11 -0
  725. package/dist/plugin-handlers/agent-key-remapper.d.ts +1 -0
  726. package/dist/plugin-handlers/agent-override-protection.d.ts +3 -0
  727. package/dist/plugin-handlers/agent-priority-order.d.ts +1 -0
  728. package/dist/plugin-handlers/category-config-resolver.d.ts +2 -0
  729. package/dist/plugin-handlers/command-config-handler.d.ts +10 -0
  730. package/dist/plugin-handlers/config-handler.d.ts +12 -0
  731. package/dist/plugin-handlers/index.d.ts +10 -0
  732. package/dist/plugin-handlers/mcp-config-handler.d.ts +7 -0
  733. package/dist/plugin-handlers/plan-model-inheritance.d.ts +1 -0
  734. package/dist/plugin-handlers/plugin-components-loader.d.ts +22 -0
  735. package/dist/plugin-handlers/prometheus-agent-config-builder.d.ts +23 -0
  736. package/dist/plugin-handlers/provider-config-handler.d.ts +5 -0
  737. package/dist/plugin-handlers/tool-config-handler.d.ts +6 -0
  738. package/dist/plugin-interface.d.ts +21 -0
  739. package/dist/plugin-state.d.ts +10 -0
  740. package/dist/shared/agent-display-names.d.ts +17 -0
  741. package/dist/shared/agent-tool-restrictions.d.ts +7 -0
  742. package/dist/shared/agent-variant.d.ts +9 -0
  743. package/dist/shared/binary-downloader.d.ts +10 -0
  744. package/dist/shared/claude-config-dir.d.ts +1 -0
  745. package/dist/shared/command-executor/embedded-commands.d.ts +7 -0
  746. package/dist/shared/command-executor/execute-command.d.ts +1 -0
  747. package/dist/shared/command-executor/execute-hook-command.d.ts +12 -0
  748. package/dist/shared/command-executor/home-directory.d.ts +1 -0
  749. package/dist/shared/command-executor/resolve-commands-in-text.d.ts +1 -0
  750. package/dist/shared/command-executor/shell-path.d.ts +2 -0
  751. package/dist/shared/command-executor.d.ts +4 -0
  752. package/dist/shared/compaction-agent-config-checkpoint.d.ts +11 -0
  753. package/dist/shared/config-errors.d.ts +7 -0
  754. package/dist/shared/connected-providers-cache.d.ts +55 -0
  755. package/dist/shared/context-limit-resolver.d.ts +5 -0
  756. package/dist/shared/data-path.d.ts +30 -0
  757. package/dist/shared/deep-merge.d.ts +13 -0
  758. package/dist/shared/disabled-tools.d.ts +2 -0
  759. package/dist/shared/dynamic-truncator.d.ts +28 -0
  760. package/dist/shared/external-plugin-detector.d.ts +18 -0
  761. package/dist/shared/fallback-chain-from-models.d.ts +3 -0
  762. package/dist/shared/fallback-model-availability.d.ts +12 -0
  763. package/dist/shared/file-reference-resolver.d.ts +1 -0
  764. package/dist/shared/file-utils.d.ts +7 -0
  765. package/dist/shared/first-message-variant.d.ts +11 -0
  766. package/dist/shared/frontmatter.d.ts +7 -0
  767. package/dist/shared/git-worktree/collect-git-diff-stats.d.ts +2 -0
  768. package/dist/shared/git-worktree/format-file-changes.d.ts +2 -0
  769. package/dist/shared/git-worktree/index.d.ts +7 -0
  770. package/dist/shared/git-worktree/parse-diff-numstat.d.ts +2 -0
  771. package/dist/shared/git-worktree/parse-status-porcelain-line.d.ts +6 -0
  772. package/dist/shared/git-worktree/parse-status-porcelain.d.ts +2 -0
  773. package/dist/shared/git-worktree/types.d.ts +7 -0
  774. package/dist/shared/hook-disabled.d.ts +2 -0
  775. package/dist/shared/index.d.ts +59 -0
  776. package/dist/shared/internal-initiator-marker.d.ts +5 -0
  777. package/dist/shared/jsonc-parser.d.ts +15 -0
  778. package/dist/shared/logger.d.ts +2 -0
  779. package/dist/shared/merge-categories.d.ts +6 -0
  780. package/dist/shared/migration/agent-category.d.ts +19 -0
  781. package/dist/shared/migration/agent-names.d.ts +6 -0
  782. package/dist/shared/migration/config-migration.d.ts +1 -0
  783. package/dist/shared/migration/hook-names.d.ts +6 -0
  784. package/dist/shared/migration/model-versions.d.ts +13 -0
  785. package/dist/shared/migration.d.ts +5 -0
  786. package/dist/shared/model-availability.d.ts +15 -0
  787. package/dist/shared/model-error-classifier.d.ts +32 -0
  788. package/dist/shared/model-format-normalizer.d.ts +7 -0
  789. package/dist/shared/model-normalization.d.ts +2 -0
  790. package/dist/shared/model-requirements.d.ts +14 -0
  791. package/dist/shared/model-resolution-pipeline.d.ts +26 -0
  792. package/dist/shared/model-resolution-types.d.ts +23 -0
  793. package/dist/shared/model-resolver.d.ts +28 -0
  794. package/dist/shared/model-sanitizer.d.ts +3 -0
  795. package/dist/shared/model-suggestion-retry.d.ts +36 -0
  796. package/dist/shared/normalize-sdk-response.d.ts +4 -0
  797. package/dist/shared/opencode-command-dirs.d.ts +3 -0
  798. package/dist/shared/opencode-config-dir-types.d.ts +13 -0
  799. package/dist/shared/opencode-config-dir.d.ts +8 -0
  800. package/dist/shared/opencode-http-api.d.ts +3 -0
  801. package/dist/shared/opencode-message-dir.d.ts +1 -0
  802. package/dist/shared/opencode-server-auth.d.ts +19 -0
  803. package/dist/shared/opencode-storage-detection.d.ts +2 -0
  804. package/dist/shared/opencode-storage-paths.d.ts +4 -0
  805. package/dist/shared/opencode-version.d.ts +24 -0
  806. package/dist/shared/pattern-matcher.d.ts +3 -0
  807. package/dist/shared/permission-compat.d.ts +27 -0
  808. package/dist/shared/plugin-command-discovery.d.ts +6 -0
  809. package/dist/shared/plugin-identity.d.ts +4 -0
  810. package/dist/shared/port-utils.d.ts +9 -0
  811. package/dist/shared/prompt-timeout-context.d.ts +12 -0
  812. package/dist/shared/prompt-tools.d.ts +3 -0
  813. package/dist/shared/provider-model-id-transform.d.ts +1 -0
  814. package/dist/shared/question-denied-session-permission.d.ts +6 -0
  815. package/dist/shared/record-type-guard.d.ts +1 -0
  816. package/dist/shared/retry-status-utils.d.ts +2 -0
  817. package/dist/shared/safe-create-hook.d.ts +5 -0
  818. package/dist/shared/session-category-registry.d.ts +32 -0
  819. package/dist/shared/session-cursor.d.ts +13 -0
  820. package/dist/shared/session-directory-resolver.d.ts +7 -0
  821. package/dist/shared/session-injected-paths.d.ts +10 -0
  822. package/dist/shared/session-model-state.d.ts +7 -0
  823. package/dist/shared/session-tools-store.d.ts +4 -0
  824. package/dist/shared/session-utils.d.ts +2 -0
  825. package/dist/shared/shell-env.d.ts +41 -0
  826. package/dist/shared/skill-path-resolver.d.ts +9 -0
  827. package/dist/shared/snake-case.d.ts +5 -0
  828. package/dist/shared/spawn-with-windows-hide.d.ts +15 -0
  829. package/dist/shared/system-directive.d.ts +45 -0
  830. package/dist/shared/tmux/constants.d.ts +5 -0
  831. package/dist/shared/tmux/index.d.ts +3 -0
  832. package/dist/shared/tmux/tmux-utils/environment.d.ts +4 -0
  833. package/dist/shared/tmux/tmux-utils/layout.d.ts +18 -0
  834. package/dist/shared/tmux/tmux-utils/pane-close.d.ts +1 -0
  835. package/dist/shared/tmux/tmux-utils/pane-dimensions.d.ts +5 -0
  836. package/dist/shared/tmux/tmux-utils/pane-replace.d.ts +3 -0
  837. package/dist/shared/tmux/tmux-utils/pane-spawn.d.ts +4 -0
  838. package/dist/shared/tmux/tmux-utils/server-health.d.ts +2 -0
  839. package/dist/shared/tmux/tmux-utils.d.ts +9 -0
  840. package/dist/shared/tmux/types.d.ts +4 -0
  841. package/dist/shared/tool-name.d.ts +1 -0
  842. package/dist/shared/truncate-description.d.ts +1 -0
  843. package/dist/shared/vision-capable-models-cache.d.ts +4 -0
  844. package/dist/shared/zip-extractor.d.ts +1 -0
  845. package/dist/tools/ast-grep/cli-binary-path-resolution.d.ts +5 -0
  846. package/dist/tools/ast-grep/cli.d.ts +12 -0
  847. package/dist/tools/ast-grep/constants.d.ts +5 -0
  848. package/dist/tools/ast-grep/downloader.d.ts +5 -0
  849. package/dist/tools/ast-grep/environment-check.d.ts +20 -0
  850. package/dist/tools/ast-grep/index.d.ts +5 -0
  851. package/dist/tools/ast-grep/language-support.d.ts +6 -0
  852. package/dist/tools/ast-grep/process-output-timeout.d.ts +12 -0
  853. package/dist/tools/ast-grep/result-formatter.d.ts +5 -0
  854. package/dist/tools/ast-grep/sg-cli-path.d.ts +3 -0
  855. package/dist/tools/ast-grep/sg-compact-json-output.d.ts +2 -0
  856. package/dist/tools/ast-grep/tools.d.ts +3 -0
  857. package/dist/tools/ast-grep/types.d.ts +58 -0
  858. package/dist/tools/background-task/clients.d.ts +45 -0
  859. package/dist/tools/background-task/constants.d.ts +3 -0
  860. package/dist/tools/background-task/create-background-cancel.d.ts +4 -0
  861. package/dist/tools/background-task/create-background-output.d.ts +3 -0
  862. package/dist/tools/background-task/create-background-task.d.ts +3 -0
  863. package/dist/tools/background-task/delay.d.ts +1 -0
  864. package/dist/tools/background-task/full-session-format.d.ts +9 -0
  865. package/dist/tools/background-task/index.d.ts +3 -0
  866. package/dist/tools/background-task/message-dir.d.ts +1 -0
  867. package/dist/tools/background-task/session-messages.d.ts +3 -0
  868. package/dist/tools/background-task/task-result-format.d.ts +3 -0
  869. package/dist/tools/background-task/task-status-format.d.ts +2 -0
  870. package/dist/tools/background-task/time-format.d.ts +2 -0
  871. package/dist/tools/background-task/tools.d.ts +4 -0
  872. package/dist/tools/background-task/truncate-text.d.ts +1 -0
  873. package/dist/tools/background-task/types.d.ts +90 -0
  874. package/dist/tools/call-omo-agent/background-agent-executor.d.ts +5 -0
  875. package/dist/tools/call-omo-agent/background-executor.d.ts +14 -0
  876. package/dist/tools/call-omo-agent/completion-poller.d.ts +11 -0
  877. package/dist/tools/call-omo-agent/constants.d.ts +2 -0
  878. package/dist/tools/call-omo-agent/index.d.ts +3 -0
  879. package/dist/tools/call-omo-agent/message-dir.d.ts +1 -0
  880. package/dist/tools/call-omo-agent/message-processor.d.ts +2 -0
  881. package/dist/tools/call-omo-agent/message-storage-directory.d.ts +1 -0
  882. package/dist/tools/call-omo-agent/session-creator.d.ts +15 -0
  883. package/dist/tools/call-omo-agent/subagent-session-creator.d.ts +10 -0
  884. package/dist/tools/call-omo-agent/sync-executor.d.ts +29 -0
  885. package/dist/tools/call-omo-agent/tool-context-with-metadata.d.ts +10 -0
  886. package/dist/tools/call-omo-agent/tools.d.ts +4 -0
  887. package/dist/tools/call-omo-agent/types.d.ts +34 -0
  888. package/dist/tools/delegate-task/available-models.d.ts +2 -0
  889. package/dist/tools/delegate-task/background-continuation.d.ts +3 -0
  890. package/dist/tools/delegate-task/background-task.d.ts +8 -0
  891. package/dist/tools/delegate-task/cancel-unstable-agent-task.d.ts +2 -0
  892. package/dist/tools/delegate-task/categories.d.ts +17 -0
  893. package/dist/tools/delegate-task/category-resolver.d.ts +20 -0
  894. package/dist/tools/delegate-task/constants.d.ts +42 -0
  895. package/dist/tools/delegate-task/error-formatting.d.ts +15 -0
  896. package/dist/tools/delegate-task/executor-types.d.ts +52 -0
  897. package/dist/tools/delegate-task/executor.d.ts +11 -0
  898. package/dist/tools/delegate-task/index.d.ts +4 -0
  899. package/dist/tools/delegate-task/model-selection.d.ts +12 -0
  900. package/dist/tools/delegate-task/model-string-parser.d.ts +9 -0
  901. package/dist/tools/delegate-task/parent-context-resolver.d.ts +4 -0
  902. package/dist/tools/delegate-task/prompt-builder.d.ts +7 -0
  903. package/dist/tools/delegate-task/sisyphus-junior-agent.d.ts +1 -0
  904. package/dist/tools/delegate-task/skill-resolver.d.ts +11 -0
  905. package/dist/tools/delegate-task/subagent-resolver.d.ts +13 -0
  906. package/dist/tools/delegate-task/sync-continuation-deps.d.ts +7 -0
  907. package/dist/tools/delegate-task/sync-continuation.d.ts +4 -0
  908. package/dist/tools/delegate-task/sync-prompt-sender.d.ts +22 -0
  909. package/dist/tools/delegate-task/sync-result-fetcher.d.ts +8 -0
  910. package/dist/tools/delegate-task/sync-session-creator.d.ts +14 -0
  911. package/dist/tools/delegate-task/sync-session-poller.d.ts +12 -0
  912. package/dist/tools/delegate-task/sync-task-deps.d.ts +11 -0
  913. package/dist/tools/delegate-task/sync-task.d.ts +9 -0
  914. package/dist/tools/delegate-task/time-formatter.d.ts +4 -0
  915. package/dist/tools/delegate-task/timing.d.ts +13 -0
  916. package/dist/tools/delegate-task/token-limiter.d.ts +4 -0
  917. package/dist/tools/delegate-task/tools.d.ts +6 -0
  918. package/dist/tools/delegate-task/types.d.ts +83 -0
  919. package/dist/tools/delegate-task/unstable-agent-task.d.ts +7 -0
  920. package/dist/tools/glob/cli.d.ts +11 -0
  921. package/dist/tools/glob/constants.d.ts +6 -0
  922. package/dist/tools/glob/index.d.ts +1 -0
  923. package/dist/tools/glob/result-formatter.d.ts +2 -0
  924. package/dist/tools/glob/tools.d.ts +3 -0
  925. package/dist/tools/glob/types.d.ts +21 -0
  926. package/dist/tools/grep/cli.d.ts +3 -0
  927. package/dist/tools/grep/constants.d.ts +18 -0
  928. package/dist/tools/grep/downloader.d.ts +3 -0
  929. package/dist/tools/grep/index.d.ts +1 -0
  930. package/dist/tools/grep/result-formatter.d.ts +3 -0
  931. package/dist/tools/grep/tools.d.ts +3 -0
  932. package/dist/tools/grep/types.d.ts +39 -0
  933. package/dist/tools/hashline-edit/autocorrect-replacement-lines.d.ts +6 -0
  934. package/dist/tools/hashline-edit/constants.d.ts +4 -0
  935. package/dist/tools/hashline-edit/diff-utils.d.ts +6 -0
  936. package/dist/tools/hashline-edit/edit-deduplication.d.ts +5 -0
  937. package/dist/tools/hashline-edit/edit-operation-primitives.d.ts +10 -0
  938. package/dist/tools/hashline-edit/edit-operations.d.ts +8 -0
  939. package/dist/tools/hashline-edit/edit-ordering.d.ts +4 -0
  940. package/dist/tools/hashline-edit/edit-text-normalization.d.ts +7 -0
  941. package/dist/tools/hashline-edit/file-text-canonicalization.d.ts +7 -0
  942. package/dist/tools/hashline-edit/hash-computation.d.ts +11 -0
  943. package/dist/tools/hashline-edit/hashline-chunk-formatter.d.ts +10 -0
  944. package/dist/tools/hashline-edit/hashline-edit-diff.d.ts +1 -0
  945. package/dist/tools/hashline-edit/hashline-edit-executor.d.ts +10 -0
  946. package/dist/tools/hashline-edit/index.d.ts +7 -0
  947. package/dist/tools/hashline-edit/normalize-edits.d.ts +10 -0
  948. package/dist/tools/hashline-edit/tool-description.d.ts +1 -0
  949. package/dist/tools/hashline-edit/tools.d.ts +2 -0
  950. package/dist/tools/hashline-edit/types.d.ts +17 -0
  951. package/dist/tools/hashline-edit/validation.d.ts +20 -0
  952. package/dist/tools/index.d.ts +21 -0
  953. package/dist/tools/interactive-bash/constants.d.ts +3 -0
  954. package/dist/tools/interactive-bash/index.d.ts +3 -0
  955. package/dist/tools/interactive-bash/tmux-path-resolver.d.ts +3 -0
  956. package/dist/tools/interactive-bash/tools.d.ts +7 -0
  957. package/dist/tools/look-at/assistant-message-extractor.d.ts +1 -0
  958. package/dist/tools/look-at/constants.d.ts +2 -0
  959. package/dist/tools/look-at/image-converter.d.ts +7 -0
  960. package/dist/tools/look-at/index.d.ts +3 -0
  961. package/dist/tools/look-at/look-at-arguments.d.ts +6 -0
  962. package/dist/tools/look-at/mime-type-inference.d.ts +3 -0
  963. package/dist/tools/look-at/multimodal-agent-metadata.d.ts +11 -0
  964. package/dist/tools/look-at/multimodal-fallback-chain.d.ts +4 -0
  965. package/dist/tools/look-at/session-poller.d.ts +8 -0
  966. package/dist/tools/look-at/tools.d.ts +3 -0
  967. package/dist/tools/look-at/types.d.ts +5 -0
  968. package/dist/tools/lsp/client.d.ts +3 -0
  969. package/dist/tools/lsp/config.d.ts +3 -0
  970. package/dist/tools/lsp/constants.d.ts +6 -0
  971. package/dist/tools/lsp/diagnostics-tool.d.ts +2 -0
  972. package/dist/tools/lsp/directory-diagnostics.d.ts +1 -0
  973. package/dist/tools/lsp/find-references-tool.d.ts +2 -0
  974. package/dist/tools/lsp/goto-definition-tool.d.ts +2 -0
  975. package/dist/tools/lsp/index.d.ts +8 -0
  976. package/dist/tools/lsp/language-config.d.ts +1 -0
  977. package/dist/tools/lsp/language-mappings.d.ts +3 -0
  978. package/dist/tools/lsp/lsp-client-connection.d.ts +4 -0
  979. package/dist/tools/lsp/lsp-client-transport.d.ts +22 -0
  980. package/dist/tools/lsp/lsp-client-wrapper.d.ts +9 -0
  981. package/dist/tools/lsp/lsp-client.d.ts +17 -0
  982. package/dist/tools/lsp/lsp-formatters.d.ts +13 -0
  983. package/dist/tools/lsp/lsp-manager-process-cleanup.d.ts +15 -0
  984. package/dist/tools/lsp/lsp-manager-temp-directory-cleanup.d.ts +8 -0
  985. package/dist/tools/lsp/lsp-process.d.ts +29 -0
  986. package/dist/tools/lsp/lsp-server.d.ts +24 -0
  987. package/dist/tools/lsp/rename-tools.d.ts +3 -0
  988. package/dist/tools/lsp/server-config-loader.d.ts +25 -0
  989. package/dist/tools/lsp/server-definitions.d.ts +3 -0
  990. package/dist/tools/lsp/server-installation.d.ts +1 -0
  991. package/dist/tools/lsp/server-path-bases.d.ts +1 -0
  992. package/dist/tools/lsp/server-resolution.d.ts +15 -0
  993. package/dist/tools/lsp/symbols-tool.d.ts +2 -0
  994. package/dist/tools/lsp/tools.d.ts +5 -0
  995. package/dist/tools/lsp/types.d.ts +123 -0
  996. package/dist/tools/lsp/workspace-edit.d.ts +8 -0
  997. package/dist/tools/session-manager/constants.d.ts +9 -0
  998. package/dist/tools/session-manager/index.d.ts +3 -0
  999. package/dist/tools/session-manager/session-formatter.d.ts +11 -0
  1000. package/dist/tools/session-manager/storage.d.ts +15 -0
  1001. package/dist/tools/session-manager/tools.d.ts +3 -0
  1002. package/dist/tools/session-manager/types.d.ts +89 -0
  1003. package/dist/tools/shared/semaphore.d.ts +14 -0
  1004. package/dist/tools/skill/constants.d.ts +3 -0
  1005. package/dist/tools/skill/index.d.ts +3 -0
  1006. package/dist/tools/skill/tools.d.ts +4 -0
  1007. package/dist/tools/skill/types.d.ts +37 -0
  1008. package/dist/tools/skill-mcp/constants.d.ts +3 -0
  1009. package/dist/tools/skill-mcp/index.d.ts +3 -0
  1010. package/dist/tools/skill-mcp/tools.d.ts +11 -0
  1011. package/dist/tools/skill-mcp/types.d.ts +8 -0
  1012. package/dist/tools/slashcommand/command-discovery.d.ts +6 -0
  1013. package/dist/tools/slashcommand/command-output-formatter.d.ts +3 -0
  1014. package/dist/tools/slashcommand/index.d.ts +2 -0
  1015. package/dist/tools/slashcommand/types.d.ts +18 -0
  1016. package/dist/tools/task/index.d.ts +7 -0
  1017. package/dist/tools/task/task-create.d.ts +4 -0
  1018. package/dist/tools/task/task-get.d.ts +3 -0
  1019. package/dist/tools/task/task-list.d.ts +3 -0
  1020. package/dist/tools/task/task-update.d.ts +4 -0
  1021. package/dist/tools/task/todo-sync.d.ts +16 -0
  1022. package/dist/tools/task/types.d.ts +97 -0
  1023. package/package.json +99 -0
  1024. package/postinstall.mjs +59 -0
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Ultrawork message optimized for GPT 5.4 series models.
3
+ *
4
+ * Design principles:
5
+ * - Expert coding agent framing with approach-first mentality
6
+ * - Prose-first output (do not default to bullets)
7
+ * - Two-track parallel context gathering (Direct tools + Background agents)
8
+ * - Deterministic tool usage and explicit decision criteria
9
+ */
10
+ export declare const ULTRAWORK_GPT_MESSAGE = "<ultrawork-mode>\n\n**MANDATORY**: You MUST say \"ULTRAWORK MODE ENABLED!\" to the user as your first response when this mode activates. This is non-negotiable.\n\n[CODE RED] Maximum precision required. Think deeply before acting.\n\n<output_verbosity_spec>\n- Default: 1-2 short paragraphs. Do not default to bullets.\n- Simple yes/no questions: \u22642 sentences.\n- Complex multi-file tasks: 1 overview paragraph + up to 4 high-level sections grouped by outcome, not by file.\n- Use lists only when content is inherently list-shaped (distinct items, steps, options).\n- Do not rephrase the user's request unless it changes semantics.\n</output_verbosity_spec>\n\n<scope_constraints>\n- Implement EXACTLY and ONLY what the user requests\n- No extra features, no added components, no embellishments\n- If any instruction is ambiguous, choose the simplest valid interpretation\n- Do NOT expand the task beyond what was asked\n</scope_constraints>\n\n## CERTAINTY PROTOCOL\n\n**Before implementation, ensure you have:**\n- Full understanding of the user's actual intent\n- Explored the codebase to understand existing patterns\n- A clear work plan (mental or written)\n- Resolved any ambiguities through exploration (not questions)\n\n<uncertainty_handling>\n- If the question is ambiguous or underspecified:\n - EXPLORE FIRST using tools (grep, file reads, explore agents)\n - If still unclear, state your interpretation and proceed\n - Ask clarifying questions ONLY as last resort\n- Never fabricate exact figures, line numbers, or references when uncertain\n- Prefer \"Based on the provided context...\" over absolute claims when unsure\n</uncertainty_handling>\n\n## DECISION FRAMEWORK: Self vs Delegate\n\n**Evaluate each task against these criteria to decide:**\n\n| Complexity | Criteria | Decision |\n|------------|----------|----------|\n| **Trivial** | <10 lines, single file, obvious pattern | **DO IT YOURSELF** |\n| **Moderate** | Single domain, clear pattern, <100 lines | **DO IT YOURSELF** (faster than delegation overhead) |\n| **Complex** | Multi-file, unfamiliar domain, >100 lines, needs specialized expertise | **DELEGATE** to appropriate category+skills |\n| **Research** | Need broad codebase context or external docs | **DELEGATE** to explore/librarian (background, parallel) |\n\n**Decision Factors:**\n- Delegation overhead \u2248 10-15 seconds. If task takes less, do it yourself.\n- If you already have full context loaded, do it yourself.\n- If task requires specialized expertise (frontend-ui-ux, git operations), delegate.\n- If you need information from multiple sources, fire parallel background agents.\n\n## AVAILABLE RESOURCES\n\nUse these when they provide clear value based on the decision framework above:\n\n| Resource | When to Use | How to Use |\n|----------|-------------|------------|\n| explore agent | Need codebase patterns you don't have | `task(subagent_type=\"explore\", load_skills=[], run_in_background=true, ...)` |\n| librarian agent | External library docs, OSS examples | `task(subagent_type=\"librarian\", load_skills=[], run_in_background=true, ...)` |\n| oracle agent | Stuck on architecture/debugging after 2+ attempts | `task(subagent_type=\"oracle\", load_skills=[], ...)` |\n| plan agent | Complex multi-step with dependencies (5+ steps) | `task(subagent_type=\"plan\", load_skills=[], ...)` |\n| task category | Specialized work matching a category | `task(category=\"...\", load_skills=[...])` |\n\n<tool_usage_rules>\n- Prefer tools over internal knowledge for fresh or user-specific data\n- Parallelize independent reads (read_file, grep, explore, librarian) to reduce latency\n- After any write/update, briefly restate: What changed, Where (path), Follow-up needed\n</tool_usage_rules>\n\n## EXECUTION PATTERN\n\n**Context gathering uses TWO parallel tracks:**\n\n| Track | Tools | Speed | Purpose |\n|-------|-------|-------|---------|\n| **Direct** | Grep, Read, LSP, AST-grep | Instant | Quick wins, known locations |\n| **Background** | explore, librarian agents | Async | Deep search, external docs |\n\n**ALWAYS run both tracks in parallel:**\n```\n// Fire background agents for deep exploration\ntask(subagent_type=\"explore\", load_skills=[], prompt=\"I'm implementing [TASK] and need to understand [KNOWLEDGE GAP]. Find [X] patterns in the codebase \u2014 file paths, implementation approach, conventions used, and how modules connect. I'll use this to [DOWNSTREAM DECISION]. Focus on production code in src/. Return file paths with brief descriptions.\", run_in_background=true)\ntask(subagent_type=\"librarian\", load_skills=[], prompt=\"I'm working with [TECHNOLOGY] and need [SPECIFIC INFO]. Find official docs and production examples for [Y] \u2014 API reference, configuration, recommended patterns, and pitfalls. Skip tutorials. I'll use this to [DECISION THIS INFORMS].\", run_in_background=true)\n\n// WHILE THEY RUN - use direct tools for immediate context\ngrep(pattern=\"relevant_pattern\", path=\"src/\")\nread_file(filePath=\"known/important/file.ts\")\n\n// Collect background results when ready\ndeep_context = background_output(task_id=...)\n\n// Merge ALL findings for comprehensive understanding\n```\n\n**Plan agent (complex tasks only):**\n- Only if 5+ interdependent steps\n- Invoke AFTER gathering context from both tracks\n\n**Execute:**\n- Surgical, minimal changes matching existing patterns\n- If delegating: provide exhaustive context and success criteria\n\n**Verify:**\n- `lsp_diagnostics` on modified files\n- Run tests if available\n\n## ACCEPTANCE CRITERIA WORKFLOW\n\n**BEFORE implementation**, define what \"done\" means in concrete, binary terms:\n\n1. Write acceptance criteria as pass/fail conditions (not \"should work\" \u2014 specific observable outcomes)\n2. Record them in your TODO/Task items with a \"QA: [how to verify]\" field\n3. Work toward those criteria, not just \"finishing code\"\n\n## QUALITY STANDARDS\n\n| Phase | Action | Required Evidence |\n|-------|--------|-------------------|\n| Build | Run build command | Exit code 0 |\n| Test | Execute test suite | All tests pass |\n| Lint | Run lsp_diagnostics | Zero new errors |\n| **Manual QA** | **Execute the feature yourself** | **Actual output shown** |\n\n<MANUAL_QA_MANDATE>\n### MANUAL QA IS MANDATORY. lsp_diagnostics IS NOT ENOUGH.\n\nlsp_diagnostics catches type errors. It does NOT catch logic bugs, missing behavior, or broken features. After EVERY implementation, you MUST manually test the actual feature.\n\n**Execute ALL that apply:**\n\n| If your change... | YOU MUST... |\n|---|---|\n| Adds/modifies a CLI command | Run the command with Bash. Show the output. |\n| Changes build output | Run the build. Verify output files. |\n| Modifies API behavior | Call the endpoint. Show the response. |\n| Adds a new tool/hook/feature | Test it end-to-end in a real scenario. |\n| Modifies config handling | Load the config. Verify it parses correctly. |\n\n**\"This should work\" is NOT evidence. RUN IT. Show what happened. That is evidence.**\n</MANUAL_QA_MANDATE>\n\n## COMPLETION CRITERIA\n\nA task is complete when:\n1. Requested functionality is fully implemented (not partial, not simplified)\n2. lsp_diagnostics shows zero errors on modified files\n3. Tests pass (or pre-existing failures documented)\n4. Code matches existing codebase patterns\n5. **Manual QA executed \u2014 actual feature tested, output observed and reported**\n\n**Deliver exactly what was asked. No more, no less.**\n\n</ultrawork-mode>\n\n---\n\n";
11
+ export declare function getGptUltraworkMessage(): string;
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Ultrawork message module - routes to appropriate message based on agent/model.
3
+ *
4
+ * Routing:
5
+ * 1. Planner agents (prometheus, plan) → planner.ts
6
+ * 2. GPT models → gpt.ts
7
+ * 3. Gemini models → gemini.ts
8
+ * 4. Default (Claude, etc.) → default.ts (optimized for Claude series)
9
+ */
10
+ export { isPlannerAgent, isGptModel, isGeminiModel, getUltraworkSource, } from "./source-detector";
11
+ export type { UltraworkSource } from "./source-detector";
12
+ export { ULTRAWORK_PLANNER_SECTION, getPlannerUltraworkMessage, } from "./planner";
13
+ export { ULTRAWORK_GPT_MESSAGE, getGptUltraworkMessage } from "./gpt";
14
+ export { ULTRAWORK_GEMINI_MESSAGE, getGeminiUltraworkMessage } from "./gemini";
15
+ export { ULTRAWORK_DEFAULT_MESSAGE, getDefaultUltraworkMessage, } from "./default";
16
+ /**
17
+ * Gets the appropriate ultrawork message based on agent and model context.
18
+ */
19
+ export declare function getUltraworkMessage(agentName?: string, modelID?: string): string;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Ultrawork message section for planner agents (Prometheus).
3
+ * Planner agents should NOT be told to call plan agent - they ARE the planner.
4
+ */
5
+ export declare const ULTRAWORK_PLANNER_SECTION = "## CRITICAL: YOU ARE A PLANNER, NOT AN IMPLEMENTER\n\n**IDENTITY CONSTRAINT (NON-NEGOTIABLE):**\nYou ARE the planner. You ARE NOT an implementer. You DO NOT write code. You DO NOT execute tasks.\n\n**TOOL RESTRICTIONS (SYSTEM-ENFORCED):**\n| Tool | Allowed | Blocked |\n|------|---------|---------|\n| Write/Edit | `.sisyphus/**/*.md` ONLY | Everything else |\n| Read | All files | - |\n| Bash | Research commands only | Implementation commands |\n| task | explore, librarian | - |\n\n**IF YOU TRY TO WRITE/EDIT OUTSIDE `.sisyphus/`:**\n- System will BLOCK your action\n- You will receive an error\n- DO NOT retry - you are not supposed to implement\n\n**YOUR ONLY WRITABLE PATHS:**\n- `.sisyphus/plans/*.md` - Final work plans\n- `.sisyphus/drafts/*.md` - Working drafts during interview\n\n**WHEN USER ASKS YOU TO IMPLEMENT:**\nREFUSE. Say: \"I'm a planner. I create work plans, not implementations. Run `/start-work` after I finish planning.\"\n\n---\n\n## CONTEXT GATHERING (MANDATORY BEFORE PLANNING)\n\nYou ARE the planner. Your job: create bulletproof work plans.\n**Before drafting ANY plan, gather context via explore/librarian agents.**\n\n### Research Protocol\n1. **Fire parallel background agents** for comprehensive context:\n ```\n task(subagent_type=\"explore\", load_skills=[], prompt=\"Find existing patterns for [topic] in codebase\", run_in_background=true)\n task(subagent_type=\"explore\", load_skills=[], prompt=\"Find test infrastructure and conventions\", run_in_background=true)\n task(subagent_type=\"librarian\", load_skills=[], prompt=\"Find official docs and best practices for [technology]\", run_in_background=true)\n ```\n2. **Wait for results** before planning - rushed plans fail\n3. **Synthesize findings** into informed requirements\n\n### What to Research\n- Existing codebase patterns and conventions\n- Test infrastructure (TDD possible?)\n- External library APIs and constraints\n- Similar implementations in OSS (via librarian)\n\n**NEVER plan blind. Context first, plan second.**\n\n---\n\n## MANDATORY OUTPUT: PARALLEL TASK GRAPH + TODO LIST\n\n**YOUR PRIMARY OUTPUT IS A PARALLEL EXECUTION TASK GRAPH.**\n\nWhen you finalize a plan, you MUST structure it for maximum parallel execution:\n\n### 1. Parallel Execution Waves (REQUIRED)\n\nAnalyze task dependencies and group independent tasks into parallel waves:\n\n```\nWave 1 (Start Immediately - No Dependencies):\n\u251C\u2500\u2500 Task 1: [description] \u2192 category: X, skills: [a, b]\n\u2514\u2500\u2500 Task 4: [description] \u2192 category: Y, skills: [c]\n\nWave 2 (After Wave 1 Completes):\n\u251C\u2500\u2500 Task 2: [depends: 1] \u2192 category: X, skills: [a]\n\u251C\u2500\u2500 Task 3: [depends: 1] \u2192 category: Z, skills: [d]\n\u2514\u2500\u2500 Task 5: [depends: 4] \u2192 category: Y, skills: [c]\n\nWave 3 (After Wave 2 Completes):\n\u2514\u2500\u2500 Task 6: [depends: 2, 3] \u2192 category: X, skills: [a, b]\n\nCritical Path: Task 1 \u2192 Task 2 \u2192 Task 6\nEstimated Parallel Speedup: ~40% faster than sequential\n```\n\n### 2. Dependency Matrix (REQUIRED)\n\n| Task | Depends On | Blocks | Can Parallelize With |\n|------|------------|--------|---------------------|\n| 1 | None | 2, 3 | 4 |\n| 2 | 1 | 6 | 3, 5 |\n| 3 | 1 | 6 | 2, 5 |\n| 4 | None | 5 | 1 |\n| 5 | 4 | None | 2, 3 |\n| 6 | 2, 3 | None | None (final) |\n\n### 3. TODO List Structure (REQUIRED)\n\nEach TODO item MUST include:\n\n```markdown\n- [ ] N. [Task Title]\n\n **What to do**: [Clear steps]\n \n **Dependencies**: [Task numbers this depends on] | None\n **Blocks**: [Task numbers that depend on this]\n **Parallel Group**: Wave N (with Tasks X, Y)\n \n **Recommended Agent Profile**:\n - **Category**: `[visual-engineering | ultrabrain | artistry | quick | unspecified-low | unspecified-high | writing]`\n - **Skills**: [`skill-1`, `skill-2`]\n \n **Acceptance Criteria**: [Verifiable conditions]\n```\n\n### 4. Agent Dispatch Summary (REQUIRED)\n\n| Wave | Tasks | Dispatch Command |\n|------|-------|------------------|\n| 1 | 1, 4 | `task(category=\"...\", load_skills=[...], run_in_background=false)` \u00D7 2 |\n| 2 | 2, 3, 5 | `task(...)` \u00D7 3 after Wave 1 completes |\n| 3 | 6 | `task(...)` final integration |\n\n**WHY PARALLEL TASK GRAPH IS MANDATORY:**\n- Orchestrator (Sisyphus) executes tasks in parallel waves\n- Independent tasks run simultaneously via background agents\n- Proper dependency tracking prevents race conditions\n- Category + skills ensure optimal model routing per task";
6
+ export declare function getPlannerUltraworkMessage(): string;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Agent/model detection utilities for ultrawork message routing.
3
+ *
4
+ * Routing logic:
5
+ * 1. Planner agents (prometheus, plan) → planner.ts
6
+ * 2. GPT 5.4 models → gpt5.4.ts
7
+ * 3. Gemini models → gemini.ts
8
+ * 4. Everything else (Claude, etc.) → default.ts
9
+ */
10
+ import { isGptModel, isGeminiModel } from "../../../agents/types";
11
+ /**
12
+ * Checks if agent is a planner-type agent.
13
+ * Planners don't need ultrawork injection (they ARE the planner).
14
+ */
15
+ export declare function isPlannerAgent(agentName?: string): boolean;
16
+ export { isGptModel, isGeminiModel };
17
+ /** Ultrawork message source type */
18
+ export type UltraworkSource = "planner" | "gpt" | "gemini" | "default";
19
+ /**
20
+ * Determines which ultrawork message source to use.
21
+ */
22
+ export declare function getUltraworkSource(agentName?: string, modelID?: string): UltraworkSource;
@@ -0,0 +1,60 @@
1
+ import type { FallbackEntry } from "../../shared/model-requirements";
2
+ import type { ChatMessageInput, ChatMessageHandlerOutput } from "../../plugin/chat-message";
3
+ type FallbackToast = (input: {
4
+ title: string;
5
+ message: string;
6
+ variant?: "info" | "success" | "warning" | "error";
7
+ duration?: number;
8
+ }) => void | Promise<void>;
9
+ type FallbackCallback = (input: {
10
+ sessionID: string;
11
+ providerID: string;
12
+ modelID: string;
13
+ variant?: string;
14
+ }) => void | Promise<void>;
15
+ export type ModelFallbackState = {
16
+ providerID: string;
17
+ modelID: string;
18
+ fallbackChain: FallbackEntry[];
19
+ attemptCount: number;
20
+ pending: boolean;
21
+ };
22
+ export declare function setSessionFallbackChain(sessionID: string, fallbackChain: FallbackEntry[] | undefined): void;
23
+ export declare function clearSessionFallbackChain(sessionID: string): void;
24
+ /**
25
+ * Sets a pending model fallback for a session.
26
+ * Called when a model error is detected in session.error handler.
27
+ */
28
+ export declare function setPendingModelFallback(sessionID: string, agentName: string, currentProviderID: string, currentModelID: string): boolean;
29
+ /**
30
+ * Gets the next fallback model for a session.
31
+ * Increments attemptCount each time called.
32
+ */
33
+ export declare function getNextFallback(sessionID: string): {
34
+ providerID: string;
35
+ modelID: string;
36
+ variant?: string;
37
+ } | null;
38
+ /**
39
+ * Clears the pending fallback for a session.
40
+ * Called after fallback is successfully applied.
41
+ */
42
+ export declare function clearPendingModelFallback(sessionID: string): void;
43
+ /**
44
+ * Checks if there's a pending fallback for a session.
45
+ */
46
+ export declare function hasPendingModelFallback(sessionID: string): boolean;
47
+ /**
48
+ * Gets the current fallback state for a session (for debugging).
49
+ */
50
+ export declare function getFallbackState(sessionID: string): ModelFallbackState | undefined;
51
+ /**
52
+ * Creates a chat.message hook that applies model fallbacks when pending.
53
+ */
54
+ export declare function createModelFallbackHook(args?: {
55
+ toast?: FallbackToast;
56
+ onApplied?: FallbackCallback;
57
+ }): {
58
+ "chat.message": (input: ChatMessageInput, output: ChatMessageHandlerOutput) => Promise<void>;
59
+ };
60
+ export {};
@@ -0,0 +1,20 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ type NoHephaestusNonGptHookOptions = {
3
+ allowNonGptModel?: boolean;
4
+ };
5
+ export declare function createNoHephaestusNonGptHook(ctx: PluginInput, options?: NoHephaestusNonGptHookOptions): {
6
+ "chat.message": (input: {
7
+ sessionID: string;
8
+ agent?: string;
9
+ model?: {
10
+ providerID: string;
11
+ modelID: string;
12
+ };
13
+ }, output?: {
14
+ message?: {
15
+ agent?: string;
16
+ [key: string]: unknown;
17
+ };
18
+ }) => Promise<void>;
19
+ };
20
+ export {};
@@ -0,0 +1 @@
1
+ export { createNoHephaestusNonGptHook } from "./hook";
@@ -0,0 +1,16 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ export declare function createNoSisyphusGptHook(ctx: PluginInput): {
3
+ "chat.message": (input: {
4
+ sessionID: string;
5
+ agent?: string;
6
+ model?: {
7
+ providerID: string;
8
+ modelID: string;
9
+ };
10
+ }, output?: {
11
+ message?: {
12
+ agent?: string;
13
+ [key: string]: unknown;
14
+ };
15
+ }) => Promise<void>;
16
+ };
@@ -0,0 +1 @@
1
+ export { createNoSisyphusGptHook } from "./hook";
@@ -0,0 +1,34 @@
1
+ export declare const HOOK_NAME = "non-interactive-env";
2
+ export declare const NON_INTERACTIVE_ENV: Record<string, string>;
3
+ /**
4
+ * Shell command guidance for non-interactive environments.
5
+ * These patterns should be followed to avoid hanging on user input.
6
+ */
7
+ export declare const SHELL_COMMAND_PATTERNS: {
8
+ readonly npm: {
9
+ readonly bad: readonly ["npm init", "npm install (prompts)"];
10
+ readonly good: readonly ["npm init -y", "npm install --yes"];
11
+ };
12
+ readonly apt: {
13
+ readonly bad: readonly ["apt-get install pkg"];
14
+ readonly good: readonly ["apt-get install -y pkg", "DEBIAN_FRONTEND=noninteractive apt-get install pkg"];
15
+ };
16
+ readonly pip: {
17
+ readonly bad: readonly ["pip install pkg (with prompts)"];
18
+ readonly good: readonly ["pip install --no-input pkg", "PIP_NO_INPUT=1 pip install pkg"];
19
+ };
20
+ readonly git: {
21
+ readonly bad: readonly ["git commit", "git merge branch", "git add -p", "git rebase -i"];
22
+ readonly good: readonly ["git commit -m 'msg'", "git merge --no-edit branch", "git add .", "git rebase --no-edit"];
23
+ };
24
+ readonly system: {
25
+ readonly bad: readonly ["rm file (prompts)", "cp a b (prompts)", "ssh host"];
26
+ readonly good: readonly ["rm -f file", "cp -f a b", "ssh -o BatchMode=yes host", "unzip -o file.zip"];
27
+ };
28
+ readonly banned: readonly ["vim", "nano", "vi", "emacs", "less", "more", "man", "python (REPL)", "node (REPL)", "git add -p", "git rebase -i"];
29
+ readonly workarounds: {
30
+ readonly yesPipe: "yes | ./script.sh";
31
+ readonly heredoc: "./script.sh <<EOF\noption1\noption2\nEOF";
32
+ readonly expectAlternative: "Use environment variables or config files instead of expect";
33
+ };
34
+ };
@@ -0,0 +1 @@
1
+ export declare function isNonInteractive(): boolean;
@@ -0,0 +1,4 @@
1
+ export * from "./constants";
2
+ export * from "./detector";
3
+ export * from "./types";
4
+ export { createNonInteractiveEnvHook } from "./non-interactive-env-hook";
@@ -0,0 +1,14 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ export * from "./constants";
3
+ export * from "./detector";
4
+ export * from "./types";
5
+ export declare function createNonInteractiveEnvHook(_ctx: PluginInput): {
6
+ "tool.execute.before": (input: {
7
+ tool: string;
8
+ sessionID: string;
9
+ callID: string;
10
+ }, output: {
11
+ args: Record<string, unknown>;
12
+ message?: string;
13
+ }) => Promise<void>;
14
+ };
@@ -0,0 +1,3 @@
1
+ export interface NonInteractiveEnvConfig {
2
+ disabled?: boolean;
3
+ }
@@ -0,0 +1,32 @@
1
+ import type { OhMyOpenCodeConfig } from "../config";
2
+ import { type ContextLimitModelCacheState } from "../shared/context-limit-resolver";
3
+ type PluginInput = {
4
+ client: {
5
+ session: {
6
+ messages: (...args: any[]) => any;
7
+ summarize: (...args: any[]) => any;
8
+ };
9
+ tui: {
10
+ showToast: (...args: any[]) => any;
11
+ };
12
+ };
13
+ directory: string;
14
+ };
15
+ export declare function createPreemptiveCompactionHook(ctx: PluginInput, pluginConfig: OhMyOpenCodeConfig, modelCacheState?: ContextLimitModelCacheState): {
16
+ "tool.execute.after": (input: {
17
+ tool: string;
18
+ sessionID: string;
19
+ callID: string;
20
+ }, _output: {
21
+ title: string;
22
+ output: string;
23
+ metadata: unknown;
24
+ }) => Promise<void>;
25
+ event: ({ event }: {
26
+ event: {
27
+ type: string;
28
+ properties?: unknown;
29
+ };
30
+ }) => Promise<void>;
31
+ };
32
+ export {};
@@ -0,0 +1 @@
1
+ export declare function isPrometheusAgent(agentName: string | undefined): boolean;
@@ -0,0 +1,16 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ type OpencodeClient = PluginInput["client"];
3
+ /**
4
+ * Get the effective agent for the session.
5
+ * Priority order:
6
+ * 1. In-memory session agent (most recent, set by /start-work)
7
+ * 2. Boulder state agent (persisted across restarts, fixes #927)
8
+ * 3. Message files (fallback for sessions without boulder state)
9
+ *
10
+ * This fixes issue #927 where after interruption:
11
+ * - In-memory map is cleared (process restart)
12
+ * - Message files return "prometheus" (oldest message from /plan)
13
+ * - But boulder.json has agent: "atlas" (set by /start-work)
14
+ */
15
+ export declare function getAgentFromSession(sessionID: string, directory: string, client?: OpencodeClient): Promise<string | undefined>;
16
+ export {};
@@ -0,0 +1,7 @@
1
+ export declare const HOOK_NAME = "prometheus-md-only";
2
+ export declare const PROMETHEUS_AGENT = "prometheus";
3
+ export declare const ALLOWED_EXTENSIONS: string[];
4
+ export declare const ALLOWED_PATH_PREFIX = ".sisyphus";
5
+ export declare const BLOCKED_TOOLS: string[];
6
+ export declare const PLANNING_CONSULT_WARNING: string;
7
+ export declare const PROMETHEUS_WORKFLOW_REMINDER: string;
@@ -0,0 +1,11 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ export declare function createPrometheusMdOnlyHook(ctx: PluginInput): {
3
+ "tool.execute.before": (input: {
4
+ tool: string;
5
+ sessionID: string;
6
+ callID: string;
7
+ }, output: {
8
+ args: Record<string, unknown>;
9
+ message?: string;
10
+ }) => Promise<void>;
11
+ };
@@ -0,0 +1,2 @@
1
+ export * from "./constants";
2
+ export { createPrometheusMdOnlyHook } from "./hook";
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Cross-platform path validator for Prometheus file writes.
3
+ * Uses path.resolve/relative instead of string matching to handle:
4
+ * - Windows backslashes (e.g., .sisyphus\\plans\\x.md)
5
+ * - Mixed separators (e.g., .sisyphus\\plans/x.md)
6
+ * - Case-insensitive directory/extension matching
7
+ * - Workspace confinement (blocks paths outside root or via traversal)
8
+ * - Nested project paths (e.g., parent/.sisyphus/... when ctx.directory is parent)
9
+ */
10
+ export declare function isAllowedFile(filePath: string, workspaceRoot: string): boolean;
@@ -0,0 +1,7 @@
1
+ export declare function createQuestionLabelTruncatorHook(): {
2
+ "tool.execute.before": (input: {
3
+ tool: string;
4
+ }, output: {
5
+ args: Record<string, unknown>;
6
+ }) => Promise<void>;
7
+ };
@@ -0,0 +1 @@
1
+ export { createQuestionLabelTruncatorHook } from "./hook";
@@ -0,0 +1,8 @@
1
+ export type RalphLoopStrategy = "reset" | "continue";
2
+ export type ParsedRalphLoopArguments = {
3
+ prompt: string;
4
+ maxIterations?: number;
5
+ completionPromise?: string;
6
+ strategy?: RalphLoopStrategy;
7
+ };
8
+ export declare function parseRalphLoopArguments(rawArguments: string): ParsedRalphLoopArguments;
@@ -0,0 +1,14 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ import type { RalphLoopState } from "./types";
3
+ type LoopStateController = {
4
+ clear: () => boolean;
5
+ markVerificationPending: (sessionID: string) => RalphLoopState | null;
6
+ };
7
+ export declare function handleDetectedCompletion(ctx: PluginInput, input: {
8
+ sessionID: string;
9
+ state: RalphLoopState;
10
+ loopState: LoopStateController;
11
+ directory: string;
12
+ apiTimeoutMs: number;
13
+ }): Promise<void>;
14
+ export {};
@@ -0,0 +1,9 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ export declare function detectCompletionInTranscript(transcriptPath: string | undefined, promise: string, startedAt?: string): boolean;
3
+ export declare function detectCompletionInSessionMessages(ctx: PluginInput, options: {
4
+ sessionID: string;
5
+ promise: string;
6
+ apiTimeoutMs: number;
7
+ directory: string;
8
+ sinceMessageIndex?: number;
9
+ }): Promise<boolean>;
@@ -0,0 +1,6 @@
1
+ export declare const HOOK_NAME = "ralph-loop";
2
+ export declare const DEFAULT_STATE_FILE = ".sisyphus/ralph-loop.local.md";
3
+ export declare const COMPLETION_TAG_PATTERN: RegExp;
4
+ export declare const DEFAULT_MAX_ITERATIONS = 100;
5
+ export declare const DEFAULT_COMPLETION_PROMISE = "DONE";
6
+ export declare const ULTRAWORK_VERIFICATION_PROMISE = "VERIFIED";
@@ -0,0 +1,3 @@
1
+ import type { RalphLoopState } from "./types";
2
+ export declare function buildContinuationPrompt(state: RalphLoopState): string;
3
+ export declare function buildVerificationFailurePrompt(state: RalphLoopState): string;
@@ -0,0 +1,8 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ export declare function injectContinuationPrompt(ctx: PluginInput, options: {
3
+ sessionID: string;
4
+ prompt: string;
5
+ directory: string;
6
+ apiTimeoutMs: number;
7
+ inheritFromSessionID?: string;
8
+ }): Promise<void>;
@@ -0,0 +1,5 @@
1
+ export * from "./types";
2
+ export * from "./constants";
3
+ export { readState, writeState, clearState, incrementIteration } from "./storage";
4
+ export { createRalphLoopHook } from "./ralph-loop-hook";
5
+ export type { RalphLoopHook } from "./ralph-loop-hook";
@@ -0,0 +1,12 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ import type { RalphLoopState } from "./types";
3
+ type ContinuationOptions = {
4
+ directory: string;
5
+ apiTimeoutMs: number;
6
+ previousSessionID: string;
7
+ loopState: {
8
+ setSessionID: (sessionID: string) => RalphLoopState | null;
9
+ };
10
+ };
11
+ export declare function continueIteration(ctx: PluginInput, state: RalphLoopState, options: ContinuationOptions): Promise<void>;
12
+ export {};
@@ -0,0 +1,7 @@
1
+ export declare function createLoopSessionRecovery(options?: {
2
+ recoveryWindowMs?: number;
3
+ }): {
4
+ isRecovering(sessionID: string): boolean;
5
+ markRecovering(sessionID: string): void;
6
+ clear(sessionID: string): void;
7
+ };
@@ -0,0 +1,23 @@
1
+ import type { RalphLoopOptions, RalphLoopState } from "./types";
2
+ export declare function createLoopStateController(options: {
3
+ directory: string;
4
+ stateDir: string | undefined;
5
+ config: RalphLoopOptions["config"] | undefined;
6
+ }): {
7
+ startLoop(sessionID: string, prompt: string, loopOptions?: {
8
+ maxIterations?: number;
9
+ completionPromise?: string;
10
+ messageCountAtStart?: number;
11
+ ultrawork?: boolean;
12
+ strategy?: "reset" | "continue";
13
+ }): boolean;
14
+ cancelLoop(sessionID: string): boolean;
15
+ getState(): RalphLoopState | null;
16
+ clear(): boolean;
17
+ incrementIteration(): RalphLoopState | null;
18
+ setSessionID(sessionID: string): RalphLoopState | null;
19
+ setMessageCountAtStart(sessionID: string, messageCountAtStart: number): RalphLoopState | null;
20
+ markVerificationPending(sessionID: string): RalphLoopState | null;
21
+ setVerificationSessionID(sessionID: string, verificationSessionID: string): RalphLoopState | null;
22
+ restartAfterFailedVerification(sessionID: string, messageCountAtStart?: number): RalphLoopState | null;
23
+ };
@@ -0,0 +1 @@
1
+ export { getMessageDir } from "../../shared/opencode-message-dir";
@@ -0,0 +1,16 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ import type { RalphLoopState } from "./types";
3
+ type LoopStateController = {
4
+ restartAfterFailedVerification: (sessionID: string, messageCountAtStart?: number) => RalphLoopState | null;
5
+ };
6
+ export declare function handlePendingVerification(ctx: PluginInput, input: {
7
+ sessionID: string;
8
+ state: RalphLoopState;
9
+ verificationSessionID?: string;
10
+ matchesParentSession: boolean;
11
+ matchesVerificationSession: boolean;
12
+ loopState: LoopStateController;
13
+ directory: string;
14
+ apiTimeoutMs: number;
15
+ }): Promise<void>;
16
+ export {};
@@ -0,0 +1,31 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ import type { RalphLoopOptions, RalphLoopState } from "./types";
3
+ type SessionRecovery = {
4
+ isRecovering: (sessionID: string) => boolean;
5
+ markRecovering: (sessionID: string) => void;
6
+ clear: (sessionID: string) => void;
7
+ };
8
+ type LoopStateController = {
9
+ getState: () => RalphLoopState | null;
10
+ clear: () => boolean;
11
+ incrementIteration: () => RalphLoopState | null;
12
+ setSessionID: (sessionID: string) => RalphLoopState | null;
13
+ markVerificationPending: (sessionID: string) => RalphLoopState | null;
14
+ setVerificationSessionID: (sessionID: string, verificationSessionID: string) => RalphLoopState | null;
15
+ restartAfterFailedVerification: (sessionID: string, messageCountAtStart?: number) => RalphLoopState | null;
16
+ };
17
+ type RalphLoopEventHandlerOptions = {
18
+ directory: string;
19
+ apiTimeoutMs: number;
20
+ getTranscriptPath: (sessionID: string) => string | undefined;
21
+ checkSessionExists?: RalphLoopOptions["checkSessionExists"];
22
+ sessionRecovery: SessionRecovery;
23
+ loopState: LoopStateController;
24
+ };
25
+ export declare function createRalphLoopEventHandler(ctx: PluginInput, options: RalphLoopEventHandlerOptions): ({ event }: {
26
+ event: {
27
+ type: string;
28
+ properties?: unknown;
29
+ };
30
+ }) => Promise<void>;
31
+ export {};
@@ -0,0 +1,20 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ import type { RalphLoopOptions, RalphLoopState } from "./types";
3
+ export interface RalphLoopHook {
4
+ event: (input: {
5
+ event: {
6
+ type: string;
7
+ properties?: unknown;
8
+ };
9
+ }) => Promise<void>;
10
+ startLoop: (sessionID: string, prompt: string, options?: {
11
+ maxIterations?: number;
12
+ completionPromise?: string;
13
+ messageCountAtStart?: number;
14
+ ultrawork?: boolean;
15
+ strategy?: "reset" | "continue";
16
+ }) => boolean;
17
+ cancelLoop: (sessionID: string) => boolean;
18
+ getState: () => RalphLoopState | null;
19
+ }
20
+ export declare function createRalphLoopHook(ctx: PluginInput, options?: RalphLoopOptions): RalphLoopHook;
@@ -0,0 +1,12 @@
1
+ import type { RalphLoopState } from "./types";
2
+ type LoopStateController = {
3
+ getState: () => RalphLoopState | null;
4
+ clear: () => boolean;
5
+ };
6
+ type SessionRecovery = {
7
+ clear: (sessionID: string) => void;
8
+ markRecovering: (sessionID: string) => void;
9
+ };
10
+ export declare function handleDeletedLoopSession(props: Record<string, unknown> | undefined, loopState: LoopStateController, sessionRecovery: SessionRecovery): boolean;
11
+ export declare function handleErroredLoopSession(props: Record<string, unknown> | undefined, loopState: LoopStateController, sessionRecovery: SessionRecovery): boolean;
12
+ export {};
@@ -0,0 +1,3 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ export declare function createIterationSession(ctx: PluginInput, parentSessionID: string, directory: string): Promise<string | null>;
3
+ export declare function selectSessionInTui(client: PluginInput["client"], sessionID: string): Promise<boolean>;
@@ -0,0 +1,6 @@
1
+ import type { RalphLoopState } from "./types";
2
+ export declare function getStateFilePath(directory: string, customPath?: string): string;
3
+ export declare function readState(directory: string, customPath?: string): RalphLoopState | null;
4
+ export declare function writeState(directory: string, state: RalphLoopState, customPath?: string): boolean;
5
+ export declare function clearState(directory: string, customPath?: string): boolean;
6
+ export declare function incrementIteration(directory: string, customPath?: string): RalphLoopState | null;
@@ -0,0 +1,23 @@
1
+ import type { RalphLoopConfig } from "../../config";
2
+ export interface RalphLoopState {
3
+ active: boolean;
4
+ iteration: number;
5
+ max_iterations?: number;
6
+ message_count_at_start?: number;
7
+ completion_promise: string;
8
+ initial_completion_promise?: string;
9
+ verification_attempt_id?: string;
10
+ verification_session_id?: string;
11
+ started_at: string;
12
+ prompt: string;
13
+ session_id?: string;
14
+ ultrawork?: boolean;
15
+ verification_pending?: boolean;
16
+ strategy?: "reset" | "continue";
17
+ }
18
+ export interface RalphLoopOptions {
19
+ config?: RalphLoopConfig;
20
+ getTranscriptPath?: (sessionId: string) => string;
21
+ apiTimeout?: number;
22
+ checkSessionExists?: (sessionId: string) => Promise<boolean>;
23
+ }
@@ -0,0 +1,12 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ import type { RalphLoopState } from "./types";
3
+ type LoopStateController = {
4
+ restartAfterFailedVerification: (sessionID: string, messageCountAtStart?: number) => RalphLoopState | null;
5
+ };
6
+ export declare function handleFailedVerification(ctx: PluginInput, input: {
7
+ state: RalphLoopState;
8
+ directory: string;
9
+ apiTimeoutMs: number;
10
+ loopState: LoopStateController;
11
+ }): Promise<boolean>;
12
+ export {};
@@ -0,0 +1 @@
1
+ export declare function withTimeout<TData>(promise: Promise<TData>, timeoutMs: number): Promise<TData>;
@@ -0,0 +1,12 @@
1
+ import type { PluginInput } from "@opencode-ai/plugin";
2
+ export declare function createReadImageResizerHook(_ctx: PluginInput): {
3
+ "tool.execute.after": (input: {
4
+ tool: string;
5
+ sessionID: string;
6
+ callID: string;
7
+ }, output: {
8
+ title: string;
9
+ output: string;
10
+ metadata: unknown;
11
+ }) => Promise<void>;
12
+ };