oh-my-opencode 4.19.0 → 4.19.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (214) hide show
  1. package/.agents/command/omomomo.md +1 -1
  2. package/.agents/skills/omomomo/SKILL.md +1 -1
  3. package/.opencode/command/omomomo.md +1 -1
  4. package/README.ja.md +6 -6
  5. package/README.ko.md +6 -6
  6. package/README.md +6 -6
  7. package/README.ru.md +6 -6
  8. package/README.zh-cn.md +6 -6
  9. package/dist/agents/atlas/agent.d.ts +1 -1
  10. package/dist/agents/gpt-prompt-identity.d.ts +3 -0
  11. package/dist/agents/sisyphus/gpt-5-5.d.ts +1 -1
  12. package/dist/agents/sisyphus/gpt-task-system-guide.d.ts +1 -0
  13. package/dist/agents/sisyphus-junior/gpt-5-5.d.ts +2 -2
  14. package/dist/cli/index.js +148 -94
  15. package/dist/cli-node/index.js +148 -94
  16. package/dist/config/schema/agent-overrides.d.ts +48 -48
  17. package/dist/config/schema/categories.d.ts +6 -6
  18. package/dist/config/schema/codegraph.d.ts +2 -0
  19. package/dist/config/schema/fallback-models.d.ts +5 -5
  20. package/dist/config/schema/oh-my-opencode-config.d.ts +50 -48
  21. package/dist/hooks/codegraph-bootstrap/hook.d.ts +3 -2
  22. package/dist/hooks/sisyphus-junior-notepad/constants.d.ts +1 -1
  23. package/dist/hooks/start-work/notepad-scaffold.d.ts +10 -0
  24. package/dist/index.js +2612 -1473
  25. package/dist/oh-my-opencode.schema.json +11 -0
  26. package/dist/shared/omo-process-sweep.d.ts +18 -0
  27. package/dist/skills/programming/scripts/typescript/check-no-excuse-rules.test.ts +87 -0
  28. package/dist/skills/programming/scripts/typescript/check-no-excuse-rules.ts +35 -5
  29. package/dist/skills/ulw-plan/SKILL.md +20 -1
  30. package/dist/testing/create-plugin-module.d.ts +1 -0
  31. package/dist/tui.js +66 -56
  32. package/package.json +13 -13
  33. package/packages/git-bash-mcp/dist/cli.js +54 -8
  34. package/packages/lsp-core/src/lsp/client-diagnostics-freshness.integration.test.ts +60 -0
  35. package/packages/lsp-core/src/lsp/client.ts +14 -1
  36. package/packages/lsp-core/src/lsp/fixtures/diagnostics-freshness-contract-probe.ts +2 -2
  37. package/packages/lsp-core/src/mcp.ts +9 -0
  38. package/packages/lsp-daemon/dist/cli.js +319 -51
  39. package/packages/lsp-daemon/dist/client.js +136 -48
  40. package/packages/lsp-daemon/dist/daemon-client.d.ts +0 -10
  41. package/packages/lsp-daemon/dist/daemon-client.js +4 -34
  42. package/packages/lsp-daemon/dist/daemon-failure-result.d.ts +3 -0
  43. package/packages/lsp-daemon/dist/daemon-failure-result.js +38 -0
  44. package/packages/lsp-daemon/dist/daemon-request-error.d.ts +14 -0
  45. package/packages/lsp-daemon/dist/daemon-request-error.js +26 -0
  46. package/packages/lsp-daemon/dist/daemon-server.js +5 -1
  47. package/packages/lsp-daemon/dist/index.js +137 -48
  48. package/packages/lsp-daemon/dist/proxy.d.ts +2 -0
  49. package/packages/lsp-daemon/dist/proxy.js +1 -0
  50. package/packages/lsp-daemon/dist/version-reap.d.ts +26 -0
  51. package/packages/lsp-daemon/dist/version-reap.js +182 -0
  52. package/packages/lsp-tools-mcp/dist/cli.js +61 -10
  53. package/packages/lsp-tools-mcp/dist/lsp/manager.js +6 -1
  54. package/packages/lsp-tools-mcp/dist/mcp.js +61 -10
  55. package/packages/lsp-tools-mcp/dist/tools.js +6 -1
  56. package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -1
  57. package/packages/omo-codex/plugin/components/bootstrap/dist/cli.js +64 -8
  58. package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
  59. package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
  60. package/packages/omo-codex/plugin/components/bootstrap/src/setup.ts +22 -2
  61. package/packages/omo-codex/plugin/components/codegraph/dist/cli.js +555 -251
  62. package/packages/omo-codex/plugin/components/codegraph/dist/serve.js +178 -89
  63. package/packages/omo-codex/plugin/components/codegraph/package.json +2 -2
  64. package/packages/omo-codex/plugin/components/codegraph/src/hook-types.ts +3 -1
  65. package/packages/omo-codex/plugin/components/codegraph/src/hook.ts +3 -1
  66. package/packages/omo-codex/plugin/components/codegraph/src/mcp-bridge.ts +98 -32
  67. package/packages/omo-codex/plugin/components/codegraph/src/mcp-unavailable.ts +5 -0
  68. package/packages/omo-codex/plugin/components/codegraph/src/serve.ts +15 -6
  69. package/packages/omo-codex/plugin/components/codegraph/src/session-start-worker.ts +6 -2
  70. package/packages/omo-codex/plugin/components/codegraph/src/sweep-cli.ts +1 -0
  71. package/packages/omo-codex/plugin/components/codegraph/test/hook-store-upgrade.test.ts +148 -0
  72. package/packages/omo-codex/plugin/components/codegraph/test/mcp-bridge-fixtures.ts +31 -2
  73. package/packages/omo-codex/plugin/components/codegraph/test/package-runtime.test.ts +1 -1
  74. package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-bridge-lifecycle.test.ts +65 -1
  75. package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-bridge.test.ts +3 -7
  76. package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-facade.test.ts +1 -1
  77. package/packages/omo-codex/plugin/components/codegraph/test/serve-provision.test.ts +57 -3
  78. package/packages/omo-codex/plugin/components/codegraph/test/serve-unavailable.test.ts +41 -0
  79. package/packages/omo-codex/plugin/components/codegraph/test/serve.test.ts +109 -8
  80. package/packages/omo-codex/plugin/components/codegraph/test/session-start-node-support.test.ts +2 -2
  81. package/packages/omo-codex/plugin/components/codegraph/test/session-start-worker-flow.test.ts +43 -0
  82. package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
  83. package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
  84. package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
  85. package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
  86. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
  87. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +1 -1
  88. package/packages/omo-codex/plugin/components/lsp/dist/.omo-runtime-manifest.json +3 -3
  89. package/packages/omo-codex/plugin/components/lsp/dist/cli.js +80 -40
  90. package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
  91. package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
  92. package/packages/omo-codex/plugin/components/rules/dist/cli.js +11 -0
  93. package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
  94. package/packages/omo-codex/plugin/components/rules/package.json +1 -1
  95. package/packages/omo-codex/plugin/components/rules/src/post-compact-budget.ts +11 -0
  96. package/packages/omo-codex/plugin/components/rules/test/post-compact-budget.test.ts +60 -0
  97. package/packages/omo-codex/plugin/components/start-work-continuation/hooks/hooks.json +2 -2
  98. package/packages/omo-codex/plugin/components/start-work-continuation/package.json +1 -1
  99. package/packages/omo-codex/plugin/components/teammode/hooks/hooks.json +1 -1
  100. package/packages/omo-codex/plugin/components/teammode/package.json +1 -1
  101. package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
  102. package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
  103. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-clone-fidelity-reviewer.toml +2 -2
  104. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-code-reviewer.toml +2 -2
  105. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-gate-reviewer.toml +1 -1
  106. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-high.toml +1 -1
  107. package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-medium.toml +2 -2
  108. package/packages/omo-codex/plugin/components/ultrawork/agents/plan.toml +1 -1
  109. package/packages/omo-codex/plugin/components/ultrawork/dist/cli.js +1 -1
  110. package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
  111. package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
  112. package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/SKILL.md +20 -1
  113. package/packages/omo-codex/plugin/components/ultrawork/src/codex-hook.ts +1 -1
  114. package/packages/omo-codex/plugin/components/ultrawork/test/codex-hook-trigger-policy.test.ts +42 -0
  115. package/packages/omo-codex/plugin/components/ulw-loop/README.md +6 -4
  116. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-continuation.d.ts +21 -0
  117. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-continuation.js +64 -0
  118. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint.js +15 -2
  119. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-arg-parser.js +1 -1
  120. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-commands.js +2 -1
  121. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.d.ts +1 -1
  122. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.js +3 -3
  123. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-steering.d.ts +3 -0
  124. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-steering.js +85 -0
  125. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-subcommands.d.ts +0 -1
  126. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-subcommands.js +13 -33
  127. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli.js +998 -593
  128. package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-instruction.js +1 -0
  129. package/packages/omo-codex/plugin/components/ulw-loop/dist/constants.d.ts +1 -1
  130. package/packages/omo-codex/plugin/components/ulw-loop/dist/constants.js +2 -0
  131. package/packages/omo-codex/plugin/components/ulw-loop/dist/domain-types.d.ts +6 -0
  132. package/packages/omo-codex/plugin/components/ulw-loop/dist/goal-status.d.ts +1 -0
  133. package/packages/omo-codex/plugin/components/ulw-loop/dist/goal-status.js +3 -0
  134. package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-crud.d.ts +1 -0
  135. package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-crud.js +4 -0
  136. package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-io.d.ts +1 -0
  137. package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-io.js +10 -2
  138. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-verdicts.js +1 -1
  139. package/packages/omo-codex/plugin/components/ulw-loop/dist/steering-batch.d.ts +15 -0
  140. package/packages/omo-codex/plugin/components/ulw-loop/dist/steering-batch.js +84 -0
  141. package/packages/omo-codex/plugin/components/ulw-loop/dist/steering-mutations.d.ts +5 -0
  142. package/packages/omo-codex/plugin/components/ulw-loop/dist/steering-mutations.js +81 -0
  143. package/packages/omo-codex/plugin/components/ulw-loop/dist/steering.js +7 -59
  144. package/packages/omo-codex/plugin/components/ulw-loop/dist/stop-resume-hook.js +12 -4
  145. package/packages/omo-codex/plugin/components/ulw-loop/dist/validation-batch.d.ts +9 -0
  146. package/packages/omo-codex/plugin/components/ulw-loop/dist/validation-batch.js +122 -0
  147. package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +4 -4
  148. package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
  149. package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/full-workflow.md +8 -6
  150. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-continuation.ts +84 -0
  151. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint.ts +13 -2
  152. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-arg-parser.ts +1 -1
  153. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-commands.ts +1 -1
  154. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-output.ts +3 -3
  155. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-steering.ts +49 -0
  156. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-subcommands.ts +13 -45
  157. package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-instruction.ts +1 -0
  158. package/packages/omo-codex/plugin/components/ulw-loop/src/constants.ts +2 -0
  159. package/packages/omo-codex/plugin/components/ulw-loop/src/domain-types.ts +7 -0
  160. package/packages/omo-codex/plugin/components/ulw-loop/src/goal-status.ts +4 -0
  161. package/packages/omo-codex/plugin/components/ulw-loop/src/plan-crud.ts +4 -1
  162. package/packages/omo-codex/plugin/components/ulw-loop/src/plan-io.ts +20 -2
  163. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-verdicts.ts +1 -1
  164. package/packages/omo-codex/plugin/components/ulw-loop/src/steering-batch.ts +125 -0
  165. package/packages/omo-codex/plugin/components/ulw-loop/src/steering-mutations.ts +59 -0
  166. package/packages/omo-codex/plugin/components/ulw-loop/src/steering.ts +6 -58
  167. package/packages/omo-codex/plugin/components/ulw-loop/src/stop-resume-hook.ts +12 -4
  168. package/packages/omo-codex/plugin/components/ulw-loop/src/validation-batch.ts +122 -0
  169. package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-continuation.test.ts +76 -0
  170. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-checkpoint-continuation.test.ts +111 -0
  171. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-steering-batch.test.ts +67 -0
  172. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-validation-batch.test.ts +57 -0
  173. package/packages/omo-codex/plugin/components/ulw-loop/test/paths.test.ts +1 -0
  174. package/packages/omo-codex/plugin/components/ulw-loop/test/steering-batch.test.ts +152 -0
  175. package/packages/omo-codex/plugin/components/ulw-loop/test/stop-resume-hook.test.ts +29 -0
  176. package/packages/omo-codex/plugin/components/ulw-loop/test/validation-batch-checkpoint.test.ts +147 -0
  177. package/packages/omo-codex/plugin/components/ulw-loop/test/validation-batch.test.ts +73 -0
  178. package/packages/omo-codex/plugin/hooks/post-compact-resetting-git-bash-mcp-reminder.json +1 -1
  179. package/packages/omo-codex/plugin/hooks/post-compact-resetting-lsp-diagnostics-cache.json +1 -1
  180. package/packages/omo-codex/plugin/hooks/post-compact-resetting-project-rule-cache.json +1 -1
  181. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-codegraph-init-guidance.json +1 -1
  182. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-comments.json +1 -1
  183. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-lsp-diagnostics.json +1 -1
  184. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-thread-title-hygiene.json +1 -1
  185. package/packages/omo-codex/plugin/hooks/post-tool-use-matching-project-rules.json +1 -1
  186. package/packages/omo-codex/plugin/hooks/pre-tool-use-enforcing-unlimited-goal-budget.json +1 -1
  187. package/packages/omo-codex/plugin/hooks/pre-tool-use-guarding-ulw-loop-spawns.json +1 -1
  188. package/packages/omo-codex/plugin/hooks/pre-tool-use-recommending-git-bash-mcp.json +1 -1
  189. package/packages/omo-codex/plugin/hooks/session-start-checking-auto-update.json +2 -2
  190. package/packages/omo-codex/plugin/hooks/session-start-checking-bootstrap-provisioning.json +1 -1
  191. package/packages/omo-codex/plugin/hooks/session-start-checking-codegraph-bootstrap.json +2 -2
  192. package/packages/omo-codex/plugin/hooks/session-start-loading-project-rules.json +1 -1
  193. package/packages/omo-codex/plugin/hooks/session-start-recording-session-telemetry.json +2 -2
  194. package/packages/omo-codex/plugin/hooks/stop-checking-start-work-continuation.json +1 -1
  195. package/packages/omo-codex/plugin/hooks/stop-checking-ulw-loop-resume.json +1 -1
  196. package/packages/omo-codex/plugin/hooks/subagent-stop-checking-start-work-continuation.json +1 -1
  197. package/packages/omo-codex/plugin/hooks/subagent-stop-verifying-lazycodex-executor-evidence.json +1 -1
  198. package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ultrawork-trigger.json +1 -1
  199. package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ulw-loop-steering.json +1 -1
  200. package/packages/omo-codex/plugin/hooks/user-prompt-submit-loading-project-rules.json +1 -1
  201. package/packages/omo-codex/plugin/package-lock.json +41 -41
  202. package/packages/omo-codex/plugin/package.json +1 -1
  203. package/packages/omo-codex/plugin/shared/test/config-loader.test.ts +43 -0
  204. package/packages/omo-codex/plugin/skills/programming/scripts/typescript/check-no-excuse-rules.ts +35 -5
  205. package/packages/omo-codex/plugin/skills/ulw-loop/references/full-workflow.md +8 -6
  206. package/packages/omo-codex/plugin/skills/ulw-plan/SKILL.md +20 -1
  207. package/packages/omo-codex/plugin/test/aggregate-agents.test.mjs +9 -9
  208. package/packages/omo-codex/plugin/test/aggregate-hooks.test.mjs +26 -0
  209. package/packages/omo-codex/plugin/test/bootstrap-setup.test.mjs +41 -0
  210. package/packages/omo-codex/scripts/install-dist/install-local.mjs +49 -5
  211. package/packages/omo-codex/scripts/install-marketplace-cache.test.mjs +4 -1
  212. package/packages/shared-skills/skills/programming/scripts/typescript/check-no-excuse-rules.test.ts +87 -0
  213. package/packages/shared-skills/skills/programming/scripts/typescript/check-no-excuse-rules.ts +35 -5
  214. package/packages/shared-skills/skills/ulw-plan/SKILL.md +20 -1
@@ -32,8 +32,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
32
32
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
33
33
  max: "max";
34
34
  medium: "medium";
35
- high: "high";
36
35
  xhigh: "xhigh";
36
+ high: "high";
37
37
  low: "low";
38
38
  none: "none";
39
39
  minimal: "minimal";
@@ -54,8 +54,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
54
54
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
55
55
  max: "max";
56
56
  medium: "medium";
57
- high: "high";
58
57
  xhigh: "xhigh";
58
+ high: "high";
59
59
  low: "low";
60
60
  none: "none";
61
61
  minimal: "minimal";
@@ -139,8 +139,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
139
139
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
140
140
  max: "max";
141
141
  medium: "medium";
142
- high: "high";
143
142
  xhigh: "xhigh";
143
+ high: "high";
144
144
  low: "low";
145
145
  none: "none";
146
146
  minimal: "minimal";
@@ -168,8 +168,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
168
168
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
169
169
  max: "max";
170
170
  medium: "medium";
171
- high: "high";
172
171
  xhigh: "xhigh";
172
+ high: "high";
173
173
  low: "low";
174
174
  none: "none";
175
175
  minimal: "minimal";
@@ -190,8 +190,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
190
190
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
191
191
  max: "max";
192
192
  medium: "medium";
193
- high: "high";
194
193
  xhigh: "xhigh";
194
+ high: "high";
195
195
  low: "low";
196
196
  none: "none";
197
197
  minimal: "minimal";
@@ -275,8 +275,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
275
275
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
276
276
  max: "max";
277
277
  medium: "medium";
278
- high: "high";
279
278
  xhigh: "xhigh";
279
+ high: "high";
280
280
  low: "low";
281
281
  none: "none";
282
282
  minimal: "minimal";
@@ -304,8 +304,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
304
304
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
305
305
  max: "max";
306
306
  medium: "medium";
307
- high: "high";
308
307
  xhigh: "xhigh";
308
+ high: "high";
309
309
  low: "low";
310
310
  none: "none";
311
311
  minimal: "minimal";
@@ -326,8 +326,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
326
326
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
327
327
  max: "max";
328
328
  medium: "medium";
329
- high: "high";
330
329
  xhigh: "xhigh";
330
+ high: "high";
331
331
  low: "low";
332
332
  none: "none";
333
333
  minimal: "minimal";
@@ -411,8 +411,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
411
411
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
412
412
  max: "max";
413
413
  medium: "medium";
414
- high: "high";
415
414
  xhigh: "xhigh";
415
+ high: "high";
416
416
  low: "low";
417
417
  none: "none";
418
418
  minimal: "minimal";
@@ -440,8 +440,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
440
440
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
441
441
  max: "max";
442
442
  medium: "medium";
443
- high: "high";
444
443
  xhigh: "xhigh";
444
+ high: "high";
445
445
  low: "low";
446
446
  none: "none";
447
447
  minimal: "minimal";
@@ -462,8 +462,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
462
462
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
463
463
  max: "max";
464
464
  medium: "medium";
465
- high: "high";
466
465
  xhigh: "xhigh";
466
+ high: "high";
467
467
  low: "low";
468
468
  none: "none";
469
469
  minimal: "minimal";
@@ -547,8 +547,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
547
547
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
548
548
  max: "max";
549
549
  medium: "medium";
550
- high: "high";
551
550
  xhigh: "xhigh";
551
+ high: "high";
552
552
  low: "low";
553
553
  none: "none";
554
554
  minimal: "minimal";
@@ -577,8 +577,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
577
577
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
578
578
  max: "max";
579
579
  medium: "medium";
580
- high: "high";
581
580
  xhigh: "xhigh";
581
+ high: "high";
582
582
  low: "low";
583
583
  none: "none";
584
584
  minimal: "minimal";
@@ -599,8 +599,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
599
599
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
600
600
  max: "max";
601
601
  medium: "medium";
602
- high: "high";
603
602
  xhigh: "xhigh";
603
+ high: "high";
604
604
  low: "low";
605
605
  none: "none";
606
606
  minimal: "minimal";
@@ -684,8 +684,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
684
684
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
685
685
  max: "max";
686
686
  medium: "medium";
687
- high: "high";
688
687
  xhigh: "xhigh";
688
+ high: "high";
689
689
  low: "low";
690
690
  none: "none";
691
691
  minimal: "minimal";
@@ -713,8 +713,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
713
713
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
714
714
  max: "max";
715
715
  medium: "medium";
716
- high: "high";
717
716
  xhigh: "xhigh";
717
+ high: "high";
718
718
  low: "low";
719
719
  none: "none";
720
720
  minimal: "minimal";
@@ -735,8 +735,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
735
735
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
736
736
  max: "max";
737
737
  medium: "medium";
738
- high: "high";
739
738
  xhigh: "xhigh";
739
+ high: "high";
740
740
  low: "low";
741
741
  none: "none";
742
742
  minimal: "minimal";
@@ -820,8 +820,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
820
820
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
821
821
  max: "max";
822
822
  medium: "medium";
823
- high: "high";
824
823
  xhigh: "xhigh";
824
+ high: "high";
825
825
  low: "low";
826
826
  none: "none";
827
827
  minimal: "minimal";
@@ -849,8 +849,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
849
849
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
850
850
  max: "max";
851
851
  medium: "medium";
852
- high: "high";
853
852
  xhigh: "xhigh";
853
+ high: "high";
854
854
  low: "low";
855
855
  none: "none";
856
856
  minimal: "minimal";
@@ -871,8 +871,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
871
871
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
872
872
  max: "max";
873
873
  medium: "medium";
874
- high: "high";
875
874
  xhigh: "xhigh";
875
+ high: "high";
876
876
  low: "low";
877
877
  none: "none";
878
878
  minimal: "minimal";
@@ -956,8 +956,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
956
956
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
957
957
  max: "max";
958
958
  medium: "medium";
959
- high: "high";
960
959
  xhigh: "xhigh";
960
+ high: "high";
961
961
  low: "low";
962
962
  none: "none";
963
963
  minimal: "minimal";
@@ -985,8 +985,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
985
985
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
986
986
  max: "max";
987
987
  medium: "medium";
988
- high: "high";
989
988
  xhigh: "xhigh";
989
+ high: "high";
990
990
  low: "low";
991
991
  none: "none";
992
992
  minimal: "minimal";
@@ -1007,8 +1007,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1007
1007
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1008
1008
  max: "max";
1009
1009
  medium: "medium";
1010
- high: "high";
1011
1010
  xhigh: "xhigh";
1011
+ high: "high";
1012
1012
  low: "low";
1013
1013
  none: "none";
1014
1014
  minimal: "minimal";
@@ -1092,8 +1092,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1092
1092
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1093
1093
  max: "max";
1094
1094
  medium: "medium";
1095
- high: "high";
1096
1095
  xhigh: "xhigh";
1096
+ high: "high";
1097
1097
  low: "low";
1098
1098
  none: "none";
1099
1099
  minimal: "minimal";
@@ -1121,8 +1121,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1121
1121
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1122
1122
  max: "max";
1123
1123
  medium: "medium";
1124
- high: "high";
1125
1124
  xhigh: "xhigh";
1125
+ high: "high";
1126
1126
  low: "low";
1127
1127
  none: "none";
1128
1128
  minimal: "minimal";
@@ -1143,8 +1143,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1143
1143
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1144
1144
  max: "max";
1145
1145
  medium: "medium";
1146
- high: "high";
1147
1146
  xhigh: "xhigh";
1147
+ high: "high";
1148
1148
  low: "low";
1149
1149
  none: "none";
1150
1150
  minimal: "minimal";
@@ -1228,8 +1228,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1228
1228
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1229
1229
  max: "max";
1230
1230
  medium: "medium";
1231
- high: "high";
1232
1231
  xhigh: "xhigh";
1232
+ high: "high";
1233
1233
  low: "low";
1234
1234
  none: "none";
1235
1235
  minimal: "minimal";
@@ -1257,8 +1257,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1257
1257
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1258
1258
  max: "max";
1259
1259
  medium: "medium";
1260
- high: "high";
1261
1260
  xhigh: "xhigh";
1261
+ high: "high";
1262
1262
  low: "low";
1263
1263
  none: "none";
1264
1264
  minimal: "minimal";
@@ -1279,8 +1279,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1279
1279
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1280
1280
  max: "max";
1281
1281
  medium: "medium";
1282
- high: "high";
1283
1282
  xhigh: "xhigh";
1283
+ high: "high";
1284
1284
  low: "low";
1285
1285
  none: "none";
1286
1286
  minimal: "minimal";
@@ -1364,8 +1364,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1364
1364
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1365
1365
  max: "max";
1366
1366
  medium: "medium";
1367
- high: "high";
1368
1367
  xhigh: "xhigh";
1368
+ high: "high";
1369
1369
  low: "low";
1370
1370
  none: "none";
1371
1371
  minimal: "minimal";
@@ -1393,8 +1393,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1393
1393
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1394
1394
  max: "max";
1395
1395
  medium: "medium";
1396
- high: "high";
1397
1396
  xhigh: "xhigh";
1397
+ high: "high";
1398
1398
  low: "low";
1399
1399
  none: "none";
1400
1400
  minimal: "minimal";
@@ -1415,8 +1415,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1415
1415
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1416
1416
  max: "max";
1417
1417
  medium: "medium";
1418
- high: "high";
1419
1418
  xhigh: "xhigh";
1419
+ high: "high";
1420
1420
  low: "low";
1421
1421
  none: "none";
1422
1422
  minimal: "minimal";
@@ -1500,8 +1500,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1500
1500
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1501
1501
  max: "max";
1502
1502
  medium: "medium";
1503
- high: "high";
1504
1503
  xhigh: "xhigh";
1504
+ high: "high";
1505
1505
  low: "low";
1506
1506
  none: "none";
1507
1507
  minimal: "minimal";
@@ -1529,8 +1529,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1529
1529
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1530
1530
  max: "max";
1531
1531
  medium: "medium";
1532
- high: "high";
1533
1532
  xhigh: "xhigh";
1533
+ high: "high";
1534
1534
  low: "low";
1535
1535
  none: "none";
1536
1536
  minimal: "minimal";
@@ -1551,8 +1551,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1551
1551
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1552
1552
  max: "max";
1553
1553
  medium: "medium";
1554
- high: "high";
1555
1554
  xhigh: "xhigh";
1555
+ high: "high";
1556
1556
  low: "low";
1557
1557
  none: "none";
1558
1558
  minimal: "minimal";
@@ -1636,8 +1636,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1636
1636
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1637
1637
  max: "max";
1638
1638
  medium: "medium";
1639
- high: "high";
1640
1639
  xhigh: "xhigh";
1640
+ high: "high";
1641
1641
  low: "low";
1642
1642
  none: "none";
1643
1643
  minimal: "minimal";
@@ -1665,8 +1665,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1665
1665
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1666
1666
  max: "max";
1667
1667
  medium: "medium";
1668
- high: "high";
1669
1668
  xhigh: "xhigh";
1669
+ high: "high";
1670
1670
  low: "low";
1671
1671
  none: "none";
1672
1672
  minimal: "minimal";
@@ -1687,8 +1687,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1687
1687
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1688
1688
  max: "max";
1689
1689
  medium: "medium";
1690
- high: "high";
1691
1690
  xhigh: "xhigh";
1691
+ high: "high";
1692
1692
  low: "low";
1693
1693
  none: "none";
1694
1694
  minimal: "minimal";
@@ -1772,8 +1772,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1772
1772
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1773
1773
  max: "max";
1774
1774
  medium: "medium";
1775
- high: "high";
1776
1775
  xhigh: "xhigh";
1776
+ high: "high";
1777
1777
  low: "low";
1778
1778
  none: "none";
1779
1779
  minimal: "minimal";
@@ -1801,8 +1801,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1801
1801
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1802
1802
  max: "max";
1803
1803
  medium: "medium";
1804
- high: "high";
1805
1804
  xhigh: "xhigh";
1805
+ high: "high";
1806
1806
  low: "low";
1807
1807
  none: "none";
1808
1808
  minimal: "minimal";
@@ -1823,8 +1823,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1823
1823
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1824
1824
  max: "max";
1825
1825
  medium: "medium";
1826
- high: "high";
1827
1826
  xhigh: "xhigh";
1827
+ high: "high";
1828
1828
  low: "low";
1829
1829
  none: "none";
1830
1830
  minimal: "minimal";
@@ -1908,8 +1908,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1908
1908
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1909
1909
  max: "max";
1910
1910
  medium: "medium";
1911
- high: "high";
1912
1911
  xhigh: "xhigh";
1912
+ high: "high";
1913
1913
  low: "low";
1914
1914
  none: "none";
1915
1915
  minimal: "minimal";
@@ -1937,8 +1937,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1937
1937
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1938
1938
  max: "max";
1939
1939
  medium: "medium";
1940
- high: "high";
1941
1940
  xhigh: "xhigh";
1941
+ high: "high";
1942
1942
  low: "low";
1943
1943
  none: "none";
1944
1944
  minimal: "minimal";
@@ -1959,8 +1959,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
1959
1959
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1960
1960
  max: "max";
1961
1961
  medium: "medium";
1962
- high: "high";
1963
1962
  xhigh: "xhigh";
1963
+ high: "high";
1964
1964
  low: "low";
1965
1965
  none: "none";
1966
1966
  minimal: "minimal";
@@ -2044,8 +2044,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
2044
2044
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
2045
2045
  max: "max";
2046
2046
  medium: "medium";
2047
- high: "high";
2048
2047
  xhigh: "xhigh";
2048
+ high: "high";
2049
2049
  low: "low";
2050
2050
  none: "none";
2051
2051
  minimal: "minimal";
@@ -2074,8 +2074,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
2074
2074
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
2075
2075
  max: "max";
2076
2076
  medium: "medium";
2077
- high: "high";
2078
2077
  xhigh: "xhigh";
2078
+ high: "high";
2079
2079
  low: "low";
2080
2080
  none: "none";
2081
2081
  minimal: "minimal";
@@ -2096,8 +2096,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
2096
2096
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
2097
2097
  max: "max";
2098
2098
  medium: "medium";
2099
- high: "high";
2100
2099
  xhigh: "xhigh";
2100
+ high: "high";
2101
2101
  low: "low";
2102
2102
  none: "none";
2103
2103
  minimal: "minimal";
@@ -2127,8 +2127,8 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
2127
2127
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
2128
2128
  max: "max";
2129
2129
  medium: "medium";
2130
- high: "high";
2131
2130
  xhigh: "xhigh";
2131
+ high: "high";
2132
2132
  low: "low";
2133
2133
  none: "none";
2134
2134
  minimal: "minimal";
@@ -2318,7 +2318,9 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
2318
2318
  codegraph: z.ZodOptional<z.ZodObject<{
2319
2319
  auto_init: z.ZodDefault<z.ZodBoolean>;
2320
2320
  auto_provision: z.ZodDefault<z.ZodBoolean>;
2321
+ daemon: z.ZodDefault<z.ZodBoolean>;
2321
2322
  enabled: z.ZodDefault<z.ZodBoolean>;
2323
+ excluded_roots: z.ZodOptional<z.ZodArray<z.ZodString>>;
2322
2324
  install_dir: z.ZodOptional<z.ZodString>;
2323
2325
  telemetry: z.ZodOptional<z.ZodBoolean>;
2324
2326
  watch_debounce_ms: z.ZodOptional<z.ZodNumber>;
@@ -1,4 +1,4 @@
1
- import { type BuildCodegraphEnvOptions, type CodegraphCommandResolution, type CodegraphNodeSupport, type CodegraphProvisionResult, type CodegraphWorkspacePreparation, type PrepareCodegraphWorkspaceOptions, type ResolveCodegraphCommandOptions } from "@oh-my-opencode/utils";
1
+ import { CODEGRAPH_PINNED_VERSION, type BuildCodegraphEnvOptions, type CodegraphCommandResolution, type CodegraphProjectExclusionDecision, type CodegraphProjectExclusionOptions, type CodegraphNodeSupport, type CodegraphProvisionResult, type CodegraphWorkspacePreparation, type PrepareCodegraphWorkspaceOptions, type ResolveCodegraphCommandOptions } from "@oh-my-opencode/utils";
2
2
  import type { CodegraphConfig } from "../../config";
3
3
  import type { CodegraphCommandResult } from "./command-runner";
4
4
  export interface CodegraphBootstrapContext {
@@ -13,10 +13,11 @@ export interface CodegraphBootstrapEventInput {
13
13
  export interface CodegraphBootstrapDeps {
14
14
  readonly buildEnv: (options?: BuildCodegraphEnvOptions) => Record<string, string>;
15
15
  readonly ensureGitignored: (projectRoot: string) => boolean;
16
+ readonly excludeProject: (projectRoot: string, options?: CodegraphProjectExclusionOptions) => CodegraphProjectExclusionDecision;
16
17
  readonly ensureProvisioned: (options: {
17
18
  readonly installDir?: string;
18
19
  readonly lockDir: string;
19
- readonly version: "1.0.1";
20
+ readonly version: typeof CODEGRAPH_PINNED_VERSION;
20
21
  }) => Promise<CodegraphProvisionResult>;
21
22
  readonly log: (message: string, data?: Record<string, unknown>) => void;
22
23
  readonly nodeSupport: () => CodegraphNodeSupport;
@@ -1,2 +1,2 @@
1
1
  export declare const HOOK_NAME = "sisyphus-junior-notepad";
2
- export declare const NOTEPAD_DIRECTIVE = "\n<Work_Context>\n## Notepad Location (for recording learnings)\nNOTEPAD PATH: .omo/notepads/{plan-name}/\n- learnings.md: Record patterns, conventions, successful approaches\n- issues.md: Record problems, blockers, gotchas encountered\n- decisions.md: Record architectural choices and rationales\n- problems.md: Record unresolved issues, technical debt\n\nYou SHOULD append findings to notepad files after completing work.\nIMPORTANT: Always APPEND to notepad files - never overwrite or use Edit tool.\n\n## Plan Location (subagent: READ ONLY)\nPLAN PATH: .omo/plans/{plan-name}.md\n\nSUBAGENT PLAN RESTRICTION (applies to YOU, the delegated worker \u2014 NOT to the Orchestrator):\n- You may READ the plan to understand your assigned tasks\n- You may READ checkbox items to know what to work on\n- You MUST NOT edit the plan file or mark checkboxes \u2014 that is the Orchestrator's job\n- The Orchestrator (Atlas) updates checkboxes after verifying your completed work\n</Work_Context>\n";
2
+ export declare const NOTEPAD_DIRECTIVE = "\n<Work_Context>\n## Notepad Location (for recording learnings)\nNOTEPAD PATH: .omo/notepads/{plan-name}/\n- learnings.md: Record patterns, conventions, successful approaches\n- issues.md: Record problems, blockers, gotchas encountered\n- decisions.md: Record architectural choices and rationales\n- problems.md: Record unresolved issues, technical debt\n\nYou SHOULD append findings to notepad files after completing work.\nNotepad files are auto-scaffolded by /start-work. APPEND only - use the `edit` tool (match-and-insert after the last line) or `bash` `>>`. Never use the `write` tool (blocked by notepad-write-guard) and never overwrite.\n\n## Plan Location (subagent: READ ONLY)\nPLAN PATH: .omo/plans/{plan-name}.md\n\nSUBAGENT PLAN RESTRICTION (applies to YOU, the delegated worker \u2014 NOT to the Orchestrator):\n- You may READ the plan to understand your assigned tasks\n- You may READ checkbox items to know what to work on\n- You MUST NOT edit the plan file or mark checkboxes \u2014 that is the Orchestrator's job\n- The Orchestrator (Atlas) updates checkboxes after verifying your completed work\n</Work_Context>\n";
@@ -0,0 +1,10 @@
1
+ export declare const NOTEPAD_FILES: readonly ["learnings.md", "decisions.md", "issues.md", "problems.md"];
2
+ export type NotepadFileName = (typeof NOTEPAD_FILES)[number];
3
+ export declare function ensureNotepadScaffold(params: {
4
+ readonly directory: string;
5
+ readonly planName: string;
6
+ readonly timestamp?: string;
7
+ }): {
8
+ created: string[];
9
+ skipped: string[];
10
+ };