oh-my-opencode 4.18.2 → 4.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/command/omomomo.md +1 -1
- package/.agents/skills/omomomo/SKILL.md +1 -1
- package/.opencode/command/omomomo.md +1 -1
- package/README.ja.md +6 -6
- package/README.ko.md +6 -6
- package/README.md +8 -8
- package/README.ru.md +6 -6
- package/README.zh-cn.md +6 -6
- package/dist/agents/atlas/agent.d.ts +7 -6
- package/dist/agents/gpt-prompt-identity.d.ts +3 -0
- package/dist/agents/sisyphus/gpt-5-5.d.ts +1 -1
- package/dist/agents/sisyphus/gpt-task-system-guide.d.ts +1 -0
- package/dist/agents/sisyphus/index.d.ts +5 -0
- package/dist/agents/sisyphus/kimi-k3.d.ts +19 -0
- package/dist/agents/sisyphus-agent-factory.d.ts +1 -1
- package/dist/agents/sisyphus-junior/agent.d.ts +8 -4
- package/dist/agents/sisyphus-junior/gpt-5-5.d.ts +2 -2
- package/dist/agents/sisyphus-junior/index.d.ts +2 -0
- package/dist/agents/sisyphus-junior/kimi-k3.d.ts +12 -0
- package/dist/agents/types.d.ts +2 -2
- package/dist/cli/index.js +781 -215
- package/dist/cli-node/index.js +781 -215
- package/dist/config/index.d.ts +1 -1
- package/dist/config/schema/agent-overrides.d.ts +48 -48
- package/dist/config/schema/browser-automation.d.ts +1 -0
- package/dist/config/schema/categories.d.ts +6 -6
- package/dist/config/schema/codegraph.d.ts +2 -0
- package/dist/config/schema/commands.d.ts +1 -3
- package/dist/config/schema/default-mode.d.ts +1 -1
- package/dist/config/schema/fallback-models.d.ts +5 -5
- package/dist/config/schema/goal.d.ts +7 -0
- package/dist/config/schema/hooks.d.ts +1 -1
- package/dist/config/schema/oh-my-opencode-config.d.ts +56 -58
- package/dist/config/schema/ralph-loop.d.ts +1 -1
- package/dist/config/schema.d.ts +1 -1
- package/dist/create-hooks.d.ts +1 -1
- package/dist/features/builtin-commands/templates/goal.d.ts +1 -0
- package/dist/features/builtin-commands/templates/stop-continuation.d.ts +1 -1
- package/dist/features/builtin-commands/types.d.ts +1 -1
- package/dist/hooks/auto-slash-command/executor.d.ts +1 -0
- package/dist/hooks/codegraph-bootstrap/hook.d.ts +3 -2
- package/dist/hooks/goal/command-arguments.d.ts +13 -0
- package/dist/hooks/goal/controller.d.ts +26 -0
- package/dist/hooks/goal/index.d.ts +23 -0
- package/dist/hooks/goal/prompt.d.ts +3 -0
- package/dist/hooks/goal/store.d.ts +8 -0
- package/dist/hooks/goal/tools.d.ts +10 -0
- package/dist/hooks/goal/types.d.ts +93 -0
- package/dist/hooks/goal/validation.d.ts +4 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/keyword-detector/hook.d.ts +1 -2
- package/dist/hooks/ralph-loop/types.d.ts +1 -1
- package/dist/hooks/sisyphus-junior-notepad/constants.d.ts +1 -1
- package/dist/hooks/start-work/notepad-scaffold.d.ts +10 -0
- package/dist/index.js +5398 -5109
- package/dist/oh-my-opencode.schema.json +34 -19
- package/dist/plugin/chat-message/loop-commands.d.ts +1 -1
- package/dist/plugin/chat-message/types.d.ts +23 -10
- package/dist/plugin/hooks/create-core-hooks.d.ts +1 -1
- package/dist/plugin/hooks/create-session-hooks.d.ts +3 -2
- package/dist/plugin/hooks/create-transform-hooks.d.ts +0 -2
- package/dist/plugin/stop-continuation.d.ts +2 -2
- package/dist/shared/omo-process-sweep.d.ts +18 -0
- package/dist/shared/system-directive.d.ts +0 -1
- package/dist/skills/programming/scripts/typescript/check-no-excuse-rules.test.ts +87 -0
- package/dist/skills/programming/scripts/typescript/check-no-excuse-rules.ts +35 -5
- package/dist/skills/ulw-plan/SKILL.md +31 -8
- package/dist/skills/ulw-plan/references/full-workflow.md +117 -6
- package/dist/skills/ulw-plan/scripts/scaffold-plan.mjs +46 -10
- package/dist/skills/ulw-research/SKILL.md +3 -3
- package/dist/testing/create-plugin-module.d.ts +1 -0
- package/dist/tools/delegate-task/types.d.ts +0 -1
- package/dist/tui.js +138 -80
- package/package.json +14 -14
- package/packages/git-bash-mcp/dist/cli.js +54 -8
- package/packages/lsp-core/src/lsp/client-diagnostics-freshness.integration.test.ts +60 -0
- package/packages/lsp-core/src/lsp/client.ts +14 -1
- package/packages/lsp-core/src/lsp/fixtures/diagnostics-freshness-contract-probe.ts +2 -2
- package/packages/lsp-core/src/mcp.ts +9 -0
- package/packages/lsp-daemon/dist/cli.js +319 -51
- package/packages/lsp-daemon/dist/client.js +136 -48
- package/packages/lsp-daemon/dist/daemon-client.d.ts +0 -10
- package/packages/lsp-daemon/dist/daemon-client.js +4 -34
- package/packages/lsp-daemon/dist/daemon-failure-result.d.ts +3 -0
- package/packages/lsp-daemon/dist/daemon-failure-result.js +38 -0
- package/packages/lsp-daemon/dist/daemon-request-error.d.ts +14 -0
- package/packages/lsp-daemon/dist/daemon-request-error.js +26 -0
- package/packages/lsp-daemon/dist/daemon-server.js +5 -1
- package/packages/lsp-daemon/dist/index.js +137 -48
- package/packages/lsp-daemon/dist/proxy.d.ts +2 -0
- package/packages/lsp-daemon/dist/proxy.js +1 -0
- package/packages/lsp-daemon/dist/version-reap.d.ts +26 -0
- package/packages/lsp-daemon/dist/version-reap.js +182 -0
- package/packages/lsp-tools-mcp/dist/cli.js +61 -10
- package/packages/lsp-tools-mcp/dist/lsp/manager.js +6 -1
- package/packages/lsp-tools-mcp/dist/mcp.js +61 -10
- package/packages/lsp-tools-mcp/dist/tools.js +6 -1
- package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/dist/cli.js +416 -25
- 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/bootstrap/src/setup.ts +22 -2
- package/packages/omo-codex/plugin/components/codegraph/AGENTS.md +7 -6
- package/packages/omo-codex/plugin/components/codegraph/dist/cli.js +638 -267
- package/packages/omo-codex/plugin/components/codegraph/dist/serve.js +178 -89
- package/packages/omo-codex/plugin/components/codegraph/package.json +2 -2
- package/packages/omo-codex/plugin/components/codegraph/src/hook-types.ts +3 -1
- package/packages/omo-codex/plugin/components/codegraph/src/hook.ts +3 -1
- package/packages/omo-codex/plugin/components/codegraph/src/mcp-bridge.ts +98 -32
- package/packages/omo-codex/plugin/components/codegraph/src/mcp-unavailable.ts +5 -0
- package/packages/omo-codex/plugin/components/codegraph/src/serve.ts +15 -6
- package/packages/omo-codex/plugin/components/codegraph/src/session-start-worker.ts +6 -2
- package/packages/omo-codex/plugin/components/codegraph/src/sweep-cli.ts +1 -0
- package/packages/omo-codex/plugin/components/codegraph/test/hook-exclusion.test.ts +1 -1
- package/packages/omo-codex/plugin/components/codegraph/test/hook-store-upgrade.test.ts +148 -0
- package/packages/omo-codex/plugin/components/codegraph/test/mcp-bridge-fixtures.ts +31 -2
- package/packages/omo-codex/plugin/components/codegraph/test/package-runtime.test.ts +1 -1
- package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-bridge-lifecycle.test.ts +65 -1
- package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-bridge.test.ts +3 -7
- package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-facade.test.ts +1 -1
- package/packages/omo-codex/plugin/components/codegraph/test/serve-provision.test.ts +57 -3
- package/packages/omo-codex/plugin/components/codegraph/test/serve-unavailable.test.ts +41 -0
- package/packages/omo-codex/plugin/components/codegraph/test/serve.test.ts +109 -8
- package/packages/omo-codex/plugin/components/codegraph/test/session-start-node-support.test.ts +2 -2
- package/packages/omo-codex/plugin/components/codegraph/test/session-start-worker-flow.test.ts +43 -0
- 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/AGENTS.md +1 -0
- package/packages/omo-codex/plugin/components/lsp/dist/.omo-runtime-manifest.json +3 -3
- package/packages/omo-codex/plugin/components/lsp/dist/cli.js +80 -40
- 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/dist/cli.js +11 -0
- 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/rules/src/post-compact-budget.ts +11 -0
- package/packages/omo-codex/plugin/components/rules/test/post-compact-budget.test.ts +60 -0
- package/packages/omo-codex/plugin/components/start-work-continuation/AGENTS.md +8 -0
- package/packages/omo-codex/plugin/components/start-work-continuation/dist/cli.js +147 -60
- package/packages/omo-codex/plugin/components/start-work-continuation/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/start-work-continuation/package.json +1 -1
- package/packages/omo-codex/plugin/components/start-work-continuation/src/boulder-reader.ts +3 -71
- package/packages/omo-codex/plugin/components/start-work-continuation/src/plan-checklist.ts +171 -0
- package/packages/omo-codex/plugin/components/start-work-continuation/test/boulder-reader.test.ts +198 -23
- package/packages/omo-codex/plugin/components/start-work-continuation/test/cli.test.ts +4 -3
- package/packages/omo-codex/plugin/components/start-work-continuation/test/codex-hook.test.ts +6 -5
- package/packages/omo-codex/plugin/components/start-work-continuation/test/fixtures/plan-scaffold.md +15 -0
- 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 +10 -10
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-clone-fidelity-reviewer.toml +2 -2
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-code-reviewer.toml +2 -2
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-gate-reviewer.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-high.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-medium.toml +2 -2
- package/packages/omo-codex/plugin/components/ultrawork/agents/momus.toml +3 -3
- package/packages/omo-codex/plugin/components/ultrawork/agents/plan.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/dist/cli.js +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/SKILL.md +31 -8
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/references/full-workflow.md +117 -6
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/scripts/scaffold-plan.mjs +46 -10
- package/packages/omo-codex/plugin/components/ultrawork/src/codex-hook.ts +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/test/codex-hook-trigger-policy.test.ts +42 -0
- package/packages/omo-codex/plugin/components/ulw-loop/README.md +6 -4
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-continuation.d.ts +21 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-continuation.js +64 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint.js +15 -2
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-arg-parser.js +1 -1
- 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 +3 -3
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-steering.d.ts +3 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-steering.js +85 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-subcommands.d.ts +0 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-subcommands.js +13 -33
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli.js +998 -593
- package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-instruction.js +1 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/constants.d.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/constants.js +2 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/domain-types.d.ts +6 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/goal-status.d.ts +1 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/goal-status.js +3 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-crud.d.ts +1 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-crud.js +4 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-io.d.ts +1 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-io.js +10 -2
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-verdicts.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/steering-batch.d.ts +15 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/steering-batch.js +84 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/steering-mutations.d.ts +5 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/steering-mutations.js +81 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/steering.js +7 -59
- package/packages/omo-codex/plugin/components/ulw-loop/dist/stop-resume-hook.js +12 -4
- package/packages/omo-codex/plugin/components/ulw-loop/dist/validation-batch.d.ts +9 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/validation-batch.js +122 -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 +8 -6
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-continuation.ts +84 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint.ts +13 -2
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-arg-parser.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-commands.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-output.ts +3 -3
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-steering.ts +49 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-subcommands.ts +13 -45
- package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-instruction.ts +1 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/constants.ts +2 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/domain-types.ts +7 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/goal-status.ts +4 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/plan-crud.ts +4 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/plan-io.ts +20 -2
- package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-verdicts.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/steering-batch.ts +125 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/steering-mutations.ts +59 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/steering.ts +6 -58
- package/packages/omo-codex/plugin/components/ulw-loop/src/stop-resume-hook.ts +12 -4
- package/packages/omo-codex/plugin/components/ulw-loop/src/validation-batch.ts +122 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-continuation.test.ts +76 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-checkpoint-continuation.test.ts +111 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-steering-batch.test.ts +67 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-validation-batch.test.ts +57 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/paths.test.ts +1 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/steering-batch.test.ts +152 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/stop-resume-hook.test.ts +29 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/validation-batch-checkpoint.test.ts +147 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/validation-batch.test.ts +73 -0
- 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 +2 -2
- 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 +2 -2
- 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 +2 -2
- package/packages/omo-codex/plugin/hooks/stop-checking-start-work-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-start-work-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 +41 -41
- package/packages/omo-codex/plugin/package.json +1 -1
- package/packages/omo-codex/plugin/scripts/migrate-codex-config/multi-agent-v2-guard.mjs +32 -28
- package/packages/omo-codex/plugin/scripts/migrate-codex-config/subagent-limit-guard.mjs +17 -45
- package/packages/omo-codex/plugin/scripts/migrate-codex-config/toml-section-editor.mjs +455 -0
- package/packages/omo-codex/plugin/scripts/sync-skills.mjs +3 -18
- package/packages/omo-codex/plugin/shared/test/config-loader.test.ts +43 -0
- package/packages/omo-codex/plugin/skills/programming/scripts/typescript/check-no-excuse-rules.ts +35 -5
- package/packages/omo-codex/plugin/skills/ulw-loop/references/full-workflow.md +8 -6
- package/packages/omo-codex/plugin/skills/ulw-plan/SKILL.md +31 -8
- package/packages/omo-codex/plugin/skills/ulw-plan/references/full-workflow.md +117 -6
- package/packages/omo-codex/plugin/skills/ulw-plan/scripts/scaffold-plan.mjs +46 -10
- package/packages/omo-codex/plugin/test/aggregate-agents.test.mjs +11 -11
- package/packages/omo-codex/plugin/test/aggregate-hooks.test.mjs +26 -0
- package/packages/omo-codex/plugin/test/bootstrap-setup.test.mjs +41 -0
- package/packages/omo-codex/plugin/test/lcx-bug-skills.test.mjs +2 -2
- package/packages/omo-codex/plugin/test/migrate-codex-config.test.mjs +6 -6
- package/packages/omo-codex/plugin/test/multi-agent-v2-regression.test.mjs +3 -3
- package/packages/omo-codex/plugin/test/scaffold-plan.test.mjs +62 -0
- package/packages/omo-codex/plugin/test/subagent-limit-migration.test.mjs +271 -14
- package/packages/omo-codex/plugin/test/sync-skills-test-support.mjs +3 -18
- package/packages/omo-codex/plugin/test/sync-skills.test.mjs +0 -5
- package/packages/omo-codex/plugin/test/ulw-plan-review-state-contract.test.mjs +293 -0
- package/packages/omo-codex/scripts/install-config.test.mjs +10 -10
- package/packages/omo-codex/scripts/install-dist/install-local.mjs +401 -22
- package/packages/omo-codex/scripts/install-generated-bundle.test.mjs +39 -2
- package/packages/omo-codex/scripts/install-marketplace-cache.test.mjs +4 -1
- package/packages/shared-skills/skills/programming/scripts/typescript/check-no-excuse-rules.test.ts +87 -0
- package/packages/shared-skills/skills/programming/scripts/typescript/check-no-excuse-rules.ts +35 -5
- package/packages/shared-skills/skills/ulw-plan/SKILL.md +31 -8
- package/packages/shared-skills/skills/ulw-plan/references/full-workflow.md +117 -6
- package/packages/shared-skills/skills/ulw-plan/scripts/scaffold-plan.mjs +46 -10
- package/packages/shared-skills/skills/ulw-research/SKILL.md +3 -3
- package/dist/features/builtin-commands/templates/ralph-loop.d.ts +0 -3
- package/dist/skills/ultraresearch/SKILL.md +0 -10
- package/packages/shared-skills/skills/lcx-contribute-bug-fix/SKILL.md +0 -273
- package/packages/shared-skills/skills/lcx-contribute-bug-fix/agents/openai.yaml +0 -12
- package/packages/shared-skills/skills/lcx-contribute-bug-fix/scripts/create-pr-body.mjs +0 -107
- package/packages/shared-skills/skills/lcx-doctor/SKILL.md +0 -128
- package/packages/shared-skills/skills/lcx-doctor/agents/openai.yaml +0 -11
- package/packages/shared-skills/skills/lcx-report-bug/SKILL.md +0 -268
- package/packages/shared-skills/skills/lcx-report-bug/agents/openai.yaml +0 -11
- package/packages/shared-skills/skills/ultraresearch/SKILL.md +0 -10
- /package/{dist → packages/omo-codex/plugin/components/lcx}/skills/lcx-contribute-bug-fix/SKILL.md +0 -0
- /package/{dist → packages/omo-codex/plugin/components/lcx}/skills/lcx-contribute-bug-fix/agents/openai.yaml +0 -0
- /package/{dist → packages/omo-codex/plugin/components/lcx}/skills/lcx-contribute-bug-fix/scripts/create-pr-body.mjs +0 -0
- /package/{dist → packages/omo-codex/plugin/components/lcx}/skills/lcx-doctor/SKILL.md +0 -0
- /package/{dist → packages/omo-codex/plugin/components/lcx}/skills/lcx-doctor/agents/openai.yaml +0 -0
- /package/{dist → packages/omo-codex/plugin/components/lcx}/skills/lcx-report-bug/SKILL.md +0 -0
- /package/{dist → packages/omo-codex/plugin/components/lcx}/skills/lcx-report-bug/agents/openai.yaml +0 -0
package/dist/config/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { OhMyOpenCodeConfigSchema, } from "./schema";
|
|
2
|
-
export type { OhMyOpenCodeConfig, AgentOverrideConfig, AgentOverrides, I18nConfig, McpName, AgentName, HookName, BuiltinCommandName, CodegraphConfig, SisyphusAgentConfig, ExperimentalConfig, DynamicContextPruningConfig, DefaultModeConfig,
|
|
2
|
+
export type { OhMyOpenCodeConfig, AgentOverrideConfig, AgentOverrides, I18nConfig, McpName, AgentName, HookName, BuiltinCommandName, CodegraphConfig, SisyphusAgentConfig, ExperimentalConfig, DynamicContextPruningConfig, DefaultModeConfig, GoalConfig, TmuxConfig, TmuxLayout, SisyphusConfig, SisyphusTasksConfig, RuntimeFallbackConfig, ModelCapabilitiesConfig, FallbackModels, TeamModeConfig, KeywordDetectorConfig, KeywordType, } from "./schema";
|
|
@@ -7,8 +7,8 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
|
|
|
7
7
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
8
8
|
max: "max";
|
|
9
9
|
medium: "medium";
|
|
10
|
-
high: "high";
|
|
11
10
|
xhigh: "xhigh";
|
|
11
|
+
high: "high";
|
|
12
12
|
low: "low";
|
|
13
13
|
none: "none";
|
|
14
14
|
minimal: "minimal";
|
|
@@ -29,8 +29,8 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
|
|
|
29
29
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
30
30
|
max: "max";
|
|
31
31
|
medium: "medium";
|
|
32
|
-
high: "high";
|
|
33
32
|
xhigh: "xhigh";
|
|
33
|
+
high: "high";
|
|
34
34
|
low: "low";
|
|
35
35
|
none: "none";
|
|
36
36
|
minimal: "minimal";
|
|
@@ -114,8 +114,8 @@ export declare const AgentOverrideConfigSchema: z.ZodObject<{
|
|
|
114
114
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
115
115
|
max: "max";
|
|
116
116
|
medium: "medium";
|
|
117
|
-
high: "high";
|
|
118
117
|
xhigh: "xhigh";
|
|
118
|
+
high: "high";
|
|
119
119
|
low: "low";
|
|
120
120
|
none: "none";
|
|
121
121
|
minimal: "minimal";
|
|
@@ -144,8 +144,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
144
144
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
145
145
|
max: "max";
|
|
146
146
|
medium: "medium";
|
|
147
|
-
high: "high";
|
|
148
147
|
xhigh: "xhigh";
|
|
148
|
+
high: "high";
|
|
149
149
|
low: "low";
|
|
150
150
|
none: "none";
|
|
151
151
|
minimal: "minimal";
|
|
@@ -166,8 +166,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
166
166
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
167
167
|
max: "max";
|
|
168
168
|
medium: "medium";
|
|
169
|
-
high: "high";
|
|
170
169
|
xhigh: "xhigh";
|
|
170
|
+
high: "high";
|
|
171
171
|
low: "low";
|
|
172
172
|
none: "none";
|
|
173
173
|
minimal: "minimal";
|
|
@@ -251,8 +251,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
251
251
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
252
252
|
max: "max";
|
|
253
253
|
medium: "medium";
|
|
254
|
-
high: "high";
|
|
255
254
|
xhigh: "xhigh";
|
|
255
|
+
high: "high";
|
|
256
256
|
low: "low";
|
|
257
257
|
none: "none";
|
|
258
258
|
minimal: "minimal";
|
|
@@ -280,8 +280,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
280
280
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
281
281
|
max: "max";
|
|
282
282
|
medium: "medium";
|
|
283
|
-
high: "high";
|
|
284
283
|
xhigh: "xhigh";
|
|
284
|
+
high: "high";
|
|
285
285
|
low: "low";
|
|
286
286
|
none: "none";
|
|
287
287
|
minimal: "minimal";
|
|
@@ -302,8 +302,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
302
302
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
303
303
|
max: "max";
|
|
304
304
|
medium: "medium";
|
|
305
|
-
high: "high";
|
|
306
305
|
xhigh: "xhigh";
|
|
306
|
+
high: "high";
|
|
307
307
|
low: "low";
|
|
308
308
|
none: "none";
|
|
309
309
|
minimal: "minimal";
|
|
@@ -387,8 +387,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
387
387
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
388
388
|
max: "max";
|
|
389
389
|
medium: "medium";
|
|
390
|
-
high: "high";
|
|
391
390
|
xhigh: "xhigh";
|
|
391
|
+
high: "high";
|
|
392
392
|
low: "low";
|
|
393
393
|
none: "none";
|
|
394
394
|
minimal: "minimal";
|
|
@@ -416,8 +416,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
416
416
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
417
417
|
max: "max";
|
|
418
418
|
medium: "medium";
|
|
419
|
-
high: "high";
|
|
420
419
|
xhigh: "xhigh";
|
|
420
|
+
high: "high";
|
|
421
421
|
low: "low";
|
|
422
422
|
none: "none";
|
|
423
423
|
minimal: "minimal";
|
|
@@ -438,8 +438,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
438
438
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
439
439
|
max: "max";
|
|
440
440
|
medium: "medium";
|
|
441
|
-
high: "high";
|
|
442
441
|
xhigh: "xhigh";
|
|
442
|
+
high: "high";
|
|
443
443
|
low: "low";
|
|
444
444
|
none: "none";
|
|
445
445
|
minimal: "minimal";
|
|
@@ -523,8 +523,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
523
523
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
524
524
|
max: "max";
|
|
525
525
|
medium: "medium";
|
|
526
|
-
high: "high";
|
|
527
526
|
xhigh: "xhigh";
|
|
527
|
+
high: "high";
|
|
528
528
|
low: "low";
|
|
529
529
|
none: "none";
|
|
530
530
|
minimal: "minimal";
|
|
@@ -552,8 +552,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
552
552
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
553
553
|
max: "max";
|
|
554
554
|
medium: "medium";
|
|
555
|
-
high: "high";
|
|
556
555
|
xhigh: "xhigh";
|
|
556
|
+
high: "high";
|
|
557
557
|
low: "low";
|
|
558
558
|
none: "none";
|
|
559
559
|
minimal: "minimal";
|
|
@@ -574,8 +574,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
574
574
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
575
575
|
max: "max";
|
|
576
576
|
medium: "medium";
|
|
577
|
-
high: "high";
|
|
578
577
|
xhigh: "xhigh";
|
|
578
|
+
high: "high";
|
|
579
579
|
low: "low";
|
|
580
580
|
none: "none";
|
|
581
581
|
minimal: "minimal";
|
|
@@ -659,8 +659,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
659
659
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
660
660
|
max: "max";
|
|
661
661
|
medium: "medium";
|
|
662
|
-
high: "high";
|
|
663
662
|
xhigh: "xhigh";
|
|
663
|
+
high: "high";
|
|
664
664
|
low: "low";
|
|
665
665
|
none: "none";
|
|
666
666
|
minimal: "minimal";
|
|
@@ -689,8 +689,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
689
689
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
690
690
|
max: "max";
|
|
691
691
|
medium: "medium";
|
|
692
|
-
high: "high";
|
|
693
692
|
xhigh: "xhigh";
|
|
693
|
+
high: "high";
|
|
694
694
|
low: "low";
|
|
695
695
|
none: "none";
|
|
696
696
|
minimal: "minimal";
|
|
@@ -711,8 +711,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
711
711
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
712
712
|
max: "max";
|
|
713
713
|
medium: "medium";
|
|
714
|
-
high: "high";
|
|
715
714
|
xhigh: "xhigh";
|
|
715
|
+
high: "high";
|
|
716
716
|
low: "low";
|
|
717
717
|
none: "none";
|
|
718
718
|
minimal: "minimal";
|
|
@@ -796,8 +796,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
796
796
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
797
797
|
max: "max";
|
|
798
798
|
medium: "medium";
|
|
799
|
-
high: "high";
|
|
800
799
|
xhigh: "xhigh";
|
|
800
|
+
high: "high";
|
|
801
801
|
low: "low";
|
|
802
802
|
none: "none";
|
|
803
803
|
minimal: "minimal";
|
|
@@ -825,8 +825,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
825
825
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
826
826
|
max: "max";
|
|
827
827
|
medium: "medium";
|
|
828
|
-
high: "high";
|
|
829
828
|
xhigh: "xhigh";
|
|
829
|
+
high: "high";
|
|
830
830
|
low: "low";
|
|
831
831
|
none: "none";
|
|
832
832
|
minimal: "minimal";
|
|
@@ -847,8 +847,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
847
847
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
848
848
|
max: "max";
|
|
849
849
|
medium: "medium";
|
|
850
|
-
high: "high";
|
|
851
850
|
xhigh: "xhigh";
|
|
851
|
+
high: "high";
|
|
852
852
|
low: "low";
|
|
853
853
|
none: "none";
|
|
854
854
|
minimal: "minimal";
|
|
@@ -932,8 +932,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
932
932
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
933
933
|
max: "max";
|
|
934
934
|
medium: "medium";
|
|
935
|
-
high: "high";
|
|
936
935
|
xhigh: "xhigh";
|
|
936
|
+
high: "high";
|
|
937
937
|
low: "low";
|
|
938
938
|
none: "none";
|
|
939
939
|
minimal: "minimal";
|
|
@@ -961,8 +961,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
961
961
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
962
962
|
max: "max";
|
|
963
963
|
medium: "medium";
|
|
964
|
-
high: "high";
|
|
965
964
|
xhigh: "xhigh";
|
|
965
|
+
high: "high";
|
|
966
966
|
low: "low";
|
|
967
967
|
none: "none";
|
|
968
968
|
minimal: "minimal";
|
|
@@ -983,8 +983,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
983
983
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
984
984
|
max: "max";
|
|
985
985
|
medium: "medium";
|
|
986
|
-
high: "high";
|
|
987
986
|
xhigh: "xhigh";
|
|
987
|
+
high: "high";
|
|
988
988
|
low: "low";
|
|
989
989
|
none: "none";
|
|
990
990
|
minimal: "minimal";
|
|
@@ -1068,8 +1068,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1068
1068
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1069
1069
|
max: "max";
|
|
1070
1070
|
medium: "medium";
|
|
1071
|
-
high: "high";
|
|
1072
1071
|
xhigh: "xhigh";
|
|
1072
|
+
high: "high";
|
|
1073
1073
|
low: "low";
|
|
1074
1074
|
none: "none";
|
|
1075
1075
|
minimal: "minimal";
|
|
@@ -1097,8 +1097,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1097
1097
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1098
1098
|
max: "max";
|
|
1099
1099
|
medium: "medium";
|
|
1100
|
-
high: "high";
|
|
1101
1100
|
xhigh: "xhigh";
|
|
1101
|
+
high: "high";
|
|
1102
1102
|
low: "low";
|
|
1103
1103
|
none: "none";
|
|
1104
1104
|
minimal: "minimal";
|
|
@@ -1119,8 +1119,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1119
1119
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1120
1120
|
max: "max";
|
|
1121
1121
|
medium: "medium";
|
|
1122
|
-
high: "high";
|
|
1123
1122
|
xhigh: "xhigh";
|
|
1123
|
+
high: "high";
|
|
1124
1124
|
low: "low";
|
|
1125
1125
|
none: "none";
|
|
1126
1126
|
minimal: "minimal";
|
|
@@ -1204,8 +1204,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1204
1204
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1205
1205
|
max: "max";
|
|
1206
1206
|
medium: "medium";
|
|
1207
|
-
high: "high";
|
|
1208
1207
|
xhigh: "xhigh";
|
|
1208
|
+
high: "high";
|
|
1209
1209
|
low: "low";
|
|
1210
1210
|
none: "none";
|
|
1211
1211
|
minimal: "minimal";
|
|
@@ -1233,8 +1233,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1233
1233
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1234
1234
|
max: "max";
|
|
1235
1235
|
medium: "medium";
|
|
1236
|
-
high: "high";
|
|
1237
1236
|
xhigh: "xhigh";
|
|
1237
|
+
high: "high";
|
|
1238
1238
|
low: "low";
|
|
1239
1239
|
none: "none";
|
|
1240
1240
|
minimal: "minimal";
|
|
@@ -1255,8 +1255,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1255
1255
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1256
1256
|
max: "max";
|
|
1257
1257
|
medium: "medium";
|
|
1258
|
-
high: "high";
|
|
1259
1258
|
xhigh: "xhigh";
|
|
1259
|
+
high: "high";
|
|
1260
1260
|
low: "low";
|
|
1261
1261
|
none: "none";
|
|
1262
1262
|
minimal: "minimal";
|
|
@@ -1340,8 +1340,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1340
1340
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1341
1341
|
max: "max";
|
|
1342
1342
|
medium: "medium";
|
|
1343
|
-
high: "high";
|
|
1344
1343
|
xhigh: "xhigh";
|
|
1344
|
+
high: "high";
|
|
1345
1345
|
low: "low";
|
|
1346
1346
|
none: "none";
|
|
1347
1347
|
minimal: "minimal";
|
|
@@ -1369,8 +1369,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1369
1369
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1370
1370
|
max: "max";
|
|
1371
1371
|
medium: "medium";
|
|
1372
|
-
high: "high";
|
|
1373
1372
|
xhigh: "xhigh";
|
|
1373
|
+
high: "high";
|
|
1374
1374
|
low: "low";
|
|
1375
1375
|
none: "none";
|
|
1376
1376
|
minimal: "minimal";
|
|
@@ -1391,8 +1391,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1391
1391
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1392
1392
|
max: "max";
|
|
1393
1393
|
medium: "medium";
|
|
1394
|
-
high: "high";
|
|
1395
1394
|
xhigh: "xhigh";
|
|
1395
|
+
high: "high";
|
|
1396
1396
|
low: "low";
|
|
1397
1397
|
none: "none";
|
|
1398
1398
|
minimal: "minimal";
|
|
@@ -1476,8 +1476,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1476
1476
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1477
1477
|
max: "max";
|
|
1478
1478
|
medium: "medium";
|
|
1479
|
-
high: "high";
|
|
1480
1479
|
xhigh: "xhigh";
|
|
1480
|
+
high: "high";
|
|
1481
1481
|
low: "low";
|
|
1482
1482
|
none: "none";
|
|
1483
1483
|
minimal: "minimal";
|
|
@@ -1505,8 +1505,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1505
1505
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1506
1506
|
max: "max";
|
|
1507
1507
|
medium: "medium";
|
|
1508
|
-
high: "high";
|
|
1509
1508
|
xhigh: "xhigh";
|
|
1509
|
+
high: "high";
|
|
1510
1510
|
low: "low";
|
|
1511
1511
|
none: "none";
|
|
1512
1512
|
minimal: "minimal";
|
|
@@ -1527,8 +1527,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1527
1527
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1528
1528
|
max: "max";
|
|
1529
1529
|
medium: "medium";
|
|
1530
|
-
high: "high";
|
|
1531
1530
|
xhigh: "xhigh";
|
|
1531
|
+
high: "high";
|
|
1532
1532
|
low: "low";
|
|
1533
1533
|
none: "none";
|
|
1534
1534
|
minimal: "minimal";
|
|
@@ -1612,8 +1612,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1612
1612
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1613
1613
|
max: "max";
|
|
1614
1614
|
medium: "medium";
|
|
1615
|
-
high: "high";
|
|
1616
1615
|
xhigh: "xhigh";
|
|
1616
|
+
high: "high";
|
|
1617
1617
|
low: "low";
|
|
1618
1618
|
none: "none";
|
|
1619
1619
|
minimal: "minimal";
|
|
@@ -1641,8 +1641,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1641
1641
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1642
1642
|
max: "max";
|
|
1643
1643
|
medium: "medium";
|
|
1644
|
-
high: "high";
|
|
1645
1644
|
xhigh: "xhigh";
|
|
1645
|
+
high: "high";
|
|
1646
1646
|
low: "low";
|
|
1647
1647
|
none: "none";
|
|
1648
1648
|
minimal: "minimal";
|
|
@@ -1663,8 +1663,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1663
1663
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1664
1664
|
max: "max";
|
|
1665
1665
|
medium: "medium";
|
|
1666
|
-
high: "high";
|
|
1667
1666
|
xhigh: "xhigh";
|
|
1667
|
+
high: "high";
|
|
1668
1668
|
low: "low";
|
|
1669
1669
|
none: "none";
|
|
1670
1670
|
minimal: "minimal";
|
|
@@ -1748,8 +1748,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1748
1748
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1749
1749
|
max: "max";
|
|
1750
1750
|
medium: "medium";
|
|
1751
|
-
high: "high";
|
|
1752
1751
|
xhigh: "xhigh";
|
|
1752
|
+
high: "high";
|
|
1753
1753
|
low: "low";
|
|
1754
1754
|
none: "none";
|
|
1755
1755
|
minimal: "minimal";
|
|
@@ -1777,8 +1777,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1777
1777
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1778
1778
|
max: "max";
|
|
1779
1779
|
medium: "medium";
|
|
1780
|
-
high: "high";
|
|
1781
1780
|
xhigh: "xhigh";
|
|
1781
|
+
high: "high";
|
|
1782
1782
|
low: "low";
|
|
1783
1783
|
none: "none";
|
|
1784
1784
|
minimal: "minimal";
|
|
@@ -1799,8 +1799,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1799
1799
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1800
1800
|
max: "max";
|
|
1801
1801
|
medium: "medium";
|
|
1802
|
-
high: "high";
|
|
1803
1802
|
xhigh: "xhigh";
|
|
1803
|
+
high: "high";
|
|
1804
1804
|
low: "low";
|
|
1805
1805
|
none: "none";
|
|
1806
1806
|
minimal: "minimal";
|
|
@@ -1884,8 +1884,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1884
1884
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1885
1885
|
max: "max";
|
|
1886
1886
|
medium: "medium";
|
|
1887
|
-
high: "high";
|
|
1888
1887
|
xhigh: "xhigh";
|
|
1888
|
+
high: "high";
|
|
1889
1889
|
low: "low";
|
|
1890
1890
|
none: "none";
|
|
1891
1891
|
minimal: "minimal";
|
|
@@ -1913,8 +1913,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1913
1913
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1914
1914
|
max: "max";
|
|
1915
1915
|
medium: "medium";
|
|
1916
|
-
high: "high";
|
|
1917
1916
|
xhigh: "xhigh";
|
|
1917
|
+
high: "high";
|
|
1918
1918
|
low: "low";
|
|
1919
1919
|
none: "none";
|
|
1920
1920
|
minimal: "minimal";
|
|
@@ -1935,8 +1935,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
1935
1935
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
1936
1936
|
max: "max";
|
|
1937
1937
|
medium: "medium";
|
|
1938
|
-
high: "high";
|
|
1939
1938
|
xhigh: "xhigh";
|
|
1939
|
+
high: "high";
|
|
1940
1940
|
low: "low";
|
|
1941
1941
|
none: "none";
|
|
1942
1942
|
minimal: "minimal";
|
|
@@ -2020,8 +2020,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
2020
2020
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
2021
2021
|
max: "max";
|
|
2022
2022
|
medium: "medium";
|
|
2023
|
-
high: "high";
|
|
2024
2023
|
xhigh: "xhigh";
|
|
2024
|
+
high: "high";
|
|
2025
2025
|
low: "low";
|
|
2026
2026
|
none: "none";
|
|
2027
2027
|
minimal: "minimal";
|
|
@@ -2049,8 +2049,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
2049
2049
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
2050
2050
|
max: "max";
|
|
2051
2051
|
medium: "medium";
|
|
2052
|
-
high: "high";
|
|
2053
2052
|
xhigh: "xhigh";
|
|
2053
|
+
high: "high";
|
|
2054
2054
|
low: "low";
|
|
2055
2055
|
none: "none";
|
|
2056
2056
|
minimal: "minimal";
|
|
@@ -2071,8 +2071,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
2071
2071
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
2072
2072
|
max: "max";
|
|
2073
2073
|
medium: "medium";
|
|
2074
|
-
high: "high";
|
|
2075
2074
|
xhigh: "xhigh";
|
|
2075
|
+
high: "high";
|
|
2076
2076
|
low: "low";
|
|
2077
2077
|
none: "none";
|
|
2078
2078
|
minimal: "minimal";
|
|
@@ -2156,8 +2156,8 @@ export declare const AgentOverridesSchema: z.ZodObject<{
|
|
|
2156
2156
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
2157
2157
|
max: "max";
|
|
2158
2158
|
medium: "medium";
|
|
2159
|
-
high: "high";
|
|
2160
2159
|
xhigh: "xhigh";
|
|
2160
|
+
high: "high";
|
|
2161
2161
|
low: "low";
|
|
2162
2162
|
none: "none";
|
|
2163
2163
|
minimal: "minimal";
|
|
@@ -12,6 +12,7 @@ export declare const BrowserAutomationConfigSchema: z.ZodObject<{
|
|
|
12
12
|
"dev-browser": "dev-browser";
|
|
13
13
|
"playwright-cli": "playwright-cli";
|
|
14
14
|
}>>;
|
|
15
|
+
playwright_mcp_args: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
15
16
|
}, z.core.$strip>;
|
|
16
17
|
export type BrowserAutomationProvider = z.infer<typeof BrowserAutomationProviderSchema>;
|
|
17
18
|
export type BrowserAutomationConfig = z.infer<typeof BrowserAutomationConfigSchema>;
|
|
@@ -8,8 +8,8 @@ export declare const CategoryConfigSchema: z.ZodObject<{
|
|
|
8
8
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
9
9
|
max: "max";
|
|
10
10
|
medium: "medium";
|
|
11
|
-
high: "high";
|
|
12
11
|
xhigh: "xhigh";
|
|
12
|
+
high: "high";
|
|
13
13
|
low: "low";
|
|
14
14
|
none: "none";
|
|
15
15
|
minimal: "minimal";
|
|
@@ -30,8 +30,8 @@ export declare const CategoryConfigSchema: z.ZodObject<{
|
|
|
30
30
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
31
31
|
max: "max";
|
|
32
32
|
medium: "medium";
|
|
33
|
-
high: "high";
|
|
34
33
|
xhigh: "xhigh";
|
|
34
|
+
high: "high";
|
|
35
35
|
low: "low";
|
|
36
36
|
none: "none";
|
|
37
37
|
minimal: "minimal";
|
|
@@ -61,8 +61,8 @@ export declare const CategoryConfigSchema: z.ZodObject<{
|
|
|
61
61
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
62
62
|
max: "max";
|
|
63
63
|
medium: "medium";
|
|
64
|
-
high: "high";
|
|
65
64
|
xhigh: "xhigh";
|
|
65
|
+
high: "high";
|
|
66
66
|
low: "low";
|
|
67
67
|
none: "none";
|
|
68
68
|
minimal: "minimal";
|
|
@@ -97,8 +97,8 @@ export declare const CategoriesConfigSchema: z.ZodRecord<z.ZodString, z.ZodObjec
|
|
|
97
97
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
98
98
|
max: "max";
|
|
99
99
|
medium: "medium";
|
|
100
|
-
high: "high";
|
|
101
100
|
xhigh: "xhigh";
|
|
101
|
+
high: "high";
|
|
102
102
|
low: "low";
|
|
103
103
|
none: "none";
|
|
104
104
|
minimal: "minimal";
|
|
@@ -119,8 +119,8 @@ export declare const CategoriesConfigSchema: z.ZodRecord<z.ZodString, z.ZodObjec
|
|
|
119
119
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
120
120
|
max: "max";
|
|
121
121
|
medium: "medium";
|
|
122
|
-
high: "high";
|
|
123
122
|
xhigh: "xhigh";
|
|
123
|
+
high: "high";
|
|
124
124
|
low: "low";
|
|
125
125
|
none: "none";
|
|
126
126
|
minimal: "minimal";
|
|
@@ -150,8 +150,8 @@ export declare const CategoriesConfigSchema: z.ZodRecord<z.ZodString, z.ZodObjec
|
|
|
150
150
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
151
151
|
max: "max";
|
|
152
152
|
medium: "medium";
|
|
153
|
-
high: "high";
|
|
154
153
|
xhigh: "xhigh";
|
|
154
|
+
high: "high";
|
|
155
155
|
low: "low";
|
|
156
156
|
none: "none";
|
|
157
157
|
minimal: "minimal";
|
|
@@ -2,7 +2,9 @@ import { z } from "zod";
|
|
|
2
2
|
export declare const CodegraphConfigSchema: z.ZodObject<{
|
|
3
3
|
auto_init: z.ZodDefault<z.ZodBoolean>;
|
|
4
4
|
auto_provision: z.ZodDefault<z.ZodBoolean>;
|
|
5
|
+
daemon: z.ZodDefault<z.ZodBoolean>;
|
|
5
6
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
7
|
+
excluded_roots: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6
8
|
install_dir: z.ZodOptional<z.ZodString>;
|
|
7
9
|
telemetry: z.ZodOptional<z.ZodBoolean>;
|
|
8
10
|
watch_debounce_ms: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const BuiltinCommandNameSchema: z.ZodEnum<{
|
|
3
3
|
"remove-ai-slops": "remove-ai-slops";
|
|
4
|
-
|
|
5
|
-
"ulw-loop": "ulw-loop";
|
|
6
|
-
"cancel-ralph": "cancel-ralph";
|
|
4
|
+
goal: "goal";
|
|
7
5
|
refactor: "refactor";
|
|
8
6
|
"start-work": "start-work";
|
|
9
7
|
"stop-continuation": "stop-continuation";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const DefaultModeConfigSchema: z.ZodObject<{
|
|
3
3
|
ultrawork: z.ZodDefault<z.ZodBoolean>;
|
|
4
|
-
|
|
4
|
+
goal: z.ZodDefault<z.ZodBoolean>;
|
|
5
5
|
}, z.core.$strip>;
|
|
6
6
|
export type DefaultModeConfig = z.infer<typeof DefaultModeConfigSchema>;
|
|
@@ -5,8 +5,8 @@ export declare const FallbackModelObjectSchema: z.ZodObject<{
|
|
|
5
5
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
6
6
|
max: "max";
|
|
7
7
|
medium: "medium";
|
|
8
|
-
high: "high";
|
|
9
8
|
xhigh: "xhigh";
|
|
9
|
+
high: "high";
|
|
10
10
|
low: "low";
|
|
11
11
|
none: "none";
|
|
12
12
|
minimal: "minimal";
|
|
@@ -30,8 +30,8 @@ export declare const FallbackModelObjectArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
30
30
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
31
31
|
max: "max";
|
|
32
32
|
medium: "medium";
|
|
33
|
-
high: "high";
|
|
34
33
|
xhigh: "xhigh";
|
|
34
|
+
high: "high";
|
|
35
35
|
low: "low";
|
|
36
36
|
none: "none";
|
|
37
37
|
minimal: "minimal";
|
|
@@ -53,8 +53,8 @@ export declare const FallbackModelMixedArraySchema: z.ZodArray<z.ZodUnion<readon
|
|
|
53
53
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
54
54
|
max: "max";
|
|
55
55
|
medium: "medium";
|
|
56
|
-
high: "high";
|
|
57
56
|
xhigh: "xhigh";
|
|
57
|
+
high: "high";
|
|
58
58
|
low: "low";
|
|
59
59
|
none: "none";
|
|
60
60
|
minimal: "minimal";
|
|
@@ -76,8 +76,8 @@ export declare const FallbackModelsSchema: z.ZodUnion<readonly [z.ZodString, z.Z
|
|
|
76
76
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
77
77
|
max: "max";
|
|
78
78
|
medium: "medium";
|
|
79
|
-
high: "high";
|
|
80
79
|
xhigh: "xhigh";
|
|
80
|
+
high: "high";
|
|
81
81
|
low: "low";
|
|
82
82
|
none: "none";
|
|
83
83
|
minimal: "minimal";
|
|
@@ -98,8 +98,8 @@ export declare const FallbackModelsSchema: z.ZodUnion<readonly [z.ZodString, z.Z
|
|
|
98
98
|
reasoningEffort: z.ZodOptional<z.ZodEnum<{
|
|
99
99
|
max: "max";
|
|
100
100
|
medium: "medium";
|
|
101
|
-
high: "high";
|
|
102
101
|
xhigh: "xhigh";
|
|
102
|
+
high: "high";
|
|
103
103
|
low: "low";
|
|
104
104
|
none: "none";
|
|
105
105
|
minimal: "minimal";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
export declare const GoalConfigSchema: z.ZodObject<{
|
|
3
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
4
|
+
auto_start: z.ZodDefault<z.ZodBoolean>;
|
|
5
|
+
default_max_iterations: z.ZodDefault<z.ZodNumber>;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
export type GoalConfig = z.infer<typeof GoalConfigSchema>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const HookNameSchema: z.ZodEnum<{
|
|
3
3
|
atlas: "atlas";
|
|
4
|
-
|
|
4
|
+
goal: "goal";
|
|
5
5
|
"start-work": "start-work";
|
|
6
6
|
"todo-continuation-enforcer": "todo-continuation-enforcer";
|
|
7
7
|
"session-notification": "session-notification";
|