@heidi-dang/oh-my-opencode 3.12.4 → 3.13.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 (499) hide show
  1. package/README.md +61 -367
  2. package/dist/agents/atlas/agent.d.ts +1 -1
  3. package/dist/agents/atlas/default.d.ts +1 -1
  4. package/dist/agents/atlas/gemini.d.ts +1 -1
  5. package/dist/agents/atlas/gpt.d.ts +1 -1
  6. package/dist/agents/atlas/prompt-section-builder.d.ts +1 -1
  7. package/dist/agents/builtin-agents/atlas-agent.d.ts +4 -1
  8. package/dist/agents/builtin-agents/available-skills.d.ts +1 -1
  9. package/dist/agents/builtin-agents/general-agents.d.ts +4 -1
  10. package/dist/agents/builtin-agents/hephaestus-agent.d.ts +5 -1
  11. package/dist/agents/builtin-agents/model-resolution.d.ts +2 -0
  12. package/dist/agents/builtin-agents/resolve-file-uri.test.d.ts +1 -0
  13. package/dist/agents/builtin-agents/sisyphus-agent.d.ts +4 -1
  14. package/dist/agents/builtin-agents.d.ts +3 -3
  15. package/dist/agents/chat.d.ts +7 -0
  16. package/dist/agents/dynamic-agent-prompt-builder.test.d.ts +1 -0
  17. package/dist/agents/env-context.test.d.ts +1 -0
  18. package/dist/agents/hephaestus/agent.d.ts +19 -0
  19. package/dist/agents/hephaestus/agent.test.d.ts +1 -0
  20. package/dist/agents/hephaestus/gpt-5-3-codex.d.ts +21 -0
  21. package/dist/agents/hephaestus/gpt-5-4.d.ts +3 -0
  22. package/dist/agents/hephaestus/gpt.d.ts +3 -0
  23. package/dist/agents/hephaestus/index.d.ts +2 -0
  24. package/dist/agents/hephaestus.d.ts +1 -1
  25. package/dist/agents/index.d.ts +1 -1
  26. package/dist/agents/metis.d.ts +1 -1
  27. package/dist/agents/momus.d.ts +1 -1
  28. package/dist/agents/momus.test.d.ts +1 -0
  29. package/dist/agents/prometheus-prompt.test.d.ts +1 -0
  30. package/dist/agents/prompts/agent-role.d.ts +2 -0
  31. package/dist/agents/prompts/anti-patterns.d.ts +2 -0
  32. package/dist/agents/prompts/base-system.d.ts +1 -0
  33. package/dist/agents/prompts/execution-rules.d.ts +2 -0
  34. package/dist/agents/prompts/hard-blocks.d.ts +2 -0
  35. package/dist/agents/prompts/index.d.ts +6 -0
  36. package/dist/agents/{dynamic-agent-prompt-builder.d.ts → prompts/orchestration.d.ts} +2 -23
  37. package/dist/agents/prompts/skill-context.d.ts +2 -0
  38. package/dist/agents/runtime/action-validator.d.ts +31 -0
  39. package/dist/agents/runtime/agent-logger.d.ts +15 -0
  40. package/dist/agents/runtime/loop-guard.d.ts +2 -0
  41. package/dist/agents/runtime/verify-action.d.ts +58 -0
  42. package/dist/agents/sisyphus/default.d.ts +9 -0
  43. package/dist/agents/sisyphus/gemini.d.ts +20 -0
  44. package/dist/agents/sisyphus/gpt-5-4.d.ts +16 -0
  45. package/dist/agents/sisyphus/index.d.ts +11 -0
  46. package/dist/agents/sisyphus-junior/index.test.d.ts +1 -0
  47. package/dist/agents/sisyphus.d.ts +1 -1
  48. package/dist/agents/tool-restrictions.test.d.ts +1 -0
  49. package/dist/agents/types.d.ts +24 -6
  50. package/dist/agents/types.test.d.ts +1 -0
  51. package/dist/agents/utils.test.d.ts +1 -0
  52. package/dist/cli/cli-installer.test.d.ts +1 -0
  53. package/dist/cli/config-manager/write-omo-config.test.d.ts +1 -0
  54. package/dist/cli/config-manager.test.d.ts +1 -0
  55. package/dist/cli/doctor/checks/config.test.d.ts +1 -0
  56. package/dist/cli/doctor/checks/dependencies.test.d.ts +1 -0
  57. package/dist/cli/doctor/checks/edit-atomicity.d.ts +5 -0
  58. package/dist/cli/doctor/checks/issue-resolution.d.ts +7 -0
  59. package/dist/cli/doctor/checks/model-resolution.test.d.ts +1 -0
  60. package/dist/cli/doctor/checks/plan-compiler.d.ts +8 -0
  61. package/dist/cli/doctor/checks/progress.d.ts +8 -0
  62. package/dist/cli/doctor/checks/run-state-watchdog.d.ts +2 -0
  63. package/dist/cli/doctor/checks/system-loaded-version.test.d.ts +1 -0
  64. package/dist/cli/doctor/checks/system.test.d.ts +1 -0
  65. package/dist/cli/doctor/checks/tool-contract.d.ts +8 -0
  66. package/dist/cli/doctor/checks/tool-metadata.d.ts +2 -0
  67. package/dist/cli/doctor/constants.d.ts +3 -0
  68. package/dist/cli/doctor/format-default.test.d.ts +1 -0
  69. package/dist/cli/doctor/formatter.test.d.ts +1 -0
  70. package/dist/cli/doctor/runner.test.d.ts +1 -0
  71. package/dist/cli/doctor/types.d.ts +3 -0
  72. package/dist/cli/index.js +2542 -214
  73. package/dist/cli/index.test.d.ts +1 -0
  74. package/dist/cli/install.test.d.ts +1 -0
  75. package/dist/cli/mcp-oauth/index.test.d.ts +1 -0
  76. package/dist/cli/mcp-oauth/login.test.d.ts +1 -0
  77. package/dist/cli/mcp-oauth/logout.test.d.ts +1 -0
  78. package/dist/cli/mcp-oauth/status.test.d.ts +1 -0
  79. package/dist/cli/model-fallback.test.d.ts +1 -0
  80. package/dist/cli/provider-model-id-transform.test.d.ts +1 -0
  81. package/dist/cli/run/completion-continuation.test.d.ts +1 -0
  82. package/dist/cli/run/completion-verbose-logging.test.d.ts +1 -0
  83. package/dist/cli/run/completion.test.d.ts +1 -0
  84. package/dist/cli/run/continuation-state-marker.test.d.ts +1 -0
  85. package/dist/cli/run/event-handlers.test.d.ts +1 -0
  86. package/dist/cli/run/events.test.d.ts +1 -0
  87. package/dist/cli/run/integration.test.d.ts +1 -0
  88. package/dist/cli/run/json-output.test.d.ts +1 -0
  89. package/dist/cli/run/message-part-delta.test.d.ts +1 -0
  90. package/dist/cli/run/on-complete-hook.test.d.ts +1 -0
  91. package/dist/cli/run/opencode-binary-resolver.test.d.ts +1 -0
  92. package/dist/cli/run/poll-for-completion.test.d.ts +1 -0
  93. package/dist/cli/run/runner.test.d.ts +1 -0
  94. package/dist/cli/run/server-connection.test.d.ts +1 -0
  95. package/dist/cli/run/session-resolver.test.d.ts +1 -0
  96. package/dist/cli/run/stdin-suppression.test.d.ts +1 -0
  97. package/dist/cli/run/timestamp-output.test.d.ts +1 -0
  98. package/dist/config/schema/agent-names.d.ts +6 -3
  99. package/dist/config/schema/agent-overrides.d.ts +150 -30
  100. package/dist/config/schema/background-task.test.d.ts +1 -0
  101. package/dist/config/schema/categories.d.ts +21 -3
  102. package/dist/config/schema/categories.test.d.ts +1 -0
  103. package/dist/config/schema/fallback-models.d.ts +11 -1
  104. package/dist/config/schema/hooks.d.ts +7 -0
  105. package/dist/config/schema/oh-my-opencode-config.d.ts +151 -29
  106. package/dist/config/schema.test.d.ts +1 -0
  107. package/dist/create-hooks.d.ts +11 -1
  108. package/dist/create-managers.d.ts +2 -0
  109. package/dist/create-tools.d.ts +1 -1
  110. package/dist/features/background-agent/compaction-aware-message-resolver.test.d.ts +1 -0
  111. package/dist/features/background-agent/concurrency.test.d.ts +1 -0
  112. package/dist/features/background-agent/error-classifier.test.d.ts +1 -0
  113. package/dist/features/background-agent/fallback-retry-handler.test.d.ts +1 -0
  114. package/dist/features/background-agent/manager.d.ts +13 -0
  115. package/dist/features/background-agent/manager.polling.test.d.ts +1 -0
  116. package/dist/features/background-agent/manager.test.d.ts +1 -0
  117. package/dist/features/background-agent/process-cleanup.test.d.ts +1 -0
  118. package/dist/features/background-agent/session-idle-event-handler.test.d.ts +1 -0
  119. package/dist/features/background-agent/spawner/parent-directory-resolver.test.d.ts +1 -0
  120. package/dist/features/background-agent/spawner.test.d.ts +1 -0
  121. package/dist/features/background-agent/task-history.test.d.ts +1 -0
  122. package/dist/features/background-agent/task-poller.test.d.ts +1 -0
  123. package/dist/features/background-agent/types.d.ts +9 -4
  124. package/dist/features/boulder-state/storage.test.d.ts +1 -0
  125. package/dist/features/builtin-commands/commands.test.d.ts +1 -0
  126. package/dist/features/builtin-commands/templates/stop-continuation.test.d.ts +1 -0
  127. package/dist/features/builtin-skills/skills/git/git-commit.d.ts +2 -0
  128. package/dist/features/builtin-skills/skills/git/git-history.d.ts +1 -0
  129. package/dist/features/builtin-skills/skills/git/git-push-pr.d.ts +1 -0
  130. package/dist/features/builtin-skills/skills/git/git-rebase.d.ts +1 -0
  131. package/dist/features/builtin-skills/skills/git/git-shared.d.ts +2 -0
  132. package/dist/features/builtin-skills/skills.test.d.ts +1 -0
  133. package/dist/features/claude-code-mcp-loader/loader.test.d.ts +1 -0
  134. package/dist/features/claude-code-session-state/state.d.ts +4 -0
  135. package/dist/features/claude-code-session-state/state.test.d.ts +1 -0
  136. package/dist/features/claude-tasks/session-storage.test.d.ts +1 -0
  137. package/dist/features/claude-tasks/storage.test.d.ts +1 -0
  138. package/dist/features/claude-tasks/types.test.d.ts +1 -0
  139. package/dist/features/context-injector/collector.test.d.ts +1 -0
  140. package/dist/features/context-injector/injector.test.d.ts +1 -0
  141. package/dist/features/hook-message-injector/injector.d.ts +2 -0
  142. package/dist/features/hook-message-injector/injector.test.d.ts +1 -0
  143. package/dist/features/issue-resolution/state.d.ts +12 -0
  144. package/dist/features/issue-resolution/tests/integration.test.d.ts +1 -0
  145. package/dist/features/mcp-oauth/callback-server.test.d.ts +1 -0
  146. package/dist/features/mcp-oauth/dcr.test.d.ts +1 -0
  147. package/dist/features/mcp-oauth/discovery.test.d.ts +1 -0
  148. package/dist/features/mcp-oauth/provider.test.d.ts +1 -0
  149. package/dist/features/mcp-oauth/resource-indicator.test.d.ts +1 -0
  150. package/dist/features/mcp-oauth/schema.test.d.ts +1 -0
  151. package/dist/features/mcp-oauth/step-up.test.d.ts +1 -0
  152. package/dist/features/mcp-oauth/storage.test.d.ts +1 -0
  153. package/dist/features/opencode-skill-loader/agents-skills-global.test.d.ts +1 -0
  154. package/dist/features/opencode-skill-loader/async-loader.test.d.ts +1 -0
  155. package/dist/features/opencode-skill-loader/blocking.test.d.ts +1 -0
  156. package/dist/features/opencode-skill-loader/config-source-discovery.test.d.ts +1 -0
  157. package/dist/features/opencode-skill-loader/loader.test.d.ts +1 -0
  158. package/dist/features/opencode-skill-loader/merger.test.d.ts +1 -0
  159. package/dist/features/opencode-skill-loader/skill-content.test.d.ts +1 -0
  160. package/dist/features/pr-state/storage.d.ts +10 -0
  161. package/dist/features/run-continuation-state/storage.test.d.ts +1 -0
  162. package/dist/features/run-state-watchdog/index.d.ts +1 -0
  163. package/dist/features/run-state-watchdog/manager.d.ts +31 -0
  164. package/dist/features/run-state-watchdog/manager.test.d.ts +1 -0
  165. package/dist/features/run-state-watchdog/reconnect.test.d.ts +1 -0
  166. package/dist/features/skill-mcp-manager/env-cleaner.test.d.ts +1 -0
  167. package/dist/features/skill-mcp-manager/manager.test.d.ts +1 -0
  168. package/dist/features/task-toast-manager/manager.d.ts +9 -0
  169. package/dist/features/task-toast-manager/manager.test.d.ts +1 -0
  170. package/dist/features/task-toast-manager/types.d.ts +5 -0
  171. package/dist/features/tmux-subagent/action-executor.test.d.ts +1 -0
  172. package/dist/features/tmux-subagent/decision-engine.test.d.ts +1 -0
  173. package/dist/features/tmux-subagent/layout-config.test.d.ts +1 -0
  174. package/dist/features/tmux-subagent/manager.test.d.ts +1 -0
  175. package/dist/features/tmux-subagent/polling-manager.test.d.ts +1 -0
  176. package/dist/features/tool-metadata-store/index.test.d.ts +1 -0
  177. package/dist/hooks/anthropic-context-window-limit-recovery/empty-content-recovery-sdk.test.d.ts +1 -0
  178. package/dist/hooks/anthropic-context-window-limit-recovery/executor.test.d.ts +1 -0
  179. package/dist/hooks/anthropic-context-window-limit-recovery/parser.test.d.ts +1 -0
  180. package/dist/hooks/anthropic-context-window-limit-recovery/pruning-deduplication.test.d.ts +1 -0
  181. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-deduplication.test.d.ts +1 -0
  182. package/dist/hooks/anthropic-context-window-limit-recovery/recovery-hook.test.d.ts +1 -0
  183. package/dist/hooks/anthropic-context-window-limit-recovery/storage.test.d.ts +1 -0
  184. package/dist/hooks/anthropic-context-window-limit-recovery/summarize-retry-strategy.test.d.ts +1 -0
  185. package/dist/hooks/anthropic-effort/index.test.d.ts +1 -0
  186. package/dist/hooks/atlas/index.test.d.ts +1 -0
  187. package/dist/hooks/auto-slash-command/constants.test.d.ts +1 -0
  188. package/dist/hooks/auto-slash-command/detector.test.d.ts +1 -0
  189. package/dist/hooks/auto-slash-command/executor.test.d.ts +1 -0
  190. package/dist/hooks/auto-slash-command/index.test.d.ts +1 -0
  191. package/dist/hooks/auto-update-checker/checker/pinned-version-updater.test.d.ts +1 -0
  192. package/dist/hooks/auto-update-checker/checker/plugin-entry.test.d.ts +1 -0
  193. package/dist/hooks/auto-update-checker/checker.test.d.ts +1 -0
  194. package/dist/hooks/auto-update-checker/hook/background-update-check.test.d.ts +1 -0
  195. package/dist/hooks/auto-update-checker/hook.test.d.ts +1 -0
  196. package/dist/hooks/auto-update-checker/index.test.d.ts +1 -0
  197. package/dist/hooks/category-skill-reminder/formatter.d.ts +1 -1
  198. package/dist/hooks/category-skill-reminder/hook.d.ts +1 -1
  199. package/dist/hooks/category-skill-reminder/index.test.d.ts +1 -0
  200. package/dist/hooks/claude-code-hooks/execute-http-hook.test.d.ts +1 -0
  201. package/dist/hooks/claude-code-hooks/stop.test.d.ts +1 -0
  202. package/dist/hooks/claude-code-hooks/transcript.test.d.ts +1 -0
  203. package/dist/hooks/claude-code-hooks/user-prompt-submit.test.d.ts +1 -0
  204. package/dist/hooks/comment-checker/cli.test.d.ts +1 -0
  205. package/dist/hooks/comment-checker/hook.apply-patch.test.d.ts +1 -0
  206. package/dist/hooks/comment-checker/pending-calls.test.d.ts +1 -0
  207. package/dist/hooks/compaction-context-injector/index.test.d.ts +1 -0
  208. package/dist/hooks/compaction-todo-preserver/index.test.d.ts +1 -0
  209. package/dist/hooks/context-window-monitor.test.d.ts +1 -0
  210. package/dist/hooks/delegate-task-retry/index.test.d.ts +1 -0
  211. package/dist/hooks/directory-agents-injector/injector.test.d.ts +1 -0
  212. package/dist/hooks/directory-readme-injector/injector.test.d.ts +1 -0
  213. package/dist/hooks/edit-error-recovery/hook.d.ts +2 -1
  214. package/dist/hooks/edit-error-recovery/index.test.d.ts +1 -0
  215. package/dist/hooks/edit-safeguard/hook.d.ts +2 -0
  216. package/dist/hooks/execution-journal/hook.d.ts +19 -0
  217. package/dist/hooks/execution-journal/index.d.ts +1 -0
  218. package/dist/hooks/hashline-read-enhancer/index.test.d.ts +1 -0
  219. package/dist/hooks/index.d.ts +11 -3
  220. package/dist/hooks/json-error-recovery/index.test.d.ts +1 -0
  221. package/dist/hooks/keyword-detector/constants.d.ts +1 -0
  222. package/dist/hooks/keyword-detector/detector.d.ts +1 -1
  223. package/dist/hooks/keyword-detector/index.test.d.ts +1 -0
  224. package/dist/hooks/keyword-detector/issue.d.ts +2 -0
  225. package/dist/hooks/model-fallback/hook.test.d.ts +1 -0
  226. package/dist/hooks/no-hephaestus-non-gpt/index.test.d.ts +1 -0
  227. package/dist/hooks/no-sisyphus-gpt/index.test.d.ts +1 -0
  228. package/dist/hooks/non-interactive-env/index.test.d.ts +1 -0
  229. package/dist/hooks/plan-enforcement/hook.d.ts +29 -0
  230. package/dist/hooks/plan-enforcement/hook.test.d.ts +1 -0
  231. package/dist/hooks/plan-enforcement/index.d.ts +1 -0
  232. package/dist/hooks/preemptive-compaction.test.d.ts +1 -0
  233. package/dist/hooks/prometheus-md-only/index.test.d.ts +1 -0
  234. package/dist/hooks/question-label-truncator/index.test.d.ts +1 -0
  235. package/dist/hooks/ralph-loop/completion-handler.d.ts +14 -0
  236. package/dist/hooks/ralph-loop/completion-promise-detector.d.ts +1 -1
  237. package/dist/hooks/ralph-loop/completion-promise-detector.test.d.ts +1 -0
  238. package/dist/hooks/ralph-loop/constants.d.ts +1 -0
  239. package/dist/hooks/ralph-loop/index.test.d.ts +1 -0
  240. package/dist/hooks/ralph-loop/loop-state-controller.d.ts +2 -0
  241. package/dist/hooks/ralph-loop/ralph-loop-event-handler.d.ts +2 -0
  242. package/dist/hooks/ralph-loop/reset-strategy-race-condition.test.d.ts +1 -0
  243. package/dist/hooks/ralph-loop/session-event-handler.d.ts +12 -0
  244. package/dist/hooks/ralph-loop/types.d.ts +5 -1
  245. package/dist/hooks/ralph-loop/ulw-loop-verification.test.d.ts +1 -0
  246. package/dist/hooks/read-image-resizer/hook.test.d.ts +1 -0
  247. package/dist/hooks/read-image-resizer/image-dimensions.test.d.ts +1 -0
  248. package/dist/hooks/read-image-resizer/image-resizer.test.d.ts +1 -0
  249. package/dist/hooks/rules-injector/finder.test.d.ts +1 -0
  250. package/dist/hooks/rules-injector/injector.test.d.ts +1 -0
  251. package/dist/hooks/rules-injector/output-path.test.d.ts +1 -0
  252. package/dist/hooks/rules-injector/parser.test.d.ts +1 -0
  253. package/dist/hooks/run-state-watchdog/hook.d.ts +5 -0
  254. package/dist/hooks/run-state-watchdog/index.d.ts +1 -0
  255. package/dist/hooks/runtime-enforcement/hook.d.ts +10 -0
  256. package/dist/hooks/runtime-enforcement/hook.test.d.ts +1 -0
  257. package/dist/hooks/runtime-enforcement/index.d.ts +1 -0
  258. package/dist/hooks/runtime-enforcement/synthetic-injection.test.d.ts +1 -0
  259. package/dist/hooks/runtime-fallback/index.test.d.ts +1 -0
  260. package/dist/hooks/semantic-loop-guard/hook.d.ts +10 -0
  261. package/dist/hooks/semantic-loop-guard/hook.test.d.ts +1 -0
  262. package/dist/hooks/semantic-loop-guard/index.d.ts +1 -0
  263. package/dist/hooks/session-notification-input-needed.test.d.ts +1 -0
  264. package/dist/hooks/session-notification.test.d.ts +1 -0
  265. package/dist/hooks/session-recovery/detect-error-type.test.d.ts +1 -0
  266. package/dist/hooks/session-recovery/index.test.d.ts +1 -0
  267. package/dist/hooks/session-recovery/recover-empty-content-message-sdk.test.d.ts +1 -0
  268. package/dist/hooks/session-recovery/resume.test.d.ts +1 -0
  269. package/dist/hooks/session-recovery/storage/readers-from-sdk.test.d.ts +1 -0
  270. package/dist/hooks/start-work/index.test.d.ts +1 -0
  271. package/dist/hooks/start-work/parse-user-request.test.d.ts +1 -0
  272. package/dist/hooks/start-work/worktree-detector.test.d.ts +1 -0
  273. package/dist/hooks/stop-continuation-guard/index.test.d.ts +1 -0
  274. package/dist/hooks/task-reminder/index.test.d.ts +1 -0
  275. package/dist/hooks/task-resume-info/index.test.d.ts +1 -0
  276. package/dist/hooks/tasks-todowrite-disabler/index.test.d.ts +1 -0
  277. package/dist/hooks/think-mode/index.test.d.ts +1 -0
  278. package/dist/hooks/think-mode/switcher.test.d.ts +1 -0
  279. package/dist/hooks/todo-continuation-enforcer/continuation-injection.test.d.ts +1 -0
  280. package/dist/hooks/todo-continuation-enforcer/pending-question-detection.test.d.ts +1 -0
  281. package/dist/hooks/todo-continuation-enforcer/todo-continuation-enforcer.test.d.ts +1 -0
  282. package/dist/hooks/tool-contract/hook.d.ts +19 -0
  283. package/dist/hooks/tool-contract/hook.test.d.ts +1 -0
  284. package/dist/hooks/tool-contract/index.d.ts +1 -0
  285. package/dist/hooks/tool-output-truncator.test.d.ts +1 -0
  286. package/dist/hooks/unstable-agent-babysitter/index.test.d.ts +1 -0
  287. package/dist/hooks/write-existing-file-guard/index.test.d.ts +1 -0
  288. package/dist/hooks/xai-usage-patch/hook.d.ts +20 -0
  289. package/dist/hooks/xai-usage-patch/hook.test.d.ts +1 -0
  290. package/dist/index.compaction-model-agnostic.static.test.d.ts +1 -0
  291. package/dist/index.js +4980 -14453
  292. package/dist/index.test.d.ts +1 -0
  293. package/dist/mcp/index.test.d.ts +1 -0
  294. package/dist/mcp/websearch.test.d.ts +1 -0
  295. package/dist/oh-my-opencode.schema.json +622 -15
  296. package/dist/plugin/available-categories.d.ts +1 -1
  297. package/dist/plugin/chat-headers.test.d.ts +1 -0
  298. package/dist/plugin/chat-message.test.d.ts +1 -0
  299. package/dist/plugin/chat-params.test.d.ts +1 -0
  300. package/dist/plugin/event.model-fallback.test.d.ts +1 -0
  301. package/dist/plugin/event.test.d.ts +1 -0
  302. package/dist/plugin/hooks/create-core-hooks.d.ts +10 -0
  303. package/dist/plugin/hooks/create-session-hooks.d.ts +4 -1
  304. package/dist/plugin/hooks/create-skill-hooks.d.ts +1 -1
  305. package/dist/plugin/hooks/create-tool-guard-hooks.d.ts +7 -1
  306. package/dist/plugin/recent-synthetic-idles.test.d.ts +1 -0
  307. package/dist/plugin/session-agent-resolver.test.d.ts +1 -0
  308. package/dist/plugin/session-status-normalizer.test.d.ts +1 -0
  309. package/dist/plugin/skill-context.d.ts +1 -1
  310. package/dist/plugin/tool-execute-before-session-notification.test.d.ts +1 -0
  311. package/dist/plugin/tool-execute-before.test.d.ts +1 -0
  312. package/dist/plugin/tool-normalization.test.d.ts +1 -0
  313. package/dist/plugin/tool-registry.d.ts +1 -1
  314. package/dist/plugin/truth-model-integration.test.d.ts +1 -0
  315. package/dist/plugin/ultrawork-db-model-override.test.d.ts +1 -0
  316. package/dist/plugin/ultrawork-model-override.test.d.ts +1 -0
  317. package/dist/plugin-config.test.d.ts +1 -0
  318. package/dist/plugin-handlers/agent-key-remapper.test.d.ts +1 -0
  319. package/dist/plugin-handlers/config-handler-formatter.test.d.ts +1 -0
  320. package/dist/plugin-handlers/config-handler.test.d.ts +1 -0
  321. package/dist/plugin-handlers/mcp-config-handler.test.d.ts +1 -0
  322. package/dist/plugin-handlers/plan-model-inheritance.test.d.ts +1 -0
  323. package/dist/plugin-handlers/prometheus-agent-config-builder.d.ts +3 -2
  324. package/dist/plugin-handlers/tool-config-handler.test.d.ts +1 -0
  325. package/dist/runtime/journal.d.ts +33 -0
  326. package/dist/runtime/plan-compiler.d.ts +20 -0
  327. package/dist/runtime/plan-compiler.test.d.ts +1 -0
  328. package/dist/runtime/startup-validation.d.ts +7 -0
  329. package/dist/runtime/state-ledger.d.ts +52 -0
  330. package/dist/runtime/tools/complete-task.d.ts +4 -0
  331. package/dist/runtime/tools/fs-safe.contract.test.d.ts +1 -0
  332. package/dist/runtime/tools/fs-safe.d.ts +1 -0
  333. package/dist/runtime/tools/gh-safe.d.ts +1 -0
  334. package/dist/runtime/tools/git-safe.d.ts +1 -0
  335. package/dist/runtime/tools/index.d.ts +8 -0
  336. package/dist/runtime/tools/plan.d.ts +3 -0
  337. package/dist/runtime/tools/query-ledger.d.ts +3 -0
  338. package/dist/runtime/tools/registry.d.ts +8 -0
  339. package/dist/runtime/tools/report-issue-verification.d.ts +1 -0
  340. package/dist/runtime/tools/verify.d.ts +1 -0
  341. package/dist/runtime/truth-model.test.d.ts +1 -0
  342. package/dist/runtime/vcs-detection.test.d.ts +1 -0
  343. package/dist/shared/active-task-storage.d.ts +15 -0
  344. package/dist/shared/agent-config-integration.test.d.ts +1 -0
  345. package/dist/shared/agent-display-names.test.d.ts +1 -0
  346. package/dist/shared/agent-variant.test.d.ts +1 -0
  347. package/dist/shared/claude-config-dir.test.d.ts +1 -0
  348. package/dist/shared/connected-providers-cache.test.d.ts +1 -0
  349. package/dist/shared/deep-merge.test.d.ts +1 -0
  350. package/dist/shared/dynamic-truncator.test.d.ts +1 -0
  351. package/dist/shared/external-plugin-detector.test.d.ts +1 -0
  352. package/dist/shared/file-utils.test.d.ts +1 -0
  353. package/dist/shared/first-message-variant.test.d.ts +1 -0
  354. package/dist/shared/frontmatter.test.d.ts +1 -0
  355. package/dist/shared/git-worktree/collect-git-diff-stats.test.d.ts +1 -0
  356. package/dist/shared/git-worktree/git-worktree.test.d.ts +1 -0
  357. package/dist/shared/git-worktree/parse-status-porcelain-line.test.d.ts +1 -0
  358. package/dist/shared/index.d.ts +2 -0
  359. package/dist/shared/jsonc-parser.test.d.ts +1 -0
  360. package/dist/shared/merge-categories.test.d.ts +1 -0
  361. package/dist/shared/migration.test.d.ts +1 -0
  362. package/dist/shared/model-availability.d.ts +6 -0
  363. package/dist/shared/model-availability.test.d.ts +1 -0
  364. package/dist/shared/model-error-classifier.d.ts +5 -0
  365. package/dist/shared/model-error-classifier.test.d.ts +1 -0
  366. package/dist/shared/model-format-normalizer.test.d.ts +1 -0
  367. package/dist/shared/model-normalization.test.d.ts +1 -0
  368. package/dist/shared/model-requirements.d.ts +6 -0
  369. package/dist/shared/model-requirements.test.d.ts +1 -0
  370. package/dist/shared/model-resolution-acceptance.test.d.ts +1 -0
  371. package/dist/shared/model-resolution-pipeline.d.ts +5 -1
  372. package/dist/shared/model-resolution-pipeline.test.d.ts +1 -0
  373. package/dist/shared/model-resolution-tracker.d.ts +17 -0
  374. package/dist/shared/model-resolution-types.d.ts +7 -1
  375. package/dist/shared/model-resolver.d.ts +10 -3
  376. package/dist/shared/model-resolver.test.d.ts +1 -0
  377. package/dist/shared/model-suggestion-retry.test.d.ts +1 -0
  378. package/dist/shared/normalize-sdk-response.test.d.ts +1 -0
  379. package/dist/shared/opencode-config-dir.test.d.ts +1 -0
  380. package/dist/shared/opencode-http-api.test.d.ts +1 -0
  381. package/dist/shared/opencode-message-dir.test.d.ts +1 -0
  382. package/dist/shared/opencode-server-auth.test.d.ts +1 -0
  383. package/dist/shared/opencode-storage-detection.test.d.ts +1 -0
  384. package/dist/shared/opencode-version.test.d.ts +1 -0
  385. package/dist/shared/pattern-matcher.test.d.ts +1 -0
  386. package/dist/shared/permission-compat.test.d.ts +1 -0
  387. package/dist/shared/plugin-command-discovery.test.d.ts +1 -0
  388. package/dist/shared/port-utils.test.d.ts +1 -0
  389. package/dist/shared/prompt-tools.test.d.ts +1 -0
  390. package/dist/shared/read-permission-tracker.d.ts +15 -0
  391. package/dist/shared/safe-create-hook.test.d.ts +1 -0
  392. package/dist/shared/session-cursor.test.d.ts +1 -0
  393. package/dist/shared/session-directory-resolver.test.d.ts +1 -0
  394. package/dist/shared/session-model-state.test.d.ts +1 -0
  395. package/dist/shared/session-tools-store.test.d.ts +1 -0
  396. package/dist/shared/shell-env.test.d.ts +1 -0
  397. package/dist/shared/skill-path-resolver.test.d.ts +1 -0
  398. package/dist/shared/system-directive.test.d.ts +1 -0
  399. package/dist/shared/tmux/tmux-utils/layout.test.d.ts +1 -0
  400. package/dist/shared/tmux/tmux-utils.test.d.ts +1 -0
  401. package/dist/shared/tool-name.test.d.ts +1 -0
  402. package/dist/shared/truncate-description.test.d.ts +1 -0
  403. package/dist/shared/verify-task-completion.d.ts +1 -0
  404. package/dist/tools/background-task/create-background-output.blocking.test.d.ts +1 -0
  405. package/dist/tools/background-task/create-background-task.test.d.ts +1 -0
  406. package/dist/tools/background-task/tools.test.d.ts +1 -0
  407. package/dist/tools/call-omo-agent/background-agent-executor.test.d.ts +1 -0
  408. package/dist/tools/call-omo-agent/background-executor.test.d.ts +1 -0
  409. package/dist/tools/call-omo-agent/session-creator.test.d.ts +1 -0
  410. package/dist/tools/call-omo-agent/subagent-session-creator.test.d.ts +1 -0
  411. package/dist/tools/call-omo-agent/sync-executor.test.d.ts +1 -0
  412. package/dist/tools/call-omo-agent/tools.test.d.ts +1 -0
  413. package/dist/tools/delegate-task/background-continuation.test.d.ts +1 -0
  414. package/dist/tools/delegate-task/background-task.d.ts +1 -1
  415. package/dist/tools/delegate-task/background-task.test.d.ts +1 -0
  416. package/dist/tools/delegate-task/category-resolver.d.ts +1 -0
  417. package/dist/tools/delegate-task/category-resolver.test.d.ts +1 -0
  418. package/dist/tools/delegate-task/constants.d.ts +1 -1
  419. package/dist/tools/delegate-task/metadata-await.test.d.ts +1 -0
  420. package/dist/tools/delegate-task/metadata-model-unification.test.d.ts +1 -0
  421. package/dist/tools/delegate-task/model-selection.d.ts +2 -0
  422. package/dist/tools/delegate-task/subagent-resolver.d.ts +2 -1
  423. package/dist/tools/delegate-task/subagent-resolver.test.d.ts +1 -0
  424. package/dist/tools/delegate-task/sync-continuation.test.d.ts +1 -0
  425. package/dist/tools/delegate-task/sync-poll-timeout.test.d.ts +1 -0
  426. package/dist/tools/delegate-task/sync-prompt-sender.d.ts +1 -0
  427. package/dist/tools/delegate-task/sync-prompt-sender.test.d.ts +1 -0
  428. package/dist/tools/delegate-task/sync-result-fetcher.test.d.ts +1 -0
  429. package/dist/tools/delegate-task/sync-session-poller.test.d.ts +1 -0
  430. package/dist/tools/delegate-task/sync-task.d.ts +1 -1
  431. package/dist/tools/delegate-task/sync-task.test.d.ts +1 -0
  432. package/dist/tools/delegate-task/timing.test.d.ts +1 -0
  433. package/dist/tools/delegate-task/token-limiter.test.d.ts +1 -0
  434. package/dist/tools/delegate-task/tools.test.d.ts +1 -0
  435. package/dist/tools/delegate-task/types.d.ts +1 -1
  436. package/dist/tools/delegate-task/unstable-agent-task.test.d.ts +1 -0
  437. package/dist/tools/delegate-task/unstable-agent-timeout.test.d.ts +1 -0
  438. package/dist/tools/glob/cli.test.d.ts +1 -0
  439. package/dist/tools/grep/downloader.test.d.ts +1 -0
  440. package/dist/tools/grep/result-formatter.test.d.ts +1 -0
  441. package/dist/tools/hashline-edit/diff-utils.test.d.ts +1 -0
  442. package/dist/tools/hashline-edit/edit-operations.test.d.ts +1 -0
  443. package/dist/tools/hashline-edit/edit-text-normalization.test.d.ts +1 -0
  444. package/dist/tools/hashline-edit/hash-computation.test.d.ts +1 -0
  445. package/dist/tools/hashline-edit/normalize-edits.test.d.ts +1 -0
  446. package/dist/tools/hashline-edit/tools.test.d.ts +1 -0
  447. package/dist/tools/hashline-edit/validation.test.d.ts +1 -0
  448. package/dist/tools/look-at/create-look-at-error-handling.test.d.ts +1 -0
  449. package/dist/tools/look-at/create-look-at-image-data.test.d.ts +1 -0
  450. package/dist/tools/look-at/create-look-at-model-passthrough.test.d.ts +1 -0
  451. package/dist/tools/look-at/create-look-at-sync-prompt.test.d.ts +1 -0
  452. package/dist/tools/look-at/create-look-at-unhandled-error.test.d.ts +1 -0
  453. package/dist/tools/look-at/image-converter.test.d.ts +1 -0
  454. package/dist/tools/look-at/mime-type-inference.test.d.ts +1 -0
  455. package/dist/tools/look-at/normalize-args.test.d.ts +1 -0
  456. package/dist/tools/look-at/session-poller.test.d.ts +1 -0
  457. package/dist/tools/look-at/tools.test.d.ts +7 -0
  458. package/dist/tools/look-at/validate-args.test.d.ts +1 -0
  459. package/dist/tools/lsp/client.test.d.ts +1 -0
  460. package/dist/tools/lsp/config.test.d.ts +1 -0
  461. package/dist/tools/lsp/lsp-client-wrapper.d.ts +3 -0
  462. package/dist/tools/lsp/lsp-process.test.d.ts +1 -0
  463. package/dist/tools/lsp/server-config-loader.test.d.ts +1 -0
  464. package/dist/tools/lsp/utils.test.d.ts +1 -0
  465. package/dist/tools/session-manager/storage.test.d.ts +1 -0
  466. package/dist/tools/session-manager/tools.test.d.ts +1 -0
  467. package/dist/tools/session-manager/utils.test.d.ts +1 -0
  468. package/dist/tools/skill/tools.test.agent-restriction.d.ts +1 -0
  469. package/dist/tools/skill/tools.test.d.ts +1 -0
  470. package/dist/tools/skill/tools.test.description.d.ts +1 -0
  471. package/dist/tools/skill/tools.test.mcp-schema.d.ts +1 -0
  472. package/dist/tools/skill/tools.test.ordering.d.ts +1 -0
  473. package/dist/tools/skill/tools.test.utils.d.ts +10 -0
  474. package/dist/tools/skill-mcp/builtin-mcp-hint.test.d.ts +1 -0
  475. package/dist/tools/skill-mcp/tools.test.d.ts +1 -0
  476. package/dist/tools/slashcommand/command-discovery.test.d.ts +1 -0
  477. package/dist/tools/slashcommand/command-output-formatter.test.d.ts +1 -0
  478. package/dist/tools/slashcommand/index.test.d.ts +1 -0
  479. package/dist/tools/task/task-create-input.test.d.ts +1 -0
  480. package/dist/tools/task/task-create.test.d.ts +1 -0
  481. package/dist/tools/task/task-delete-input.test.d.ts +1 -0
  482. package/dist/tools/task/task-get-input.test.d.ts +1 -0
  483. package/dist/tools/task/task-get.test.d.ts +1 -0
  484. package/dist/tools/task/task-list-input.test.d.ts +1 -0
  485. package/dist/tools/task/task-list.test.d.ts +1 -0
  486. package/dist/tools/task/task-schema-core.test.d.ts +1 -0
  487. package/dist/tools/task/task-schema-fields.test.d.ts +1 -0
  488. package/dist/tools/task/task-status.test.d.ts +1 -0
  489. package/dist/tools/task/task-update-input.test.d.ts +1 -0
  490. package/dist/tools/task/task-update.test.d.ts +1 -0
  491. package/dist/tools/task/todo-sync-all-fetch.test.d.ts +1 -0
  492. package/dist/tools/task/todo-sync-all-write.test.d.ts +1 -0
  493. package/dist/tools/task/todo-sync-sync.test.d.ts +1 -0
  494. package/dist/tools/task/todo-sync-update.test.d.ts +1 -0
  495. package/dist/tools/task/todo-sync.test.d.ts +1 -0
  496. package/dist/utils/context-trimmer.d.ts +21 -0
  497. package/dist/utils/safety-tool-result.d.ts +31 -0
  498. package/dist/utils/tool-contract-wrapper.d.ts +10 -0
  499. package/package.json +17 -16
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Default/base Sisyphus prompt builder.
3
+ * Used for Claude and other non-specialized models.
4
+ */
5
+ import type { AvailableAgent, AvailableTool, AvailableSkill, AvailableCategory } from "../types";
6
+ import { categorizeTools } from "../prompts";
7
+ export declare function buildTaskManagementSection(useTaskSystem: boolean): string;
8
+ export declare function buildDefaultSisyphusPrompt(model: string, availableAgents: AvailableAgent[], availableTools?: AvailableTool[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): string;
9
+ export { categorizeTools };
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Gemini-specific overlay sections for Sisyphus prompt.
3
+ *
4
+ * Gemini models are aggressively optimistic and tend to:
5
+ * - Skip tool calls in favor of internal reasoning
6
+ * - Avoid delegation, preferring to do work themselves
7
+ * - Claim completion without verification
8
+ * - Interpret constraints as suggestions
9
+ * - Skip intent classification gates (jump straight to action)
10
+ * - Conflate investigation with implementation ("look into X" → starts coding)
11
+ *
12
+ * These overlays inject corrective sections at strategic points
13
+ * in the dynamic Sisyphus prompt to counter these tendencies.
14
+ */
15
+ export declare function buildGeminiToolMandate(): string;
16
+ export declare function buildGeminiToolGuide(): string;
17
+ export declare function buildGeminiToolCallExamples(): string;
18
+ export declare function buildGeminiDelegationOverride(): string;
19
+ export declare function buildGeminiVerificationOverride(): string;
20
+ export declare function buildGeminiIntentGateEnforcement(): string;
@@ -0,0 +1,16 @@
1
+ /**
2
+ * GPT-5.4-native Sisyphus prompt — written from scratch.
3
+ *
4
+ * Design principles (derived from OpenAI's GPT-5.4 prompting guidance):
5
+ * - Compact, block-structured prompts with XML tags
6
+ * - reasoning.effort defaults to "none" — encourage explicit thinking
7
+ * - GPT-5.4 generates preambles natively — do NOT add preamble instructions
8
+ * - GPT-5.4 follows instructions well — less repetition, fewer threats needed
9
+ * - GPT-5.4 benefits from: output contracts, verification loops, dependency checks
10
+ * - GPT-5.4 can be over-literal — add intent inference layer for 알잘딱 behavior
11
+ * - "Start with the smallest prompt that passes your evals" — keep it dense
12
+ */
13
+ import type { AvailableAgent, AvailableTool, AvailableSkill, AvailableCategory } from "../types";
14
+ import { categorizeTools } from "../prompts";
15
+ export declare function buildGpt54SisyphusPrompt(model: string, availableAgents: AvailableAgent[], availableTools?: AvailableTool[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): string;
16
+ export { categorizeTools };
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Sisyphus agent — multi-model orchestrator.
3
+ *
4
+ * This directory contains model-specific prompt variants:
5
+ * - default.ts: Base implementation for Claude and general models
6
+ * - gemini.ts: Corrective overlays for Gemini's aggressive tendencies
7
+ * - gpt-5-4.ts: Native GPT-5.4 prompt with block-structured guidance
8
+ */
9
+ export { buildDefaultSisyphusPrompt, buildTaskManagementSection } from "./default";
10
+ export { buildGeminiToolMandate, buildGeminiDelegationOverride, buildGeminiVerificationOverride, buildGeminiIntentGateEnforcement, buildGeminiToolGuide, buildGeminiToolCallExamples, } from "./gemini";
11
+ export { buildGpt54SisyphusPrompt } from "./gpt-5-4";
@@ -0,0 +1 @@
1
+ export {};
@@ -1,7 +1,7 @@
1
1
  import type { AgentConfig } from "@opencode-ai/sdk";
2
2
  import type { AgentPromptMetadata } from "./types";
3
3
  export declare const SISYPHUS_PROMPT_METADATA: AgentPromptMetadata;
4
- import type { AvailableAgent, AvailableSkill, AvailableCategory } from "./dynamic-agent-prompt-builder";
4
+ import type { AvailableAgent, AvailableSkill, AvailableCategory } from "./types";
5
5
  export declare function createSisyphusAgent(model: string, availableAgents?: AvailableAgent[], availableToolNames?: string[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): AgentConfig;
6
6
  export declare namespace createSisyphusAgent {
7
7
  var mode: "all";
@@ -0,0 +1 @@
1
+ export {};
@@ -1,4 +1,5 @@
1
1
  import type { AgentConfig } from "@opencode-ai/sdk";
2
+ import type { AgentOverrideConfig as SchemaAgentOverrideConfig } from "../config/schema";
2
3
  /**
3
4
  * Agent mode determines UI model selection behavior:
4
5
  * - "primary": Respects user's UI-selected model (sisyphus, atlas)
@@ -52,14 +53,31 @@ export interface AgentPromptMetadata {
52
53
  /** Key triggers that should appear in Phase 0 (e.g., "External library mentioned → fire librarian") */
53
54
  keyTrigger?: string;
54
55
  }
56
+ export interface AvailableAgent {
57
+ name: string;
58
+ description: string;
59
+ metadata: AgentPromptMetadata;
60
+ }
61
+ export interface AvailableTool {
62
+ name: string;
63
+ category: "lsp" | "ast" | "search" | "session" | "command" | "other";
64
+ }
65
+ export interface AvailableSkill {
66
+ name: string;
67
+ description: string;
68
+ location: "user" | "project" | "plugin";
69
+ }
70
+ export interface AvailableCategory {
71
+ name: string;
72
+ description: string;
73
+ model?: string;
74
+ }
55
75
  export declare function isGptModel(model: string): boolean;
56
76
  export declare function isGeminiModel(model: string): boolean;
57
- export type BuiltinAgentName = "sisyphus" | "master" | "hephaestus" | "oracle" | "librarian" | "explore" | "multimodal-looker" | "metis" | "momus" | "atlas";
77
+ export declare function isGpt5_4Model(model: string): boolean;
78
+ export declare function isGpt5_3CodexModel(model: string): boolean;
79
+ export type BuiltinAgentName = "sisyphus" | "master" | "hephaestus" | "oracle" | "librarian" | "explore" | "multimodal-looker" | "metis" | "momus" | "atlas" | "chat";
58
80
  export type OverridableAgentName = "build" | BuiltinAgentName;
59
81
  export type AgentName = BuiltinAgentName;
60
- export type AgentOverrideConfig = Partial<AgentConfig> & {
61
- prompt_append?: string;
62
- variant?: string;
63
- fallback_models?: string | string[];
64
- };
82
+ export type AgentOverrideConfig = SchemaAgentOverrideConfig;
65
83
  export type AgentOverrides = Partial<Record<OverridableAgentName, AgentOverrideConfig>>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ import type { CheckDefinition } from "../types";
2
+ /**
3
+ * Doctor check for Edit tool atomicity and syntax validation.
4
+ */
5
+ export declare const checkEditAtomicity: CheckDefinition;
@@ -0,0 +1,7 @@
1
+ import { CheckResult } from "../types";
2
+ export declare const ISSUE_RESOLUTION_CHECK: {
3
+ id: string;
4
+ title: string;
5
+ description: string;
6
+ };
7
+ export declare function checkIssueResolutionWorkflow(): Promise<CheckResult>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ import type { CheckResult } from "../types";
2
+ /**
3
+ * Doctor Check: Plan Compiler Integrity
4
+ *
5
+ * Verifies that the Plan Compiler correctly handles session isolation
6
+ * and doesn't allow stale plans from one session to block another.
7
+ */
8
+ export declare function checkPlanCompiler(): Promise<CheckResult>;
@@ -0,0 +1,8 @@
1
+ import type { CheckResult } from "../types";
2
+ /**
3
+ * Doctor Check: Subagent Progress Integrity
4
+ *
5
+ * Verifies that the progress storage utility works correctly
6
+ * and can persist/retrieve task progress.
7
+ */
8
+ export declare function checkProgress(): Promise<CheckResult>;
@@ -0,0 +1,2 @@
1
+ import { CheckDefinition } from "../types";
2
+ export declare const checkRunStateWatchdog: CheckDefinition;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ import type { CheckResult } from "../types";
2
+ /**
3
+ * Tool Contract Compliance Check
4
+ *
5
+ * Verifies that all safety-critical tools return the required structured
6
+ * boolean metadata (success, verified) via storeToolMetadata.
7
+ */
8
+ export declare function checkToolContract(): Promise<CheckResult>;
@@ -0,0 +1,2 @@
1
+ import { CheckDefinition } from "../types";
2
+ export declare const checkToolMetadataContract: CheckDefinition;
@@ -20,6 +20,9 @@ export declare const CHECK_IDS: {
20
20
  readonly MODELS: "models";
21
21
  readonly FORK: "fork";
22
22
  readonly DEFAULT_CONFIG: "default-config";
23
+ readonly PLAN_COMPILER: "plan-compiler";
24
+ readonly PROGRESS: "progress";
25
+ readonly EDIT_ATOMICITY: "edit-atomicity";
23
26
  };
24
27
  export declare const CHECK_NAMES: Record<string, string>;
25
28
  export declare const EXIT_CODES: {
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -1,3 +1,5 @@
1
+ import type { ActiveTaskInfo } from "../../shared/active-task-storage";
2
+ export type { ActiveTaskInfo };
1
3
  export type DoctorMode = "default" | "status" | "verbose";
2
4
  export interface DoctorOptions {
3
5
  mode: DoctorMode;
@@ -63,6 +65,7 @@ export interface DoctorResult {
63
65
  systemInfo: SystemInfo;
64
66
  tools: ToolsSummary;
65
67
  summary: DoctorSummary;
68
+ activeTasks?: ActiveTaskInfo[];
66
69
  exitCode: number;
67
70
  }
68
71
  export type CheckCategory = "installation" | "configuration" | "authentication" | "dependencies" | "tools" | "updates";