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.
- package/dist/cli/index.js +136 -44
- package/dist/cli-node/index.js +136 -44
- package/dist/features/background-agent/parent-wake-notifier-types.d.ts +1 -1
- package/dist/features/background-agent/parent-wake-prompt-dispatch.d.ts +1 -1
- package/dist/features/background-agent/parent-wake-session-inspector.d.ts +1 -1
- package/dist/features/monitor/manager-internals.d.ts +1 -1
- package/dist/features/monitor/output-injector-types.d.ts +1 -1
- package/dist/features/team-mode/tools/messaging-live-delivery-recipient.d.ts +1 -0
- package/dist/features/team-mode/tools/messaging-runtime.d.ts +1 -0
- package/dist/hooks/anthropic-context-window-limit-recovery/tool-result-storage.d.ts +11 -0
- package/dist/index.js +286 -99
- package/dist/skills/ultimate-browsing/references/insane-search/README.md +9 -2
- package/dist/tools/session-manager/directory-filter.d.ts +2 -0
- package/dist/tui.js +109 -23
- package/package.json +16 -15
- package/packages/lsp-core/src/lsp/client-diagnostics-freshness.integration.test.ts +47 -19
- package/packages/lsp-core/src/lsp/client-diagnostics-pull-timeout.test.ts +64 -0
- package/packages/lsp-core/src/lsp/client.ts +6 -3
- package/packages/lsp-core/src/lsp/controlled-clock-test-support.ts +61 -0
- package/packages/lsp-core/src/lsp/fixtures/workspace-edit-server.mjs +10 -3
- package/packages/lsp-core/src/lsp/timer-provider.ts +13 -0
- package/packages/lsp-core/src/lsp/transport-request-timeout.test.ts +73 -0
- package/packages/lsp-core/src/lsp/transport.ts +7 -2
- package/packages/lsp-core/src/lsp/workspace-document-state.test.ts +84 -1
- package/packages/lsp-core/src/lsp/workspace-document-state.ts +30 -11
- package/packages/lsp-core/src/tools/parameters.test.ts +51 -0
- package/packages/lsp-daemon/dist/cli.js +41 -16
- package/packages/lsp-daemon/dist/client.js +41 -16
- package/packages/lsp-daemon/dist/index.js +41 -16
- package/packages/lsp-tools-mcp/dist/cli.js +41 -16
- package/packages/lsp-tools-mcp/dist/lsp/manager.js +41 -16
- package/packages/lsp-tools-mcp/dist/mcp.js +41 -16
- package/packages/lsp-tools-mcp/dist/tools.js +41 -16
- package/packages/lsp-tools-mcp/package.json +1 -1
- package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
- package/packages/omo-codex/plugin/components/codegraph/dist/cli.js +3 -17
- package/packages/omo-codex/plugin/components/codegraph/dist/serve.js +3 -17
- package/packages/omo-codex/plugin/components/codegraph/package.json +1 -1
- package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
- package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +1 -1
- package/packages/omo-codex/plugin/components/lsp/dist/.omo-runtime-manifest.json +3 -3
- package/packages/omo-codex/plugin/components/lsp/dist/cli.js +39 -16
- package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
- package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/rules/package.json +1 -1
- package/packages/omo-codex/plugin/components/teammode/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/teammode/package.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/AGENTS.md +5 -4
- package/packages/omo-codex/plugin/components/ultrawork/dist/cli.js +489 -4
- package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -2
- package/packages/omo-codex/plugin/components/ultrawork/scripts/sync-directive.mjs +30 -14
- package/packages/omo-codex/plugin/components/ultrawork/src/directive-content.ts +4 -0
- package/packages/omo-codex/plugin/components/ultrawork/src/directive.ts +5 -2
- package/packages/omo-codex/plugin/components/ultrawork/test/directive-source.test.ts +14 -8
- package/packages/omo-codex/plugin/components/ultrawork/test/package-smoke.test.ts +12 -1
- package/packages/omo-codex/plugin/components/ulw-execute-continuation/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/ulw-execute-continuation/package.json +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/AGENTS.md +4 -2
- package/packages/omo-codex/plugin/components/ulw-loop/README.md +1 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-continuation.js +9 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-reconciliation.d.ts +14 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-reconciliation.js +10 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-template.d.ts +8 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-template.js +113 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint.js +7 -5
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-commands.js +2 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.d.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.js +1 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-subcommands.js +2 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli.js +775 -312
- package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-instruction.js +18 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-snapshot.d.ts +13 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-snapshot.js +14 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/domain-types.d.ts +17 -9
- package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-io.js +17 -2
- package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-missing-recovery.d.ts +13 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-missing-recovery.js +19 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-aggregate.d.ts +2 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-aggregate.js +53 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-artifacts.d.ts +9 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-artifacts.js +85 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-fields.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate.js +41 -99
- package/packages/omo-codex/plugin/components/ulw-loop/dist/review-blockers.js +4 -2
- package/packages/omo-codex/plugin/components/ulw-loop/dist/spawn-guard.js +184 -14
- package/packages/omo-codex/plugin/components/ulw-loop/dist/status-next-actions.d.ts +6 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/status-next-actions.js +33 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/surface.d.ts +3 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/surface.js +15 -0
- package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/full-workflow.md +17 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-continuation.ts +7 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-reconciliation.ts +25 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-template.ts +127 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint.ts +8 -12
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-commands.ts +2 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-output.ts +1 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-subcommands.ts +2 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-instruction.ts +18 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-snapshot.ts +23 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/domain-types.ts +19 -9
- package/packages/omo-codex/plugin/components/ulw-loop/src/plan-io.ts +18 -3
- package/packages/omo-codex/plugin/components/ulw-loop/src/plan-missing-recovery.ts +27 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-aggregate.ts +57 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-artifacts.ts +103 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-fields.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate.ts +50 -116
- package/packages/omo-codex/plugin/components/ulw-loop/src/review-blockers.ts +4 -2
- package/packages/omo-codex/plugin/components/ulw-loop/src/spawn-guard.ts +186 -12
- package/packages/omo-codex/plugin/components/ulw-loop/src/status-next-actions.ts +36 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/surface.ts +22 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-final.test.ts +66 -3
- package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-template.test.ts +92 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-status-next-actions.test.ts +183 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/codex-goal-instruction.test.ts +13 -3
- package/packages/omo-codex/plugin/components/ulw-loop/test/guided-recovery.test.ts +105 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-aggregate.test.ts +101 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-roles.test.ts +16 -15
- package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-senpi-surface.test.ts +131 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate.test.ts +5 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/spawn-guard.test.ts +300 -3
- package/packages/omo-codex/plugin/components/ulw-loop/test/ultrawork-directive.test.ts +9 -3
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-git-bash-mcp-reminder.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-lsp-diagnostics-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-project-rule-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-codegraph-init-guidance.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-comments.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-lsp-diagnostics.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-thread-title-hygiene.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-matching-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-enforcing-unlimited-goal-budget.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-guarding-ulw-loop-spawns.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-recommending-git-bash-mcp.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-auto-update.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-bootstrap-provisioning.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-codegraph-bootstrap.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-recording-session-telemetry.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-ulw-execute-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-ulw-loop-resume.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-checking-ulw-execute-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-verifying-lazycodex-executor-evidence.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ultrawork-trigger.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ulw-loop-steering.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/package-lock.json +13 -13
- package/packages/omo-codex/plugin/package.json +1 -1
- package/packages/omo-codex/plugin/scripts/sync-skills.mjs +31 -2
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/README.md +9 -2
- package/packages/omo-codex/plugin/skills/ulw-loop/references/full-workflow.md +17 -0
- package/packages/omo-codex/plugin/test/sync-skills-test-support.mjs +11 -1
- package/packages/omo-codex/plugin/test/sync-skills.test.mjs +13 -0
- package/packages/omo-codex/plugin/test/ultrawork-skill-pointer.test.mjs +5 -2
- package/packages/omo-codex/scripts/install-dist/install-local.mjs +2 -2
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/README.md +9 -2
- package/dist/features/builtin-skills/index.d.ts +0 -1
- package/dist/features/builtin-skills/skill-file-loader.d.ts +0 -1
- package/dist/features/builtin-skills/skills/agent-browser-skill.d.ts +0 -1
- package/dist/features/builtin-skills/skills/agent-browser-template.d.ts +0 -1
- package/dist/features/builtin-skills/skills/debugging.d.ts +0 -1
- package/dist/features/builtin-skills/skills/dev-browser.d.ts +0 -1
- package/dist/features/builtin-skills/skills/frontend.d.ts +0 -1
- package/dist/features/builtin-skills/skills/git-master-sections/commit-atomic-planning.d.ts +0 -1
- package/dist/features/builtin-skills/skills/git-master-sections/commit-context-analysis.d.ts +0 -1
- package/dist/features/builtin-skills/skills/git-master-sections/commit-execution-verification.d.ts +0 -1
- package/dist/features/builtin-skills/skills/git-master-sections/commit-workflow.d.ts +0 -1
- package/dist/features/builtin-skills/skills/git-master-sections/history-search-workflow.d.ts +0 -1
- package/dist/features/builtin-skills/skills/git-master-sections/overview.d.ts +0 -1
- package/dist/features/builtin-skills/skills/git-master-sections/quick-reference.d.ts +0 -1
- package/dist/features/builtin-skills/skills/git-master-sections/rebase-workflow.d.ts +0 -1
- package/dist/features/builtin-skills/skills/git-master-skill-metadata.d.ts +0 -1
- package/dist/features/builtin-skills/skills/git-master.d.ts +0 -1
- package/dist/features/builtin-skills/skills/index.d.ts +0 -1
- package/dist/features/builtin-skills/skills/init-deep.d.ts +0 -1
- package/dist/features/builtin-skills/skills/playwright-cli.d.ts +0 -1
- package/dist/features/builtin-skills/skills/playwright-mcp-skill.d.ts +0 -1
- package/dist/features/builtin-skills/skills/playwright.d.ts +0 -1
- package/dist/features/builtin-skills/skills/remove-ai-slops.d.ts +0 -1
- package/dist/features/builtin-skills/skills/review-work.d.ts +0 -1
- package/dist/features/builtin-skills/skills/security-research.d.ts +0 -1
- package/dist/features/builtin-skills/skills/security-review.d.ts +0 -1
- package/dist/features/builtin-skills/skills/team-mode.d.ts +0 -1
- package/dist/features/builtin-skills/skills/visual-qa.d.ts +0 -1
- package/dist/features/builtin-skills/skills.d.ts +0 -1
- package/dist/features/builtin-skills/types.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/agent-loader.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/command-loader.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/discovery-core.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/discovery-paths.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/discovery.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/hook-loader.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/index.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/install-path-resolver.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/installed-plugin-database.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/loaded-plugin.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/loader.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/mcp-server-loader.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/plugin-key.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/plugin-manifest.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/plugin-path-resolver.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/plugin-settings.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/scope-filter.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/skill-loader.d.ts +0 -1
- package/dist/features/claude-code-plugin-loader/types.d.ts +0 -1
- package/dist/shared/prompt-async-gate/message-inspection-error.d.ts +0 -1
- package/dist/shared/prompt-async-gate/pending-tool-turn.d.ts +0 -1
- package/dist/shared/prompt-async-gate/prompt-message-state.d.ts +0 -1
- package/dist/shared/prompt-async-gate/queue.d.ts +0 -1
- package/dist/shared/prompt-async-gate/recent-dispatches.d.ts +0 -1
- package/dist/shared/prompt-async-gate/reservations.d.ts +0 -1
- package/dist/shared/prompt-async-gate/semantic-dedupe.d.ts +0 -1
- package/dist/shared/prompt-async-gate/session-idle-dispatch.d.ts +0 -1
- package/dist/shared/prompt-async-gate/timing.d.ts +0 -1
- package/dist/shared/prompt-async-gate/types.d.ts +0 -1
- package/packages/omo-codex/plugin/components/ultrawork/directive.md +0 -483
- 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.
|
|
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.
|
|
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.
|
|
280
|
-
"oh-my-opencode-darwin-x64": "5.0.0-beta.
|
|
281
|
-
"oh-my-opencode-darwin-x64-baseline": "5.0.0-beta.
|
|
282
|
-
"oh-my-opencode-linux-arm64": "5.0.0-beta.
|
|
283
|
-
"oh-my-opencode-linux-arm64-musl": "5.0.0-beta.
|
|
284
|
-
"oh-my-opencode-linux-x64": "5.0.0-beta.
|
|
285
|
-
"oh-my-opencode-linux-x64-baseline": "5.0.0-beta.
|
|
286
|
-
"oh-my-opencode-linux-x64-musl": "5.0.0-beta.
|
|
287
|
-
"oh-my-opencode-linux-x64-musl-baseline": "5.0.0-beta.
|
|
288
|
-
"oh-my-opencode-windows-arm64": "5.0.0-beta.
|
|
289
|
-
"oh-my-opencode-windows-x64": "5.0.0-beta.
|
|
290
|
-
"oh-my-opencode-windows-x64-baseline": "5.0.0-beta.
|
|
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.
|
|
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 =
|
|
3103
|
+
const match = normalized.match(frontmatterRegex);
|
|
3102
3104
|
if (!match) {
|
|
3103
|
-
return { data: {}, body:
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
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)
|
package/dist/cli-node/index.js
CHANGED
|
@@ -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.
|
|
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.
|
|
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.
|
|
281
|
-
"oh-my-opencode-darwin-x64": "5.0.0-beta.
|
|
282
|
-
"oh-my-opencode-darwin-x64-baseline": "5.0.0-beta.
|
|
283
|
-
"oh-my-opencode-linux-arm64": "5.0.0-beta.
|
|
284
|
-
"oh-my-opencode-linux-arm64-musl": "5.0.0-beta.
|
|
285
|
-
"oh-my-opencode-linux-x64": "5.0.0-beta.
|
|
286
|
-
"oh-my-opencode-linux-x64-baseline": "5.0.0-beta.
|
|
287
|
-
"oh-my-opencode-linux-x64-musl": "5.0.0-beta.
|
|
288
|
-
"oh-my-opencode-linux-x64-musl-baseline": "5.0.0-beta.
|
|
289
|
-
"oh-my-opencode-windows-arm64": "5.0.0-beta.
|
|
290
|
-
"oh-my-opencode-windows-x64": "5.0.0-beta.
|
|
291
|
-
"oh-my-opencode-windows-x64-baseline": "5.0.0-beta.
|
|
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.
|
|
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 =
|
|
3104
|
+
const match = normalized.match(frontmatterRegex);
|
|
3103
3105
|
if (!match) {
|
|
3104
|
-
return { data: {}, body:
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
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 "
|
|
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 "
|
|
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 "
|
|
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 "
|
|
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 "
|
|
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 = {
|
|
@@ -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;
|