oh-my-opencode 5.0.0-beta.31 → 5.0.0-beta.33

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 (227) hide show
  1. package/dist/cli/index.js +136 -44
  2. package/dist/cli-node/index.js +136 -44
  3. package/dist/features/background-agent/parent-wake-notifier-types.d.ts +1 -1
  4. package/dist/features/background-agent/parent-wake-prompt-dispatch.d.ts +1 -1
  5. package/dist/features/background-agent/parent-wake-session-inspector.d.ts +1 -1
  6. package/dist/features/monitor/manager-internals.d.ts +1 -1
  7. package/dist/features/monitor/output-injector-types.d.ts +1 -1
  8. package/dist/features/team-mode/tools/messaging-live-delivery-recipient.d.ts +1 -0
  9. package/dist/features/team-mode/tools/messaging-runtime.d.ts +1 -0
  10. package/dist/hooks/anthropic-context-window-limit-recovery/tool-result-storage.d.ts +11 -0
  11. package/dist/index.js +286 -99
  12. package/dist/skills/ultimate-browsing/references/insane-search/README.md +9 -2
  13. package/dist/tools/session-manager/directory-filter.d.ts +2 -0
  14. package/dist/tui.js +109 -23
  15. package/package.json +16 -15
  16. package/packages/lsp-core/src/lsp/client-diagnostics-freshness.integration.test.ts +47 -19
  17. package/packages/lsp-core/src/lsp/client-diagnostics-pull-timeout.test.ts +64 -0
  18. package/packages/lsp-core/src/lsp/client.ts +6 -3
  19. package/packages/lsp-core/src/lsp/controlled-clock-test-support.ts +61 -0
  20. package/packages/lsp-core/src/lsp/fixtures/workspace-edit-server.mjs +10 -3
  21. package/packages/lsp-core/src/lsp/timer-provider.ts +13 -0
  22. package/packages/lsp-core/src/lsp/transport-request-timeout.test.ts +73 -0
  23. package/packages/lsp-core/src/lsp/transport.ts +7 -2
  24. package/packages/lsp-core/src/lsp/workspace-document-state.test.ts +84 -1
  25. package/packages/lsp-core/src/lsp/workspace-document-state.ts +30 -11
  26. package/packages/lsp-core/src/tools/parameters.test.ts +51 -0
  27. package/packages/lsp-daemon/dist/cli.js +41 -16
  28. package/packages/lsp-daemon/dist/client.js +41 -16
  29. package/packages/lsp-daemon/dist/index.js +41 -16
  30. package/packages/lsp-tools-mcp/dist/cli.js +41 -16
  31. package/packages/lsp-tools-mcp/dist/lsp/manager.js +41 -16
  32. package/packages/lsp-tools-mcp/dist/mcp.js +41 -16
  33. package/packages/lsp-tools-mcp/dist/tools.js +41 -16
  34. package/packages/lsp-tools-mcp/package.json +1 -1
  35. package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -1
  36. package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
  37. package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
  38. package/packages/omo-codex/plugin/components/codegraph/dist/cli.js +3 -17
  39. package/packages/omo-codex/plugin/components/codegraph/dist/serve.js +3 -17
  40. package/packages/omo-codex/plugin/components/codegraph/package.json +1 -1
  41. package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
  42. package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
  43. package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
  44. package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
  45. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
  46. package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +1 -1
  47. package/packages/omo-codex/plugin/components/lsp/dist/.omo-runtime-manifest.json +3 -3
  48. package/packages/omo-codex/plugin/components/lsp/dist/cli.js +39 -16
  49. package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
  50. package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
  51. package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
  52. package/packages/omo-codex/plugin/components/rules/package.json +1 -1
  53. package/packages/omo-codex/plugin/components/teammode/hooks/hooks.json +1 -1
  54. package/packages/omo-codex/plugin/components/teammode/package.json +1 -1
  55. package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
  56. package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
  57. package/packages/omo-codex/plugin/components/ultrawork/AGENTS.md +5 -4
  58. package/packages/omo-codex/plugin/components/ultrawork/dist/cli.js +489 -4
  59. package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
  60. package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -2
  61. package/packages/omo-codex/plugin/components/ultrawork/scripts/sync-directive.mjs +30 -14
  62. package/packages/omo-codex/plugin/components/ultrawork/src/directive-content.ts +4 -0
  63. package/packages/omo-codex/plugin/components/ultrawork/src/directive.ts +5 -2
  64. package/packages/omo-codex/plugin/components/ultrawork/test/directive-source.test.ts +14 -8
  65. package/packages/omo-codex/plugin/components/ultrawork/test/package-smoke.test.ts +12 -1
  66. package/packages/omo-codex/plugin/components/ulw-execute-continuation/hooks/hooks.json +2 -2
  67. package/packages/omo-codex/plugin/components/ulw-execute-continuation/package.json +1 -1
  68. package/packages/omo-codex/plugin/components/ulw-loop/AGENTS.md +4 -2
  69. package/packages/omo-codex/plugin/components/ulw-loop/README.md +1 -0
  70. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-continuation.js +9 -0
  71. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-reconciliation.d.ts +14 -0
  72. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-reconciliation.js +10 -1
  73. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-template.d.ts +8 -0
  74. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-template.js +113 -0
  75. package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint.js +7 -5
  76. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-commands.js +2 -1
  77. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.d.ts +1 -1
  78. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.js +1 -0
  79. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-subcommands.js +2 -0
  80. package/packages/omo-codex/plugin/components/ulw-loop/dist/cli.js +775 -312
  81. package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-instruction.js +18 -0
  82. package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-snapshot.d.ts +13 -0
  83. package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-snapshot.js +14 -0
  84. package/packages/omo-codex/plugin/components/ulw-loop/dist/domain-types.d.ts +17 -9
  85. package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-io.js +17 -2
  86. package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-missing-recovery.d.ts +13 -0
  87. package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-missing-recovery.js +19 -0
  88. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-aggregate.d.ts +2 -0
  89. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-aggregate.js +53 -0
  90. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-artifacts.d.ts +9 -0
  91. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-artifacts.js +85 -0
  92. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-fields.js +1 -1
  93. package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate.js +41 -99
  94. package/packages/omo-codex/plugin/components/ulw-loop/dist/review-blockers.js +4 -2
  95. package/packages/omo-codex/plugin/components/ulw-loop/dist/spawn-guard.js +184 -14
  96. package/packages/omo-codex/plugin/components/ulw-loop/dist/status-next-actions.d.ts +6 -0
  97. package/packages/omo-codex/plugin/components/ulw-loop/dist/status-next-actions.js +33 -0
  98. package/packages/omo-codex/plugin/components/ulw-loop/dist/surface.d.ts +3 -0
  99. package/packages/omo-codex/plugin/components/ulw-loop/dist/surface.js +15 -0
  100. package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +4 -4
  101. package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
  102. package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/full-workflow.md +17 -0
  103. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-continuation.ts +7 -0
  104. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-reconciliation.ts +25 -1
  105. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-template.ts +127 -0
  106. package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint.ts +8 -12
  107. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-commands.ts +2 -1
  108. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-output.ts +1 -0
  109. package/packages/omo-codex/plugin/components/ulw-loop/src/cli-subcommands.ts +2 -0
  110. package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-instruction.ts +18 -0
  111. package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-snapshot.ts +23 -0
  112. package/packages/omo-codex/plugin/components/ulw-loop/src/domain-types.ts +19 -9
  113. package/packages/omo-codex/plugin/components/ulw-loop/src/plan-io.ts +18 -3
  114. package/packages/omo-codex/plugin/components/ulw-loop/src/plan-missing-recovery.ts +27 -0
  115. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-aggregate.ts +57 -0
  116. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-artifacts.ts +103 -0
  117. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-fields.ts +1 -1
  118. package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate.ts +50 -116
  119. package/packages/omo-codex/plugin/components/ulw-loop/src/review-blockers.ts +4 -2
  120. package/packages/omo-codex/plugin/components/ulw-loop/src/spawn-guard.ts +186 -12
  121. package/packages/omo-codex/plugin/components/ulw-loop/src/status-next-actions.ts +36 -0
  122. package/packages/omo-codex/plugin/components/ulw-loop/src/surface.ts +22 -0
  123. package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-final.test.ts +66 -3
  124. package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-template.test.ts +92 -0
  125. package/packages/omo-codex/plugin/components/ulw-loop/test/cli-status-next-actions.test.ts +183 -0
  126. package/packages/omo-codex/plugin/components/ulw-loop/test/codex-goal-instruction.test.ts +13 -3
  127. package/packages/omo-codex/plugin/components/ulw-loop/test/guided-recovery.test.ts +105 -0
  128. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-aggregate.test.ts +101 -0
  129. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-roles.test.ts +16 -15
  130. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-senpi-surface.test.ts +131 -0
  131. package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate.test.ts +5 -0
  132. package/packages/omo-codex/plugin/components/ulw-loop/test/spawn-guard.test.ts +300 -3
  133. package/packages/omo-codex/plugin/components/ulw-loop/test/ultrawork-directive.test.ts +9 -3
  134. package/packages/omo-codex/plugin/hooks/post-compact-resetting-git-bash-mcp-reminder.json +1 -1
  135. package/packages/omo-codex/plugin/hooks/post-compact-resetting-lsp-diagnostics-cache.json +1 -1
  136. package/packages/omo-codex/plugin/hooks/post-compact-resetting-project-rule-cache.json +1 -1
  137. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-codegraph-init-guidance.json +1 -1
  138. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-comments.json +1 -1
  139. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-lsp-diagnostics.json +1 -1
  140. package/packages/omo-codex/plugin/hooks/post-tool-use-checking-thread-title-hygiene.json +1 -1
  141. package/packages/omo-codex/plugin/hooks/post-tool-use-matching-project-rules.json +1 -1
  142. package/packages/omo-codex/plugin/hooks/pre-tool-use-enforcing-unlimited-goal-budget.json +1 -1
  143. package/packages/omo-codex/plugin/hooks/pre-tool-use-guarding-ulw-loop-spawns.json +1 -1
  144. package/packages/omo-codex/plugin/hooks/pre-tool-use-recommending-git-bash-mcp.json +1 -1
  145. package/packages/omo-codex/plugin/hooks/session-start-checking-auto-update.json +1 -1
  146. package/packages/omo-codex/plugin/hooks/session-start-checking-bootstrap-provisioning.json +1 -1
  147. package/packages/omo-codex/plugin/hooks/session-start-checking-codegraph-bootstrap.json +1 -1
  148. package/packages/omo-codex/plugin/hooks/session-start-loading-project-rules.json +1 -1
  149. package/packages/omo-codex/plugin/hooks/session-start-recording-session-telemetry.json +1 -1
  150. package/packages/omo-codex/plugin/hooks/stop-checking-ulw-execute-continuation.json +1 -1
  151. package/packages/omo-codex/plugin/hooks/stop-checking-ulw-loop-resume.json +1 -1
  152. package/packages/omo-codex/plugin/hooks/subagent-stop-checking-ulw-execute-continuation.json +1 -1
  153. package/packages/omo-codex/plugin/hooks/subagent-stop-verifying-lazycodex-executor-evidence.json +1 -1
  154. package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ultrawork-trigger.json +1 -1
  155. package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ulw-loop-steering.json +1 -1
  156. package/packages/omo-codex/plugin/hooks/user-prompt-submit-loading-project-rules.json +1 -1
  157. package/packages/omo-codex/plugin/package-lock.json +13 -13
  158. package/packages/omo-codex/plugin/package.json +1 -1
  159. package/packages/omo-codex/plugin/scripts/sync-skills.mjs +31 -2
  160. package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/README.md +9 -2
  161. package/packages/omo-codex/plugin/skills/ulw-loop/references/full-workflow.md +17 -0
  162. package/packages/omo-codex/plugin/test/sync-skills-test-support.mjs +11 -1
  163. package/packages/omo-codex/plugin/test/sync-skills.test.mjs +13 -0
  164. package/packages/omo-codex/plugin/test/ultrawork-skill-pointer.test.mjs +5 -2
  165. package/packages/omo-codex/scripts/install-dist/install-local.mjs +2 -2
  166. package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/README.md +9 -2
  167. package/dist/features/builtin-skills/index.d.ts +0 -1
  168. package/dist/features/builtin-skills/skill-file-loader.d.ts +0 -1
  169. package/dist/features/builtin-skills/skills/agent-browser-skill.d.ts +0 -1
  170. package/dist/features/builtin-skills/skills/agent-browser-template.d.ts +0 -1
  171. package/dist/features/builtin-skills/skills/debugging.d.ts +0 -1
  172. package/dist/features/builtin-skills/skills/dev-browser.d.ts +0 -1
  173. package/dist/features/builtin-skills/skills/frontend.d.ts +0 -1
  174. package/dist/features/builtin-skills/skills/git-master-sections/commit-atomic-planning.d.ts +0 -1
  175. package/dist/features/builtin-skills/skills/git-master-sections/commit-context-analysis.d.ts +0 -1
  176. package/dist/features/builtin-skills/skills/git-master-sections/commit-execution-verification.d.ts +0 -1
  177. package/dist/features/builtin-skills/skills/git-master-sections/commit-workflow.d.ts +0 -1
  178. package/dist/features/builtin-skills/skills/git-master-sections/history-search-workflow.d.ts +0 -1
  179. package/dist/features/builtin-skills/skills/git-master-sections/overview.d.ts +0 -1
  180. package/dist/features/builtin-skills/skills/git-master-sections/quick-reference.d.ts +0 -1
  181. package/dist/features/builtin-skills/skills/git-master-sections/rebase-workflow.d.ts +0 -1
  182. package/dist/features/builtin-skills/skills/git-master-skill-metadata.d.ts +0 -1
  183. package/dist/features/builtin-skills/skills/git-master.d.ts +0 -1
  184. package/dist/features/builtin-skills/skills/index.d.ts +0 -1
  185. package/dist/features/builtin-skills/skills/init-deep.d.ts +0 -1
  186. package/dist/features/builtin-skills/skills/playwright-cli.d.ts +0 -1
  187. package/dist/features/builtin-skills/skills/playwright-mcp-skill.d.ts +0 -1
  188. package/dist/features/builtin-skills/skills/playwright.d.ts +0 -1
  189. package/dist/features/builtin-skills/skills/remove-ai-slops.d.ts +0 -1
  190. package/dist/features/builtin-skills/skills/review-work.d.ts +0 -1
  191. package/dist/features/builtin-skills/skills/security-research.d.ts +0 -1
  192. package/dist/features/builtin-skills/skills/security-review.d.ts +0 -1
  193. package/dist/features/builtin-skills/skills/team-mode.d.ts +0 -1
  194. package/dist/features/builtin-skills/skills/visual-qa.d.ts +0 -1
  195. package/dist/features/builtin-skills/skills.d.ts +0 -1
  196. package/dist/features/builtin-skills/types.d.ts +0 -1
  197. package/dist/features/claude-code-plugin-loader/agent-loader.d.ts +0 -1
  198. package/dist/features/claude-code-plugin-loader/command-loader.d.ts +0 -1
  199. package/dist/features/claude-code-plugin-loader/discovery-core.d.ts +0 -1
  200. package/dist/features/claude-code-plugin-loader/discovery-paths.d.ts +0 -1
  201. package/dist/features/claude-code-plugin-loader/discovery.d.ts +0 -1
  202. package/dist/features/claude-code-plugin-loader/hook-loader.d.ts +0 -1
  203. package/dist/features/claude-code-plugin-loader/index.d.ts +0 -1
  204. package/dist/features/claude-code-plugin-loader/install-path-resolver.d.ts +0 -1
  205. package/dist/features/claude-code-plugin-loader/installed-plugin-database.d.ts +0 -1
  206. package/dist/features/claude-code-plugin-loader/loaded-plugin.d.ts +0 -1
  207. package/dist/features/claude-code-plugin-loader/loader.d.ts +0 -1
  208. package/dist/features/claude-code-plugin-loader/mcp-server-loader.d.ts +0 -1
  209. package/dist/features/claude-code-plugin-loader/plugin-key.d.ts +0 -1
  210. package/dist/features/claude-code-plugin-loader/plugin-manifest.d.ts +0 -1
  211. package/dist/features/claude-code-plugin-loader/plugin-path-resolver.d.ts +0 -1
  212. package/dist/features/claude-code-plugin-loader/plugin-settings.d.ts +0 -1
  213. package/dist/features/claude-code-plugin-loader/scope-filter.d.ts +0 -1
  214. package/dist/features/claude-code-plugin-loader/skill-loader.d.ts +0 -1
  215. package/dist/features/claude-code-plugin-loader/types.d.ts +0 -1
  216. package/dist/shared/prompt-async-gate/message-inspection-error.d.ts +0 -1
  217. package/dist/shared/prompt-async-gate/pending-tool-turn.d.ts +0 -1
  218. package/dist/shared/prompt-async-gate/prompt-message-state.d.ts +0 -1
  219. package/dist/shared/prompt-async-gate/queue.d.ts +0 -1
  220. package/dist/shared/prompt-async-gate/recent-dispatches.d.ts +0 -1
  221. package/dist/shared/prompt-async-gate/reservations.d.ts +0 -1
  222. package/dist/shared/prompt-async-gate/semantic-dedupe.d.ts +0 -1
  223. package/dist/shared/prompt-async-gate/session-idle-dispatch.d.ts +0 -1
  224. package/dist/shared/prompt-async-gate/timing.d.ts +0 -1
  225. package/dist/shared/prompt-async-gate/types.d.ts +0 -1
  226. package/packages/omo-codex/plugin/components/ultrawork/directive.md +0 -483
  227. package/packages/omo-codex/plugin/components/ultrawork/skills/ultrawork/SKILL.md +0 -490
package/dist/cli/index.js CHANGED
@@ -54,7 +54,7 @@ var package_default;
54
54
  var init_package = __esm(() => {
55
55
  package_default = {
56
56
  name: "oh-my-opencode",
57
- version: "5.0.0-beta.31",
57
+ version: "5.0.0-beta.33",
58
58
  description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
59
59
  main: "./dist/index.js",
60
60
  types: "dist/index.d.ts",
@@ -167,6 +167,7 @@ var init_package = __esm(() => {
167
167
  "install:codex-dev": "bun run script/build-codex-install.ts && bun run script/install-codex-dev.ts",
168
168
  "build:codex-plugin": "npm --prefix packages/omo-codex/plugin ci && bun run --cwd packages/omo-codex/plugin build",
169
169
  "build:senpi-plugin": "bun run build:lsp-daemon && bun run build:ast-grep-mcp && bun run build:senpi-plugin:stage",
170
+ "build:senpi-plugin:native": "node packages/omo-senpi/plugin/scripts/stage-lsp-daemon-runtime.mjs && node packages/omo-senpi/plugin/scripts/stage-ast-grep-mcp-runtime.mjs && node packages/omo-senpi/plugin/scripts/stage-agent-toolkit.mjs && node packages/omo-senpi/plugin/scripts/build-extension.mjs && node packages/omo-senpi/plugin/scripts/sync-skills.mjs && node packages/omo-senpi/plugin/scripts/embed-directive.mjs --check && node packages/omo-senpi/plugin/scripts/build-install.mjs",
170
171
  "build:senpi-plugin:stage": "bun run build:materialize-frontend && node packages/omo-senpi/plugin/scripts/stage-lsp-daemon-runtime.mjs && node packages/omo-senpi/plugin/scripts/stage-ast-grep-mcp-runtime.mjs && node packages/omo-senpi/plugin/scripts/stage-agent-toolkit.mjs && node packages/omo-senpi/plugin/scripts/build-extension.mjs && node packages/omo-senpi/plugin/scripts/sync-skills.mjs && node packages/omo-senpi/plugin/scripts/embed-directive.mjs --check && node packages/omo-senpi/plugin/scripts/build-install.mjs",
171
172
  "build:materialize-frontend": "node packages/omo-codex/plugin/scripts/materialize-shared-upstreams.mjs --strict",
172
173
  "build:shared-skills-assets": "bun run build:materialize-frontend && rm -rf dist/skills && cp -R packages/shared-skills/skills dist/skills",
@@ -235,7 +236,7 @@ var init_package = __esm(() => {
235
236
  zod: "^4.4.3"
236
237
  },
237
238
  devDependencies: {
238
- "@code-yeongyu/senpi": "2026.8.31",
239
+ "@code-yeongyu/senpi": "2026.9.2",
239
240
  "@oh-my-opencode/agents-md-core": "workspace:*",
240
241
  "@oh-my-opencode/ast-grep-mcp": "workspace:*",
241
242
  "@oh-my-opencode/boulder-state": "workspace:*",
@@ -276,18 +277,18 @@ var init_package = __esm(() => {
276
277
  typescript: "^7.0.2"
277
278
  },
278
279
  optionalDependencies: {
279
- "oh-my-opencode-darwin-arm64": "5.0.0-beta.31",
280
- "oh-my-opencode-darwin-x64": "5.0.0-beta.31",
281
- "oh-my-opencode-darwin-x64-baseline": "5.0.0-beta.31",
282
- "oh-my-opencode-linux-arm64": "5.0.0-beta.31",
283
- "oh-my-opencode-linux-arm64-musl": "5.0.0-beta.31",
284
- "oh-my-opencode-linux-x64": "5.0.0-beta.31",
285
- "oh-my-opencode-linux-x64-baseline": "5.0.0-beta.31",
286
- "oh-my-opencode-linux-x64-musl": "5.0.0-beta.31",
287
- "oh-my-opencode-linux-x64-musl-baseline": "5.0.0-beta.31",
288
- "oh-my-opencode-windows-arm64": "5.0.0-beta.31",
289
- "oh-my-opencode-windows-x64": "5.0.0-beta.31",
290
- "oh-my-opencode-windows-x64-baseline": "5.0.0-beta.31"
280
+ "oh-my-opencode-darwin-arm64": "5.0.0-beta.33",
281
+ "oh-my-opencode-darwin-x64": "5.0.0-beta.33",
282
+ "oh-my-opencode-darwin-x64-baseline": "5.0.0-beta.33",
283
+ "oh-my-opencode-linux-arm64": "5.0.0-beta.33",
284
+ "oh-my-opencode-linux-arm64-musl": "5.0.0-beta.33",
285
+ "oh-my-opencode-linux-x64": "5.0.0-beta.33",
286
+ "oh-my-opencode-linux-x64-baseline": "5.0.0-beta.33",
287
+ "oh-my-opencode-linux-x64-musl": "5.0.0-beta.33",
288
+ "oh-my-opencode-linux-x64-musl-baseline": "5.0.0-beta.33",
289
+ "oh-my-opencode-windows-arm64": "5.0.0-beta.33",
290
+ "oh-my-opencode-windows-x64": "5.0.0-beta.33",
291
+ "oh-my-opencode-windows-x64-baseline": "5.0.0-beta.33"
291
292
  },
292
293
  overrides: {
293
294
  "@earendil-works/pi-agent-core": "0.84.2",
@@ -305,7 +306,7 @@ var init_package = __esm(() => {
305
306
  "@code-yeongyu/comment-checker"
306
307
  ],
307
308
  patchedDependencies: {
308
- "@code-yeongyu/senpi@2026.8.31": "patches/@code-yeongyu%2Fsenpi@2026.8.31.patch"
309
+ "@code-yeongyu/senpi@2026.9.2": "patches/@code-yeongyu%2Fsenpi@2026.9.2.patch"
309
310
  }
310
311
  };
311
312
  });
@@ -3097,10 +3098,11 @@ var init_js_yaml = __esm(() => {
3097
3098
  function parseFrontmatter(content, options = {}) {
3098
3099
  if (options.mode === "rule")
3099
3100
  return parseRuleFrontmatter(content);
3101
+ const normalized = stripBom(content);
3100
3102
  const frontmatterRegex = /^---\r?\n([\s\S]*?)\r?\n?---\r?\n([\s\S]*)$/;
3101
- const match = content.match(frontmatterRegex);
3103
+ const match = normalized.match(frontmatterRegex);
3102
3104
  if (!match) {
3103
- return { data: {}, body: content, hadFrontmatter: false, parseError: false };
3105
+ return { data: {}, body: normalized, hadFrontmatter: false, parseError: false };
3104
3106
  }
3105
3107
  const yamlContent = match[1];
3106
3108
  const body = match[2];
@@ -20253,11 +20255,7 @@ var init_memory = __esm(() => {
20253
20255
  }).strict();
20254
20256
  OmoMemoryRecallSchema = object({
20255
20257
  enabled: boolean2().default(true),
20256
- max_items: number2().int().min(1).max(5).default(2),
20257
- budget_tokens: number2().int().positive().default(600),
20258
- excerpt_chars: number2().int().positive().default(200),
20259
- min_score: number2().optional(),
20260
- exclude: array(string2()).default([])
20258
+ max_items: number2().int().min(1).max(5).default(2)
20261
20259
  }).strict();
20262
20260
  OmoMemoryNudgeSchema = object({
20263
20261
  enabled: boolean2().default(true),
@@ -20307,11 +20305,7 @@ var init_memory = __esm(() => {
20307
20305
  }).strict();
20308
20306
  OmoMemoryRecallLayerSchema = object({
20309
20307
  enabled: boolean2().optional(),
20310
- max_items: number2().int().min(1).max(5).optional(),
20311
- budget_tokens: number2().int().positive().optional(),
20312
- excerpt_chars: number2().int().positive().optional(),
20313
- min_score: number2().optional(),
20314
- exclude: array(string2()).optional()
20308
+ max_items: number2().int().min(1).max(5).optional()
20315
20309
  }).strict();
20316
20310
  OmoMemoryNudgeLayerSchema = object({
20317
20311
  enabled: boolean2().optional(),
@@ -20382,13 +20376,7 @@ var init_memory = __esm(() => {
20382
20376
  write_notice: OmoMemoryWriteNoticeSchema.default({ enabled: true }),
20383
20377
  sync: OmoMemorySyncSchema.default({ enabled: true }),
20384
20378
  search: OmoMemorySearchSchema.default({ enabled: true }),
20385
- recall: OmoMemoryRecallSchema.default({
20386
- enabled: true,
20387
- max_items: 2,
20388
- budget_tokens: 600,
20389
- excerpt_chars: 200,
20390
- exclude: []
20391
- }),
20379
+ recall: OmoMemoryRecallSchema.default({ enabled: true, max_items: 2 }),
20392
20380
  compile_warn_tokens: number2().int().positive().default(30000),
20393
20381
  agents: record(string2(), OmoMemoryAgentOverridesSchema).default({})
20394
20382
  }).strict();
@@ -22575,12 +22563,15 @@ function normalizeInputPath(absolutePath) {
22575
22563
  function isUnderPath(normalizedPath, normalizedParentPath) {
22576
22564
  return normalizedPath === normalizedParentPath || normalizedPath.startsWith(`${normalizedParentPath}/`);
22577
22565
  }
22566
+ function isOneDriveSegment(segment) {
22567
+ const lowercaseSegment = segment.toLowerCase();
22568
+ return lowercaseSegment === "onedrive" || lowercaseSegment.startsWith("onedrive - ");
22569
+ }
22578
22570
  function classifyPathEnvironment(absolutePath) {
22579
22571
  if (absolutePath.length === 0)
22580
22572
  return "unknown";
22581
22573
  const normalizedPath = normalizeInputPath(absolutePath);
22582
- const lowercasePath = normalizedPath.toLowerCase();
22583
- if (lowercasePath.includes("/onedrive") || lowercasePath.includes("/onedrive/")) {
22574
+ if (normalizedPath.split("/").some(isOneDriveSegment)) {
22584
22575
  return "onedrive";
22585
22576
  }
22586
22577
  if (normalizedPath.includes("/Library/Mobile Documents/")) {
@@ -25098,6 +25089,111 @@ var init_supplemental_entries = __esm(() => {
25098
25089
  input: 272000,
25099
25090
  output: 128000
25100
25091
  }
25092
+ },
25093
+ "grok-4.5": {
25094
+ id: "grok-4.5",
25095
+ family: "grok",
25096
+ reasoning: false,
25097
+ temperature: true,
25098
+ toolCall: true,
25099
+ modalities: {
25100
+ input: ["text", "image"],
25101
+ output: ["text"]
25102
+ },
25103
+ limit: {
25104
+ context: 500000,
25105
+ output: 32768
25106
+ }
25107
+ },
25108
+ "xai/grok-4.5": {
25109
+ id: "xai/grok-4.5",
25110
+ family: "grok",
25111
+ reasoning: false,
25112
+ temperature: true,
25113
+ toolCall: true,
25114
+ modalities: {
25115
+ input: ["text", "image"],
25116
+ output: ["text"]
25117
+ },
25118
+ limit: {
25119
+ context: 500000,
25120
+ output: 32768
25121
+ }
25122
+ },
25123
+ "x-ai/grok-4.5": {
25124
+ id: "x-ai/grok-4.5",
25125
+ family: "grok",
25126
+ reasoning: false,
25127
+ temperature: true,
25128
+ toolCall: true,
25129
+ modalities: {
25130
+ input: ["text", "image"],
25131
+ output: ["text"]
25132
+ },
25133
+ limit: {
25134
+ context: 500000,
25135
+ output: 32768
25136
+ }
25137
+ },
25138
+ "grok-4.6": {
25139
+ id: "grok-4.6",
25140
+ family: "grok",
25141
+ reasoning: false,
25142
+ temperature: true,
25143
+ toolCall: true,
25144
+ modalities: {
25145
+ input: ["text", "image"],
25146
+ output: ["text"]
25147
+ },
25148
+ limit: {
25149
+ context: 500000,
25150
+ output: 32768
25151
+ }
25152
+ },
25153
+ "xai/grok-4.6": {
25154
+ id: "xai/grok-4.6",
25155
+ family: "grok",
25156
+ reasoning: false,
25157
+ temperature: true,
25158
+ toolCall: true,
25159
+ modalities: {
25160
+ input: ["text", "image"],
25161
+ output: ["text"]
25162
+ },
25163
+ limit: {
25164
+ context: 500000,
25165
+ output: 32768
25166
+ }
25167
+ },
25168
+ "xai/grok-build-0.1": {
25169
+ id: "xai/grok-build-0.1",
25170
+ family: "grok",
25171
+ reasoning: false,
25172
+ temperature: true,
25173
+ toolCall: true,
25174
+ modalities: {
25175
+ input: ["text", "image"],
25176
+ output: ["text"]
25177
+ },
25178
+ limit: {
25179
+ context: 256000,
25180
+ output: 32768
25181
+ }
25182
+ },
25183
+ "x-ai/grok-build-0.1": {
25184
+ id: "x-ai/grok-build-0.1",
25185
+ family: "grok",
25186
+ reasoning: false,
25187
+ temperature: true,
25188
+ toolCall: true,
25189
+ modalities: {
25190
+ input: ["text", "image"],
25191
+ output: ["text"]
25192
+ },
25193
+ limit: {
25194
+ context: 256000,
25195
+ output: 32768
25196
+ }
25101
25197
  }
25102
25198
  };
25103
25199
  });
@@ -84239,14 +84335,9 @@ var init_claude_code_plugin_loader = __esm(() => {
84239
84335
  init_hook_loader();
84240
84336
  });
84241
84337
 
84242
- // packages/omo-opencode/src/features/claude-code-plugin-loader/index.ts
84243
- var init_claude_code_plugin_loader2 = __esm(() => {
84244
- init_claude_code_plugin_loader();
84245
- });
84246
-
84247
84338
  // packages/omo-opencode/src/shared/plugin-command-discovery.ts
84248
84339
  var init_plugin_command_discovery = __esm(() => {
84249
- init_claude_code_plugin_loader2();
84340
+ init_claude_code_plugin_loader();
84250
84341
  });
84251
84342
 
84252
84343
  // packages/omo-opencode/src/shared/session-category-registry.ts
@@ -94451,7 +94542,7 @@ var package_default2;
94451
94542
  var init_package2 = __esm(() => {
94452
94543
  package_default2 = {
94453
94544
  name: "@oh-my-opencode/omo-codex",
94454
- version: "5.0.0-beta.31",
94545
+ version: "5.0.0-beta.33",
94455
94546
  type: "module",
94456
94547
  private: true,
94457
94548
  description: "Codex harness adapter for oh-my-openagent. Vendored Codex plugin namespace (omo) + TypeScript installer + telemetry.",
@@ -103612,6 +103703,7 @@ var REQUIRED_PLUGIN_ARTIFACTS = [
103612
103703
  join62("extensions", "reflection-persona.md"),
103613
103704
  join62("extensions", "dream-persona.md"),
103614
103705
  join62("extensions", "facts-persona.md"),
103706
+ join62("extensions", "memorian-persona.md"),
103615
103707
  join62("skills", "ast-grep", "SKILL.md"),
103616
103708
  join62("skills", "coding-agent-sessions", "SKILL.md"),
103617
103709
  join62("skills", "debugging", "SKILL.md"),
@@ -108855,7 +108947,7 @@ async function getContinuationState(directory, sessionID, client3) {
108855
108947
  }
108856
108948
  async function hasActiveBoulderContinuation(directory, sessionID, client3) {
108857
108949
  const boulder = readBoulderState(directory);
108858
- if (!boulder)
108950
+ if (!boulder || !boulder.active_plan)
108859
108951
  return false;
108860
108952
  const progress = getPlanProgress(resolveBoulderPlanPath(directory, boulder));
108861
108953
  if (progress.isComplete)
@@ -55,7 +55,7 @@ var package_default;
55
55
  var init_package = __esm(() => {
56
56
  package_default = {
57
57
  name: "oh-my-opencode",
58
- version: "5.0.0-beta.31",
58
+ version: "5.0.0-beta.33",
59
59
  description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
60
60
  main: "./dist/index.js",
61
61
  types: "dist/index.d.ts",
@@ -168,6 +168,7 @@ var init_package = __esm(() => {
168
168
  "install:codex-dev": "bun run script/build-codex-install.ts && bun run script/install-codex-dev.ts",
169
169
  "build:codex-plugin": "npm --prefix packages/omo-codex/plugin ci && bun run --cwd packages/omo-codex/plugin build",
170
170
  "build:senpi-plugin": "bun run build:lsp-daemon && bun run build:ast-grep-mcp && bun run build:senpi-plugin:stage",
171
+ "build:senpi-plugin:native": "node packages/omo-senpi/plugin/scripts/stage-lsp-daemon-runtime.mjs && node packages/omo-senpi/plugin/scripts/stage-ast-grep-mcp-runtime.mjs && node packages/omo-senpi/plugin/scripts/stage-agent-toolkit.mjs && node packages/omo-senpi/plugin/scripts/build-extension.mjs && node packages/omo-senpi/plugin/scripts/sync-skills.mjs && node packages/omo-senpi/plugin/scripts/embed-directive.mjs --check && node packages/omo-senpi/plugin/scripts/build-install.mjs",
171
172
  "build:senpi-plugin:stage": "bun run build:materialize-frontend && node packages/omo-senpi/plugin/scripts/stage-lsp-daemon-runtime.mjs && node packages/omo-senpi/plugin/scripts/stage-ast-grep-mcp-runtime.mjs && node packages/omo-senpi/plugin/scripts/stage-agent-toolkit.mjs && node packages/omo-senpi/plugin/scripts/build-extension.mjs && node packages/omo-senpi/plugin/scripts/sync-skills.mjs && node packages/omo-senpi/plugin/scripts/embed-directive.mjs --check && node packages/omo-senpi/plugin/scripts/build-install.mjs",
172
173
  "build:materialize-frontend": "node packages/omo-codex/plugin/scripts/materialize-shared-upstreams.mjs --strict",
173
174
  "build:shared-skills-assets": "bun run build:materialize-frontend && rm -rf dist/skills && cp -R packages/shared-skills/skills dist/skills",
@@ -236,7 +237,7 @@ var init_package = __esm(() => {
236
237
  zod: "^4.4.3"
237
238
  },
238
239
  devDependencies: {
239
- "@code-yeongyu/senpi": "2026.8.31",
240
+ "@code-yeongyu/senpi": "2026.9.2",
240
241
  "@oh-my-opencode/agents-md-core": "workspace:*",
241
242
  "@oh-my-opencode/ast-grep-mcp": "workspace:*",
242
243
  "@oh-my-opencode/boulder-state": "workspace:*",
@@ -277,18 +278,18 @@ var init_package = __esm(() => {
277
278
  typescript: "^7.0.2"
278
279
  },
279
280
  optionalDependencies: {
280
- "oh-my-opencode-darwin-arm64": "5.0.0-beta.31",
281
- "oh-my-opencode-darwin-x64": "5.0.0-beta.31",
282
- "oh-my-opencode-darwin-x64-baseline": "5.0.0-beta.31",
283
- "oh-my-opencode-linux-arm64": "5.0.0-beta.31",
284
- "oh-my-opencode-linux-arm64-musl": "5.0.0-beta.31",
285
- "oh-my-opencode-linux-x64": "5.0.0-beta.31",
286
- "oh-my-opencode-linux-x64-baseline": "5.0.0-beta.31",
287
- "oh-my-opencode-linux-x64-musl": "5.0.0-beta.31",
288
- "oh-my-opencode-linux-x64-musl-baseline": "5.0.0-beta.31",
289
- "oh-my-opencode-windows-arm64": "5.0.0-beta.31",
290
- "oh-my-opencode-windows-x64": "5.0.0-beta.31",
291
- "oh-my-opencode-windows-x64-baseline": "5.0.0-beta.31"
281
+ "oh-my-opencode-darwin-arm64": "5.0.0-beta.33",
282
+ "oh-my-opencode-darwin-x64": "5.0.0-beta.33",
283
+ "oh-my-opencode-darwin-x64-baseline": "5.0.0-beta.33",
284
+ "oh-my-opencode-linux-arm64": "5.0.0-beta.33",
285
+ "oh-my-opencode-linux-arm64-musl": "5.0.0-beta.33",
286
+ "oh-my-opencode-linux-x64": "5.0.0-beta.33",
287
+ "oh-my-opencode-linux-x64-baseline": "5.0.0-beta.33",
288
+ "oh-my-opencode-linux-x64-musl": "5.0.0-beta.33",
289
+ "oh-my-opencode-linux-x64-musl-baseline": "5.0.0-beta.33",
290
+ "oh-my-opencode-windows-arm64": "5.0.0-beta.33",
291
+ "oh-my-opencode-windows-x64": "5.0.0-beta.33",
292
+ "oh-my-opencode-windows-x64-baseline": "5.0.0-beta.33"
292
293
  },
293
294
  overrides: {
294
295
  "@earendil-works/pi-agent-core": "0.84.2",
@@ -306,7 +307,7 @@ var init_package = __esm(() => {
306
307
  "@code-yeongyu/comment-checker"
307
308
  ],
308
309
  patchedDependencies: {
309
- "@code-yeongyu/senpi@2026.8.31": "patches/@code-yeongyu%2Fsenpi@2026.8.31.patch"
310
+ "@code-yeongyu/senpi@2026.9.2": "patches/@code-yeongyu%2Fsenpi@2026.9.2.patch"
310
311
  }
311
312
  };
312
313
  });
@@ -3098,10 +3099,11 @@ var init_js_yaml = __esm(() => {
3098
3099
  function parseFrontmatter(content, options = {}) {
3099
3100
  if (options.mode === "rule")
3100
3101
  return parseRuleFrontmatter(content);
3102
+ const normalized = stripBom(content);
3101
3103
  const frontmatterRegex = /^---\r?\n([\s\S]*?)\r?\n?---\r?\n([\s\S]*)$/;
3102
- const match = content.match(frontmatterRegex);
3104
+ const match = normalized.match(frontmatterRegex);
3103
3105
  if (!match) {
3104
- return { data: {}, body: content, hadFrontmatter: false, parseError: false };
3106
+ return { data: {}, body: normalized, hadFrontmatter: false, parseError: false };
3105
3107
  }
3106
3108
  const yamlContent = match[1];
3107
3109
  const body = match[2];
@@ -20254,11 +20256,7 @@ var init_memory = __esm(() => {
20254
20256
  }).strict();
20255
20257
  OmoMemoryRecallSchema = object({
20256
20258
  enabled: boolean2().default(true),
20257
- max_items: number2().int().min(1).max(5).default(2),
20258
- budget_tokens: number2().int().positive().default(600),
20259
- excerpt_chars: number2().int().positive().default(200),
20260
- min_score: number2().optional(),
20261
- exclude: array(string2()).default([])
20259
+ max_items: number2().int().min(1).max(5).default(2)
20262
20260
  }).strict();
20263
20261
  OmoMemoryNudgeSchema = object({
20264
20262
  enabled: boolean2().default(true),
@@ -20308,11 +20306,7 @@ var init_memory = __esm(() => {
20308
20306
  }).strict();
20309
20307
  OmoMemoryRecallLayerSchema = object({
20310
20308
  enabled: boolean2().optional(),
20311
- max_items: number2().int().min(1).max(5).optional(),
20312
- budget_tokens: number2().int().positive().optional(),
20313
- excerpt_chars: number2().int().positive().optional(),
20314
- min_score: number2().optional(),
20315
- exclude: array(string2()).optional()
20309
+ max_items: number2().int().min(1).max(5).optional()
20316
20310
  }).strict();
20317
20311
  OmoMemoryNudgeLayerSchema = object({
20318
20312
  enabled: boolean2().optional(),
@@ -20383,13 +20377,7 @@ var init_memory = __esm(() => {
20383
20377
  write_notice: OmoMemoryWriteNoticeSchema.default({ enabled: true }),
20384
20378
  sync: OmoMemorySyncSchema.default({ enabled: true }),
20385
20379
  search: OmoMemorySearchSchema.default({ enabled: true }),
20386
- recall: OmoMemoryRecallSchema.default({
20387
- enabled: true,
20388
- max_items: 2,
20389
- budget_tokens: 600,
20390
- excerpt_chars: 200,
20391
- exclude: []
20392
- }),
20380
+ recall: OmoMemoryRecallSchema.default({ enabled: true, max_items: 2 }),
20393
20381
  compile_warn_tokens: number2().int().positive().default(30000),
20394
20382
  agents: record(string2(), OmoMemoryAgentOverridesSchema).default({})
20395
20383
  }).strict();
@@ -22576,12 +22564,15 @@ function normalizeInputPath(absolutePath) {
22576
22564
  function isUnderPath(normalizedPath, normalizedParentPath) {
22577
22565
  return normalizedPath === normalizedParentPath || normalizedPath.startsWith(`${normalizedParentPath}/`);
22578
22566
  }
22567
+ function isOneDriveSegment(segment) {
22568
+ const lowercaseSegment = segment.toLowerCase();
22569
+ return lowercaseSegment === "onedrive" || lowercaseSegment.startsWith("onedrive - ");
22570
+ }
22579
22571
  function classifyPathEnvironment(absolutePath) {
22580
22572
  if (absolutePath.length === 0)
22581
22573
  return "unknown";
22582
22574
  const normalizedPath = normalizeInputPath(absolutePath);
22583
- const lowercasePath = normalizedPath.toLowerCase();
22584
- if (lowercasePath.includes("/onedrive") || lowercasePath.includes("/onedrive/")) {
22575
+ if (normalizedPath.split("/").some(isOneDriveSegment)) {
22585
22576
  return "onedrive";
22586
22577
  }
22587
22578
  if (normalizedPath.includes("/Library/Mobile Documents/")) {
@@ -25099,6 +25090,111 @@ var init_supplemental_entries = __esm(() => {
25099
25090
  input: 272000,
25100
25091
  output: 128000
25101
25092
  }
25093
+ },
25094
+ "grok-4.5": {
25095
+ id: "grok-4.5",
25096
+ family: "grok",
25097
+ reasoning: false,
25098
+ temperature: true,
25099
+ toolCall: true,
25100
+ modalities: {
25101
+ input: ["text", "image"],
25102
+ output: ["text"]
25103
+ },
25104
+ limit: {
25105
+ context: 500000,
25106
+ output: 32768
25107
+ }
25108
+ },
25109
+ "xai/grok-4.5": {
25110
+ id: "xai/grok-4.5",
25111
+ family: "grok",
25112
+ reasoning: false,
25113
+ temperature: true,
25114
+ toolCall: true,
25115
+ modalities: {
25116
+ input: ["text", "image"],
25117
+ output: ["text"]
25118
+ },
25119
+ limit: {
25120
+ context: 500000,
25121
+ output: 32768
25122
+ }
25123
+ },
25124
+ "x-ai/grok-4.5": {
25125
+ id: "x-ai/grok-4.5",
25126
+ family: "grok",
25127
+ reasoning: false,
25128
+ temperature: true,
25129
+ toolCall: true,
25130
+ modalities: {
25131
+ input: ["text", "image"],
25132
+ output: ["text"]
25133
+ },
25134
+ limit: {
25135
+ context: 500000,
25136
+ output: 32768
25137
+ }
25138
+ },
25139
+ "grok-4.6": {
25140
+ id: "grok-4.6",
25141
+ family: "grok",
25142
+ reasoning: false,
25143
+ temperature: true,
25144
+ toolCall: true,
25145
+ modalities: {
25146
+ input: ["text", "image"],
25147
+ output: ["text"]
25148
+ },
25149
+ limit: {
25150
+ context: 500000,
25151
+ output: 32768
25152
+ }
25153
+ },
25154
+ "xai/grok-4.6": {
25155
+ id: "xai/grok-4.6",
25156
+ family: "grok",
25157
+ reasoning: false,
25158
+ temperature: true,
25159
+ toolCall: true,
25160
+ modalities: {
25161
+ input: ["text", "image"],
25162
+ output: ["text"]
25163
+ },
25164
+ limit: {
25165
+ context: 500000,
25166
+ output: 32768
25167
+ }
25168
+ },
25169
+ "xai/grok-build-0.1": {
25170
+ id: "xai/grok-build-0.1",
25171
+ family: "grok",
25172
+ reasoning: false,
25173
+ temperature: true,
25174
+ toolCall: true,
25175
+ modalities: {
25176
+ input: ["text", "image"],
25177
+ output: ["text"]
25178
+ },
25179
+ limit: {
25180
+ context: 256000,
25181
+ output: 32768
25182
+ }
25183
+ },
25184
+ "x-ai/grok-build-0.1": {
25185
+ id: "x-ai/grok-build-0.1",
25186
+ family: "grok",
25187
+ reasoning: false,
25188
+ temperature: true,
25189
+ toolCall: true,
25190
+ modalities: {
25191
+ input: ["text", "image"],
25192
+ output: ["text"]
25193
+ },
25194
+ limit: {
25195
+ context: 256000,
25196
+ output: 32768
25197
+ }
25102
25198
  }
25103
25199
  };
25104
25200
  });
@@ -84240,14 +84336,9 @@ var init_claude_code_plugin_loader = __esm(() => {
84240
84336
  init_hook_loader();
84241
84337
  });
84242
84338
 
84243
- // packages/omo-opencode/src/features/claude-code-plugin-loader/index.ts
84244
- var init_claude_code_plugin_loader2 = __esm(() => {
84245
- init_claude_code_plugin_loader();
84246
- });
84247
-
84248
84339
  // packages/omo-opencode/src/shared/plugin-command-discovery.ts
84249
84340
  var init_plugin_command_discovery = __esm(() => {
84250
- init_claude_code_plugin_loader2();
84341
+ init_claude_code_plugin_loader();
84251
84342
  });
84252
84343
 
84253
84344
  // packages/omo-opencode/src/shared/session-category-registry.ts
@@ -94530,7 +94621,7 @@ var package_default2;
94530
94621
  var init_package2 = __esm(() => {
94531
94622
  package_default2 = {
94532
94623
  name: "@oh-my-opencode/omo-codex",
94533
- version: "5.0.0-beta.31",
94624
+ version: "5.0.0-beta.33",
94534
94625
  type: "module",
94535
94626
  private: true,
94536
94627
  description: "Codex harness adapter for oh-my-openagent. Vendored Codex plugin namespace (omo) + TypeScript installer + telemetry.",
@@ -103691,6 +103782,7 @@ var REQUIRED_PLUGIN_ARTIFACTS = [
103691
103782
  join62("extensions", "reflection-persona.md"),
103692
103783
  join62("extensions", "dream-persona.md"),
103693
103784
  join62("extensions", "facts-persona.md"),
103785
+ join62("extensions", "memorian-persona.md"),
103694
103786
  join62("skills", "ast-grep", "SKILL.md"),
103695
103787
  join62("skills", "coding-agent-sessions", "SKILL.md"),
103696
103788
  join62("skills", "debugging", "SKILL.md"),
@@ -108934,7 +109026,7 @@ async function getContinuationState(directory, sessionID, client3) {
108934
109026
  }
108935
109027
  async function hasActiveBoulderContinuation(directory, sessionID, client3) {
108936
109028
  const boulder = readBoulderState(directory);
108937
- if (!boulder)
109029
+ if (!boulder || !boulder.active_plan)
108938
109030
  return false;
108939
109031
  const progress = getPlanProgress(resolveBoulderPlanPath(directory, boulder));
108940
109032
  if (progress.isComplete)
@@ -1,4 +1,4 @@
1
- import type { PromptDispatchClient, PromptMessagesQuery } from "../../shared/prompt-async-gate/types";
1
+ import type { PromptDispatchClient, PromptMessagesQuery } from "@oh-my-opencode/utils/prompt-async-gate/types";
2
2
  import type { ParentWakePromptContext } from "./parent-wake-dedupe";
3
3
  type ParentWakePromptBody = ParentWakePromptContext & {
4
4
  readonly noReply?: boolean;
@@ -1,4 +1,4 @@
1
- import type { PromptDispatchClient } from "../../shared/prompt-async-gate/types";
1
+ import type { PromptDispatchClient } from "@oh-my-opencode/utils/prompt-async-gate/types";
2
2
  import { type PendingParentWake } from "./parent-wake-dedupe";
3
3
  import type { ToolWaitDeferralDecision } from "./parent-wake-session-history";
4
4
  type ParentWakePromptDispatchInput = {
@@ -1,4 +1,4 @@
1
- import type { PromptMessagesQuery } from "../../shared/prompt-async-gate/types";
1
+ import type { PromptMessagesQuery } from "@oh-my-opencode/utils/prompt-async-gate/types";
2
2
  import type { PendingParentWake } from "./parent-wake-dedupe";
3
3
  import { type ToolWaitDeferralDecision } from "./parent-wake-session-history";
4
4
  type ParentWakeSessionInspectorClient = {
@@ -2,7 +2,7 @@ import type { PluginInput } from "@opencode-ai/plugin";
2
2
  import type { MonitorConfig } from "../../config/schema/monitor";
3
3
  import { registerManagerForCleanup, unregisterManagerForCleanup } from "../background-agent/process-cleanup";
4
4
  import { log } from "../../shared";
5
- import type { InternalPromptDispatchArgs, PromptAsyncInput, PromptDispatchClient } from "../../shared/prompt-async-gate/types";
5
+ import type { InternalPromptDispatchArgs, PromptAsyncInput, PromptDispatchClient } from "@oh-my-opencode/utils/prompt-async-gate/types";
6
6
  import { MonitorBatcher, type SchedulerDeps } from "./batcher";
7
7
  import { createMonitorPipeline } from "./pipeline";
8
8
  import { spawnMonitoredProcess, type MonitoredProcess } from "./process";
@@ -1,4 +1,4 @@
1
- import type { InternalPromptDispatchArgs, InternalPromptDispatchResult, PromptAsyncInput, PromptDispatchClient } from "../../shared/prompt-async-gate/types";
1
+ import type { InternalPromptDispatchArgs, InternalPromptDispatchResult, PromptAsyncInput, PromptDispatchClient } from "@oh-my-opencode/utils/prompt-async-gate/types";
2
2
  import type { MonitorRecord, OutputBatch } from "./types";
3
3
  export type MonitorPromptClient = PromptDispatchClient & InternalPromptDispatchArgs<PromptAsyncInput>["client"];
4
4
  export type MonitorOutputInjectorDeps = {
@@ -15,5 +15,6 @@ export declare function deliverLiveToRecipient(input: {
15
15
  reservation: DeliveryReservation;
16
16
  config: TeamModeConfig;
17
17
  directory: string;
18
+ settleMs?: number;
18
19
  }): Promise<void>;
19
20
  export {};
@@ -9,6 +9,7 @@ export type TeamRuntimeDetails = {
9
9
  };
10
10
  export type TeamSendMessageToolDeps = {
11
11
  loadRuntimeState: typeof loadRuntimeState;
12
+ liveDeliverySettleMs?: number;
12
13
  };
13
14
  export declare const defaultTeamSendMessageToolDeps: TeamSendMessageToolDeps;
14
15
  type RuntimeMember = RuntimeState["members"][number];
@@ -6,5 +6,16 @@ export declare function truncateToolResult(partPath: string): {
6
6
  toolName?: string;
7
7
  originalSize?: number;
8
8
  };
9
+ /**
10
+ * Infrastructure for the future distillation feature (issue #1734).
11
+ *
12
+ * The non-destructive truncation in `truncateToolResult()` writes the original
13
+ * tool output to `{partPath}.original`. This function reads that backup so the
14
+ * distiller can access the full output even after the live part file has been
15
+ * truncated. It is not called anywhere today because the distillation consumer
16
+ * has not been implemented yet.
17
+ */
18
+ export declare function recoverTruncatedOutput(partPath: string): string | null;
19
+ export declare function cleanupTruncationBackups(sessionID: string): number;
9
20
  export declare function getTotalToolOutputSize(sessionID: string): number;
10
21
  export declare function countTruncatedResults(sessionID: string): number;