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
@@ -7,8 +7,8 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
7
7
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
8
8
  max: "max";
9
9
  medium: "medium";
10
- high: "high";
11
10
  xhigh: "xhigh";
11
+ high: "high";
12
12
  low: "low";
13
13
  none: "none";
14
14
  minimal: "minimal";
@@ -29,8 +29,8 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
29
29
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
30
30
  max: "max";
31
31
  medium: "medium";
32
- high: "high";
33
32
  xhigh: "xhigh";
33
+ high: "high";
34
34
  low: "low";
35
35
  none: "none";
36
36
  minimal: "minimal";
@@ -114,8 +114,8 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
114
114
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
115
115
  max: "max";
116
116
  medium: "medium";
117
- high: "high";
118
117
  xhigh: "xhigh";
118
+ high: "high";
119
119
  low: "low";
120
120
  none: "none";
121
121
  minimal: "minimal";
@@ -144,8 +144,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
144
144
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
145
145
  max: "max";
146
146
  medium: "medium";
147
- high: "high";
148
147
  xhigh: "xhigh";
148
+ high: "high";
149
149
  low: "low";
150
150
  none: "none";
151
151
  minimal: "minimal";
@@ -166,8 +166,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
166
166
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
167
167
  max: "max";
168
168
  medium: "medium";
169
- high: "high";
170
169
  xhigh: "xhigh";
170
+ high: "high";
171
171
  low: "low";
172
172
  none: "none";
173
173
  minimal: "minimal";
@@ -251,8 +251,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
251
251
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
252
252
  max: "max";
253
253
  medium: "medium";
254
- high: "high";
255
254
  xhigh: "xhigh";
255
+ high: "high";
256
256
  low: "low";
257
257
  none: "none";
258
258
  minimal: "minimal";
@@ -280,8 +280,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
280
280
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
281
281
  max: "max";
282
282
  medium: "medium";
283
- high: "high";
284
283
  xhigh: "xhigh";
284
+ high: "high";
285
285
  low: "low";
286
286
  none: "none";
287
287
  minimal: "minimal";
@@ -302,8 +302,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
302
302
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
303
303
  max: "max";
304
304
  medium: "medium";
305
- high: "high";
306
305
  xhigh: "xhigh";
306
+ high: "high";
307
307
  low: "low";
308
308
  none: "none";
309
309
  minimal: "minimal";
@@ -387,8 +387,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
387
387
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
388
388
  max: "max";
389
389
  medium: "medium";
390
- high: "high";
391
390
  xhigh: "xhigh";
391
+ high: "high";
392
392
  low: "low";
393
393
  none: "none";
394
394
  minimal: "minimal";
@@ -416,8 +416,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
416
416
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
417
417
  max: "max";
418
418
  medium: "medium";
419
- high: "high";
420
419
  xhigh: "xhigh";
420
+ high: "high";
421
421
  low: "low";
422
422
  none: "none";
423
423
  minimal: "minimal";
@@ -438,8 +438,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
438
438
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
439
439
  max: "max";
440
440
  medium: "medium";
441
- high: "high";
442
441
  xhigh: "xhigh";
442
+ high: "high";
443
443
  low: "low";
444
444
  none: "none";
445
445
  minimal: "minimal";
@@ -523,8 +523,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
523
523
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
524
524
  max: "max";
525
525
  medium: "medium";
526
- high: "high";
527
526
  xhigh: "xhigh";
527
+ high: "high";
528
528
  low: "low";
529
529
  none: "none";
530
530
  minimal: "minimal";
@@ -552,8 +552,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
552
552
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
553
553
  max: "max";
554
554
  medium: "medium";
555
- high: "high";
556
555
  xhigh: "xhigh";
556
+ high: "high";
557
557
  low: "low";
558
558
  none: "none";
559
559
  minimal: "minimal";
@@ -574,8 +574,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
574
574
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
575
575
  max: "max";
576
576
  medium: "medium";
577
- high: "high";
578
577
  xhigh: "xhigh";
578
+ high: "high";
579
579
  low: "low";
580
580
  none: "none";
581
581
  minimal: "minimal";
@@ -659,8 +659,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
659
659
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
660
660
  max: "max";
661
661
  medium: "medium";
662
- high: "high";
663
662
  xhigh: "xhigh";
663
+ high: "high";
664
664
  low: "low";
665
665
  none: "none";
666
666
  minimal: "minimal";
@@ -689,8 +689,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
689
689
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
690
690
  max: "max";
691
691
  medium: "medium";
692
- high: "high";
693
692
  xhigh: "xhigh";
693
+ high: "high";
694
694
  low: "low";
695
695
  none: "none";
696
696
  minimal: "minimal";
@@ -711,8 +711,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
711
711
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
712
712
  max: "max";
713
713
  medium: "medium";
714
- high: "high";
715
714
  xhigh: "xhigh";
715
+ high: "high";
716
716
  low: "low";
717
717
  none: "none";
718
718
  minimal: "minimal";
@@ -796,8 +796,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
796
796
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
797
797
  max: "max";
798
798
  medium: "medium";
799
- high: "high";
800
799
  xhigh: "xhigh";
800
+ high: "high";
801
801
  low: "low";
802
802
  none: "none";
803
803
  minimal: "minimal";
@@ -825,8 +825,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
825
825
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
826
826
  max: "max";
827
827
  medium: "medium";
828
- high: "high";
829
828
  xhigh: "xhigh";
829
+ high: "high";
830
830
  low: "low";
831
831
  none: "none";
832
832
  minimal: "minimal";
@@ -847,8 +847,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
847
847
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
848
848
  max: "max";
849
849
  medium: "medium";
850
- high: "high";
851
850
  xhigh: "xhigh";
851
+ high: "high";
852
852
  low: "low";
853
853
  none: "none";
854
854
  minimal: "minimal";
@@ -932,8 +932,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
932
932
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
933
933
  max: "max";
934
934
  medium: "medium";
935
- high: "high";
936
935
  xhigh: "xhigh";
936
+ high: "high";
937
937
  low: "low";
938
938
  none: "none";
939
939
  minimal: "minimal";
@@ -961,8 +961,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
961
961
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
962
962
  max: "max";
963
963
  medium: "medium";
964
- high: "high";
965
964
  xhigh: "xhigh";
965
+ high: "high";
966
966
  low: "low";
967
967
  none: "none";
968
968
  minimal: "minimal";
@@ -983,8 +983,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
983
983
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
984
984
  max: "max";
985
985
  medium: "medium";
986
- high: "high";
987
986
  xhigh: "xhigh";
987
+ high: "high";
988
988
  low: "low";
989
989
  none: "none";
990
990
  minimal: "minimal";
@@ -1068,8 +1068,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1068
1068
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1069
1069
  max: "max";
1070
1070
  medium: "medium";
1071
- high: "high";
1072
1071
  xhigh: "xhigh";
1072
+ high: "high";
1073
1073
  low: "low";
1074
1074
  none: "none";
1075
1075
  minimal: "minimal";
@@ -1097,8 +1097,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1097
1097
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1098
1098
  max: "max";
1099
1099
  medium: "medium";
1100
- high: "high";
1101
1100
  xhigh: "xhigh";
1101
+ high: "high";
1102
1102
  low: "low";
1103
1103
  none: "none";
1104
1104
  minimal: "minimal";
@@ -1119,8 +1119,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1119
1119
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1120
1120
  max: "max";
1121
1121
  medium: "medium";
1122
- high: "high";
1123
1122
  xhigh: "xhigh";
1123
+ high: "high";
1124
1124
  low: "low";
1125
1125
  none: "none";
1126
1126
  minimal: "minimal";
@@ -1204,8 +1204,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1204
1204
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1205
1205
  max: "max";
1206
1206
  medium: "medium";
1207
- high: "high";
1208
1207
  xhigh: "xhigh";
1208
+ high: "high";
1209
1209
  low: "low";
1210
1210
  none: "none";
1211
1211
  minimal: "minimal";
@@ -1233,8 +1233,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1233
1233
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1234
1234
  max: "max";
1235
1235
  medium: "medium";
1236
- high: "high";
1237
1236
  xhigh: "xhigh";
1237
+ high: "high";
1238
1238
  low: "low";
1239
1239
  none: "none";
1240
1240
  minimal: "minimal";
@@ -1255,8 +1255,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1255
1255
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1256
1256
  max: "max";
1257
1257
  medium: "medium";
1258
- high: "high";
1259
1258
  xhigh: "xhigh";
1259
+ high: "high";
1260
1260
  low: "low";
1261
1261
  none: "none";
1262
1262
  minimal: "minimal";
@@ -1340,8 +1340,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1340
1340
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1341
1341
  max: "max";
1342
1342
  medium: "medium";
1343
- high: "high";
1344
1343
  xhigh: "xhigh";
1344
+ high: "high";
1345
1345
  low: "low";
1346
1346
  none: "none";
1347
1347
  minimal: "minimal";
@@ -1369,8 +1369,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1369
1369
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1370
1370
  max: "max";
1371
1371
  medium: "medium";
1372
- high: "high";
1373
1372
  xhigh: "xhigh";
1373
+ high: "high";
1374
1374
  low: "low";
1375
1375
  none: "none";
1376
1376
  minimal: "minimal";
@@ -1391,8 +1391,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1391
1391
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1392
1392
  max: "max";
1393
1393
  medium: "medium";
1394
- high: "high";
1395
1394
  xhigh: "xhigh";
1395
+ high: "high";
1396
1396
  low: "low";
1397
1397
  none: "none";
1398
1398
  minimal: "minimal";
@@ -1476,8 +1476,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1476
1476
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1477
1477
  max: "max";
1478
1478
  medium: "medium";
1479
- high: "high";
1480
1479
  xhigh: "xhigh";
1480
+ high: "high";
1481
1481
  low: "low";
1482
1482
  none: "none";
1483
1483
  minimal: "minimal";
@@ -1505,8 +1505,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1505
1505
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1506
1506
  max: "max";
1507
1507
  medium: "medium";
1508
- high: "high";
1509
1508
  xhigh: "xhigh";
1509
+ high: "high";
1510
1510
  low: "low";
1511
1511
  none: "none";
1512
1512
  minimal: "minimal";
@@ -1527,8 +1527,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1527
1527
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1528
1528
  max: "max";
1529
1529
  medium: "medium";
1530
- high: "high";
1531
1530
  xhigh: "xhigh";
1531
+ high: "high";
1532
1532
  low: "low";
1533
1533
  none: "none";
1534
1534
  minimal: "minimal";
@@ -1612,8 +1612,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1612
1612
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1613
1613
  max: "max";
1614
1614
  medium: "medium";
1615
- high: "high";
1616
1615
  xhigh: "xhigh";
1616
+ high: "high";
1617
1617
  low: "low";
1618
1618
  none: "none";
1619
1619
  minimal: "minimal";
@@ -1641,8 +1641,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1641
1641
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1642
1642
  max: "max";
1643
1643
  medium: "medium";
1644
- high: "high";
1645
1644
  xhigh: "xhigh";
1645
+ high: "high";
1646
1646
  low: "low";
1647
1647
  none: "none";
1648
1648
  minimal: "minimal";
@@ -1663,8 +1663,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1663
1663
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1664
1664
  max: "max";
1665
1665
  medium: "medium";
1666
- high: "high";
1667
1666
  xhigh: "xhigh";
1667
+ high: "high";
1668
1668
  low: "low";
1669
1669
  none: "none";
1670
1670
  minimal: "minimal";
@@ -1748,8 +1748,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1748
1748
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1749
1749
  max: "max";
1750
1750
  medium: "medium";
1751
- high: "high";
1752
1751
  xhigh: "xhigh";
1752
+ high: "high";
1753
1753
  low: "low";
1754
1754
  none: "none";
1755
1755
  minimal: "minimal";
@@ -1777,8 +1777,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1777
1777
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1778
1778
  max: "max";
1779
1779
  medium: "medium";
1780
- high: "high";
1781
1780
  xhigh: "xhigh";
1781
+ high: "high";
1782
1782
  low: "low";
1783
1783
  none: "none";
1784
1784
  minimal: "minimal";
@@ -1799,8 +1799,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1799
1799
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1800
1800
  max: "max";
1801
1801
  medium: "medium";
1802
- high: "high";
1803
1802
  xhigh: "xhigh";
1803
+ high: "high";
1804
1804
  low: "low";
1805
1805
  none: "none";
1806
1806
  minimal: "minimal";
@@ -1884,8 +1884,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1884
1884
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1885
1885
  max: "max";
1886
1886
  medium: "medium";
1887
- high: "high";
1888
1887
  xhigh: "xhigh";
1888
+ high: "high";
1889
1889
  low: "low";
1890
1890
  none: "none";
1891
1891
  minimal: "minimal";
@@ -1913,8 +1913,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1913
1913
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1914
1914
  max: "max";
1915
1915
  medium: "medium";
1916
- high: "high";
1917
1916
  xhigh: "xhigh";
1917
+ high: "high";
1918
1918
  low: "low";
1919
1919
  none: "none";
1920
1920
  minimal: "minimal";
@@ -1935,8 +1935,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
1935
1935
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
1936
1936
  max: "max";
1937
1937
  medium: "medium";
1938
- high: "high";
1939
1938
  xhigh: "xhigh";
1939
+ high: "high";
1940
1940
  low: "low";
1941
1941
  none: "none";
1942
1942
  minimal: "minimal";
@@ -2020,8 +2020,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
2020
2020
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
2021
2021
  max: "max";
2022
2022
  medium: "medium";
2023
- high: "high";
2024
2023
  xhigh: "xhigh";
2024
+ high: "high";
2025
2025
  low: "low";
2026
2026
  none: "none";
2027
2027
  minimal: "minimal";
@@ -2049,8 +2049,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
2049
2049
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
2050
2050
  max: "max";
2051
2051
  medium: "medium";
2052
- high: "high";
2053
2052
  xhigh: "xhigh";
2053
+ high: "high";
2054
2054
  low: "low";
2055
2055
  none: "none";
2056
2056
  minimal: "minimal";
@@ -2071,8 +2071,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
2071
2071
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
2072
2072
  max: "max";
2073
2073
  medium: "medium";
2074
- high: "high";
2075
2074
  xhigh: "xhigh";
2075
+ high: "high";
2076
2076
  low: "low";
2077
2077
  none: "none";
2078
2078
  minimal: "minimal";
@@ -2156,8 +2156,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
2156
2156
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
2157
2157
  max: "max";
2158
2158
  medium: "medium";
2159
- high: "high";
2160
2159
  xhigh: "xhigh";
2160
+ high: "high";
2161
2161
  low: "low";
2162
2162
  none: "none";
2163
2163
  minimal: "minimal";
@@ -8,8 +8,8 @@ export declare const CategoryConfigSchema: z.ZodObject<{
8
8
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
9
9
  max: "max";
10
10
  medium: "medium";
11
- high: "high";
12
11
  xhigh: "xhigh";
12
+ high: "high";
13
13
  low: "low";
14
14
  none: "none";
15
15
  minimal: "minimal";
@@ -30,8 +30,8 @@ export declare const CategoryConfigSchema: z.ZodObject<{
30
30
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
31
31
  max: "max";
32
32
  medium: "medium";
33
- high: "high";
34
33
  xhigh: "xhigh";
34
+ high: "high";
35
35
  low: "low";
36
36
  none: "none";
37
37
  minimal: "minimal";
@@ -61,8 +61,8 @@ export declare const CategoryConfigSchema: z.ZodObject<{
61
61
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
62
62
  max: "max";
63
63
  medium: "medium";
64
- high: "high";
65
64
  xhigh: "xhigh";
65
+ high: "high";
66
66
  low: "low";
67
67
  none: "none";
68
68
  minimal: "minimal";
@@ -97,8 +97,8 @@ export declare const CategoriesConfigSchema: z.ZodRecord<z.ZodString, z.ZodObjec
97
97
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
98
98
  max: "max";
99
99
  medium: "medium";
100
- high: "high";
101
100
  xhigh: "xhigh";
101
+ high: "high";
102
102
  low: "low";
103
103
  none: "none";
104
104
  minimal: "minimal";
@@ -119,8 +119,8 @@ export declare const CategoriesConfigSchema: z.ZodRecord<z.ZodString, z.ZodObjec
119
119
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
120
120
  max: "max";
121
121
  medium: "medium";
122
- high: "high";
123
122
  xhigh: "xhigh";
123
+ high: "high";
124
124
  low: "low";
125
125
  none: "none";
126
126
  minimal: "minimal";
@@ -150,8 +150,8 @@ export declare const CategoriesConfigSchema: z.ZodRecord<z.ZodString, z.ZodObjec
150
150
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
151
151
  max: "max";
152
152
  medium: "medium";
153
- high: "high";
154
153
  xhigh: "xhigh";
154
+ high: "high";
155
155
  low: "low";
156
156
  none: "none";
157
157
  minimal: "minimal";
@@ -2,7 +2,9 @@ import { z } from "zod";
2
2
  export declare const CodegraphConfigSchema: z.ZodObject<{
3
3
  auto_init: z.ZodDefault<z.ZodBoolean>;
4
4
  auto_provision: z.ZodDefault<z.ZodBoolean>;
5
+ daemon: z.ZodDefault<z.ZodBoolean>;
5
6
  enabled: z.ZodDefault<z.ZodBoolean>;
7
+ excluded_roots: z.ZodOptional<z.ZodArray<z.ZodString>>;
6
8
  install_dir: z.ZodOptional<z.ZodString>;
7
9
  telemetry: z.ZodOptional<z.ZodBoolean>;
8
10
  watch_debounce_ms: z.ZodOptional<z.ZodNumber>;
@@ -5,8 +5,8 @@ export declare const FallbackModelObjectSchema: z.ZodObject<{
5
5
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
6
6
  max: "max";
7
7
  medium: "medium";
8
- high: "high";
9
8
  xhigh: "xhigh";
9
+ high: "high";
10
10
  low: "low";
11
11
  none: "none";
12
12
  minimal: "minimal";
@@ -30,8 +30,8 @@ export declare const FallbackModelObjectArraySchema: z.ZodArray<z.ZodObject<{
30
30
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
31
31
  max: "max";
32
32
  medium: "medium";
33
- high: "high";
34
33
  xhigh: "xhigh";
34
+ high: "high";
35
35
  low: "low";
36
36
  none: "none";
37
37
  minimal: "minimal";
@@ -53,8 +53,8 @@ export declare const FallbackModelMixedArraySchema: z.ZodArray<z.ZodUnion<readon
53
53
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
54
54
  max: "max";
55
55
  medium: "medium";
56
- high: "high";
57
56
  xhigh: "xhigh";
57
+ high: "high";
58
58
  low: "low";
59
59
  none: "none";
60
60
  minimal: "minimal";
@@ -76,8 +76,8 @@ export declare const FallbackModelsSchema: z.ZodUnion<readonly [z.ZodString, z.Z
76
76
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
77
77
  max: "max";
78
78
  medium: "medium";
79
- high: "high";
80
79
  xhigh: "xhigh";
80
+ high: "high";
81
81
  low: "low";
82
82
  none: "none";
83
83
  minimal: "minimal";
@@ -98,8 +98,8 @@ export declare const FallbackModelsSchema: z.ZodUnion<readonly [z.ZodString, z.Z
98
98
  reasoningEffort: z.ZodOptional<z.ZodEnum<{
99
99
  max: "max";
100
100
  medium: "medium";
101
- high: "high";
102
101
  xhigh: "xhigh";
102
+ high: "high";
103
103
  low: "low";
104
104
  none: "none";
105
105
  minimal: "minimal";