@oh-my-pi-zen/pi-coding-agent 16.3.6-zen.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/CHANGELOG.md +13088 -0
- package/README.md +35 -0
- package/dist/cli.js +22542 -0
- package/dist/types/advisor/__tests__/advisor.test.d.ts +1 -0
- package/dist/types/advisor/__tests__/config.test.d.ts +1 -0
- package/dist/types/advisor/__tests__/emission-guard.test.d.ts +1 -0
- package/dist/types/advisor/advise-tool.d.ts +106 -0
- package/dist/types/advisor/config.d.ts +90 -0
- package/dist/types/advisor/emission-guard.d.ts +73 -0
- package/dist/types/advisor/index.d.ts +6 -0
- package/dist/types/advisor/runtime.d.ts +76 -0
- package/dist/types/advisor/transcript-recorder.d.ts +63 -0
- package/dist/types/advisor/watchdog.d.ts +38 -0
- package/dist/types/async/index.d.ts +1 -0
- package/dist/types/async/job-manager.d.ts +121 -0
- package/dist/types/auto-thinking/classifier.d.ts +37 -0
- package/dist/types/autolearn/controller.d.ts +25 -0
- package/dist/types/autolearn/managed-skills.d.ts +45 -0
- package/dist/types/autoresearch/dashboard.d.ts +4 -0
- package/dist/types/autoresearch/git.d.ts +36 -0
- package/dist/types/autoresearch/helpers.d.ts +24 -0
- package/dist/types/autoresearch/index.d.ts +2 -0
- package/dist/types/autoresearch/state.d.ts +17 -0
- package/dist/types/autoresearch/storage.d.ts +142 -0
- package/dist/types/autoresearch/tools/init-experiment.d.ts +27 -0
- package/dist/types/autoresearch/tools/log-experiment.d.ts +21 -0
- package/dist/types/autoresearch/tools/run-experiment.d.ts +7 -0
- package/dist/types/autoresearch/tools/update-notes.d.ts +11 -0
- package/dist/types/autoresearch/types.d.ts +154 -0
- package/dist/types/capability/context-file.d.ts +17 -0
- package/dist/types/capability/extension-module.d.ts +15 -0
- package/dist/types/capability/extension.d.ts +28 -0
- package/dist/types/capability/fs.d.ts +20 -0
- package/dist/types/capability/hook.d.ts +19 -0
- package/dist/types/capability/index.d.ts +80 -0
- package/dist/types/capability/instruction.d.ts +17 -0
- package/dist/types/capability/mcp.d.ts +47 -0
- package/dist/types/capability/prompt.d.ts +15 -0
- package/dist/types/capability/rule-buckets.d.ts +30 -0
- package/dist/types/capability/rule.d.ts +73 -0
- package/dist/types/capability/settings.d.ts +15 -0
- package/dist/types/capability/skill.d.ts +43 -0
- package/dist/types/capability/slash-command.d.ts +17 -0
- package/dist/types/capability/ssh.d.ts +23 -0
- package/dist/types/capability/system-prompt.d.ts +15 -0
- package/dist/types/capability/tool.d.ts +19 -0
- package/dist/types/capability/types.d.ts +154 -0
- package/dist/types/cli/agents-cli.d.ts +12 -0
- package/dist/types/cli/args.d.ts +77 -0
- package/dist/types/cli/auth-broker-cli.d.ts +25 -0
- package/dist/types/cli/auth-gateway-cli.d.ts +26 -0
- package/dist/types/cli/bench-cli.d.ts +85 -0
- package/dist/types/cli/classify-install-target.d.ts +12 -0
- package/dist/types/cli/claude-trace-cli.d.ts +54 -0
- package/dist/types/cli/commands/init-xdg.d.ts +1 -0
- package/dist/types/cli/completion-gen.d.ts +80 -0
- package/dist/types/cli/config-cli.d.ts +22 -0
- package/dist/types/cli/dry-balance-cli.d.ts +113 -0
- package/dist/types/cli/extension-flags.d.ts +36 -0
- package/dist/types/cli/file-processor.d.ts +11 -0
- package/dist/types/cli/flag-tables.d.ts +144 -0
- package/dist/types/cli/gallery-cli.d.ts +49 -0
- package/dist/types/cli/gallery-fixtures/agentic.d.ts +2 -0
- package/dist/types/cli/gallery-fixtures/codeintel.d.ts +3 -0
- package/dist/types/cli/gallery-fixtures/edit.d.ts +3 -0
- package/dist/types/cli/gallery-fixtures/fs.d.ts +2 -0
- package/dist/types/cli/gallery-fixtures/index.d.ts +4 -0
- package/dist/types/cli/gallery-fixtures/interaction.d.ts +3 -0
- package/dist/types/cli/gallery-fixtures/memory.d.ts +2 -0
- package/dist/types/cli/gallery-fixtures/misc.d.ts +3 -0
- package/dist/types/cli/gallery-fixtures/search.d.ts +3 -0
- package/dist/types/cli/gallery-fixtures/shell.d.ts +3 -0
- package/dist/types/cli/gallery-fixtures/types.d.ts +55 -0
- package/dist/types/cli/gallery-fixtures/web.d.ts +2 -0
- package/dist/types/cli/gallery-screenshot.d.ts +35 -0
- package/dist/types/cli/gc-cli.d.ts +58 -0
- package/dist/types/cli/grep-cli.d.ts +17 -0
- package/dist/types/cli/grievances-cli.d.ts +37 -0
- package/dist/types/cli/initial-message.d.ts +17 -0
- package/dist/types/cli/models-cli.d.ts +49 -0
- package/dist/types/cli/plugin-cli.d.ts +32 -0
- package/dist/types/cli/profile-alias.d.ts +29 -0
- package/dist/types/cli/profile-bootstrap.d.ts +55 -0
- package/dist/types/cli/read-cli.d.ts +4 -0
- package/dist/types/cli/session-picker.d.ts +11 -0
- package/dist/types/cli/setup-cli.d.ts +24 -0
- package/dist/types/cli/setup-model-picker.d.ts +14 -0
- package/dist/types/cli/shell-cli.d.ts +8 -0
- package/dist/types/cli/ssh-cli.d.ts +21 -0
- package/dist/types/cli/startup-cwd.d.ts +2 -0
- package/dist/types/cli/stats-cli.d.ts +17 -0
- package/dist/types/cli/tiny-models-cli.d.ts +11 -0
- package/dist/types/cli/ttsr-cli.d.ts +39 -0
- package/dist/types/cli/update-cli.d.ts +106 -0
- package/dist/types/cli/update-cli.test.d.ts +1 -0
- package/dist/types/cli/usage-cli.d.ts +95 -0
- package/dist/types/cli/web-search-cli.d.ts +20 -0
- package/dist/types/cli/worktree-cli.d.ts +26 -0
- package/dist/types/cli-commands.d.ts +33 -0
- package/dist/types/cli.d.ts +3 -0
- package/dist/types/collab/crypto.d.ts +7 -0
- package/dist/types/collab/display-name.d.ts +3 -0
- package/dist/types/collab/guest.d.ts +52 -0
- package/dist/types/collab/host.d.ts +43 -0
- package/dist/types/collab/protocol.d.ts +143 -0
- package/dist/types/collab/relay-client.d.ts +22 -0
- package/dist/types/collab/replication-shrink.d.ts +39 -0
- package/dist/types/commands/acp.d.ts +12 -0
- package/dist/types/commands/agents.d.ts +34 -0
- package/dist/types/commands/auth-broker.d.ts +54 -0
- package/dist/types/commands/auth-gateway.d.ts +35 -0
- package/dist/types/commands/bench.d.ts +37 -0
- package/dist/types/commands/commit.d.ts +27 -0
- package/dist/types/commands/complete.d.ts +6 -0
- package/dist/types/commands/completions.d.ts +13 -0
- package/dist/types/commands/config.d.ts +30 -0
- package/dist/types/commands/dry-balance.d.ts +31 -0
- package/dist/types/commands/gallery.d.ts +47 -0
- package/dist/types/commands/gc.d.ts +37 -0
- package/dist/types/commands/grep.d.ts +42 -0
- package/dist/types/commands/grievances.d.ts +40 -0
- package/dist/types/commands/install.d.ts +51 -0
- package/dist/types/commands/join.d.ts +12 -0
- package/dist/types/commands/launch.d.ts +148 -0
- package/dist/types/commands/models.d.ts +33 -0
- package/dist/types/commands/plugin.d.ts +52 -0
- package/dist/types/commands/read.d.ts +15 -0
- package/dist/types/commands/say.d.ts +24 -0
- package/dist/types/commands/setup.d.ts +34 -0
- package/dist/types/commands/shell.d.ts +21 -0
- package/dist/types/commands/ssh.d.ts +48 -0
- package/dist/types/commands/stats.d.ts +25 -0
- package/dist/types/commands/tiny-models.d.ts +22 -0
- package/dist/types/commands/token.d.ts +34 -0
- package/dist/types/commands/ttsr.d.ts +57 -0
- package/dist/types/commands/update.d.ts +25 -0
- package/dist/types/commands/usage.d.ts +34 -0
- package/dist/types/commands/web-search.d.ts +33 -0
- package/dist/types/commands/worktree.d.ts +31 -0
- package/dist/types/commit/agentic/agent.d.ts +31 -0
- package/dist/types/commit/agentic/fallback.d.ts +5 -0
- package/dist/types/commit/agentic/index.d.ts +2 -0
- package/dist/types/commit/agentic/state.d.ts +58 -0
- package/dist/types/commit/agentic/tools/analyze-file.d.ts +18 -0
- package/dist/types/commit/agentic/tools/git-file-diff.d.ts +9 -0
- package/dist/types/commit/agentic/tools/git-hunk.d.ts +8 -0
- package/dist/types/commit/agentic/tools/git-overview.d.ts +8 -0
- package/dist/types/commit/agentic/tools/index.d.ts +16 -0
- package/dist/types/commit/agentic/tools/propose-changelog.d.ts +27 -0
- package/dist/types/commit/agentic/tools/propose-commit.d.ts +15 -0
- package/dist/types/commit/agentic/tools/recent-commits.d.ts +6 -0
- package/dist/types/commit/agentic/tools/schemas.d.ts +6 -0
- package/dist/types/commit/agentic/tools/split-commit.d.ts +32 -0
- package/dist/types/commit/agentic/topo-sort.d.ts +4 -0
- package/dist/types/commit/agentic/trivial.d.ts +7 -0
- package/dist/types/commit/agentic/validation.d.ts +20 -0
- package/dist/types/commit/analysis/conventional.d.ts +22 -0
- package/dist/types/commit/analysis/index.d.ts +4 -0
- package/dist/types/commit/analysis/scope.d.ts +6 -0
- package/dist/types/commit/analysis/summary.d.ts +19 -0
- package/dist/types/commit/analysis/validation.d.ts +8 -0
- package/dist/types/commit/changelog/detect.d.ts +2 -0
- package/dist/types/commit/changelog/generate.d.ts +29 -0
- package/dist/types/commit/changelog/index.d.ts +30 -0
- package/dist/types/commit/changelog/parse.d.ts +2 -0
- package/dist/types/commit/cli.d.ts +3 -0
- package/dist/types/commit/git/diff.d.ts +5 -0
- package/dist/types/commit/index.d.ts +4 -0
- package/dist/types/commit/map-reduce/index.d.ts +28 -0
- package/dist/types/commit/map-reduce/map-phase.d.ts +17 -0
- package/dist/types/commit/map-reduce/reduce-phase.d.ts +13 -0
- package/dist/types/commit/map-reduce/utils.d.ts +2 -0
- package/dist/types/commit/message.d.ts +2 -0
- package/dist/types/commit/model-selection.d.ts +26 -0
- package/dist/types/commit/pipeline.d.ts +5 -0
- package/dist/types/commit/shared-llm.d.ts +27 -0
- package/dist/types/commit/types.d.ts +78 -0
- package/dist/types/commit/utils/exclusions.d.ts +4 -0
- package/dist/types/commit/utils.d.ts +20 -0
- package/dist/types/config/api-key-resolver.d.ts +43 -0
- package/dist/types/config/append-only-context-mode.d.ts +9 -0
- package/dist/types/config/config-file.d.ts +62 -0
- package/dist/types/config/file-lock.d.ts +29 -0
- package/dist/types/config/inline-tool-descriptors-mode.d.ts +12 -0
- package/dist/types/config/keybindings.d.ts +362 -0
- package/dist/types/config/model-discovery.d.ts +68 -0
- package/dist/types/config/model-registry.d.ts +251 -0
- package/dist/types/config/model-resolver.d.ts +300 -0
- package/dist/types/config/model-roles.d.ts +29 -0
- package/dist/types/config/models-config-schema.d.ts +697 -0
- package/dist/types/config/models-config.d.ts +436 -0
- package/dist/types/config/prompt-templates.d.ts +32 -0
- package/dist/types/config/provider-globals.d.ts +7 -0
- package/dist/types/config/resolve-config-value.d.ts +17 -0
- package/dist/types/config/service-tier.d.ts +49 -0
- package/dist/types/config/settings-schema.d.ts +5668 -0
- package/dist/types/config/settings.d.ts +181 -0
- package/dist/types/config.d.ts +92 -0
- package/dist/types/cursor.d.ts +22 -0
- package/dist/types/dap/client.d.ts +46 -0
- package/dist/types/dap/config.d.ts +19 -0
- package/dist/types/dap/index.d.ts +4 -0
- package/dist/types/dap/session.d.ts +108 -0
- package/dist/types/dap/types.d.ts +534 -0
- package/dist/types/debug/index.d.ts +15 -0
- package/dist/types/debug/log-formatting.d.ts +4 -0
- package/dist/types/debug/log-viewer.d.ts +69 -0
- package/dist/types/debug/profiler.d.ts +24 -0
- package/dist/types/debug/protocol-probe.d.ts +38 -0
- package/dist/types/debug/raw-sse-buffer.d.ts +44 -0
- package/dist/types/debug/raw-sse.d.ts +19 -0
- package/dist/types/debug/remote-debugger.d.ts +45 -0
- package/dist/types/debug/report-bundle.d.ts +58 -0
- package/dist/types/debug/system-info.d.ts +26 -0
- package/dist/types/debug/terminal-info.d.ts +33 -0
- package/dist/types/discovery/agents-md.d.ts +1 -0
- package/dist/types/discovery/agents.d.ts +12 -0
- package/dist/types/discovery/at-imports.d.ts +15 -0
- package/dist/types/discovery/builtin-defaults.d.ts +1 -0
- package/dist/types/discovery/builtin-rules/index.d.ts +7 -0
- package/dist/types/discovery/builtin.d.ts +1 -0
- package/dist/types/discovery/claude-plugins.d.ts +1 -0
- package/dist/types/discovery/claude.d.ts +1 -0
- package/dist/types/discovery/cline.d.ts +1 -0
- package/dist/types/discovery/codex.d.ts +1 -0
- package/dist/types/discovery/cursor.d.ts +16 -0
- package/dist/types/discovery/gemini.d.ts +1 -0
- package/dist/types/discovery/github.d.ts +1 -0
- package/dist/types/discovery/helpers.d.ts +278 -0
- package/dist/types/discovery/index.d.ts +53 -0
- package/dist/types/discovery/mcp-json.d.ts +1 -0
- package/dist/types/discovery/omp-extension-roots.d.ts +43 -0
- package/dist/types/discovery/omp-plugins.d.ts +1 -0
- package/dist/types/discovery/opencode.d.ts +1 -0
- package/dist/types/discovery/plugin-dir-roots.d.ts +15 -0
- package/dist/types/discovery/ssh.d.ts +1 -0
- package/dist/types/discovery/substitute-plugin-root.d.ts +1 -0
- package/dist/types/discovery/vscode.d.ts +1 -0
- package/dist/types/discovery/windsurf.d.ts +13 -0
- package/dist/types/edit/apply-patch/index.d.ts +35 -0
- package/dist/types/edit/apply-patch/parser.d.ts +34 -0
- package/dist/types/edit/diff.d.ts +60 -0
- package/dist/types/edit/file-snapshot-store.d.ts +74 -0
- package/dist/types/edit/hashline/block-resolver.d.ts +9 -0
- package/dist/types/edit/hashline/diff.d.ts +29 -0
- package/dist/types/edit/hashline/execute.d.ts +28 -0
- package/dist/types/edit/hashline/filesystem.d.ts +43 -0
- package/dist/types/edit/hashline/index.d.ts +5 -0
- package/dist/types/edit/hashline/noop-loop-guard.d.ts +72 -0
- package/dist/types/edit/hashline/params.d.ts +4 -0
- package/dist/types/edit/index.d.ts +83 -0
- package/dist/types/edit/modes/apply-patch.d.ts +23 -0
- package/dist/types/edit/modes/patch.d.ts +101 -0
- package/dist/types/edit/modes/replace.d.ts +141 -0
- package/dist/types/edit/normalize.d.ts +31 -0
- package/dist/types/edit/notebook.d.ts +23 -0
- package/dist/types/edit/read-file.d.ts +2 -0
- package/dist/types/edit/renderer.d.ts +118 -0
- package/dist/types/edit/snapshot-details.d.ts +33 -0
- package/dist/types/edit/streaming.d.ts +105 -0
- package/dist/types/eval/__tests__/agent-bridge.test.d.ts +1 -0
- package/dist/types/eval/__tests__/bridge-timeout.test.d.ts +1 -0
- package/dist/types/eval/__tests__/budget-bridge.test.d.ts +1 -0
- package/dist/types/eval/__tests__/completion-bridge.test.d.ts +1 -0
- package/dist/types/eval/__tests__/helpers-local-roots.test.d.ts +1 -0
- package/dist/types/eval/__tests__/idle-timeout.test.d.ts +1 -0
- package/dist/types/eval/__tests__/js-context-manager.test.d.ts +1 -0
- package/dist/types/eval/__tests__/julia-prelude.test.d.ts +1 -0
- package/dist/types/eval/__tests__/kernel-spawn.test.d.ts +1 -0
- package/dist/types/eval/__tests__/prelude-agent.test.d.ts +1 -0
- package/dist/types/eval/agent-bridge.d.ts +48 -0
- package/dist/types/eval/backend-helpers.d.ts +23 -0
- package/dist/types/eval/backend.d.ts +60 -0
- package/dist/types/eval/bridge-timeout.d.ts +27 -0
- package/dist/types/eval/budget-bridge.d.ts +29 -0
- package/dist/types/eval/completion-bridge.d.ts +25 -0
- package/dist/types/eval/concurrency-bridge.d.ts +26 -0
- package/dist/types/eval/executor-base.d.ts +118 -0
- package/dist/types/eval/idle-timeout.d.ts +26 -0
- package/dist/types/eval/index.d.ts +6 -0
- package/dist/types/eval/jl/executor.d.ts +44 -0
- package/dist/types/eval/jl/index.d.ts +11 -0
- package/dist/types/eval/jl/kernel.d.ts +28 -0
- package/dist/types/eval/jl/prelude.d.ts +1 -0
- package/dist/types/eval/jl/runtime.d.ts +22 -0
- package/dist/types/eval/js/context-manager.d.ts +40 -0
- package/dist/types/eval/js/executor.d.ts +38 -0
- package/dist/types/eval/js/index.d.ts +11 -0
- package/dist/types/eval/js/shared/helpers.d.ts +32 -0
- package/dist/types/eval/js/shared/indirect-eval.d.ts +14 -0
- package/dist/types/eval/js/shared/local-module-loader.d.ts +16 -0
- package/dist/types/eval/js/shared/prelude.d.ts +1 -0
- package/dist/types/eval/js/shared/rewrite-imports.d.ts +25 -0
- package/dist/types/eval/js/shared/runtime.d.ts +59 -0
- package/dist/types/eval/js/shared/types.d.ts +24 -0
- package/dist/types/eval/js/tool-bridge.d.ts +20 -0
- package/dist/types/eval/js/worker-core.d.ts +6 -0
- package/dist/types/eval/js/worker-entry.d.ts +1 -0
- package/dist/types/eval/js/worker-protocol.d.ts +83 -0
- package/dist/types/eval/kernel-base.d.ts +105 -0
- package/dist/types/eval/py/__tests__/prelude.test.d.ts +1 -0
- package/dist/types/eval/py/__tests__/runner-shell-output.test.d.ts +1 -0
- package/dist/types/eval/py/display.d.ts +25 -0
- package/dist/types/eval/py/executor.d.ts +107 -0
- package/dist/types/eval/py/index.d.ts +11 -0
- package/dist/types/eval/py/kernel.d.ts +17 -0
- package/dist/types/eval/py/prelude.d.ts +1 -0
- package/dist/types/eval/py/runtime.d.ts +40 -0
- package/dist/types/eval/py/spawn-options.d.ts +58 -0
- package/dist/types/eval/py/tool-bridge.d.ts +16 -0
- package/dist/types/eval/rb/executor.d.ts +77 -0
- package/dist/types/eval/rb/index.d.ts +11 -0
- package/dist/types/eval/rb/kernel.d.ts +31 -0
- package/dist/types/eval/rb/prelude.d.ts +1 -0
- package/dist/types/eval/rb/runtime.d.ts +23 -0
- package/dist/types/eval/runtime-env.d.ts +24 -0
- package/dist/types/eval/session-id.d.ts +3 -0
- package/dist/types/eval/types.d.ts +52 -0
- package/dist/types/exa/index.d.ts +2 -0
- package/dist/types/exa/mcp-client.d.ts +53 -0
- package/dist/types/exa/types.d.ts +72 -0
- package/dist/types/exec/bash-executor.d.ts +45 -0
- package/dist/types/exec/exec.d.ts +25 -0
- package/dist/types/exec/non-interactive-env.d.ts +3 -0
- package/dist/types/export/custom-share.d.ts +19 -0
- package/dist/types/export/html/index.d.ts +78 -0
- package/dist/types/export/html/web-palette.d.ts +117 -0
- package/dist/types/export/share.d.ts +55 -0
- package/dist/types/export/ttsr.d.ts +67 -0
- package/dist/types/extensibility/custom-commands/bundled/ci-green/index.d.ts +9 -0
- package/dist/types/extensibility/custom-commands/bundled/review/index.d.ts +10 -0
- package/dist/types/extensibility/custom-commands/index.d.ts +2 -0
- package/dist/types/extensibility/custom-commands/loader.d.ts +29 -0
- package/dist/types/extensibility/custom-commands/types.d.ts +112 -0
- package/dist/types/extensibility/custom-tools/index.d.ts +6 -0
- package/dist/types/extensibility/custom-tools/loader.d.ts +89 -0
- package/dist/types/extensibility/custom-tools/types.d.ts +244 -0
- package/dist/types/extensibility/custom-tools/wrapper.d.ts +23 -0
- package/dist/types/extensibility/extensions/compact-handler.d.ts +26 -0
- package/dist/types/extensibility/extensions/get-commands-handler.d.ts +29 -0
- package/dist/types/extensibility/extensions/index.d.ts +8 -0
- package/dist/types/extensibility/extensions/loader.d.ts +59 -0
- package/dist/types/extensibility/extensions/model-api.d.ts +17 -0
- package/dist/types/extensibility/extensions/runner.d.ts +161 -0
- package/dist/types/extensibility/extensions/types.d.ts +962 -0
- package/dist/types/extensibility/extensions/wrapper.d.ts +54 -0
- package/dist/types/extensibility/hooks/index.d.ts +6 -0
- package/dist/types/extensibility/hooks/loader.d.ts +65 -0
- package/dist/types/extensibility/hooks/runner.d.ts +126 -0
- package/dist/types/extensibility/hooks/tool-wrapper.d.ts +25 -0
- package/dist/types/extensibility/hooks/types.d.ts +442 -0
- package/dist/types/extensibility/legacy-pi-ai-shim.d.ts +35 -0
- package/dist/types/extensibility/legacy-pi-coding-agent-shim.d.ts +115 -0
- package/dist/types/extensibility/plugins/doctor.d.ts +3 -0
- package/dist/types/extensibility/plugins/git-url.d.ts +44 -0
- package/dist/types/extensibility/plugins/index.d.ts +7 -0
- package/dist/types/extensibility/plugins/installer.d.ts +5 -0
- package/dist/types/extensibility/plugins/legacy-pi-bundled-keys.d.ts +10 -0
- package/dist/types/extensibility/plugins/legacy-pi-bundled-registry.d.ts +10 -0
- package/dist/types/extensibility/plugins/legacy-pi-compat.d.ts +79 -0
- package/dist/types/extensibility/plugins/loader.d.ts +59 -0
- package/dist/types/extensibility/plugins/manager.d.ts +76 -0
- package/dist/types/extensibility/plugins/marketplace/cache.d.ts +41 -0
- package/dist/types/extensibility/plugins/marketplace/fetcher.d.ts +48 -0
- package/dist/types/extensibility/plugins/marketplace/index.d.ts +6 -0
- package/dist/types/extensibility/plugins/marketplace/manager.d.ts +57 -0
- package/dist/types/extensibility/plugins/marketplace/registry.d.ts +34 -0
- package/dist/types/extensibility/plugins/marketplace/source-resolver.d.ts +28 -0
- package/dist/types/extensibility/plugins/marketplace/types.d.ts +131 -0
- package/dist/types/extensibility/plugins/marketplace-auto-update.d.ts +8 -0
- package/dist/types/extensibility/plugins/parser.d.ts +53 -0
- package/dist/types/extensibility/plugins/runtime-config.d.ts +3 -0
- package/dist/types/extensibility/plugins/types.d.ts +149 -0
- package/dist/types/extensibility/session-handler-types.d.ts +23 -0
- package/dist/types/extensibility/shared-events.d.ts +308 -0
- package/dist/types/extensibility/skills.d.ts +97 -0
- package/dist/types/extensibility/slash-commands.d.ts +38 -0
- package/dist/types/extensibility/tool-event-input.d.ts +9 -0
- package/dist/types/extensibility/tool-proxy.d.ts +4 -0
- package/dist/types/extensibility/typebox.d.ts +177 -0
- package/dist/types/extensibility/utils.d.ts +24 -0
- package/dist/types/goals/guided-setup.d.ts +18 -0
- package/dist/types/goals/index.d.ts +3 -0
- package/dist/types/goals/runtime.d.ts +69 -0
- package/dist/types/goals/state.d.ts +35 -0
- package/dist/types/goals/tools/goal-tool.d.ts +53 -0
- package/dist/types/hindsight/backend.d.ts +13 -0
- package/dist/types/hindsight/bank.d.ts +62 -0
- package/dist/types/hindsight/client.d.ts +228 -0
- package/dist/types/hindsight/client.test.d.ts +1 -0
- package/dist/types/hindsight/config.d.ts +51 -0
- package/dist/types/hindsight/content.d.ts +73 -0
- package/dist/types/hindsight/index.d.ts +8 -0
- package/dist/types/hindsight/mental-models.d.ts +134 -0
- package/dist/types/hindsight/state.d.ts +105 -0
- package/dist/types/hindsight/transcript.d.ts +28 -0
- package/dist/types/index.d.ts +43 -0
- package/dist/types/internal-urls/__tests__/ssh-protocol.test.d.ts +1 -0
- package/dist/types/internal-urls/agent-protocol.d.ts +13 -0
- package/dist/types/internal-urls/artifact-protocol.d.ts +15 -0
- package/dist/types/internal-urls/docs-index.d.ts +19 -0
- package/dist/types/internal-urls/filesystem-resource.d.ts +9 -0
- package/dist/types/internal-urls/history-protocol.d.ts +14 -0
- package/dist/types/internal-urls/index.d.ts +25 -0
- package/dist/types/internal-urls/issue-pr-protocol.d.ts +17 -0
- package/dist/types/internal-urls/json-query.d.ts +30 -0
- package/dist/types/internal-urls/local-protocol.d.ts +79 -0
- package/dist/types/internal-urls/mcp-protocol.d.ts +12 -0
- package/dist/types/internal-urls/memory-protocol.d.ts +24 -0
- package/dist/types/internal-urls/omp-protocol.d.ts +13 -0
- package/dist/types/internal-urls/parse.d.ts +19 -0
- package/dist/types/internal-urls/registry-helpers.d.ts +12 -0
- package/dist/types/internal-urls/router.d.ts +21 -0
- package/dist/types/internal-urls/rule-protocol.d.ts +7 -0
- package/dist/types/internal-urls/skill-protocol.d.ts +14 -0
- package/dist/types/internal-urls/ssh-protocol.d.ts +10 -0
- package/dist/types/internal-urls/types.d.ts +175 -0
- package/dist/types/internal-urls/vault-protocol.d.ts +93 -0
- package/dist/types/irc/bus.d.ts +86 -0
- package/dist/types/jsonrpc/message-framing.d.ts +35 -0
- package/dist/types/lib/xai-http.d.ts +40 -0
- package/dist/types/lsp/client.d.ts +84 -0
- package/dist/types/lsp/clients/biome-client.d.ts +16 -0
- package/dist/types/lsp/clients/index.d.ts +19 -0
- package/dist/types/lsp/clients/lsp-linter-client.d.ts +16 -0
- package/dist/types/lsp/clients/swiftlint-client.d.ts +20 -0
- package/dist/types/lsp/config.d.ts +69 -0
- package/dist/types/lsp/diagnostics-ledger.d.ts +10 -0
- package/dist/types/lsp/edits.d.ts +34 -0
- package/dist/types/lsp/format-options.d.ts +32 -0
- package/dist/types/lsp/index.d.ts +120 -0
- package/dist/types/lsp/lspmux.d.ts +58 -0
- package/dist/types/lsp/render.d.ts +32 -0
- package/dist/types/lsp/startup-events.d.ts +11 -0
- package/dist/types/lsp/types.d.ts +300 -0
- package/dist/types/lsp/utils.d.ts +116 -0
- package/dist/types/main.d.ts +70 -0
- package/dist/types/markit/converters/docx.d.ts +6 -0
- package/dist/types/markit/converters/epub.d.ts +15 -0
- package/dist/types/markit/converters/pdf/columns.d.ts +35 -0
- package/dist/types/markit/converters/pdf/extract.d.ts +10 -0
- package/dist/types/markit/converters/pdf/grid.d.ts +25 -0
- package/dist/types/markit/converters/pdf/headers.d.ts +24 -0
- package/dist/types/markit/converters/pdf/index.d.ts +6 -0
- package/dist/types/markit/converters/pdf/render.d.ts +24 -0
- package/dist/types/markit/converters/pdf/types.d.ts +75 -0
- package/dist/types/markit/converters/pptx.d.ts +57 -0
- package/dist/types/markit/converters/xlsx.d.ts +25 -0
- package/dist/types/markit/index.d.ts +2 -0
- package/dist/types/markit/registry.d.ts +16 -0
- package/dist/types/markit/types.d.ts +30 -0
- package/dist/types/mcp/client.d.ts +83 -0
- package/dist/types/mcp/config-writer.d.ts +101 -0
- package/dist/types/mcp/config.d.ts +75 -0
- package/dist/types/mcp/index.d.ts +18 -0
- package/dist/types/mcp/json-rpc.d.ts +32 -0
- package/dist/types/mcp/loader.d.ts +44 -0
- package/dist/types/mcp/manager.d.ts +215 -0
- package/dist/types/mcp/oauth-credentials.d.ts +17 -0
- package/dist/types/mcp/oauth-discovery.d.ts +65 -0
- package/dist/types/mcp/oauth-flow.d.ts +145 -0
- package/dist/types/mcp/render.d.ts +25 -0
- package/dist/types/mcp/smithery-auth.d.ts +16 -0
- package/dist/types/mcp/smithery-connect.d.ts +38 -0
- package/dist/types/mcp/smithery-registry.d.ts +52 -0
- package/dist/types/mcp/smithery-registry.test.d.ts +1 -0
- package/dist/types/mcp/startup-events.d.ts +28 -0
- package/dist/types/mcp/timeout.d.ts +9 -0
- package/dist/types/mcp/tool-bridge.d.ts +95 -0
- package/dist/types/mcp/tool-cache.d.ts +8 -0
- package/dist/types/mcp/transports/http.d.ts +45 -0
- package/dist/types/mcp/transports/index.d.ts +6 -0
- package/dist/types/mcp/transports/sse.d.ts +20 -0
- package/dist/types/mcp/transports/stdio.d.ts +108 -0
- package/dist/types/mcp/transports/stdio.test.d.ts +1 -0
- package/dist/types/mcp/types.d.ts +340 -0
- package/dist/types/memories/index.d.ts +54 -0
- package/dist/types/memories/storage.d.ts +110 -0
- package/dist/types/memory-backend/index.d.ts +7 -0
- package/dist/types/memory-backend/local-backend.d.ts +10 -0
- package/dist/types/memory-backend/off-backend.d.ts +7 -0
- package/dist/types/memory-backend/resolve.d.ts +16 -0
- package/dist/types/memory-backend/runtime.d.ts +4 -0
- package/dist/types/memory-backend/types.d.ts +132 -0
- package/dist/types/mnemopi/backend.d.ts +4 -0
- package/dist/types/mnemopi/config.d.ts +60 -0
- package/dist/types/mnemopi/embed-client.d.ts +53 -0
- package/dist/types/mnemopi/embed-protocol.d.ts +52 -0
- package/dist/types/mnemopi/embed-worker.d.ts +12 -0
- package/dist/types/mnemopi/index.d.ts +3 -0
- package/dist/types/mnemopi/state.d.ts +130 -0
- package/dist/types/modes/acp/acp-agent.d.ts +60 -0
- package/dist/types/modes/acp/acp-client-bridge.d.ts +9 -0
- package/dist/types/modes/acp/acp-event-mapper.d.ts +33 -0
- package/dist/types/modes/acp/acp-mode.d.ts +5 -0
- package/dist/types/modes/acp/index.d.ts +2 -0
- package/dist/types/modes/acp/terminal-auth.d.ts +6 -0
- package/dist/types/modes/components/__tests__/move-overlay.test.d.ts +1 -0
- package/dist/types/modes/components/__tests__/skill-message.test.d.ts +1 -0
- package/dist/types/modes/components/advisor-config.d.ts +59 -0
- package/dist/types/modes/components/advisor-message.d.ts +11 -0
- package/dist/types/modes/components/agent-dashboard.d.ts +22 -0
- package/dist/types/modes/components/agent-hub.d.ts +77 -0
- package/dist/types/modes/components/agent-transcript-viewer.d.ts +40 -0
- package/dist/types/modes/components/assistant-message.d.ts +58 -0
- package/dist/types/modes/components/background-tan-message.d.ts +9 -0
- package/dist/types/modes/components/bash-execution.d.ts +35 -0
- package/dist/types/modes/components/bordered-loader.d.ts +11 -0
- package/dist/types/modes/components/btw-panel.d.ts +19 -0
- package/dist/types/modes/components/cache-invalidation-marker.d.ts +52 -0
- package/dist/types/modes/components/chat-block.d.ts +64 -0
- package/dist/types/modes/components/chat-transcript-builder.d.ts +45 -0
- package/dist/types/modes/components/collab-prompt-message.d.ts +10 -0
- package/dist/types/modes/components/compaction-summary-message.d.ts +46 -0
- package/dist/types/modes/components/copy-selector.d.ts +22 -0
- package/dist/types/modes/components/countdown-timer.d.ts +14 -0
- package/dist/types/modes/components/custom-editor.d.ts +163 -0
- package/dist/types/modes/components/custom-editor.test.d.ts +1 -0
- package/dist/types/modes/components/custom-message.d.ts +15 -0
- package/dist/types/modes/components/diff.d.ts +11 -0
- package/dist/types/modes/components/dynamic-border.d.ts +14 -0
- package/dist/types/modes/components/error-banner.d.ts +11 -0
- package/dist/types/modes/components/eval-execution.d.ts +29 -0
- package/dist/types/modes/components/execution-shared.d.ts +46 -0
- package/dist/types/modes/components/extensions/extension-dashboard.d.ts +43 -0
- package/dist/types/modes/components/extensions/extension-list.d.ts +52 -0
- package/dist/types/modes/components/extensions/index.d.ts +8 -0
- package/dist/types/modes/components/extensions/inspector-panel.d.ts +8 -0
- package/dist/types/modes/components/extensions/state-manager.d.ts +50 -0
- package/dist/types/modes/components/extensions/types.d.ts +147 -0
- package/dist/types/modes/components/footer.d.ts +30 -0
- package/dist/types/modes/components/history-search.d.ts +7 -0
- package/dist/types/modes/components/hook-editor.d.ts +24 -0
- package/dist/types/modes/components/hook-input.d.ts +19 -0
- package/dist/types/modes/components/hook-message.d.ts +15 -0
- package/dist/types/modes/components/hook-selector.d.ts +68 -0
- package/dist/types/modes/components/index.d.ts +38 -0
- package/dist/types/modes/components/keybinding-hints.d.ts +40 -0
- package/dist/types/modes/components/late-diagnostics-message.d.ts +20 -0
- package/dist/types/modes/components/login-dialog.d.ts +40 -0
- package/dist/types/modes/components/logout-account-selector.d.ts +8 -0
- package/dist/types/modes/components/mcp-add-wizard.d.ts +38 -0
- package/dist/types/modes/components/message-frame.d.ts +44 -0
- package/dist/types/modes/components/model-selector.d.ts +36 -0
- package/dist/types/modes/components/move-overlay.d.ts +23 -0
- package/dist/types/modes/components/oauth-selector.d.ts +23 -0
- package/dist/types/modes/components/omfg-panel.d.ts +19 -0
- package/dist/types/modes/components/overlay-box.d.ts +17 -0
- package/dist/types/modes/components/plan-review-overlay.d.ts +61 -0
- package/dist/types/modes/components/plan-toc.d.ts +41 -0
- package/dist/types/modes/components/plugin-selector.d.ts +27 -0
- package/dist/types/modes/components/plugin-settings.d.ts +103 -0
- package/dist/types/modes/components/queue-mode-selector.d.ts +10 -0
- package/dist/types/modes/components/read-tool-group.d.ts +38 -0
- package/dist/types/modes/components/reset-usage-selector.d.ts +12 -0
- package/dist/types/modes/components/segment-track.d.ts +27 -0
- package/dist/types/modes/components/select-list-mouse-routing.d.ts +2 -0
- package/dist/types/modes/components/selector-helpers.d.ts +53 -0
- package/dist/types/modes/components/session-selector.d.ts +94 -0
- package/dist/types/modes/components/settings-defs.d.ts +60 -0
- package/dist/types/modes/components/settings-selector.d.ts +70 -0
- package/dist/types/modes/components/show-images-selector.d.ts +10 -0
- package/dist/types/modes/components/skill-message.d.ts +9 -0
- package/dist/types/modes/components/snapcompact-shape-preview.d.ts +31 -0
- package/dist/types/modes/components/status-line/component.d.ts +94 -0
- package/dist/types/modes/components/status-line/component.test.d.ts +1 -0
- package/dist/types/modes/components/status-line/context-thresholds.d.ts +10 -0
- package/dist/types/modes/components/status-line/git-utils.d.ts +22 -0
- package/dist/types/modes/components/status-line/index.d.ts +5 -0
- package/dist/types/modes/components/status-line/presets.d.ts +3 -0
- package/dist/types/modes/components/status-line/segments.d.ts +5 -0
- package/dist/types/modes/components/status-line/separators.d.ts +3 -0
- package/dist/types/modes/components/status-line/token-rate.d.ts +10 -0
- package/dist/types/modes/components/status-line/types.d.ts +150 -0
- package/dist/types/modes/components/theme-selector.d.ts +11 -0
- package/dist/types/modes/components/thinking-selector.d.ts +11 -0
- package/dist/types/modes/components/tiny-title-download-progress.d.ts +11 -0
- package/dist/types/modes/components/todo-reminder.d.ts +15 -0
- package/dist/types/modes/components/tool-execution.d.ts +117 -0
- package/dist/types/modes/components/transcript-container.d.ts +86 -0
- package/dist/types/modes/components/tree-selector.d.ts +31 -0
- package/dist/types/modes/components/ttsr-notification.d.ts +17 -0
- package/dist/types/modes/components/usage-row.d.ts +3 -0
- package/dist/types/modes/components/user-message-selector.d.ts +28 -0
- package/dist/types/modes/components/user-message.d.ts +9 -0
- package/dist/types/modes/components/visual-truncate.d.ts +19 -0
- package/dist/types/modes/components/welcome.d.ts +66 -0
- package/dist/types/modes/controllers/btw-controller.d.ts +14 -0
- package/dist/types/modes/controllers/command-controller-shared.d.ts +47 -0
- package/dist/types/modes/controllers/command-controller.d.ts +55 -0
- package/dist/types/modes/controllers/event-controller.d.ts +28 -0
- package/dist/types/modes/controllers/extension-ui-controller.d.ts +88 -0
- package/dist/types/modes/controllers/input-controller.d.ts +71 -0
- package/dist/types/modes/controllers/mcp-command-controller.d.ts +44 -0
- package/dist/types/modes/controllers/omfg-controller.d.ts +10 -0
- package/dist/types/modes/controllers/omfg-rule.d.ts +26 -0
- package/dist/types/modes/controllers/selector-controller.d.ts +61 -0
- package/dist/types/modes/controllers/session-focus-controller.d.ts +31 -0
- package/dist/types/modes/controllers/ssh-command-controller.d.ts +10 -0
- package/dist/types/modes/controllers/streaming-reveal.d.ts +45 -0
- package/dist/types/modes/controllers/tan-command-controller.d.ts +6 -0
- package/dist/types/modes/controllers/todo-command-controller.d.ts +7 -0
- package/dist/types/modes/controllers/tool-args-reveal.d.ts +77 -0
- package/dist/types/modes/emoji-autocomplete.d.ts +16 -0
- package/dist/types/modes/gradient-highlight.d.ts +32 -0
- package/dist/types/modes/image-references.d.ts +28 -0
- package/dist/types/modes/index.d.ts +10 -0
- package/dist/types/modes/interactive-mode.d.ts +401 -0
- package/dist/types/modes/internal-url-autocomplete.d.ts +43 -0
- package/dist/types/modes/loop-limit.d.ts +35 -0
- package/dist/types/modes/magic-keywords.d.ts +26 -0
- package/dist/types/modes/markdown-prose.d.ts +27 -0
- package/dist/types/modes/oauth-manual-input.d.ts +15 -0
- package/dist/types/modes/orchestrate.d.ts +15 -0
- package/dist/types/modes/print-mode.d.ts +29 -0
- package/dist/types/modes/prompt-action-autocomplete.d.ts +46 -0
- package/dist/types/modes/rpc/host-tools.d.ts +16 -0
- package/dist/types/modes/rpc/host-uris.d.ts +38 -0
- package/dist/types/modes/rpc/rpc-client.d.ts +304 -0
- package/dist/types/modes/rpc/rpc-mode.d.ts +145 -0
- package/dist/types/modes/rpc/rpc-subagents.d.ts +24 -0
- package/dist/types/modes/rpc/rpc-types.d.ts +705 -0
- package/dist/types/modes/running-subagent-badge.d.ts +6 -0
- package/dist/types/modes/runtime-init.d.ts +25 -0
- package/dist/types/modes/session-observer-registry.d.ts +35 -0
- package/dist/types/modes/session-teardown.d.ts +63 -0
- package/dist/types/modes/session-teardown.test.d.ts +1 -0
- package/dist/types/modes/setup-version.d.ts +11 -0
- package/dist/types/modes/setup-wizard/index.d.ts +22 -0
- package/dist/types/modes/setup-wizard/lazy.d.ts +2 -0
- package/dist/types/modes/setup-wizard/scenes/glyph.d.ts +2 -0
- package/dist/types/modes/setup-wizard/scenes/outro.d.ts +2 -0
- package/dist/types/modes/setup-wizard/scenes/providers.d.ts +2 -0
- package/dist/types/modes/setup-wizard/scenes/sign-in.d.ts +22 -0
- package/dist/types/modes/setup-wizard/scenes/splash.d.ts +11 -0
- package/dist/types/modes/setup-wizard/scenes/theme.d.ts +2 -0
- package/dist/types/modes/setup-wizard/scenes/types.d.ts +52 -0
- package/dist/types/modes/setup-wizard/scenes/web-search.d.ts +23 -0
- package/dist/types/modes/setup-wizard/startup-splash.d.ts +7 -0
- package/dist/types/modes/setup-wizard/wizard-overlay.d.ts +15 -0
- package/dist/types/modes/shared.d.ts +15 -0
- package/dist/types/modes/skill-command.d.ts +32 -0
- package/dist/types/modes/theme/defaults/index.d.ts +9436 -0
- package/dist/types/modes/theme/mermaid-cache.d.ts +26 -0
- package/dist/types/modes/theme/mermaid-rendering.test.d.ts +1 -0
- package/dist/types/modes/theme/shimmer.d.ts +40 -0
- package/dist/types/modes/theme/theme.d.ts +360 -0
- package/dist/types/modes/turn-budget.d.ts +18 -0
- package/dist/types/modes/types.d.ts +399 -0
- package/dist/types/modes/ultrathink.d.ts +15 -0
- package/dist/types/modes/utils/context-usage.d.ts +64 -0
- package/dist/types/modes/utils/copy-targets.d.ts +75 -0
- package/dist/types/modes/utils/hotkeys-markdown.d.ts +5 -0
- package/dist/types/modes/utils/interactive-context-helpers.d.ts +14 -0
- package/dist/types/modes/utils/keybinding-matchers.d.ts +32 -0
- package/dist/types/modes/utils/tools-markdown.d.ts +5 -0
- package/dist/types/modes/utils/transcript-render-helpers.d.ts +63 -0
- package/dist/types/modes/utils/ui-helpers.d.ts +55 -0
- package/dist/types/modes/workflow.d.ts +15 -0
- package/dist/types/plan-mode/approved-plan-prompt.test.d.ts +1 -0
- package/dist/types/plan-mode/approved-plan.d.ts +68 -0
- package/dist/types/plan-mode/plan-handoff.d.ts +20 -0
- package/dist/types/plan-mode/plan-protection.d.ts +12 -0
- package/dist/types/plan-mode/state.d.ts +6 -0
- package/dist/types/registry/agent-lifecycle.d.ts +66 -0
- package/dist/types/registry/agent-registry.d.ts +97 -0
- package/dist/types/sdk.d.ts +370 -0
- package/dist/types/secrets/index.d.ts +9 -0
- package/dist/types/secrets/obfuscator.d.ts +63 -0
- package/dist/types/secrets/regex.d.ts +2 -0
- package/dist/types/session/agent-session.d.ts +1419 -0
- package/dist/types/session/agent-storage.d.ts +97 -0
- package/dist/types/session/artifacts.d.ts +61 -0
- package/dist/types/session/auth-broker-config.d.ts +45 -0
- package/dist/types/session/auth-storage.d.ts +7 -0
- package/dist/types/session/blob-store.d.ts +68 -0
- package/dist/types/session/client-bridge.d.ts +88 -0
- package/dist/types/session/codex-auto-reset.d.ts +111 -0
- package/dist/types/session/compact-modes.d.ts +60 -0
- package/dist/types/session/exit-diagnostics.d.ts +48 -0
- package/dist/types/session/history-storage.d.ts +30 -0
- package/dist/types/session/indexed-session-storage.d.ts +65 -0
- package/dist/types/session/messages.d.ts +220 -0
- package/dist/types/session/messages.test.d.ts +1 -0
- package/dist/types/session/provider-image-budget.d.ts +3 -0
- package/dist/types/session/redis-session-storage.d.ts +51 -0
- package/dist/types/session/session-context.d.ts +44 -0
- package/dist/types/session/session-dump-format.d.ts +30 -0
- package/dist/types/session/session-entries.d.ts +197 -0
- package/dist/types/session/session-history-format.d.ts +49 -0
- package/dist/types/session/session-listing.d.ts +78 -0
- package/dist/types/session/session-loader.d.ts +29 -0
- package/dist/types/session/session-manager.d.ts +306 -0
- package/dist/types/session/session-migrations.d.ts +12 -0
- package/dist/types/session/session-paths.d.ts +25 -0
- package/dist/types/session/session-persistence.d.ts +12 -0
- package/dist/types/session/session-storage.d.ts +129 -0
- package/dist/types/session/session-title-slot.d.ts +19 -0
- package/dist/types/session/settings-stream-fn.d.ts +21 -0
- package/dist/types/session/shake-types.d.ts +24 -0
- package/dist/types/session/snapcompact-inline.d.ts +145 -0
- package/dist/types/session/snapcompact-savings-journal.d.ts +46 -0
- package/dist/types/session/sql-session-storage.d.ts +72 -0
- package/dist/types/session/streaming-output.d.ts +229 -0
- package/dist/types/session/tool-choice-queue.d.ts +94 -0
- package/dist/types/session/turn-persistence.d.ts +88 -0
- package/dist/types/session/unexpected-stop-classifier.d.ts +13 -0
- package/dist/types/session/yield-queue.d.ts +37 -0
- package/dist/types/slash-commands/acp-builtins.d.ts +34 -0
- package/dist/types/slash-commands/available-commands.d.ts +34 -0
- package/dist/types/slash-commands/builtin-registry.d.ts +36 -0
- package/dist/types/slash-commands/helpers/active-oauth-account.d.ts +14 -0
- package/dist/types/slash-commands/helpers/collab-qrcode.d.ts +13 -0
- package/dist/types/slash-commands/helpers/context-report.d.ts +7 -0
- package/dist/types/slash-commands/helpers/format.d.ts +10 -0
- package/dist/types/slash-commands/helpers/logout.d.ts +15 -0
- package/dist/types/slash-commands/helpers/marketplace-manager.d.ts +8 -0
- package/dist/types/slash-commands/helpers/mcp.d.ts +3 -0
- package/dist/types/slash-commands/helpers/parse.d.ts +33 -0
- package/dist/types/slash-commands/helpers/reset-usage.d.ts +27 -0
- package/dist/types/slash-commands/helpers/ssh.d.ts +3 -0
- package/dist/types/slash-commands/helpers/stats-dashboard.d.ts +13 -0
- package/dist/types/slash-commands/helpers/todo.d.ts +3 -0
- package/dist/types/slash-commands/helpers/usage-report.d.ts +7 -0
- package/dist/types/slash-commands/marketplace-install-parser.d.ts +33 -0
- package/dist/types/slash-commands/types.d.ts +127 -0
- package/dist/types/ssh/__tests__/connection-manager-args.test.d.ts +1 -0
- package/dist/types/ssh/__tests__/connection-manager-timeout.test.d.ts +1 -0
- package/dist/types/ssh/__tests__/file-transfer-posix-guard.test.d.ts +1 -0
- package/dist/types/ssh/__tests__/sshfs-mount.test.d.ts +1 -0
- package/dist/types/ssh/config-writer.d.ts +49 -0
- package/dist/types/ssh/connection-manager.d.ts +109 -0
- package/dist/types/ssh/file-transfer.d.ts +79 -0
- package/dist/types/ssh/ssh-executor.d.ts +37 -0
- package/dist/types/ssh/sshfs-mount.d.ts +15 -0
- package/dist/types/ssh/utils.d.ts +24 -0
- package/dist/types/startup-splash.d.ts +12 -0
- package/dist/types/stt/asr-client.d.ts +68 -0
- package/dist/types/stt/asr-protocol.d.ts +97 -0
- package/dist/types/stt/asr-worker.d.ts +2 -0
- package/dist/types/stt/downloader.d.ts +47 -0
- package/dist/types/stt/endpointer.d.ts +59 -0
- package/dist/types/stt/index.d.ts +8 -0
- package/dist/types/stt/models.d.ts +120 -0
- package/dist/types/stt/recorder.d.ts +30 -0
- package/dist/types/stt/stt-controller.d.ts +24 -0
- package/dist/types/stt/submit-trigger.d.ts +30 -0
- package/dist/types/stt/transcriber.d.ts +14 -0
- package/dist/types/stt/wav.d.ts +29 -0
- package/dist/types/subprocess/worker-client.d.ts +163 -0
- package/dist/types/subprocess/worker-runtime.d.ts +118 -0
- package/dist/types/system-prompt.d.ts +128 -0
- package/dist/types/system-prompt.test.d.ts +1 -0
- package/dist/types/task/agents.d.ts +28 -0
- package/dist/types/task/commands.d.ts +35 -0
- package/dist/types/task/discovery.d.ts +20 -0
- package/dist/types/task/executor.d.ts +214 -0
- package/dist/types/task/index.d.ts +79 -0
- package/dist/types/task/isolation-runner.d.ts +128 -0
- package/dist/types/task/name-generator.d.ts +16 -0
- package/dist/types/task/omp-command.d.ts +7 -0
- package/dist/types/task/output-manager.d.ts +20 -0
- package/dist/types/task/parallel.d.ts +55 -0
- package/dist/types/task/persisted-revive.d.ts +36 -0
- package/dist/types/task/provider-concurrency.d.ts +40 -0
- package/dist/types/task/render.d.ts +34 -0
- package/dist/types/task/render.test.d.ts +1 -0
- package/dist/types/task/renderer.d.ts +14 -0
- package/dist/types/task/repair-args.d.ts +53 -0
- package/dist/types/task/spawn-policy.d.ts +17 -0
- package/dist/types/task/spawn-policy.test.d.ts +1 -0
- package/dist/types/task/subprocess-tool-registry.d.ts +72 -0
- package/dist/types/task/types.d.ts +384 -0
- package/dist/types/task/worktree.d.ts +135 -0
- package/dist/types/task/yield-assembly.d.ts +28 -0
- package/dist/types/telemetry-export.d.ts +19 -0
- package/dist/types/thinking.d.ts +96 -0
- package/dist/types/tiny/device.d.ts +78 -0
- package/dist/types/tiny/dtype.d.ts +85 -0
- package/dist/types/tiny/models.d.ts +230 -0
- package/dist/types/tiny/text.d.ts +44 -0
- package/dist/types/tiny/title-client.d.ts +68 -0
- package/dist/types/tiny/title-protocol.d.ts +78 -0
- package/dist/types/tiny/worker.d.ts +2 -0
- package/dist/types/tool-discovery/mode.d.ts +8 -0
- package/dist/types/tool-discovery/tool-index.d.ts +57 -0
- package/dist/types/tools/__tests__/eval-description.test.d.ts +1 -0
- package/dist/types/tools/__tests__/json-tree.test.d.ts +1 -0
- package/dist/types/tools/acp-bridge.d.ts +29 -0
- package/dist/types/tools/approval.d.ts +46 -0
- package/dist/types/tools/ask.d.ts +119 -0
- package/dist/types/tools/ast-edit.d.ts +84 -0
- package/dist/types/tools/ast-grep.d.ts +76 -0
- package/dist/types/tools/auto-generated-guard.d.ts +17 -0
- package/dist/types/tools/bash-command-fixup.d.ts +11 -0
- package/dist/types/tools/bash-interactive.d.ts +16 -0
- package/dist/types/tools/bash-interceptor.d.ts +24 -0
- package/dist/types/tools/bash-pty-selection.d.ts +7 -0
- package/dist/types/tools/bash-skill-urls.d.ts +31 -0
- package/dist/types/tools/bash.d.ts +173 -0
- package/dist/types/tools/browser/aria/aria-snapshot.d.ts +39 -0
- package/dist/types/tools/browser/attach.d.ts +34 -0
- package/dist/types/tools/browser/cmux/cmux-tab.d.ts +212 -0
- package/dist/types/tools/browser/cmux/rpc.d.ts +70 -0
- package/dist/types/tools/browser/cmux/socket-client.d.ts +19 -0
- package/dist/types/tools/browser/launch.d.ts +67 -0
- package/dist/types/tools/browser/readable.d.ts +17 -0
- package/dist/types/tools/browser/registry.d.ts +58 -0
- package/dist/types/tools/browser/render.d.ts +54 -0
- package/dist/types/tools/browser/run-cancellation.d.ts +4 -0
- package/dist/types/tools/browser/tab-protocol.d.ts +146 -0
- package/dist/types/tools/browser/tab-supervisor.d.ts +114 -0
- package/dist/types/tools/browser/tab-worker-entry.d.ts +1 -0
- package/dist/types/tools/browser/tab-worker.d.ts +56 -0
- package/dist/types/tools/browser.d.ts +96 -0
- package/dist/types/tools/builtin-names.d.ts +6 -0
- package/dist/types/tools/checkpoint.d.ts +72 -0
- package/dist/types/tools/conflict-detect.d.ts +221 -0
- package/dist/types/tools/context.d.ts +19 -0
- package/dist/types/tools/debug.d.ts +157 -0
- package/dist/types/tools/eval-backends.d.ts +15 -0
- package/dist/types/tools/eval-render.d.ts +58 -0
- package/dist/types/tools/eval.d.ts +66 -0
- package/dist/types/tools/fetch.d.ts +99 -0
- package/dist/types/tools/file-recorder.d.ts +13 -0
- package/dist/types/tools/fs-cache-invalidation.d.ts +15 -0
- package/dist/types/tools/gh-cache-invalidation.d.ts +6 -0
- package/dist/types/tools/gh-format.d.ts +6 -0
- package/dist/types/tools/gh-renderer.d.ts +25 -0
- package/dist/types/tools/gh.d.ts +331 -0
- package/dist/types/tools/github-cache.d.ts +123 -0
- package/dist/types/tools/glob.d.ts +96 -0
- package/dist/types/tools/grep.d.ts +99 -0
- package/dist/types/tools/grouped-file-output.d.ts +70 -0
- package/dist/types/tools/image-gen.d.ts +66 -0
- package/dist/types/tools/index.d.ts +368 -0
- package/dist/types/tools/inspect-image-renderer.d.ts +26 -0
- package/dist/types/tools/inspect-image.d.ts +32 -0
- package/dist/types/tools/irc.d.ts +112 -0
- package/dist/types/tools/job.d.ts +73 -0
- package/dist/types/tools/json-tree.d.ts +23 -0
- package/dist/types/tools/jtd-to-json-schema.d.ts +29 -0
- package/dist/types/tools/jtd-to-typescript.d.ts +26 -0
- package/dist/types/tools/jtd-utils.d.ts +42 -0
- package/dist/types/tools/learn.d.ts +44 -0
- package/dist/types/tools/list-limit.d.ts +12 -0
- package/dist/types/tools/manage-skill.d.ts +31 -0
- package/dist/types/tools/match-line-format.d.ts +11 -0
- package/dist/types/tools/memory-edit.d.ts +31 -0
- package/dist/types/tools/memory-recall.d.ts +23 -0
- package/dist/types/tools/memory-reflect.d.ts +25 -0
- package/dist/types/tools/memory-render.d.ts +63 -0
- package/dist/types/tools/memory-retain.d.ts +29 -0
- package/dist/types/tools/output-meta.d.ts +211 -0
- package/dist/types/tools/output-schema-validator.d.ts +77 -0
- package/dist/types/tools/path-utils.d.ts +267 -0
- package/dist/types/tools/plan-mode-guard.d.ts +33 -0
- package/dist/types/tools/read.d.ts +87 -0
- package/dist/types/tools/render-utils.d.ts +218 -0
- package/dist/types/tools/renderers.d.ts +49 -0
- package/dist/types/tools/report-tool-issue.d.ts +127 -0
- package/dist/types/tools/resolve.d.ts +94 -0
- package/dist/types/tools/review.d.ts +59 -0
- package/dist/types/tools/search-tool-bm25.d.ts +65 -0
- package/dist/types/tools/sqlite-reader.d.ts +114 -0
- package/dist/types/tools/ssh.d.ts +74 -0
- package/dist/types/tools/todo.d.ts +126 -0
- package/dist/types/tools/tool-errors.d.ts +33 -0
- package/dist/types/tools/tool-result.d.ts +34 -0
- package/dist/types/tools/tool-timeouts.d.ts +51 -0
- package/dist/types/tools/tts.d.ts +42 -0
- package/dist/types/tools/write.d.ts +66 -0
- package/dist/types/tools/yield.d.ts +39 -0
- package/dist/types/tts/downloader.d.ts +20 -0
- package/dist/types/tts/index.d.ts +10 -0
- package/dist/types/tts/models.d.ts +82 -0
- package/dist/types/tts/player.d.ts +32 -0
- package/dist/types/tts/runtime.d.ts +6 -0
- package/dist/types/tts/speakable.d.ts +47 -0
- package/dist/types/tts/speech-enhancer.d.ts +46 -0
- package/dist/types/tts/streaming-player.d.ts +40 -0
- package/dist/types/tts/tts-client.d.ts +69 -0
- package/dist/types/tts/tts-protocol.d.ts +102 -0
- package/dist/types/tts/tts-worker.d.ts +2 -0
- package/dist/types/tts/vocalizer.d.ts +48 -0
- package/dist/types/tts/wav.d.ts +8 -0
- package/dist/types/tui/code-cell.d.ts +47 -0
- package/dist/types/tui/file-list.d.ts +22 -0
- package/dist/types/tui/hyperlink.d.ts +61 -0
- package/dist/types/tui/index.d.ts +12 -0
- package/dist/types/tui/output-block.d.ts +59 -0
- package/dist/types/tui/status-line.d.ts +21 -0
- package/dist/types/tui/tree-list.d.ts +20 -0
- package/dist/types/tui/types.d.ts +13 -0
- package/dist/types/tui/utils.d.ts +36 -0
- package/dist/types/tui/width-aware-text.d.ts +23 -0
- package/dist/types/utils/active-repo-context.d.ts +8 -0
- package/dist/types/utils/block-context.d.ts +35 -0
- package/dist/types/utils/changelog.d.ts +33 -0
- package/dist/types/utils/clipboard.d.ts +37 -0
- package/dist/types/utils/command-args.d.ts +9 -0
- package/dist/types/utils/commit-message-generator.d.ts +7 -0
- package/dist/types/utils/edit-mode.d.ts +13 -0
- package/dist/types/utils/enhanced-paste.d.ts +20 -0
- package/dist/types/utils/event-bus.d.ts +6 -0
- package/dist/types/utils/external-editor.d.ts +27 -0
- package/dist/types/utils/fetch-timeout.d.ts +4 -0
- package/dist/types/utils/file-display-mode.d.ts +27 -0
- package/dist/types/utils/file-mentions.d.ts +13 -0
- package/dist/types/utils/git.d.ts +471 -0
- package/dist/types/utils/image-loading.d.ts +67 -0
- package/dist/types/utils/image-resize.d.ts +42 -0
- package/dist/types/utils/image-vision-fallback.d.ts +28 -0
- package/dist/types/utils/ipc.d.ts +22 -0
- package/dist/types/utils/jj.d.ts +74 -0
- package/dist/types/utils/lang-from-path.d.ts +8 -0
- package/dist/types/utils/markit-cache.d.ts +23 -0
- package/dist/types/utils/markit.d.ts +20 -0
- package/dist/types/utils/mupdf-wasm-embed.d.ts +1 -0
- package/dist/types/utils/open.d.ts +2 -0
- package/dist/types/utils/prompt-path.d.ts +1 -0
- package/dist/types/utils/qrcode.d.ts +48 -0
- package/dist/types/utils/session-color.d.ts +27 -0
- package/dist/types/utils/shell-snapshot.d.ts +15 -0
- package/dist/types/utils/sixel.d.ts +21 -0
- package/dist/types/utils/thinking-display.d.ts +7 -0
- package/dist/types/utils/title-generator.d.ts +33 -0
- package/dist/types/utils/tool-choice.d.ts +15 -0
- package/dist/types/utils/tools-manager.d.ts +12 -0
- package/dist/types/utils/turndown.d.ts +15 -0
- package/dist/types/utils/zip.d.ts +119 -0
- package/dist/types/web/kagi.d.ts +99 -0
- package/dist/types/web/parallel.d.ts +67 -0
- package/dist/types/web/scrapers/artifacthub.d.ts +6 -0
- package/dist/types/web/scrapers/arxiv.d.ts +5 -0
- package/dist/types/web/scrapers/aur.d.ts +5 -0
- package/dist/types/web/scrapers/biorxiv.d.ts +5 -0
- package/dist/types/web/scrapers/bluesky.d.ts +5 -0
- package/dist/types/web/scrapers/brew.d.ts +5 -0
- package/dist/types/web/scrapers/cheatsh.d.ts +8 -0
- package/dist/types/web/scrapers/chocolatey.d.ts +5 -0
- package/dist/types/web/scrapers/choosealicense.d.ts +2 -0
- package/dist/types/web/scrapers/cisa-kev.d.ts +5 -0
- package/dist/types/web/scrapers/clojars.d.ts +5 -0
- package/dist/types/web/scrapers/coingecko.d.ts +5 -0
- package/dist/types/web/scrapers/crates-io.d.ts +5 -0
- package/dist/types/web/scrapers/crossref.d.ts +2 -0
- package/dist/types/web/scrapers/devto.d.ts +5 -0
- package/dist/types/web/scrapers/discogs.d.ts +8 -0
- package/dist/types/web/scrapers/discourse.d.ts +5 -0
- package/dist/types/web/scrapers/dockerhub.d.ts +5 -0
- package/dist/types/web/scrapers/docs-rs.d.ts +2 -0
- package/dist/types/web/scrapers/fdroid.d.ts +5 -0
- package/dist/types/web/scrapers/firefox-addons.d.ts +2 -0
- package/dist/types/web/scrapers/flathub.d.ts +2 -0
- package/dist/types/web/scrapers/github-gist.d.ts +5 -0
- package/dist/types/web/scrapers/github.d.ts +34 -0
- package/dist/types/web/scrapers/gitlab.d.ts +5 -0
- package/dist/types/web/scrapers/go-pkg.d.ts +5 -0
- package/dist/types/web/scrapers/hackage.d.ts +5 -0
- package/dist/types/web/scrapers/hackernews.d.ts +2 -0
- package/dist/types/web/scrapers/hex.d.ts +5 -0
- package/dist/types/web/scrapers/huggingface.d.ts +2 -0
- package/dist/types/web/scrapers/iacr.d.ts +5 -0
- package/dist/types/web/scrapers/index.d.ts +84 -0
- package/dist/types/web/scrapers/jetbrains-marketplace.d.ts +2 -0
- package/dist/types/web/scrapers/lemmy.d.ts +2 -0
- package/dist/types/web/scrapers/lobsters.d.ts +5 -0
- package/dist/types/web/scrapers/mastodon.d.ts +5 -0
- package/dist/types/web/scrapers/maven.d.ts +6 -0
- package/dist/types/web/scrapers/mdn.d.ts +2 -0
- package/dist/types/web/scrapers/metacpan.d.ts +5 -0
- package/dist/types/web/scrapers/musicbrainz.d.ts +5 -0
- package/dist/types/web/scrapers/npm.d.ts +5 -0
- package/dist/types/web/scrapers/nuget.d.ts +5 -0
- package/dist/types/web/scrapers/nvd.d.ts +5 -0
- package/dist/types/web/scrapers/ollama.d.ts +2 -0
- package/dist/types/web/scrapers/open-vsx.d.ts +5 -0
- package/dist/types/web/scrapers/opencorporates.d.ts +5 -0
- package/dist/types/web/scrapers/openlibrary.d.ts +5 -0
- package/dist/types/web/scrapers/orcid.d.ts +5 -0
- package/dist/types/web/scrapers/osv.d.ts +5 -0
- package/dist/types/web/scrapers/packagist.d.ts +5 -0
- package/dist/types/web/scrapers/pub-dev.d.ts +5 -0
- package/dist/types/web/scrapers/pubmed.d.ts +5 -0
- package/dist/types/web/scrapers/pypi.d.ts +5 -0
- package/dist/types/web/scrapers/rawg.d.ts +2 -0
- package/dist/types/web/scrapers/readthedocs.d.ts +5 -0
- package/dist/types/web/scrapers/reddit.d.ts +5 -0
- package/dist/types/web/scrapers/repology.d.ts +5 -0
- package/dist/types/web/scrapers/rfc.d.ts +5 -0
- package/dist/types/web/scrapers/rubygems.d.ts +5 -0
- package/dist/types/web/scrapers/searchcode.d.ts +2 -0
- package/dist/types/web/scrapers/sec-edgar.d.ts +5 -0
- package/dist/types/web/scrapers/semantic-scholar.d.ts +2 -0
- package/dist/types/web/scrapers/snapcraft.d.ts +2 -0
- package/dist/types/web/scrapers/sourcegraph.d.ts +2 -0
- package/dist/types/web/scrapers/spdx.d.ts +5 -0
- package/dist/types/web/scrapers/spotify.d.ts +8 -0
- package/dist/types/web/scrapers/stackoverflow.d.ts +6 -0
- package/dist/types/web/scrapers/terraform.d.ts +5 -0
- package/dist/types/web/scrapers/tldr.d.ts +7 -0
- package/dist/types/web/scrapers/twitter.d.ts +5 -0
- package/dist/types/web/scrapers/types.d.ts +90 -0
- package/dist/types/web/scrapers/utils.d.ts +26 -0
- package/dist/types/web/scrapers/vimeo.d.ts +5 -0
- package/dist/types/web/scrapers/vscode-marketplace.d.ts +5 -0
- package/dist/types/web/scrapers/w3c.d.ts +2 -0
- package/dist/types/web/scrapers/wikidata.d.ts +5 -0
- package/dist/types/web/scrapers/wikipedia.d.ts +5 -0
- package/dist/types/web/scrapers/youtube.d.ts +5 -0
- package/dist/types/web/search/index.d.ts +74 -0
- package/dist/types/web/search/provider.d.ts +30 -0
- package/dist/types/web/search/providers/anthropic.d.ts +33 -0
- package/dist/types/web/search/providers/base.d.ts +84 -0
- package/dist/types/web/search/providers/brave.d.ts +28 -0
- package/dist/types/web/search/providers/codex.d.ts +36 -0
- package/dist/types/web/search/providers/duckduckgo.d.ts +14 -0
- package/dist/types/web/search/providers/exa.d.ts +70 -0
- package/dist/types/web/search/providers/firecrawl.d.ts +28 -0
- package/dist/types/web/search/providers/gemini.d.ts +63 -0
- package/dist/types/web/search/providers/jina.d.ts +31 -0
- package/dist/types/web/search/providers/kagi.d.ts +30 -0
- package/dist/types/web/search/providers/kimi.d.ts +32 -0
- package/dist/types/web/search/providers/parallel.d.ts +16 -0
- package/dist/types/web/search/providers/perplexity-auth.d.ts +37 -0
- package/dist/types/web/search/providers/perplexity.d.ts +58 -0
- package/dist/types/web/search/providers/searxng.d.ts +45 -0
- package/dist/types/web/search/providers/synthetic.d.ts +25 -0
- package/dist/types/web/search/providers/tavily.d.ts +30 -0
- package/dist/types/web/search/providers/tinyfish.d.ts +29 -0
- package/dist/types/web/search/providers/utils.d.ts +52 -0
- package/dist/types/web/search/providers/xai.d.ts +13 -0
- package/dist/types/web/search/providers/zai.d.ts +29 -0
- package/dist/types/web/search/render.d.ts +34 -0
- package/dist/types/web/search/types.d.ts +431 -0
- package/dist/types/web/search/utils.d.ts +4 -0
- package/dist/types/workspace-tree.d.ts +42 -0
- package/examples/README.md +21 -0
- package/examples/custom-tools/README.md +104 -0
- package/examples/custom-tools/hello/index.ts +20 -0
- package/examples/extensions/README.md +142 -0
- package/examples/extensions/api-demo.ts +79 -0
- package/examples/extensions/chalk-logger.ts +25 -0
- package/examples/extensions/hello.ts +31 -0
- package/examples/extensions/pirate.ts +43 -0
- package/examples/extensions/plan-mode.ts +549 -0
- package/examples/extensions/reload-runtime.ts +38 -0
- package/examples/extensions/thinking-note.ts +13 -0
- package/examples/extensions/tools.ts +145 -0
- package/examples/extensions/with-deps/index.ts +36 -0
- package/examples/extensions/with-deps/package-lock.json +31 -0
- package/examples/extensions/with-deps/package.json +17 -0
- package/examples/hooks/README.md +56 -0
- package/examples/hooks/auto-commit-on-exit.ts +48 -0
- package/examples/hooks/confirm-destructive.ts +58 -0
- package/examples/hooks/custom-compaction.ts +115 -0
- package/examples/hooks/dirty-repo-guard.ts +51 -0
- package/examples/hooks/file-trigger.ts +40 -0
- package/examples/hooks/git-checkpoint.ts +52 -0
- package/examples/hooks/handoff.ts +149 -0
- package/examples/hooks/permission-gate.ts +33 -0
- package/examples/hooks/protected-paths.ts +29 -0
- package/examples/hooks/qna.ts +118 -0
- package/examples/hooks/status-line.ts +39 -0
- package/examples/sdk/01-minimal.ts +21 -0
- package/examples/sdk/02-custom-model.ts +49 -0
- package/examples/sdk/03-custom-prompt.ts +46 -0
- package/examples/sdk/04-skills.ts +43 -0
- package/examples/sdk/06-extensions.ts +82 -0
- package/examples/sdk/06-hooks.ts +61 -0
- package/examples/sdk/07-context-files.ts +35 -0
- package/examples/sdk/08-prompt-templates.ts +41 -0
- package/examples/sdk/08-slash-commands.ts +46 -0
- package/examples/sdk/09-api-keys-and-oauth.ts +54 -0
- package/examples/sdk/11-sessions.ts +47 -0
- package/examples/sdk/12-redis-sessions.ts +54 -0
- package/examples/sdk/13-sql-sessions.ts +61 -0
- package/examples/sdk/README.md +172 -0
- package/package.json +594 -0
- package/scripts/bench-guard.ts +71 -0
- package/scripts/build-binary.ts +135 -0
- package/scripts/bundle-dist.ts +129 -0
- package/scripts/embed-mupdf-wasm.ts +67 -0
- package/scripts/format-prompts.ts +68 -0
- package/scripts/generate-aria-snapshot.ts +134 -0
- package/scripts/generate-docs-index.ts +148 -0
- package/scripts/generate-legacy-pi-bundled-registry.ts +420 -0
- package/scripts/generate-share-viewer.ts +36 -0
- package/scripts/measure-prompt-tokens.ts +63 -0
- package/scripts/omp +42 -0
- package/scripts/omp.ts +19 -0
- package/src/advisor/__tests__/advisor.test.ts +1662 -0
- package/src/advisor/__tests__/config.test.ts +173 -0
- package/src/advisor/__tests__/emission-guard.test.ts +147 -0
- package/src/advisor/advise-tool.ts +203 -0
- package/src/advisor/config.ts +258 -0
- package/src/advisor/emission-guard.ts +172 -0
- package/src/advisor/index.ts +6 -0
- package/src/advisor/runtime.ts +518 -0
- package/src/advisor/transcript-recorder.ts +159 -0
- package/src/advisor/watchdog.ts +135 -0
- package/src/async/index.ts +1 -0
- package/src/async/job-manager.ts +698 -0
- package/src/auto-thinking/classifier.ts +195 -0
- package/src/autolearn/controller.ts +145 -0
- package/src/autolearn/managed-skills.ts +255 -0
- package/src/autoresearch/command-resume.md +14 -0
- package/src/autoresearch/dashboard.ts +436 -0
- package/src/autoresearch/git.ts +331 -0
- package/src/autoresearch/helpers.ts +218 -0
- package/src/autoresearch/index.ts +541 -0
- package/src/autoresearch/prompt-setup.md +43 -0
- package/src/autoresearch/prompt.md +103 -0
- package/src/autoresearch/resume-message.md +10 -0
- package/src/autoresearch/state.ts +273 -0
- package/src/autoresearch/storage.ts +700 -0
- package/src/autoresearch/tools/init-experiment.ts +269 -0
- package/src/autoresearch/tools/log-experiment.ts +521 -0
- package/src/autoresearch/tools/run-experiment.ts +407 -0
- package/src/autoresearch/tools/update-notes.ts +109 -0
- package/src/autoresearch/types.ts +168 -0
- package/src/capability/context-file.ts +44 -0
- package/src/capability/extension-module.ts +34 -0
- package/src/capability/extension.ts +47 -0
- package/src/capability/fs.ts +117 -0
- package/src/capability/hook.ts +40 -0
- package/src/capability/index.ts +436 -0
- package/src/capability/instruction.ts +37 -0
- package/src/capability/mcp.ts +76 -0
- package/src/capability/prompt.ts +35 -0
- package/src/capability/rule-buckets.ts +66 -0
- package/src/capability/rule.ts +261 -0
- package/src/capability/settings.ts +34 -0
- package/src/capability/skill.ts +63 -0
- package/src/capability/slash-command.ts +40 -0
- package/src/capability/ssh.ts +41 -0
- package/src/capability/system-prompt.ts +34 -0
- package/src/capability/tool.ts +38 -0
- package/src/capability/types.ts +168 -0
- package/src/cli/agents-cli.ts +138 -0
- package/src/cli/args.ts +393 -0
- package/src/cli/auth-broker-cli.ts +921 -0
- package/src/cli/auth-gateway-cli.ts +608 -0
- package/src/cli/bench-cli.ts +623 -0
- package/src/cli/classify-install-target.ts +76 -0
- package/src/cli/claude-trace-cli.ts +795 -0
- package/src/cli/commands/init-xdg.ts +27 -0
- package/src/cli/completion-gen.ts +550 -0
- package/src/cli/config-cli.ts +422 -0
- package/src/cli/dry-balance-cli.ts +853 -0
- package/src/cli/extension-flags.ts +48 -0
- package/src/cli/file-processor.ts +133 -0
- package/src/cli/flag-tables.ts +325 -0
- package/src/cli/gallery-cli.ts +272 -0
- package/src/cli/gallery-fixtures/agentic.ts +416 -0
- package/src/cli/gallery-fixtures/codeintel.ts +187 -0
- package/src/cli/gallery-fixtures/edit.ts +254 -0
- package/src/cli/gallery-fixtures/fs.ts +220 -0
- package/src/cli/gallery-fixtures/index.ts +40 -0
- package/src/cli/gallery-fixtures/interaction.ts +46 -0
- package/src/cli/gallery-fixtures/memory.ts +81 -0
- package/src/cli/gallery-fixtures/misc.ts +250 -0
- package/src/cli/gallery-fixtures/search.ts +213 -0
- package/src/cli/gallery-fixtures/shell.ts +159 -0
- package/src/cli/gallery-fixtures/types.ts +57 -0
- package/src/cli/gallery-fixtures/web.ts +158 -0
- package/src/cli/gallery-screenshot.ts +279 -0
- package/src/cli/gc-cli.ts +946 -0
- package/src/cli/grep-cli.ts +160 -0
- package/src/cli/grievances-cli.ts +256 -0
- package/src/cli/initial-message.ts +58 -0
- package/src/cli/models-cli.ts +368 -0
- package/src/cli/plugin-cli.ts +996 -0
- package/src/cli/profile-alias.ts +369 -0
- package/src/cli/profile-bootstrap.ts +233 -0
- package/src/cli/read-cli.ts +57 -0
- package/src/cli/session-picker.ts +93 -0
- package/src/cli/setup-cli.ts +332 -0
- package/src/cli/setup-model-picker.ts +43 -0
- package/src/cli/shell-cli.ts +176 -0
- package/src/cli/ssh-cli.ts +179 -0
- package/src/cli/startup-cwd.ts +58 -0
- package/src/cli/stats-cli.ts +229 -0
- package/src/cli/tiny-models-cli.ts +153 -0
- package/src/cli/ttsr-cli.ts +995 -0
- package/src/cli/update-cli.test.ts +28 -0
- package/src/cli/update-cli.ts +944 -0
- package/src/cli/usage-cli.ts +857 -0
- package/src/cli/web-search-cli.ts +137 -0
- package/src/cli/worktree-cli.ts +294 -0
- package/src/cli-commands.ts +131 -0
- package/src/cli.ts +348 -0
- package/src/collab/crypto.ts +63 -0
- package/src/collab/display-name.ts +13 -0
- package/src/collab/guest.ts +731 -0
- package/src/collab/host.ts +690 -0
- package/src/collab/protocol.ts +296 -0
- package/src/collab/relay-client.ts +216 -0
- package/src/collab/replication-shrink.ts +111 -0
- package/src/commands/acp.ts +24 -0
- package/src/commands/agents.ts +57 -0
- package/src/commands/auth-broker.ts +99 -0
- package/src/commands/auth-gateway.ts +69 -0
- package/src/commands/bench.ts +51 -0
- package/src/commands/commit.ts +46 -0
- package/src/commands/complete.ts +66 -0
- package/src/commands/completions.ts +60 -0
- package/src/commands/config.ts +51 -0
- package/src/commands/dry-balance.ts +43 -0
- package/src/commands/gallery.ts +60 -0
- package/src/commands/gc.ts +46 -0
- package/src/commands/grep.ts +48 -0
- package/src/commands/grievances.ts +51 -0
- package/src/commands/install.ts +107 -0
- package/src/commands/join.ts +39 -0
- package/src/commands/launch.ts +182 -0
- package/src/commands/models.ts +60 -0
- package/src/commands/plugin.ts +78 -0
- package/src/commands/read.ts +38 -0
- package/src/commands/say.ts +102 -0
- package/src/commands/setup.ts +67 -0
- package/src/commands/shell.ts +29 -0
- package/src/commands/ssh.ts +60 -0
- package/src/commands/stats.ts +29 -0
- package/src/commands/tiny-models.ts +36 -0
- package/src/commands/token.ts +162 -0
- package/src/commands/ttsr.ts +125 -0
- package/src/commands/update.ts +27 -0
- package/src/commands/usage.ts +43 -0
- package/src/commands/web-search.ts +42 -0
- package/src/commands/worktree.ts +62 -0
- package/src/commit/agentic/agent.ts +318 -0
- package/src/commit/agentic/fallback.ts +96 -0
- package/src/commit/agentic/index.ts +355 -0
- package/src/commit/agentic/prompts/analyze-file.md +22 -0
- package/src/commit/agentic/prompts/session-user.md +25 -0
- package/src/commit/agentic/prompts/split-confirm.md +1 -0
- package/src/commit/agentic/prompts/system.md +38 -0
- package/src/commit/agentic/state.ts +60 -0
- package/src/commit/agentic/tools/analyze-file.ts +149 -0
- package/src/commit/agentic/tools/git-file-diff.ts +191 -0
- package/src/commit/agentic/tools/git-hunk.ts +52 -0
- package/src/commit/agentic/tools/git-overview.ts +81 -0
- package/src/commit/agentic/tools/index.ts +54 -0
- package/src/commit/agentic/tools/propose-changelog.ts +147 -0
- package/src/commit/agentic/tools/propose-commit.ts +109 -0
- package/src/commit/agentic/tools/recent-commits.ts +81 -0
- package/src/commit/agentic/tools/schemas.ts +11 -0
- package/src/commit/agentic/tools/split-commit.ts +241 -0
- package/src/commit/agentic/topo-sort.ts +44 -0
- package/src/commit/agentic/trivial.ts +51 -0
- package/src/commit/agentic/validation.ts +183 -0
- package/src/commit/analysis/conventional.ts +64 -0
- package/src/commit/analysis/index.ts +4 -0
- package/src/commit/analysis/scope.ts +242 -0
- package/src/commit/analysis/summary.ts +107 -0
- package/src/commit/analysis/validation.ts +66 -0
- package/src/commit/changelog/detect.ts +40 -0
- package/src/commit/changelog/generate.ts +101 -0
- package/src/commit/changelog/index.ts +234 -0
- package/src/commit/changelog/parse.ts +44 -0
- package/src/commit/cli.ts +85 -0
- package/src/commit/git/diff.ts +148 -0
- package/src/commit/index.ts +5 -0
- package/src/commit/map-reduce/index.ts +69 -0
- package/src/commit/map-reduce/map-phase.ts +193 -0
- package/src/commit/map-reduce/reduce-phase.ts +49 -0
- package/src/commit/map-reduce/utils.ts +9 -0
- package/src/commit/message.ts +11 -0
- package/src/commit/model-selection.ts +95 -0
- package/src/commit/pipeline.ts +243 -0
- package/src/commit/prompts/analysis-system.md +148 -0
- package/src/commit/prompts/analysis-user.md +38 -0
- package/src/commit/prompts/changelog-system.md +50 -0
- package/src/commit/prompts/changelog-user.md +18 -0
- package/src/commit/prompts/file-observer-system.md +24 -0
- package/src/commit/prompts/file-observer-user.md +8 -0
- package/src/commit/prompts/reduce-system.md +50 -0
- package/src/commit/prompts/reduce-user.md +17 -0
- package/src/commit/prompts/summary-retry.md +3 -0
- package/src/commit/prompts/summary-system.md +38 -0
- package/src/commit/prompts/summary-user.md +13 -0
- package/src/commit/prompts/types-description.md +2 -0
- package/src/commit/shared-llm.ts +70 -0
- package/src/commit/types.ts +118 -0
- package/src/commit/utils/exclusions.ts +42 -0
- package/src/commit/utils.ts +58 -0
- package/src/config/api-key-resolver.ts +67 -0
- package/src/config/append-only-context-mode.ts +76 -0
- package/src/config/config-file.ts +315 -0
- package/src/config/file-lock.ts +164 -0
- package/src/config/inline-tool-descriptors-mode.ts +26 -0
- package/src/config/keybindings.ts +636 -0
- package/src/config/mcp-schema.json +247 -0
- package/src/config/model-discovery.ts +919 -0
- package/src/config/model-registry.ts +2275 -0
- package/src/config/model-resolver.ts +1798 -0
- package/src/config/model-roles.ts +99 -0
- package/src/config/models-config-schema.ts +293 -0
- package/src/config/models-config.ts +134 -0
- package/src/config/prompt-templates.ts +205 -0
- package/src/config/provider-globals.ts +25 -0
- package/src/config/resolve-config-value.ts +94 -0
- package/src/config/service-tier.ts +116 -0
- package/src/config/settings-schema.ts +5247 -0
- package/src/config/settings.ts +1540 -0
- package/src/config.ts +242 -0
- package/src/cursor.ts +340 -0
- package/src/dap/client.ts +764 -0
- package/src/dap/config.ts +333 -0
- package/src/dap/defaults.json +212 -0
- package/src/dap/index.ts +4 -0
- package/src/dap/session.ts +1441 -0
- package/src/dap/types.ts +610 -0
- package/src/debug/index.ts +584 -0
- package/src/debug/log-formatting.ts +58 -0
- package/src/debug/log-viewer.ts +966 -0
- package/src/debug/profiler.ts +168 -0
- package/src/debug/protocol-probe.ts +267 -0
- package/src/debug/raw-sse-buffer.ts +294 -0
- package/src/debug/raw-sse.ts +312 -0
- package/src/debug/remote-debugger.ts +151 -0
- package/src/debug/report-bundle.ts +375 -0
- package/src/debug/system-info.ts +111 -0
- package/src/debug/terminal-info.ts +124 -0
- package/src/discovery/agents-md.ts +67 -0
- package/src/discovery/agents.ts +230 -0
- package/src/discovery/at-imports.ts +273 -0
- package/src/discovery/builtin-defaults.ts +39 -0
- package/src/discovery/builtin-rules/go-add-cleanup.md +32 -0
- package/src/discovery/builtin-rules/go-bench-loop.md +36 -0
- package/src/discovery/builtin-rules/go-exp-promoted.md +39 -0
- package/src/discovery/builtin-rules/go-ioutil.md +36 -0
- package/src/discovery/builtin-rules/go-join-hostport.md +29 -0
- package/src/discovery/builtin-rules/go-new-expr.md +44 -0
- package/src/discovery/builtin-rules/go-rand-v2.md +40 -0
- package/src/discovery/builtin-rules/go-range-int.md +45 -0
- package/src/discovery/builtin-rules/index.ts +72 -0
- package/src/discovery/builtin-rules/rs-box-leak.md +48 -0
- package/src/discovery/builtin-rules/rs-future-prelude.md +23 -0
- package/src/discovery/builtin-rules/rs-lazylock.md +51 -0
- package/src/discovery/builtin-rules/rs-match-ergonomics.md +67 -0
- package/src/discovery/builtin-rules/rs-parking-lot.md +44 -0
- package/src/discovery/builtin-rules/rs-result-type.md +19 -0
- package/src/discovery/builtin-rules/ts-bare-catch.md +38 -0
- package/src/discovery/builtin-rules/ts-import-type.md +42 -0
- package/src/discovery/builtin-rules/ts-no-any.md +65 -0
- package/src/discovery/builtin-rules/ts-no-deprecated-leftovers.md +44 -0
- package/src/discovery/builtin-rules/ts-no-dynamic-import.md +39 -0
- package/src/discovery/builtin-rules/ts-no-inline-cast-access.md +55 -0
- package/src/discovery/builtin-rules/ts-no-return-type.md +44 -0
- package/src/discovery/builtin-rules/ts-no-test-timers.md +55 -0
- package/src/discovery/builtin-rules/ts-no-tiny-functions.md +51 -0
- package/src/discovery/builtin-rules/ts-promise-with-resolvers.md +65 -0
- package/src/discovery/builtin-rules/ts-redundant-clear-guard.md +75 -0
- package/src/discovery/builtin-rules/ts-set-map.md +28 -0
- package/src/discovery/builtin.ts +934 -0
- package/src/discovery/claude-plugins.ts +387 -0
- package/src/discovery/claude.ts +584 -0
- package/src/discovery/cline.ts +83 -0
- package/src/discovery/codex.ts +530 -0
- package/src/discovery/cursor.ts +220 -0
- package/src/discovery/gemini.ts +383 -0
- package/src/discovery/github.ts +337 -0
- package/src/discovery/helpers.ts +1102 -0
- package/src/discovery/index.ts +81 -0
- package/src/discovery/mcp-json.ts +172 -0
- package/src/discovery/omp-extension-roots.ts +213 -0
- package/src/discovery/omp-plugins.ts +383 -0
- package/src/discovery/opencode.ts +441 -0
- package/src/discovery/plugin-dir-roots.ts +28 -0
- package/src/discovery/ssh.ts +153 -0
- package/src/discovery/substitute-plugin-root.ts +29 -0
- package/src/discovery/vscode.ts +105 -0
- package/src/discovery/windsurf.ts +147 -0
- package/src/edit/apply-patch/index.ts +87 -0
- package/src/edit/apply-patch/parser.ts +174 -0
- package/src/edit/diff.ts +999 -0
- package/src/edit/file-snapshot-store.ts +157 -0
- package/src/edit/hashline/block-resolver.ts +33 -0
- package/src/edit/hashline/diff.ts +356 -0
- package/src/edit/hashline/execute.ts +279 -0
- package/src/edit/hashline/filesystem.ts +205 -0
- package/src/edit/hashline/index.ts +5 -0
- package/src/edit/hashline/noop-loop-guard.ts +99 -0
- package/src/edit/hashline/params.ts +12 -0
- package/src/edit/index.ts +705 -0
- package/src/edit/modes/apply-patch.lark +19 -0
- package/src/edit/modes/apply-patch.ts +53 -0
- package/src/edit/modes/patch.ts +1950 -0
- package/src/edit/modes/replace.ts +1137 -0
- package/src/edit/normalize.ts +345 -0
- package/src/edit/notebook.ts +242 -0
- package/src/edit/read-file.ts +25 -0
- package/src/edit/renderer.ts +969 -0
- package/src/edit/snapshot-details.ts +77 -0
- package/src/edit/streaming.ts +698 -0
- package/src/eval/__tests__/agent-bridge.test.ts +1399 -0
- package/src/eval/__tests__/bridge-timeout.test.ts +64 -0
- package/src/eval/__tests__/budget-bridge.test.ts +69 -0
- package/src/eval/__tests__/completion-bridge.test.ts +412 -0
- package/src/eval/__tests__/helpers-local-roots.test.ts +55 -0
- package/src/eval/__tests__/idle-timeout.test.ts +80 -0
- package/src/eval/__tests__/js-context-manager.test.ts +291 -0
- package/src/eval/__tests__/julia-prelude.test.ts +66 -0
- package/src/eval/__tests__/kernel-spawn.test.ts +103 -0
- package/src/eval/__tests__/prelude-agent.test.ts +107 -0
- package/src/eval/agent-bridge.ts +584 -0
- package/src/eval/backend-helpers.ts +48 -0
- package/src/eval/backend.ts +71 -0
- package/src/eval/bridge-timeout.ts +44 -0
- package/src/eval/budget-bridge.ts +48 -0
- package/src/eval/completion-bridge.ts +211 -0
- package/src/eval/concurrency-bridge.ts +34 -0
- package/src/eval/executor-base.ts +425 -0
- package/src/eval/idle-timeout.ts +91 -0
- package/src/eval/index.ts +6 -0
- package/src/eval/jl/executor.ts +540 -0
- package/src/eval/jl/index.ts +54 -0
- package/src/eval/jl/kernel.ts +235 -0
- package/src/eval/jl/prelude.jl +735 -0
- package/src/eval/jl/prelude.ts +3 -0
- package/src/eval/jl/runner.jl +666 -0
- package/src/eval/jl/runtime.ts +118 -0
- package/src/eval/js/context-manager.ts +621 -0
- package/src/eval/js/executor.ts +173 -0
- package/src/eval/js/index.ts +40 -0
- package/src/eval/js/shared/helpers.ts +170 -0
- package/src/eval/js/shared/indirect-eval.ts +30 -0
- package/src/eval/js/shared/local-module-loader.ts +364 -0
- package/src/eval/js/shared/prelude.ts +2 -0
- package/src/eval/js/shared/prelude.txt +293 -0
- package/src/eval/js/shared/rewrite-imports.ts +532 -0
- package/src/eval/js/shared/runtime.ts +574 -0
- package/src/eval/js/shared/types.ts +18 -0
- package/src/eval/js/tool-bridge.ts +163 -0
- package/src/eval/js/worker-core.ts +151 -0
- package/src/eval/js/worker-entry.ts +37 -0
- package/src/eval/js/worker-protocol.ts +47 -0
- package/src/eval/kernel-base.ts +569 -0
- package/src/eval/py/__tests__/prelude.test.ts +32 -0
- package/src/eval/py/__tests__/runner-shell-output.test.ts +157 -0
- package/src/eval/py/display.ts +71 -0
- package/src/eval/py/executor.ts +533 -0
- package/src/eval/py/index.ts +57 -0
- package/src/eval/py/kernel.ts +233 -0
- package/src/eval/py/prelude.py +625 -0
- package/src/eval/py/prelude.ts +3 -0
- package/src/eval/py/runner.py +1322 -0
- package/src/eval/py/runtime.ts +276 -0
- package/src/eval/py/spawn-options.ts +126 -0
- package/src/eval/py/tool-bridge.ts +182 -0
- package/src/eval/rb/executor.ts +504 -0
- package/src/eval/rb/index.ts +54 -0
- package/src/eval/rb/kernel.ts +230 -0
- package/src/eval/rb/prelude.rb +553 -0
- package/src/eval/rb/prelude.ts +3 -0
- package/src/eval/rb/runner.rb +581 -0
- package/src/eval/rb/runtime.ts +132 -0
- package/src/eval/runtime-env.ts +104 -0
- package/src/eval/session-id.ts +8 -0
- package/src/eval/types.ts +48 -0
- package/src/exa/index.ts +2 -0
- package/src/exa/mcp-client.ts +370 -0
- package/src/exa/types.ts +69 -0
- package/src/exec/bash-executor.ts +473 -0
- package/src/exec/exec.ts +53 -0
- package/src/exec/non-interactive-env.ts +119 -0
- package/src/export/custom-share.ts +65 -0
- package/src/export/html/index.ts +308 -0
- package/src/export/html/share-loader.js +102 -0
- package/src/export/html/template.css +1337 -0
- package/src/export/html/template.html +49 -0
- package/src/export/html/template.js +1634 -0
- package/src/export/html/tool-views.generated.js +37 -0
- package/src/export/html/vendor/highlight.min.js +1213 -0
- package/src/export/html/vendor/marked.min.js +6 -0
- package/src/export/html/web-palette.ts +142 -0
- package/src/export/share.ts +481 -0
- package/src/export/ttsr.ts +583 -0
- package/src/extensibility/custom-commands/bundled/ci-green/index.ts +54 -0
- package/src/extensibility/custom-commands/bundled/review/index.ts +698 -0
- package/src/extensibility/custom-commands/index.ts +2 -0
- package/src/extensibility/custom-commands/loader.ts +242 -0
- package/src/extensibility/custom-commands/types.ts +119 -0
- package/src/extensibility/custom-tools/index.ts +7 -0
- package/src/extensibility/custom-tools/loader.ts +268 -0
- package/src/extensibility/custom-tools/types.ts +280 -0
- package/src/extensibility/custom-tools/wrapper.ts +47 -0
- package/src/extensibility/extensions/compact-handler.ts +40 -0
- package/src/extensibility/extensions/get-commands-handler.ts +78 -0
- package/src/extensibility/extensions/index.ts +16 -0
- package/src/extensibility/extensions/loader.ts +596 -0
- package/src/extensibility/extensions/model-api.ts +39 -0
- package/src/extensibility/extensions/runner.ts +1039 -0
- package/src/extensibility/extensions/types.ts +1394 -0
- package/src/extensibility/extensions/wrapper.ts +266 -0
- package/src/extensibility/hooks/index.ts +6 -0
- package/src/extensibility/hooks/loader.ts +244 -0
- package/src/extensibility/hooks/runner.ts +425 -0
- package/src/extensibility/hooks/tool-wrapper.ts +117 -0
- package/src/extensibility/hooks/types.ts +613 -0
- package/src/extensibility/legacy-pi-ai-shim.ts +73 -0
- package/src/extensibility/legacy-pi-coding-agent-shim.ts +646 -0
- package/src/extensibility/plugins/doctor.ts +65 -0
- package/src/extensibility/plugins/git-url.ts +367 -0
- package/src/extensibility/plugins/index.ts +9 -0
- package/src/extensibility/plugins/installer.ts +201 -0
- package/src/extensibility/plugins/legacy-pi-bundled-keys.ts +1011 -0
- package/src/extensibility/plugins/legacy-pi-bundled-registry.ts +3430 -0
- package/src/extensibility/plugins/legacy-pi-compat.ts +1141 -0
- package/src/extensibility/plugins/loader.ts +535 -0
- package/src/extensibility/plugins/manager.ts +1121 -0
- package/src/extensibility/plugins/marketplace/cache.ts +136 -0
- package/src/extensibility/plugins/marketplace/fetcher.ts +315 -0
- package/src/extensibility/plugins/marketplace/index.ts +6 -0
- package/src/extensibility/plugins/marketplace/manager.ts +926 -0
- package/src/extensibility/plugins/marketplace/registry.ts +196 -0
- package/src/extensibility/plugins/marketplace/source-resolver.ts +147 -0
- package/src/extensibility/plugins/marketplace/types.ts +192 -0
- package/src/extensibility/plugins/marketplace-auto-update.ts +49 -0
- package/src/extensibility/plugins/parser.ts +107 -0
- package/src/extensibility/plugins/runtime-config.ts +9 -0
- package/src/extensibility/plugins/types.ts +194 -0
- package/src/extensibility/session-handler-types.ts +21 -0
- package/src/extensibility/shared-events.ts +376 -0
- package/src/extensibility/skills.ts +508 -0
- package/src/extensibility/slash-commands.ts +131 -0
- package/src/extensibility/tool-event-input.ts +80 -0
- package/src/extensibility/tool-proxy.ts +28 -0
- package/src/extensibility/typebox.ts +945 -0
- package/src/extensibility/utils.ts +118 -0
- package/src/goals/guided-setup.ts +143 -0
- package/src/goals/index.ts +3 -0
- package/src/goals/runtime.ts +521 -0
- package/src/goals/state.ts +37 -0
- package/src/goals/tools/goal-tool.ts +251 -0
- package/src/hindsight/backend.ts +354 -0
- package/src/hindsight/bank.ts +156 -0
- package/src/hindsight/client.test.ts +33 -0
- package/src/hindsight/client.ts +643 -0
- package/src/hindsight/config.ts +175 -0
- package/src/hindsight/content.ts +266 -0
- package/src/hindsight/index.ts +8 -0
- package/src/hindsight/mental-models.ts +429 -0
- package/src/hindsight/seeds.json +32 -0
- package/src/hindsight/state.ts +492 -0
- package/src/hindsight/transcript.ts +71 -0
- package/src/index.ts +66 -0
- package/src/internal-urls/__tests__/ssh-protocol.test.ts +331 -0
- package/src/internal-urls/agent-protocol.ts +146 -0
- package/src/internal-urls/artifact-protocol.ts +151 -0
- package/src/internal-urls/docs-index.generated.txt +2 -0
- package/src/internal-urls/docs-index.ts +101 -0
- package/src/internal-urls/filesystem-resource.ts +34 -0
- package/src/internal-urls/history-protocol.ts +118 -0
- package/src/internal-urls/index.ts +26 -0
- package/src/internal-urls/issue-pr-protocol.ts +594 -0
- package/src/internal-urls/json-query.ts +126 -0
- package/src/internal-urls/local-protocol.ts +469 -0
- package/src/internal-urls/mcp-protocol.ts +151 -0
- package/src/internal-urls/memory-protocol.ts +173 -0
- package/src/internal-urls/omp-protocol.ts +94 -0
- package/src/internal-urls/parse.ts +72 -0
- package/src/internal-urls/registry-helpers.ts +40 -0
- package/src/internal-urls/router.ts +107 -0
- package/src/internal-urls/rule-protocol.ts +45 -0
- package/src/internal-urls/skill-protocol.ts +112 -0
- package/src/internal-urls/ssh-protocol.ts +367 -0
- package/src/internal-urls/types.ts +182 -0
- package/src/internal-urls/vault-protocol.ts +939 -0
- package/src/irc/bus.ts +320 -0
- package/src/jsonrpc/message-framing.ts +142 -0
- package/src/lib/xai-http.ts +124 -0
- package/src/lsp/client.ts +1249 -0
- package/src/lsp/clients/biome-client.ts +264 -0
- package/src/lsp/clients/index.ts +50 -0
- package/src/lsp/clients/lsp-linter-client.ts +85 -0
- package/src/lsp/clients/swiftlint-client.ts +120 -0
- package/src/lsp/config.ts +531 -0
- package/src/lsp/defaults.json +499 -0
- package/src/lsp/diagnostics-ledger.ts +51 -0
- package/src/lsp/edits.ts +288 -0
- package/src/lsp/format-options.ts +119 -0
- package/src/lsp/index.ts +2539 -0
- package/src/lsp/lspmux.ts +233 -0
- package/src/lsp/render.ts +668 -0
- package/src/lsp/startup-events.ts +13 -0
- package/src/lsp/types.ts +444 -0
- package/src/lsp/utils.ts +718 -0
- package/src/main.ts +1474 -0
- package/src/markit/NOTICE +32 -0
- package/src/markit/converters/docx.ts +56 -0
- package/src/markit/converters/epub.ts +136 -0
- package/src/markit/converters/mammoth.d.ts +24 -0
- package/src/markit/converters/pdf/columns.ts +103 -0
- package/src/markit/converters/pdf/extract.ts +574 -0
- package/src/markit/converters/pdf/grid.ts +780 -0
- package/src/markit/converters/pdf/headers.ts +106 -0
- package/src/markit/converters/pdf/index.ts +146 -0
- package/src/markit/converters/pdf/render.ts +501 -0
- package/src/markit/converters/pdf/types.ts +84 -0
- package/src/markit/converters/pptx.ts +325 -0
- package/src/markit/converters/xlsx.ts +173 -0
- package/src/markit/index.ts +2 -0
- package/src/markit/registry.ts +59 -0
- package/src/markit/types.ts +35 -0
- package/src/mcp/client.ts +511 -0
- package/src/mcp/config-writer.ts +350 -0
- package/src/mcp/config.ts +369 -0
- package/src/mcp/index.ts +29 -0
- package/src/mcp/json-rpc.ts +122 -0
- package/src/mcp/loader.ts +125 -0
- package/src/mcp/manager.ts +1362 -0
- package/src/mcp/oauth-credentials.ts +104 -0
- package/src/mcp/oauth-discovery.ts +560 -0
- package/src/mcp/oauth-flow.ts +787 -0
- package/src/mcp/render.ts +155 -0
- package/src/mcp/smithery-auth.ts +107 -0
- package/src/mcp/smithery-connect.ts +154 -0
- package/src/mcp/smithery-registry.test.ts +51 -0
- package/src/mcp/smithery-registry.ts +500 -0
- package/src/mcp/startup-events.ts +116 -0
- package/src/mcp/timeout.ts +59 -0
- package/src/mcp/tool-bridge.ts +484 -0
- package/src/mcp/tool-cache.ts +117 -0
- package/src/mcp/transports/http.ts +523 -0
- package/src/mcp/transports/index.ts +7 -0
- package/src/mcp/transports/sse.ts +377 -0
- package/src/mcp/transports/stdio.test.ts +95 -0
- package/src/mcp/transports/stdio.ts +663 -0
- package/src/mcp/types.ts +430 -0
- package/src/memories/index.ts +1395 -0
- package/src/memories/storage.ts +578 -0
- package/src/memory-backend/index.ts +18 -0
- package/src/memory-backend/local-backend.ts +47 -0
- package/src/memory-backend/off-backend.ts +25 -0
- package/src/memory-backend/resolve.ts +25 -0
- package/src/memory-backend/runtime.ts +66 -0
- package/src/memory-backend/types.ts +166 -0
- package/src/mnemopi/backend.ts +612 -0
- package/src/mnemopi/config.ts +267 -0
- package/src/mnemopi/embed-client.ts +246 -0
- package/src/mnemopi/embed-protocol.ts +35 -0
- package/src/mnemopi/embed-worker.ts +113 -0
- package/src/mnemopi/index.ts +3 -0
- package/src/mnemopi/state.ts +722 -0
- package/src/modes/acp/acp-agent.ts +2372 -0
- package/src/modes/acp/acp-client-bridge.ts +154 -0
- package/src/modes/acp/acp-event-mapper.ts +1002 -0
- package/src/modes/acp/acp-mode.ts +23 -0
- package/src/modes/acp/index.ts +2 -0
- package/src/modes/acp/terminal-auth.ts +37 -0
- package/src/modes/components/__tests__/move-overlay.test.ts +237 -0
- package/src/modes/components/__tests__/skill-message.test.ts +92 -0
- package/src/modes/components/advisor-config.ts +555 -0
- package/src/modes/components/advisor-message.ts +109 -0
- package/src/modes/components/agent-dashboard.ts +1183 -0
- package/src/modes/components/agent-hub.ts +586 -0
- package/src/modes/components/agent-transcript-viewer.ts +649 -0
- package/src/modes/components/assistant-message.ts +869 -0
- package/src/modes/components/background-tan-message.ts +36 -0
- package/src/modes/components/bash-execution.ts +229 -0
- package/src/modes/components/bordered-loader.ts +41 -0
- package/src/modes/components/btw-panel.ts +124 -0
- package/src/modes/components/cache-invalidation-marker.ts +110 -0
- package/src/modes/components/chat-block.ts +111 -0
- package/src/modes/components/chat-transcript-builder.ts +449 -0
- package/src/modes/components/collab-prompt-message.ts +32 -0
- package/src/modes/components/compaction-summary-message.ts +215 -0
- package/src/modes/components/copy-selector.ts +206 -0
- package/src/modes/components/countdown-timer.ts +75 -0
- package/src/modes/components/custom-editor.test.ts +283 -0
- package/src/modes/components/custom-editor.ts +835 -0
- package/src/modes/components/custom-message.ts +67 -0
- package/src/modes/components/diff.ts +254 -0
- package/src/modes/components/dynamic-border.ts +34 -0
- package/src/modes/components/error-banner.ts +33 -0
- package/src/modes/components/eval-execution.ts +167 -0
- package/src/modes/components/execution-shared.ts +101 -0
- package/src/modes/components/extensions/extension-dashboard.ts +492 -0
- package/src/modes/components/extensions/extension-list.ts +507 -0
- package/src/modes/components/extensions/index.ts +9 -0
- package/src/modes/components/extensions/inspector-panel.ts +321 -0
- package/src/modes/components/extensions/state-manager.ts +648 -0
- package/src/modes/components/extensions/types.ts +186 -0
- package/src/modes/components/footer.ts +276 -0
- package/src/modes/components/history-search.ts +268 -0
- package/src/modes/components/hook-editor.ts +183 -0
- package/src/modes/components/hook-input.ts +87 -0
- package/src/modes/components/hook-message.ts +67 -0
- package/src/modes/components/hook-selector.ts +678 -0
- package/src/modes/components/index.ts +40 -0
- package/src/modes/components/keybinding-hints.ts +65 -0
- package/src/modes/components/late-diagnostics-message.ts +60 -0
- package/src/modes/components/login-dialog.ts +178 -0
- package/src/modes/components/logout-account-selector.ts +130 -0
- package/src/modes/components/mcp-add-wizard.ts +1408 -0
- package/src/modes/components/message-frame.ts +92 -0
- package/src/modes/components/model-selector.ts +1267 -0
- package/src/modes/components/move-overlay.ts +294 -0
- package/src/modes/components/oauth-selector.ts +457 -0
- package/src/modes/components/omfg-panel.ts +141 -0
- package/src/modes/components/overlay-box.ts +109 -0
- package/src/modes/components/plan-review-overlay.ts +847 -0
- package/src/modes/components/plan-toc.ts +138 -0
- package/src/modes/components/plugin-selector.ts +100 -0
- package/src/modes/components/plugin-settings.ts +745 -0
- package/src/modes/components/queue-mode-selector.ts +61 -0
- package/src/modes/components/read-tool-group.ts +676 -0
- package/src/modes/components/reset-usage-selector.ts +161 -0
- package/src/modes/components/segment-track.ts +89 -0
- package/src/modes/components/select-list-mouse-routing.ts +35 -0
- package/src/modes/components/selector-helpers.ts +129 -0
- package/src/modes/components/session-selector.ts +744 -0
- package/src/modes/components/settings-defs.ts +238 -0
- package/src/modes/components/settings-selector.ts +1265 -0
- package/src/modes/components/show-images-selector.ts +50 -0
- package/src/modes/components/skill-message.ts +110 -0
- package/src/modes/components/snapcompact-shape-preview-doc.md +18 -0
- package/src/modes/components/snapcompact-shape-preview.ts +192 -0
- package/src/modes/components/status-line/component.test.ts +44 -0
- package/src/modes/components/status-line/component.ts +1308 -0
- package/src/modes/components/status-line/context-thresholds.ts +86 -0
- package/src/modes/components/status-line/git-utils.ts +42 -0
- package/src/modes/components/status-line/index.ts +5 -0
- package/src/modes/components/status-line/presets.ts +106 -0
- package/src/modes/components/status-line/segments.ts +663 -0
- package/src/modes/components/status-line/separators.ts +55 -0
- package/src/modes/components/status-line/token-rate.ts +66 -0
- package/src/modes/components/status-line/types.ts +147 -0
- package/src/modes/components/theme-selector.ts +68 -0
- package/src/modes/components/thinking-selector.ts +57 -0
- package/src/modes/components/tiny-title-download-progress.ts +90 -0
- package/src/modes/components/tips.txt +24 -0
- package/src/modes/components/todo-reminder.ts +43 -0
- package/src/modes/components/tool-execution.ts +1308 -0
- package/src/modes/components/transcript-container.ts +456 -0
- package/src/modes/components/tree-selector.ts +1002 -0
- package/src/modes/components/ttsr-notification.ts +123 -0
- package/src/modes/components/usage-row.ts +32 -0
- package/src/modes/components/user-message-selector.ts +227 -0
- package/src/modes/components/user-message.ts +68 -0
- package/src/modes/components/visual-truncate.ts +63 -0
- package/src/modes/components/welcome.ts +579 -0
- package/src/modes/controllers/btw-controller.ts +198 -0
- package/src/modes/controllers/command-controller-shared.ts +109 -0
- package/src/modes/controllers/command-controller.ts +1751 -0
- package/src/modes/controllers/event-controller.ts +1497 -0
- package/src/modes/controllers/extension-ui-controller.ts +977 -0
- package/src/modes/controllers/input-controller.ts +1851 -0
- package/src/modes/controllers/mcp-command-controller.ts +2364 -0
- package/src/modes/controllers/omfg-controller.ts +283 -0
- package/src/modes/controllers/omfg-rule.ts +647 -0
- package/src/modes/controllers/selector-controller.ts +1443 -0
- package/src/modes/controllers/session-focus-controller.ts +112 -0
- package/src/modes/controllers/ssh-command-controller.ts +384 -0
- package/src/modes/controllers/streaming-reveal.ts +392 -0
- package/src/modes/controllers/tan-command-controller.ts +190 -0
- package/src/modes/controllers/todo-command-controller.ts +484 -0
- package/src/modes/controllers/tool-args-reveal.ts +582 -0
- package/src/modes/data/emojis.json +1 -0
- package/src/modes/emoji-autocomplete.ts +285 -0
- package/src/modes/gradient-highlight.ts +99 -0
- package/src/modes/image-references.ts +137 -0
- package/src/modes/index.ts +17 -0
- package/src/modes/interactive-mode.ts +4223 -0
- package/src/modes/internal-url-autocomplete.ts +158 -0
- package/src/modes/loop-limit.ts +192 -0
- package/src/modes/magic-keywords.ts +42 -0
- package/src/modes/markdown-prose.ts +247 -0
- package/src/modes/oauth-manual-input.ts +69 -0
- package/src/modes/orchestrate.ts +42 -0
- package/src/modes/print-mode.ts +130 -0
- package/src/modes/prompt-action-autocomplete.ts +262 -0
- package/src/modes/rpc/host-tools.ts +186 -0
- package/src/modes/rpc/host-uris.ts +235 -0
- package/src/modes/rpc/rpc-client.ts +1033 -0
- package/src/modes/rpc/rpc-mode.ts +1311 -0
- package/src/modes/rpc/rpc-subagents.ts +265 -0
- package/src/modes/rpc/rpc-types.ts +499 -0
- package/src/modes/running-subagent-badge.ts +13 -0
- package/src/modes/runtime-init.ts +142 -0
- package/src/modes/session-observer-registry.ts +215 -0
- package/src/modes/session-teardown.test.ts +219 -0
- package/src/modes/session-teardown.ts +82 -0
- package/src/modes/setup-version.ts +11 -0
- package/src/modes/setup-wizard/index.ts +101 -0
- package/src/modes/setup-wizard/lazy.ts +16 -0
- package/src/modes/setup-wizard/scenes/glyph.ts +103 -0
- package/src/modes/setup-wizard/scenes/outro.ts +35 -0
- package/src/modes/setup-wizard/scenes/providers.ts +104 -0
- package/src/modes/setup-wizard/scenes/sign-in.ts +304 -0
- package/src/modes/setup-wizard/scenes/splash.ts +201 -0
- package/src/modes/setup-wizard/scenes/theme.ts +320 -0
- package/src/modes/setup-wizard/scenes/types.ts +57 -0
- package/src/modes/setup-wizard/scenes/web-search.ts +140 -0
- package/src/modes/setup-wizard/startup-splash.ts +107 -0
- package/src/modes/setup-wizard/wizard-overlay.ts +335 -0
- package/src/modes/shared.ts +49 -0
- package/src/modes/skill-command.ts +91 -0
- package/src/modes/theme/dark.json +95 -0
- package/src/modes/theme/defaults/alabaster.json +93 -0
- package/src/modes/theme/defaults/amethyst.json +96 -0
- package/src/modes/theme/defaults/anthracite.json +93 -0
- package/src/modes/theme/defaults/basalt.json +91 -0
- package/src/modes/theme/defaults/birch.json +95 -0
- package/src/modes/theme/defaults/dark-abyss.json +91 -0
- package/src/modes/theme/defaults/dark-arctic.json +104 -0
- package/src/modes/theme/defaults/dark-aurora.json +95 -0
- package/src/modes/theme/defaults/dark-catppuccin.json +107 -0
- package/src/modes/theme/defaults/dark-cavern.json +91 -0
- package/src/modes/theme/defaults/dark-copper.json +95 -0
- package/src/modes/theme/defaults/dark-cosmos.json +90 -0
- package/src/modes/theme/defaults/dark-cyberpunk.json +102 -0
- package/src/modes/theme/defaults/dark-dracula.json +98 -0
- package/src/modes/theme/defaults/dark-eclipse.json +91 -0
- package/src/modes/theme/defaults/dark-ember.json +95 -0
- package/src/modes/theme/defaults/dark-equinox.json +90 -0
- package/src/modes/theme/defaults/dark-forest.json +96 -0
- package/src/modes/theme/defaults/dark-github.json +105 -0
- package/src/modes/theme/defaults/dark-gruvbox.json +112 -0
- package/src/modes/theme/defaults/dark-lavender.json +95 -0
- package/src/modes/theme/defaults/dark-lunar.json +89 -0
- package/src/modes/theme/defaults/dark-midnight.json +95 -0
- package/src/modes/theme/defaults/dark-monochrome.json +94 -0
- package/src/modes/theme/defaults/dark-monokai.json +98 -0
- package/src/modes/theme/defaults/dark-nebula.json +90 -0
- package/src/modes/theme/defaults/dark-nord.json +97 -0
- package/src/modes/theme/defaults/dark-ocean.json +101 -0
- package/src/modes/theme/defaults/dark-one.json +100 -0
- package/src/modes/theme/defaults/dark-poimandres.json +142 -0
- package/src/modes/theme/defaults/dark-rainforest.json +91 -0
- package/src/modes/theme/defaults/dark-reef.json +91 -0
- package/src/modes/theme/defaults/dark-retro.json +92 -0
- package/src/modes/theme/defaults/dark-rose-pine.json +96 -0
- package/src/modes/theme/defaults/dark-sakura.json +95 -0
- package/src/modes/theme/defaults/dark-slate.json +95 -0
- package/src/modes/theme/defaults/dark-solarized.json +97 -0
- package/src/modes/theme/defaults/dark-solstice.json +90 -0
- package/src/modes/theme/defaults/dark-starfall.json +91 -0
- package/src/modes/theme/defaults/dark-sunset.json +99 -0
- package/src/modes/theme/defaults/dark-swamp.json +90 -0
- package/src/modes/theme/defaults/dark-synthwave.json +103 -0
- package/src/modes/theme/defaults/dark-taiga.json +91 -0
- package/src/modes/theme/defaults/dark-terminal.json +95 -0
- package/src/modes/theme/defaults/dark-tokyo-night.json +101 -0
- package/src/modes/theme/defaults/dark-tundra.json +91 -0
- package/src/modes/theme/defaults/dark-twilight.json +91 -0
- package/src/modes/theme/defaults/dark-volcanic.json +91 -0
- package/src/modes/theme/defaults/graphite.json +92 -0
- package/src/modes/theme/defaults/index.ts +199 -0
- package/src/modes/theme/defaults/light-arctic.json +107 -0
- package/src/modes/theme/defaults/light-aurora-day.json +91 -0
- package/src/modes/theme/defaults/light-canyon.json +91 -0
- package/src/modes/theme/defaults/light-catppuccin.json +106 -0
- package/src/modes/theme/defaults/light-cirrus.json +90 -0
- package/src/modes/theme/defaults/light-coral.json +95 -0
- package/src/modes/theme/defaults/light-cyberpunk.json +96 -0
- package/src/modes/theme/defaults/light-dawn.json +90 -0
- package/src/modes/theme/defaults/light-dunes.json +91 -0
- package/src/modes/theme/defaults/light-eucalyptus.json +95 -0
- package/src/modes/theme/defaults/light-forest.json +100 -0
- package/src/modes/theme/defaults/light-frost.json +95 -0
- package/src/modes/theme/defaults/light-github.json +115 -0
- package/src/modes/theme/defaults/light-glacier.json +91 -0
- package/src/modes/theme/defaults/light-gruvbox.json +108 -0
- package/src/modes/theme/defaults/light-haze.json +90 -0
- package/src/modes/theme/defaults/light-honeycomb.json +95 -0
- package/src/modes/theme/defaults/light-lagoon.json +91 -0
- package/src/modes/theme/defaults/light-lavender.json +95 -0
- package/src/modes/theme/defaults/light-meadow.json +91 -0
- package/src/modes/theme/defaults/light-mint.json +95 -0
- package/src/modes/theme/defaults/light-monochrome.json +101 -0
- package/src/modes/theme/defaults/light-ocean.json +99 -0
- package/src/modes/theme/defaults/light-one.json +99 -0
- package/src/modes/theme/defaults/light-opal.json +91 -0
- package/src/modes/theme/defaults/light-orchard.json +91 -0
- package/src/modes/theme/defaults/light-paper.json +95 -0
- package/src/modes/theme/defaults/light-poimandres.json +142 -0
- package/src/modes/theme/defaults/light-prism.json +90 -0
- package/src/modes/theme/defaults/light-retro.json +98 -0
- package/src/modes/theme/defaults/light-sand.json +95 -0
- package/src/modes/theme/defaults/light-savanna.json +91 -0
- package/src/modes/theme/defaults/light-solarized.json +102 -0
- package/src/modes/theme/defaults/light-soleil.json +90 -0
- package/src/modes/theme/defaults/light-sunset.json +99 -0
- package/src/modes/theme/defaults/light-synthwave.json +98 -0
- package/src/modes/theme/defaults/light-tokyo-night.json +111 -0
- package/src/modes/theme/defaults/light-wetland.json +91 -0
- package/src/modes/theme/defaults/light-zenith.json +89 -0
- package/src/modes/theme/defaults/limestone.json +94 -0
- package/src/modes/theme/defaults/mahogany.json +97 -0
- package/src/modes/theme/defaults/marble.json +93 -0
- package/src/modes/theme/defaults/obsidian.json +91 -0
- package/src/modes/theme/defaults/onyx.json +91 -0
- package/src/modes/theme/defaults/pearl.json +93 -0
- package/src/modes/theme/defaults/porcelain.json +91 -0
- package/src/modes/theme/defaults/quartz.json +96 -0
- package/src/modes/theme/defaults/sandstone.json +95 -0
- package/src/modes/theme/defaults/titanium.json +90 -0
- package/src/modes/theme/light.json +93 -0
- package/src/modes/theme/mermaid-cache.ts +92 -0
- package/src/modes/theme/mermaid-rendering.test.ts +53 -0
- package/src/modes/theme/shimmer.ts +269 -0
- package/src/modes/theme/theme-schema.json +459 -0
- package/src/modes/theme/theme.ts +3004 -0
- package/src/modes/turn-budget.ts +31 -0
- package/src/modes/types.ts +437 -0
- package/src/modes/ultrathink.ts +41 -0
- package/src/modes/utils/context-usage.ts +432 -0
- package/src/modes/utils/copy-targets.ts +378 -0
- package/src/modes/utils/hotkeys-markdown.ts +62 -0
- package/src/modes/utils/interactive-context-helpers.ts +27 -0
- package/src/modes/utils/keybinding-matchers.ts +86 -0
- package/src/modes/utils/tools-markdown.ts +27 -0
- package/src/modes/utils/transcript-render-helpers.ts +184 -0
- package/src/modes/utils/ui-helpers.ts +864 -0
- package/src/modes/workflow.ts +42 -0
- package/src/plan-mode/approved-plan-prompt.test.ts +36 -0
- package/src/plan-mode/approved-plan.ts +186 -0
- package/src/plan-mode/plan-handoff.ts +37 -0
- package/src/plan-mode/plan-protection.ts +31 -0
- package/src/plan-mode/state.ts +6 -0
- package/src/priority.json +60 -0
- package/src/prompts/advisor/active-repo-watchdog.md +6 -0
- package/src/prompts/advisor/advise-tool.md +3 -0
- package/src/prompts/advisor/context-files.md +8 -0
- package/src/prompts/advisor/system.md +89 -0
- package/src/prompts/agents/designer.md +74 -0
- package/src/prompts/agents/explore.md +58 -0
- package/src/prompts/agents/frontmatter.md +11 -0
- package/src/prompts/agents/init.md +33 -0
- package/src/prompts/agents/librarian.md +119 -0
- package/src/prompts/agents/plan.md +48 -0
- package/src/prompts/agents/reviewer.md +140 -0
- package/src/prompts/agents/task.md +17 -0
- package/src/prompts/agents/tester.md +111 -0
- package/src/prompts/bench.md +6 -0
- package/src/prompts/ci-green-request.md +36 -0
- package/src/prompts/dry-balance-bench.md +8 -0
- package/src/prompts/goals/goal-budget-limit.md +16 -0
- package/src/prompts/goals/goal-continuation.md +28 -0
- package/src/prompts/goals/goal-mode-active.md +23 -0
- package/src/prompts/goals/goal-mode-context.md +4 -0
- package/src/prompts/goals/goal-todo-context.md +20 -0
- package/src/prompts/goals/guided-goal-interview.md +8 -0
- package/src/prompts/goals/guided-goal-system.md +12 -0
- package/src/prompts/memories/consolidation.md +30 -0
- package/src/prompts/memories/consolidation_system.md +4 -0
- package/src/prompts/memories/read-path.md +17 -0
- package/src/prompts/memories/stage_one_input.md +6 -0
- package/src/prompts/memories/stage_one_system.md +21 -0
- package/src/prompts/review-custom-request.md +21 -0
- package/src/prompts/review-headless-request.md +16 -0
- package/src/prompts/review-request.md +68 -0
- package/src/prompts/skills/autoload.md +8 -0
- package/src/prompts/skills/user-invocation.md +11 -0
- package/src/prompts/steering/parent-irc.md +5 -0
- package/src/prompts/steering/user-interjection.md +9 -0
- package/src/prompts/system/active-repo-context.md +4 -0
- package/src/prompts/system/agent-creation-architect.md +50 -0
- package/src/prompts/system/agent-creation-user.md +6 -0
- package/src/prompts/system/auto-continue.md +1 -0
- package/src/prompts/system/auto-thinking-difficulty-local.md +14 -0
- package/src/prompts/system/auto-thinking-difficulty.md +12 -0
- package/src/prompts/system/autolearn-guidance-learn.md +1 -0
- package/src/prompts/system/autolearn-guidance.md +7 -0
- package/src/prompts/system/autolearn-nudge-autocontinue.md +5 -0
- package/src/prompts/system/background-tan-dispatch.md +8 -0
- package/src/prompts/system/btw-user.md +8 -0
- package/src/prompts/system/commit-message-system.md +14 -0
- package/src/prompts/system/custom-system-prompt.md +64 -0
- package/src/prompts/system/eager-task.md +7 -0
- package/src/prompts/system/eager-todo.md +18 -0
- package/src/prompts/system/empty-stop-retry.md +4 -0
- package/src/prompts/system/gemini-tool-call-reminder.md +9 -0
- package/src/prompts/system/interrupted-thinking.md +7 -0
- package/src/prompts/system/irc-autoreply.md +6 -0
- package/src/prompts/system/irc-incoming.md +9 -0
- package/src/prompts/system/manual-continue.md +7 -0
- package/src/prompts/system/memory-consolidation-system.md +8 -0
- package/src/prompts/system/memory-extraction-system.md +26 -0
- package/src/prompts/system/mid-run-todo-nudge.md +3 -0
- package/src/prompts/system/omfg-user.md +50 -0
- package/src/prompts/system/orchestrate-notice.md +40 -0
- package/src/prompts/system/personalities/default.md +18 -0
- package/src/prompts/system/personalities/friendly.md +17 -0
- package/src/prompts/system/personalities/pragmatic.md +15 -0
- package/src/prompts/system/plan-mode-active.md +118 -0
- package/src/prompts/system/plan-mode-approved.md +22 -0
- package/src/prompts/system/plan-mode-compact-instructions.md +17 -0
- package/src/prompts/system/plan-mode-reference.md +10 -0
- package/src/prompts/system/plan-mode-subagent.md +33 -0
- package/src/prompts/system/plan-mode-tool-decision-reminder.md +9 -0
- package/src/prompts/system/project-prompt.md +54 -0
- package/src/prompts/system/recap-user.md +9 -0
- package/src/prompts/system/rewind-report.md +6 -0
- package/src/prompts/system/side-channel-no-tools.md +3 -0
- package/src/prompts/system/snapcompact-context-frames-note.md +1 -0
- package/src/prompts/system/snapcompact-context-stub.md +1 -0
- package/src/prompts/system/snapcompact-system-frames-note.md +1 -0
- package/src/prompts/system/snapcompact-system-stub.md +1 -0
- package/src/prompts/system/snapcompact-toolresult-note.md +1 -0
- package/src/prompts/system/speech-rewrite.md +15 -0
- package/src/prompts/system/subagent-system-prompt.md +77 -0
- package/src/prompts/system/subagent-user-prompt.md +3 -0
- package/src/prompts/system/subagent-yield-reminder.md +13 -0
- package/src/prompts/system/system-prompt.md +248 -0
- package/src/prompts/system/thinking-loop-redirect.md +10 -0
- package/src/prompts/system/tiny-title-system.md +8 -0
- package/src/prompts/system/title-marker-instruction.md +1 -0
- package/src/prompts/system/title-system-marker.md +17 -0
- package/src/prompts/system/title-system.md +17 -0
- package/src/prompts/system/tool-call-loop-redirect.md +8 -0
- package/src/prompts/system/ttsr-interrupt.md +7 -0
- package/src/prompts/system/ttsr-tool-reminder.md +5 -0
- package/src/prompts/system/ultrathink-notice.md +3 -0
- package/src/prompts/system/unexpected-stop-classifier.md +17 -0
- package/src/prompts/system/unexpected-stop-retry.md +4 -0
- package/src/prompts/system/web-search.md +25 -0
- package/src/prompts/system/workflow-notice.md +70 -0
- package/src/prompts/tools/apply-patch.md +65 -0
- package/src/prompts/tools/ask.md +22 -0
- package/src/prompts/tools/ast-edit.md +22 -0
- package/src/prompts/tools/ast-grep.md +25 -0
- package/src/prompts/tools/async-result.md +8 -0
- package/src/prompts/tools/bash.md +57 -0
- package/src/prompts/tools/browser.md +45 -0
- package/src/prompts/tools/checkpoint.md +15 -0
- package/src/prompts/tools/debug.md +17 -0
- package/src/prompts/tools/eval.md +72 -0
- package/src/prompts/tools/github.md +17 -0
- package/src/prompts/tools/glob.md +15 -0
- package/src/prompts/tools/goal.md +11 -0
- package/src/prompts/tools/grep.md +22 -0
- package/src/prompts/tools/image-attachment-describe-system.md +8 -0
- package/src/prompts/tools/image-attachment-describe.md +10 -0
- package/src/prompts/tools/image-gen.md +7 -0
- package/src/prompts/tools/inspect-image-system.md +20 -0
- package/src/prompts/tools/inspect-image.md +22 -0
- package/src/prompts/tools/irc.md +24 -0
- package/src/prompts/tools/job.md +11 -0
- package/src/prompts/tools/learn.md +7 -0
- package/src/prompts/tools/lsp-late-diagnostic.md +8 -0
- package/src/prompts/tools/lsp.md +28 -0
- package/src/prompts/tools/manage-skill.md +9 -0
- package/src/prompts/tools/memory-edit.md +8 -0
- package/src/prompts/tools/patch.md +57 -0
- package/src/prompts/tools/read.md +77 -0
- package/src/prompts/tools/recall.md +5 -0
- package/src/prompts/tools/reflect.md +5 -0
- package/src/prompts/tools/replace.md +29 -0
- package/src/prompts/tools/resolve.md +4 -0
- package/src/prompts/tools/retain.md +6 -0
- package/src/prompts/tools/rewind.md +14 -0
- package/src/prompts/tools/search-tool-bm25.md +32 -0
- package/src/prompts/tools/ssh.md +23 -0
- package/src/prompts/tools/task-summary.md +17 -0
- package/src/prompts/tools/task.md +68 -0
- package/src/prompts/tools/todo.md +39 -0
- package/src/prompts/tools/web-search.md +6 -0
- package/src/prompts/tools/write.md +14 -0
- package/src/registry/agent-lifecycle.ts +270 -0
- package/src/registry/agent-registry.ts +190 -0
- package/src/sdk.ts +3037 -0
- package/src/secrets/index.ts +123 -0
- package/src/secrets/obfuscator.ts +441 -0
- package/src/secrets/regex.ts +21 -0
- package/src/session/agent-session.ts +15855 -0
- package/src/session/agent-storage.ts +478 -0
- package/src/session/artifacts.ts +153 -0
- package/src/session/auth-broker-config.ts +92 -0
- package/src/session/auth-storage.ts +24 -0
- package/src/session/blob-store.ts +279 -0
- package/src/session/client-bridge.ts +85 -0
- package/src/session/codex-auto-reset.ts +202 -0
- package/src/session/compact-modes.ts +105 -0
- package/src/session/exit-diagnostics.ts +202 -0
- package/src/session/history-storage.ts +360 -0
- package/src/session/indexed-session-storage.ts +537 -0
- package/src/session/messages.test.ts +125 -0
- package/src/session/messages.ts +740 -0
- package/src/session/provider-image-budget.ts +86 -0
- package/src/session/redis-session-storage.ts +217 -0
- package/src/session/session-context.ts +442 -0
- package/src/session/session-dump-format.ts +216 -0
- package/src/session/session-entries.ts +241 -0
- package/src/session/session-history-format.ts +396 -0
- package/src/session/session-listing.ts +652 -0
- package/src/session/session-loader.ts +284 -0
- package/src/session/session-manager.ts +1995 -0
- package/src/session/session-migrations.ts +78 -0
- package/src/session/session-paths.ts +193 -0
- package/src/session/session-persistence.ts +266 -0
- package/src/session/session-storage.ts +734 -0
- package/src/session/session-title-slot.ts +141 -0
- package/src/session/settings-stream-fn.ts +73 -0
- package/src/session/shake-types.ts +43 -0
- package/src/session/snapcompact-inline.ts +561 -0
- package/src/session/snapcompact-savings-journal.ts +113 -0
- package/src/session/sql-session-storage.ts +374 -0
- package/src/session/streaming-output.ts +1330 -0
- package/src/session/tool-choice-queue.ts +290 -0
- package/src/session/turn-persistence.ts +142 -0
- package/src/session/unexpected-stop-classifier.ts +129 -0
- package/src/session/yield-queue.ts +183 -0
- package/src/slash-commands/acp-builtins.ts +70 -0
- package/src/slash-commands/available-commands.ts +105 -0
- package/src/slash-commands/builtin-registry.ts +2554 -0
- package/src/slash-commands/helpers/active-oauth-account.ts +44 -0
- package/src/slash-commands/helpers/collab-qrcode.ts +28 -0
- package/src/slash-commands/helpers/context-report.ts +66 -0
- package/src/slash-commands/helpers/format.ts +46 -0
- package/src/slash-commands/helpers/logout.ts +88 -0
- package/src/slash-commands/helpers/marketplace-manager.ts +25 -0
- package/src/slash-commands/helpers/mcp.ts +533 -0
- package/src/slash-commands/helpers/parse.ts +85 -0
- package/src/slash-commands/helpers/reset-usage.ts +66 -0
- package/src/slash-commands/helpers/ssh.ts +195 -0
- package/src/slash-commands/helpers/stats-dashboard.ts +85 -0
- package/src/slash-commands/helpers/todo.ts +285 -0
- package/src/slash-commands/helpers/usage-report.ts +162 -0
- package/src/slash-commands/marketplace-install-parser.ts +99 -0
- package/src/slash-commands/types.ts +137 -0
- package/src/ssh/__tests__/connection-manager-args.test.ts +191 -0
- package/src/ssh/__tests__/connection-manager-timeout.test.ts +61 -0
- package/src/ssh/__tests__/file-transfer-posix-guard.test.ts +105 -0
- package/src/ssh/__tests__/sshfs-mount.test.ts +13 -0
- package/src/ssh/config-writer.ts +183 -0
- package/src/ssh/connection-manager.ts +667 -0
- package/src/ssh/file-transfer.ts +214 -0
- package/src/ssh/ssh-executor.ts +178 -0
- package/src/ssh/sshfs-mount.ts +163 -0
- package/src/ssh/utils.ts +51 -0
- package/src/startup-splash.ts +19 -0
- package/src/stt/asr-client.ts +401 -0
- package/src/stt/asr-protocol.ts +65 -0
- package/src/stt/asr-worker.ts +638 -0
- package/src/stt/downloader.ts +144 -0
- package/src/stt/endpointer.ts +259 -0
- package/src/stt/index.ts +8 -0
- package/src/stt/models.ts +150 -0
- package/src/stt/recorder.ts +538 -0
- package/src/stt/stt-controller.ts +409 -0
- package/src/stt/submit-trigger.ts +74 -0
- package/src/stt/transcriber.ts +60 -0
- package/src/stt/wav.ts +173 -0
- package/src/subprocess/worker-client.ts +456 -0
- package/src/subprocess/worker-runtime.ts +494 -0
- package/src/system-prompt.test.ts +158 -0
- package/src/system-prompt.ts +787 -0
- package/src/task/agents.ts +166 -0
- package/src/task/commands.ts +132 -0
- package/src/task/discovery.ts +145 -0
- package/src/task/executor.ts +2481 -0
- package/src/task/index.ts +1481 -0
- package/src/task/isolation-runner.ts +384 -0
- package/src/task/name-generator.ts +1577 -0
- package/src/task/omp-command.ts +26 -0
- package/src/task/output-manager.ts +93 -0
- package/src/task/parallel.ts +178 -0
- package/src/task/persisted-revive.ts +128 -0
- package/src/task/provider-concurrency.ts +100 -0
- package/src/task/render.test.ts +121 -0
- package/src/task/render.ts +1761 -0
- package/src/task/renderer.ts +15 -0
- package/src/task/repair-args.ts +129 -0
- package/src/task/spawn-policy.test.ts +63 -0
- package/src/task/spawn-policy.ts +58 -0
- package/src/task/subprocess-tool-registry.ts +88 -0
- package/src/task/types.ts +495 -0
- package/src/task/worktree.ts +935 -0
- package/src/task/yield-assembly.ts +198 -0
- package/src/telemetry-export.ts +144 -0
- package/src/thinking.ts +219 -0
- package/src/tiny/device.ts +111 -0
- package/src/tiny/dtype.ts +101 -0
- package/src/tiny/models.ts +268 -0
- package/src/tiny/text.ts +336 -0
- package/src/tiny/title-client.ts +438 -0
- package/src/tiny/title-protocol.ts +56 -0
- package/src/tiny/worker.ts +351 -0
- package/src/tool-discovery/mode.ts +24 -0
- package/src/tool-discovery/tool-index.ts +271 -0
- package/src/tools/__tests__/eval-description.test.ts +19 -0
- package/src/tools/__tests__/json-tree.test.ts +35 -0
- package/src/tools/acp-bridge.ts +71 -0
- package/src/tools/approval.ts +189 -0
- package/src/tools/ask.ts +1213 -0
- package/src/tools/ast-edit.ts +708 -0
- package/src/tools/ast-grep.ts +520 -0
- package/src/tools/auto-generated-guard.ts +322 -0
- package/src/tools/bash-command-fixup.ts +37 -0
- package/src/tools/bash-interactive.ts +408 -0
- package/src/tools/bash-interceptor.ts +67 -0
- package/src/tools/bash-pty-selection.ts +14 -0
- package/src/tools/bash-skill-urls.ts +248 -0
- package/src/tools/bash.ts +1421 -0
- package/src/tools/browser/aria/aria-snapshot.bundle.txt +7 -0
- package/src/tools/browser/aria/aria-snapshot.ts +103 -0
- package/src/tools/browser/attach.ts +194 -0
- package/src/tools/browser/cmux/cmux-tab.ts +1378 -0
- package/src/tools/browser/cmux/rpc.ts +156 -0
- package/src/tools/browser/cmux/socket-client.ts +309 -0
- package/src/tools/browser/launch.ts +749 -0
- package/src/tools/browser/readable.ts +112 -0
- package/src/tools/browser/registry.ts +266 -0
- package/src/tools/browser/render.ts +223 -0
- package/src/tools/browser/run-cancellation.ts +47 -0
- package/src/tools/browser/tab-protocol.ts +107 -0
- package/src/tools/browser/tab-supervisor.ts +956 -0
- package/src/tools/browser/tab-worker-entry.ts +29 -0
- package/src/tools/browser/tab-worker.ts +1433 -0
- package/src/tools/browser.ts +409 -0
- package/src/tools/builtin-names.ts +58 -0
- package/src/tools/checkpoint.ts +150 -0
- package/src/tools/conflict-detect.ts +718 -0
- package/src/tools/context.ts +39 -0
- package/src/tools/debug.ts +1088 -0
- package/src/tools/eval-backends.ts +34 -0
- package/src/tools/eval-render.ts +776 -0
- package/src/tools/eval.ts +767 -0
- package/src/tools/fetch.ts +1966 -0
- package/src/tools/file-recorder.ts +35 -0
- package/src/tools/fs-cache-invalidation.ts +28 -0
- package/src/tools/gh-cache-invalidation.ts +255 -0
- package/src/tools/gh-format.ts +12 -0
- package/src/tools/gh-renderer.ts +484 -0
- package/src/tools/gh.ts +3752 -0
- package/src/tools/github-cache.ts +663 -0
- package/src/tools/glob.ts +639 -0
- package/src/tools/grep.ts +1836 -0
- package/src/tools/grouped-file-output.ts +210 -0
- package/src/tools/image-gen.ts +1587 -0
- package/src/tools/index.ts +682 -0
- package/src/tools/inspect-image-renderer.ts +132 -0
- package/src/tools/inspect-image.ts +260 -0
- package/src/tools/irc.ts +827 -0
- package/src/tools/job.ts +612 -0
- package/src/tools/json-tree.ts +260 -0
- package/src/tools/jtd-to-json-schema.ts +219 -0
- package/src/tools/jtd-to-typescript.ts +136 -0
- package/src/tools/jtd-utils.ts +102 -0
- package/src/tools/learn.ts +141 -0
- package/src/tools/list-limit.ts +40 -0
- package/src/tools/manage-skill.ts +100 -0
- package/src/tools/match-line-format.ts +20 -0
- package/src/tools/memory-edit.ts +59 -0
- package/src/tools/memory-recall.ts +102 -0
- package/src/tools/memory-reflect.ts +88 -0
- package/src/tools/memory-render.ts +202 -0
- package/src/tools/memory-retain.ts +89 -0
- package/src/tools/output-meta.ts +818 -0
- package/src/tools/output-schema-validator.ts +307 -0
- package/src/tools/path-utils.ts +1279 -0
- package/src/tools/plan-mode-guard.ts +155 -0
- package/src/tools/puppeteer/00_stealth_tampering.txt +44 -0
- package/src/tools/puppeteer/01_stealth_activity.txt +80 -0
- package/src/tools/puppeteer/02_stealth_hairline.txt +57 -0
- package/src/tools/puppeteer/03_stealth_botd.txt +380 -0
- package/src/tools/puppeteer/04_stealth_iframe.txt +174 -0
- package/src/tools/puppeteer/05_stealth_webgl.txt +233 -0
- package/src/tools/puppeteer/06_stealth_screen.txt +260 -0
- package/src/tools/puppeteer/07_stealth_fonts.txt +99 -0
- package/src/tools/puppeteer/08_stealth_audio.txt +63 -0
- package/src/tools/puppeteer/09_stealth_locale.txt +51 -0
- package/src/tools/puppeteer/10_stealth_plugins.txt +212 -0
- package/src/tools/puppeteer/11_stealth_hardware.txt +59 -0
- package/src/tools/puppeteer/12_stealth_codecs.txt +42 -0
- package/src/tools/puppeteer/13_stealth_worker.txt +235 -0
- package/src/tools/read.ts +3522 -0
- package/src/tools/render-utils.ts +913 -0
- package/src/tools/renderers.ts +107 -0
- package/src/tools/report-tool-issue.ts +530 -0
- package/src/tools/resolve.ts +302 -0
- package/src/tools/review.ts +261 -0
- package/src/tools/search-tool-bm25.ts +351 -0
- package/src/tools/sqlite-reader.ts +884 -0
- package/src/tools/ssh.ts +397 -0
- package/src/tools/todo.ts +944 -0
- package/src/tools/tool-errors.ts +62 -0
- package/src/tools/tool-result.ts +102 -0
- package/src/tools/tool-timeouts.ts +30 -0
- package/src/tools/tts.ts +266 -0
- package/src/tools/write.ts +1219 -0
- package/src/tools/yield.ts +455 -0
- package/src/tts/downloader.ts +64 -0
- package/src/tts/index.ts +10 -0
- package/src/tts/models.ts +137 -0
- package/src/tts/player.ts +137 -0
- package/src/tts/runtime.ts +21 -0
- package/src/tts/speakable.ts +382 -0
- package/src/tts/speech-enhancer.ts +204 -0
- package/src/tts/streaming-player.ts +321 -0
- package/src/tts/tts-client.ts +475 -0
- package/src/tts/tts-protocol.ts +69 -0
- package/src/tts/tts-worker.ts +434 -0
- package/src/tts/vocalizer.ts +393 -0
- package/src/tts/wav.ts +58 -0
- package/src/tui/code-cell.ts +268 -0
- package/src/tui/file-list.ts +55 -0
- package/src/tui/hyperlink.ts +178 -0
- package/src/tui/index.ts +13 -0
- package/src/tui/output-block.ts +251 -0
- package/src/tui/status-line.ts +54 -0
- package/src/tui/tree-list.ts +133 -0
- package/src/tui/types.ts +15 -0
- package/src/tui/utils.ts +103 -0
- package/src/tui/width-aware-text.ts +58 -0
- package/src/utils/active-repo-context.ts +143 -0
- package/src/utils/block-context.ts +312 -0
- package/src/utils/changelog.ts +132 -0
- package/src/utils/clipboard.ts +356 -0
- package/src/utils/command-args.ts +76 -0
- package/src/utils/commit-message-generator.ts +146 -0
- package/src/utils/edit-mode.ts +58 -0
- package/src/utils/enhanced-paste.ts +230 -0
- package/src/utils/event-bus.ts +33 -0
- package/src/utils/external-editor.ts +78 -0
- package/src/utils/fetch-timeout.ts +10 -0
- package/src/utils/file-display-mode.ts +44 -0
- package/src/utils/file-mentions.ts +293 -0
- package/src/utils/git.ts +2181 -0
- package/src/utils/image-loading.ts +231 -0
- package/src/utils/image-resize.ts +420 -0
- package/src/utils/image-vision-fallback.ts +196 -0
- package/src/utils/ipc.ts +38 -0
- package/src/utils/jj.ts +295 -0
- package/src/utils/lang-from-path.ts +244 -0
- package/src/utils/markit-cache.ts +166 -0
- package/src/utils/markit.ts +211 -0
- package/src/utils/mupdf-wasm-embed.ts +12 -0
- package/src/utils/open.ts +100 -0
- package/src/utils/prompt-path.ts +3 -0
- package/src/utils/qrcode.ts +535 -0
- package/src/utils/session-color.ts +142 -0
- package/src/utils/shell-snapshot-fn-env.sh +60 -0
- package/src/utils/shell-snapshot.ts +306 -0
- package/src/utils/sixel.ts +69 -0
- package/src/utils/thinking-display.ts +117 -0
- package/src/utils/title-generator.ts +348 -0
- package/src/utils/tool-choice.ts +49 -0
- package/src/utils/tools-manager.ts +429 -0
- package/src/utils/turndown.ts +83 -0
- package/src/utils/zip.ts +1091 -0
- package/src/web/kagi.ts +304 -0
- package/src/web/parallel.ts +354 -0
- package/src/web/scrapers/artifacthub.ts +207 -0
- package/src/web/scrapers/arxiv.ts +83 -0
- package/src/web/scrapers/aur.ts +162 -0
- package/src/web/scrapers/biorxiv.ts +133 -0
- package/src/web/scrapers/bluesky.ts +262 -0
- package/src/web/scrapers/brew.ts +172 -0
- package/src/web/scrapers/cheatsh.ts +68 -0
- package/src/web/scrapers/chocolatey.ts +196 -0
- package/src/web/scrapers/choosealicense.ts +95 -0
- package/src/web/scrapers/cisa-kev.ts +87 -0
- package/src/web/scrapers/clojars.ts +154 -0
- package/src/web/scrapers/coingecko.ts +177 -0
- package/src/web/scrapers/crates-io.ts +97 -0
- package/src/web/scrapers/crossref.ts +136 -0
- package/src/web/scrapers/devto.ts +147 -0
- package/src/web/scrapers/discogs.ts +306 -0
- package/src/web/scrapers/discourse.ts +197 -0
- package/src/web/scrapers/dockerhub.ts +138 -0
- package/src/web/scrapers/docs-rs.ts +652 -0
- package/src/web/scrapers/fdroid.ts +134 -0
- package/src/web/scrapers/firefox-addons.ts +191 -0
- package/src/web/scrapers/flathub.ts +223 -0
- package/src/web/scrapers/github-gist.ts +58 -0
- package/src/web/scrapers/github.ts +800 -0
- package/src/web/scrapers/gitlab.ts +401 -0
- package/src/web/scrapers/go-pkg.ts +266 -0
- package/src/web/scrapers/hackage.ts +140 -0
- package/src/web/scrapers/hackernews.ts +189 -0
- package/src/web/scrapers/hex.ts +105 -0
- package/src/web/scrapers/huggingface.ts +321 -0
- package/src/web/scrapers/iacr.ts +89 -0
- package/src/web/scrapers/index.ts +252 -0
- package/src/web/scrapers/jetbrains-marketplace.ts +159 -0
- package/src/web/scrapers/lemmy.ts +203 -0
- package/src/web/scrapers/lobsters.ts +175 -0
- package/src/web/scrapers/mastodon.ts +292 -0
- package/src/web/scrapers/maven.ts +138 -0
- package/src/web/scrapers/mdn.ts +173 -0
- package/src/web/scrapers/metacpan.ts +222 -0
- package/src/web/scrapers/musicbrainz.ts +250 -0
- package/src/web/scrapers/npm.ts +98 -0
- package/src/web/scrapers/nuget.ts +183 -0
- package/src/web/scrapers/nvd.ts +222 -0
- package/src/web/scrapers/ollama.ts +239 -0
- package/src/web/scrapers/open-vsx.ts +106 -0
- package/src/web/scrapers/opencorporates.ts +292 -0
- package/src/web/scrapers/openlibrary.ts +336 -0
- package/src/web/scrapers/orcid.ts +286 -0
- package/src/web/scrapers/osv.ts +176 -0
- package/src/web/scrapers/packagist.ts +160 -0
- package/src/web/scrapers/pub-dev.ts +143 -0
- package/src/web/scrapers/pubmed.ts +211 -0
- package/src/web/scrapers/pypi.ts +112 -0
- package/src/web/scrapers/rawg.ts +110 -0
- package/src/web/scrapers/readthedocs.ts +120 -0
- package/src/web/scrapers/reddit.ts +95 -0
- package/src/web/scrapers/repology.ts +251 -0
- package/src/web/scrapers/rfc.ts +201 -0
- package/src/web/scrapers/rubygems.ts +103 -0
- package/src/web/scrapers/searchcode.ts +189 -0
- package/src/web/scrapers/sec-edgar.ts +261 -0
- package/src/web/scrapers/semantic-scholar.ts +171 -0
- package/src/web/scrapers/snapcraft.ts +187 -0
- package/src/web/scrapers/sourcegraph.ts +336 -0
- package/src/web/scrapers/spdx.ts +108 -0
- package/src/web/scrapers/spotify.ts +198 -0
- package/src/web/scrapers/stackoverflow.ts +120 -0
- package/src/web/scrapers/terraform.ts +277 -0
- package/src/web/scrapers/tldr.ts +47 -0
- package/src/web/scrapers/twitter.ts +94 -0
- package/src/web/scrapers/types.ts +354 -0
- package/src/web/scrapers/utils.ts +109 -0
- package/src/web/scrapers/vimeo.ts +133 -0
- package/src/web/scrapers/vscode-marketplace.ts +187 -0
- package/src/web/scrapers/w3c.ts +156 -0
- package/src/web/scrapers/wikidata.ts +344 -0
- package/src/web/scrapers/wikipedia.ts +84 -0
- package/src/web/scrapers/youtube.ts +325 -0
- package/src/web/search/index.ts +312 -0
- package/src/web/search/provider.ts +214 -0
- package/src/web/search/providers/anthropic.ts +343 -0
- package/src/web/search/providers/base.ts +91 -0
- package/src/web/search/providers/brave.ts +152 -0
- package/src/web/search/providers/codex.ts +593 -0
- package/src/web/search/providers/duckduckgo.ts +212 -0
- package/src/web/search/providers/exa.ts +484 -0
- package/src/web/search/providers/firecrawl.ts +144 -0
- package/src/web/search/providers/gemini.ts +618 -0
- package/src/web/search/providers/jina.ts +111 -0
- package/src/web/search/providers/kagi.ts +86 -0
- package/src/web/search/providers/kimi.ts +196 -0
- package/src/web/search/providers/parallel.ts +136 -0
- package/src/web/search/providers/perplexity-auth.ts +133 -0
- package/src/web/search/providers/perplexity.ts +878 -0
- package/src/web/search/providers/searxng.ts +325 -0
- package/src/web/search/providers/synthetic.ts +114 -0
- package/src/web/search/providers/tavily.ts +193 -0
- package/src/web/search/providers/tinyfish.ts +159 -0
- package/src/web/search/providers/utils.ts +128 -0
- package/src/web/search/providers/xai.ts +292 -0
- package/src/web/search/providers/zai.ts +419 -0
- package/src/web/search/render.ts +262 -0
- package/src/web/search/types.ts +470 -0
- package/src/web/search/utils.ts +17 -0
- package/src/workspace-tree.ts +326 -0
|
@@ -0,0 +1,3430 @@
|
|
|
1
|
+
// AUTO-GENERATED by scripts/generate-legacy-pi-bundled-registry.ts.
|
|
2
|
+
// Do not edit by hand — run `bun scripts/generate-legacy-pi-bundled-registry.ts --generate`.
|
|
3
|
+
/**
|
|
4
|
+
* Static handles on every bundled `@oh-my-pi-zen/pi-*` surface — package
|
|
5
|
+
* roots plus every non-wildcard subpath export declared in each package's
|
|
6
|
+
* `exports` field. Loaded lazily by `legacy-pi-compat.ts` in compiled-binary
|
|
7
|
+
* mode (issue #3423) and re-exported through the `omp-legacy-pi-bundled:`
|
|
8
|
+
* virtual namespace — bunfs paths cannot be resolved at runtime on Bun
|
|
9
|
+
* 1.3.14+, so the only way to re-route extension imports onto the host's
|
|
10
|
+
* in-process copy is via live module references captured at compile time.
|
|
11
|
+
*
|
|
12
|
+
* This module is split out from `legacy-pi-compat.ts` so dev/test runs that
|
|
13
|
+
* touch the compat layer never trigger the cascade through
|
|
14
|
+
* `legacy-pi-coding-agent-shim.ts → ../index → export/html/...` (which
|
|
15
|
+
* requires generated artifacts that only exist after a `bun run build`).
|
|
16
|
+
*
|
|
17
|
+
* The bundler reaches every entry below via standard static-import analysis,
|
|
18
|
+
* so no `--compile` extras are required in `scripts/build-binary.ts`.
|
|
19
|
+
*/
|
|
20
|
+
import * as bundledPiAgentCore from "@oh-my-pi-zen/pi-agent-core";
|
|
21
|
+
import * as bundledPiAgentCoreCompaction from "@oh-my-pi-zen/pi-agent-core/compaction";
|
|
22
|
+
import * as bundledPiAgentCoreCompactionBranchSummarization from "@oh-my-pi-zen/pi-agent-core/compaction/branch-summarization";
|
|
23
|
+
import * as bundledPiAgentCoreCompactionCompaction from "@oh-my-pi-zen/pi-agent-core/compaction/compaction";
|
|
24
|
+
import * as bundledPiAgentCoreCompactionEntries from "@oh-my-pi-zen/pi-agent-core/compaction/entries";
|
|
25
|
+
import * as bundledPiAgentCoreCompactionErrors from "@oh-my-pi-zen/pi-agent-core/compaction/errors";
|
|
26
|
+
import * as bundledPiAgentCoreCompactionMessages from "@oh-my-pi-zen/pi-agent-core/compaction/messages";
|
|
27
|
+
import * as bundledPiAgentCoreCompactionOpenai from "@oh-my-pi-zen/pi-agent-core/compaction/openai";
|
|
28
|
+
import * as bundledPiAgentCoreCompactionPruning from "@oh-my-pi-zen/pi-agent-core/compaction/pruning";
|
|
29
|
+
import * as bundledPiAgentCoreCompactionShake from "@oh-my-pi-zen/pi-agent-core/compaction/shake";
|
|
30
|
+
import * as bundledPiAgentCoreCompactionToolProtection from "@oh-my-pi-zen/pi-agent-core/compaction/tool-protection";
|
|
31
|
+
import * as bundledPiAgentCoreCompactionUtils from "@oh-my-pi-zen/pi-agent-core/compaction/utils";
|
|
32
|
+
import * as bundledPiAiAuthBroker from "@oh-my-pi-zen/pi-ai/auth-broker";
|
|
33
|
+
import * as bundledPiAiAuthBrokerClient from "@oh-my-pi-zen/pi-ai/auth-broker/client";
|
|
34
|
+
import * as bundledPiAiAuthBrokerDiscover from "@oh-my-pi-zen/pi-ai/auth-broker/discover";
|
|
35
|
+
import * as bundledPiAiAuthBrokerRefresher from "@oh-my-pi-zen/pi-ai/auth-broker/refresher";
|
|
36
|
+
import * as bundledPiAiAuthBrokerRemoteStore from "@oh-my-pi-zen/pi-ai/auth-broker/remote-store";
|
|
37
|
+
import * as bundledPiAiAuthBrokerServer from "@oh-my-pi-zen/pi-ai/auth-broker/server";
|
|
38
|
+
import * as bundledPiAiAuthBrokerSnapshotCache from "@oh-my-pi-zen/pi-ai/auth-broker/snapshot-cache";
|
|
39
|
+
import * as bundledPiAiAuthBrokerTypes from "@oh-my-pi-zen/pi-ai/auth-broker/types";
|
|
40
|
+
import * as bundledPiAiAuthBrokerWireSchemas from "@oh-my-pi-zen/pi-ai/auth-broker/wire-schemas";
|
|
41
|
+
import * as bundledPiAiAuthGateway from "@oh-my-pi-zen/pi-ai/auth-gateway";
|
|
42
|
+
import * as bundledPiAiAuthGatewayHttp from "@oh-my-pi-zen/pi-ai/auth-gateway/http";
|
|
43
|
+
import * as bundledPiAiAuthGatewayServer from "@oh-my-pi-zen/pi-ai/auth-gateway/server";
|
|
44
|
+
import * as bundledPiAiAuthGatewayTypes from "@oh-my-pi-zen/pi-ai/auth-gateway/types";
|
|
45
|
+
import * as bundledPiAiDialect from "@oh-my-pi-zen/pi-ai/dialect";
|
|
46
|
+
import * as bundledPiAiError from "@oh-my-pi-zen/pi-ai/error";
|
|
47
|
+
import * as bundledPiAiOauth from "@oh-my-pi-zen/pi-ai/oauth";
|
|
48
|
+
import * as bundledPiAiOauthAnthropic from "@oh-my-pi-zen/pi-ai/oauth/anthropic";
|
|
49
|
+
import * as bundledPiAiOauthCallbackServer from "@oh-my-pi-zen/pi-ai/oauth/callback-server";
|
|
50
|
+
import * as bundledPiAiOauthCursor from "@oh-my-pi-zen/pi-ai/oauth/cursor";
|
|
51
|
+
import * as bundledPiAiOauthDevin from "@oh-my-pi-zen/pi-ai/oauth/devin";
|
|
52
|
+
import * as bundledPiAiOauthGithubCopilot from "@oh-my-pi-zen/pi-ai/oauth/github-copilot";
|
|
53
|
+
import * as bundledPiAiOauthGitlabDuo from "@oh-my-pi-zen/pi-ai/oauth/gitlab-duo";
|
|
54
|
+
import * as bundledPiAiOauthGitlabDuoWorkflow from "@oh-my-pi-zen/pi-ai/oauth/gitlab-duo-workflow";
|
|
55
|
+
import * as bundledPiAiOauthGoogleAntigravity from "@oh-my-pi-zen/pi-ai/oauth/google-antigravity";
|
|
56
|
+
import * as bundledPiAiOauthGoogleGeminiCli from "@oh-my-pi-zen/pi-ai/oauth/google-gemini-cli";
|
|
57
|
+
import * as bundledPiAiOauthGoogleOauthShared from "@oh-my-pi-zen/pi-ai/oauth/google-oauth-shared";
|
|
58
|
+
import * as bundledPiAiOauthKimi from "@oh-my-pi-zen/pi-ai/oauth/kimi";
|
|
59
|
+
import * as bundledPiAiOauthMinimaxCode from "@oh-my-pi-zen/pi-ai/oauth/minimax-code";
|
|
60
|
+
import * as bundledPiAiOauthOpenaiCodex from "@oh-my-pi-zen/pi-ai/oauth/openai-codex";
|
|
61
|
+
import * as bundledPiAiOauthOpencode from "@oh-my-pi-zen/pi-ai/oauth/opencode";
|
|
62
|
+
import * as bundledPiAiOauthPerplexity from "@oh-my-pi-zen/pi-ai/oauth/perplexity";
|
|
63
|
+
import * as bundledPiAiOauthPkce from "@oh-my-pi-zen/pi-ai/oauth/pkce";
|
|
64
|
+
import * as bundledPiAiOauthTypes from "@oh-my-pi-zen/pi-ai/oauth/types";
|
|
65
|
+
import * as bundledPiAiOauthWafer from "@oh-my-pi-zen/pi-ai/oauth/wafer";
|
|
66
|
+
import * as bundledPiAiOauthXaiOauth from "@oh-my-pi-zen/pi-ai/oauth/xai-oauth";
|
|
67
|
+
import * as bundledPiAiOauthXiaomi from "@oh-my-pi-zen/pi-ai/oauth/xiaomi";
|
|
68
|
+
import * as bundledPiAiProvidersAmazonBedrock from "@oh-my-pi-zen/pi-ai/providers/amazon-bedrock";
|
|
69
|
+
import * as bundledPiAiProvidersAnthropic from "@oh-my-pi-zen/pi-ai/providers/anthropic";
|
|
70
|
+
import * as bundledPiAiProvidersAnthropicClient from "@oh-my-pi-zen/pi-ai/providers/anthropic-client";
|
|
71
|
+
import * as bundledPiAiProvidersAnthropicMessagesServer from "@oh-my-pi-zen/pi-ai/providers/anthropic-messages-server";
|
|
72
|
+
import * as bundledPiAiProvidersAnthropicMessagesServerSchema from "@oh-my-pi-zen/pi-ai/providers/anthropic-messages-server-schema";
|
|
73
|
+
import * as bundledPiAiProvidersAnthropicWire from "@oh-my-pi-zen/pi-ai/providers/anthropic-wire";
|
|
74
|
+
import * as bundledPiAiProvidersAwsCredentials from "@oh-my-pi-zen/pi-ai/providers/aws-credentials";
|
|
75
|
+
import * as bundledPiAiProvidersAwsEventstream from "@oh-my-pi-zen/pi-ai/providers/aws-eventstream";
|
|
76
|
+
import * as bundledPiAiProvidersAwsSigv4 from "@oh-my-pi-zen/pi-ai/providers/aws-sigv4";
|
|
77
|
+
import * as bundledPiAiProvidersAzureOpenaiResponses from "@oh-my-pi-zen/pi-ai/providers/azure-openai-responses";
|
|
78
|
+
import * as bundledPiAiProvidersCursor from "@oh-my-pi-zen/pi-ai/providers/cursor";
|
|
79
|
+
import * as bundledPiAiProvidersDevin from "@oh-my-pi-zen/pi-ai/providers/devin";
|
|
80
|
+
import * as bundledPiAiProvidersErrorMessage from "@oh-my-pi-zen/pi-ai/providers/error-message";
|
|
81
|
+
import * as bundledPiAiProvidersGithubCopilotHeaders from "@oh-my-pi-zen/pi-ai/providers/github-copilot-headers";
|
|
82
|
+
import * as bundledPiAiProvidersGitlabDuo from "@oh-my-pi-zen/pi-ai/providers/gitlab-duo";
|
|
83
|
+
import * as bundledPiAiProvidersGitlabDuoWorkflow from "@oh-my-pi-zen/pi-ai/providers/gitlab-duo-workflow";
|
|
84
|
+
import * as bundledPiAiProvidersGoogle from "@oh-my-pi-zen/pi-ai/providers/google";
|
|
85
|
+
import * as bundledPiAiProvidersGoogleAuth from "@oh-my-pi-zen/pi-ai/providers/google-auth";
|
|
86
|
+
import * as bundledPiAiProvidersGoogleGeminiCli from "@oh-my-pi-zen/pi-ai/providers/google-gemini-cli";
|
|
87
|
+
import * as bundledPiAiProvidersGoogleShared from "@oh-my-pi-zen/pi-ai/providers/google-shared";
|
|
88
|
+
import * as bundledPiAiProvidersGoogleTypes from "@oh-my-pi-zen/pi-ai/providers/google-types";
|
|
89
|
+
import * as bundledPiAiProvidersGoogleVertex from "@oh-my-pi-zen/pi-ai/providers/google-vertex";
|
|
90
|
+
import * as bundledPiAiProvidersGrammar from "@oh-my-pi-zen/pi-ai/providers/grammar";
|
|
91
|
+
import * as bundledPiAiProvidersKimi from "@oh-my-pi-zen/pi-ai/providers/kimi";
|
|
92
|
+
import * as bundledPiAiProvidersMock from "@oh-my-pi-zen/pi-ai/providers/mock";
|
|
93
|
+
import * as bundledPiAiProvidersOllama from "@oh-my-pi-zen/pi-ai/providers/ollama";
|
|
94
|
+
import * as bundledPiAiProvidersOpenaiAnthropicShim from "@oh-my-pi-zen/pi-ai/providers/openai-anthropic-shim";
|
|
95
|
+
import * as bundledPiAiProvidersOpenaiChatServer from "@oh-my-pi-zen/pi-ai/providers/openai-chat-server";
|
|
96
|
+
import * as bundledPiAiProvidersOpenaiChatServerSchema from "@oh-my-pi-zen/pi-ai/providers/openai-chat-server-schema";
|
|
97
|
+
import * as bundledPiAiProvidersOpenaiChatWire from "@oh-my-pi-zen/pi-ai/providers/openai-chat-wire";
|
|
98
|
+
import * as bundledPiAiProvidersOpenaiCodexRequestTransformer from "@oh-my-pi-zen/pi-ai/providers/openai-codex/request-transformer";
|
|
99
|
+
import * as bundledPiAiProvidersOpenaiCodexResponseHandler from "@oh-my-pi-zen/pi-ai/providers/openai-codex/response-handler";
|
|
100
|
+
import * as bundledPiAiProvidersOpenaiCodexResponses from "@oh-my-pi-zen/pi-ai/providers/openai-codex-responses";
|
|
101
|
+
import * as bundledPiAiProvidersOpenaiCompletions from "@oh-my-pi-zen/pi-ai/providers/openai-completions";
|
|
102
|
+
import * as bundledPiAiProvidersOpenaiReasoningFallback from "@oh-my-pi-zen/pi-ai/providers/openai-reasoning-fallback";
|
|
103
|
+
import * as bundledPiAiProvidersOpenaiResponses from "@oh-my-pi-zen/pi-ai/providers/openai-responses";
|
|
104
|
+
import * as bundledPiAiProvidersOpenaiResponsesServer from "@oh-my-pi-zen/pi-ai/providers/openai-responses-server";
|
|
105
|
+
import * as bundledPiAiProvidersOpenaiResponsesServerSchema from "@oh-my-pi-zen/pi-ai/providers/openai-responses-server-schema";
|
|
106
|
+
import * as bundledPiAiProvidersOpenaiResponsesWire from "@oh-my-pi-zen/pi-ai/providers/openai-responses-wire";
|
|
107
|
+
import * as bundledPiAiProvidersOpenaiShared from "@oh-my-pi-zen/pi-ai/providers/openai-shared";
|
|
108
|
+
import * as bundledPiAiProvidersPiNativeClient from "@oh-my-pi-zen/pi-ai/providers/pi-native-client";
|
|
109
|
+
import * as bundledPiAiProvidersPiNativeServer from "@oh-my-pi-zen/pi-ai/providers/pi-native-server";
|
|
110
|
+
import * as bundledPiAiProvidersRegisterBuiltins from "@oh-my-pi-zen/pi-ai/providers/register-builtins";
|
|
111
|
+
import * as bundledPiAiProvidersSynthetic from "@oh-my-pi-zen/pi-ai/providers/synthetic";
|
|
112
|
+
import * as bundledPiAiProvidersTransformMessages from "@oh-my-pi-zen/pi-ai/providers/transform-messages";
|
|
113
|
+
import * as bundledPiAiProvidersVisionGuard from "@oh-my-pi-zen/pi-ai/providers/vision-guard";
|
|
114
|
+
import * as bundledPiAiRegistry from "@oh-my-pi-zen/pi-ai/registry";
|
|
115
|
+
import * as bundledPiAiRegistryOauth from "@oh-my-pi-zen/pi-ai/registry/oauth";
|
|
116
|
+
import * as bundledPiAiUsageClaude from "@oh-my-pi-zen/pi-ai/usage/claude";
|
|
117
|
+
import * as bundledPiAiUsageGemini from "@oh-my-pi-zen/pi-ai/usage/gemini";
|
|
118
|
+
import * as bundledPiAiUsageGithubCopilot from "@oh-my-pi-zen/pi-ai/usage/github-copilot";
|
|
119
|
+
import * as bundledPiAiUsageGoogleAntigravity from "@oh-my-pi-zen/pi-ai/usage/google-antigravity";
|
|
120
|
+
import * as bundledPiAiUsageKimi from "@oh-my-pi-zen/pi-ai/usage/kimi";
|
|
121
|
+
import * as bundledPiAiUsageMinimaxCode from "@oh-my-pi-zen/pi-ai/usage/minimax-code";
|
|
122
|
+
import * as bundledPiAiUsageOllama from "@oh-my-pi-zen/pi-ai/usage/ollama";
|
|
123
|
+
import * as bundledPiAiUsageOpenaiCodex from "@oh-my-pi-zen/pi-ai/usage/openai-codex";
|
|
124
|
+
import * as bundledPiAiUsageOpenaiCodexBaseUrl from "@oh-my-pi-zen/pi-ai/usage/openai-codex-base-url";
|
|
125
|
+
import * as bundledPiAiUsageOpenaiCodexReset from "@oh-my-pi-zen/pi-ai/usage/openai-codex-reset";
|
|
126
|
+
import * as bundledPiAiUsageOpencodeGo from "@oh-my-pi-zen/pi-ai/usage/opencode-go";
|
|
127
|
+
import * as bundledPiAiUsageShared from "@oh-my-pi-zen/pi-ai/usage/shared";
|
|
128
|
+
import * as bundledPiAiUsageZai from "@oh-my-pi-zen/pi-ai/usage/zai";
|
|
129
|
+
import * as bundledPiAiUtilsAbort from "@oh-my-pi-zen/pi-ai/utils/abort";
|
|
130
|
+
import * as bundledPiAiUtilsAnthropicAuth from "@oh-my-pi-zen/pi-ai/utils/anthropic-auth";
|
|
131
|
+
import * as bundledPiAiUtilsBlockSymbols from "@oh-my-pi-zen/pi-ai/utils/block-symbols";
|
|
132
|
+
import * as bundledPiAiUtilsDeterministicId from "@oh-my-pi-zen/pi-ai/utils/deterministic-id";
|
|
133
|
+
import * as bundledPiAiUtilsEmptyCompletionRetry from "@oh-my-pi-zen/pi-ai/utils/empty-completion-retry";
|
|
134
|
+
import * as bundledPiAiUtilsEventStream from "@oh-my-pi-zen/pi-ai/utils/event-stream";
|
|
135
|
+
import * as bundledPiAiUtilsFoundry from "@oh-my-pi-zen/pi-ai/utils/foundry";
|
|
136
|
+
import * as bundledPiAiUtilsGoogleValidation from "@oh-my-pi-zen/pi-ai/utils/google-validation";
|
|
137
|
+
import * as bundledPiAiUtilsHarmonyLeak from "@oh-my-pi-zen/pi-ai/utils/harmony-leak";
|
|
138
|
+
import * as bundledPiAiUtilsHttpInspector from "@oh-my-pi-zen/pi-ai/utils/http-inspector";
|
|
139
|
+
import * as bundledPiAiUtilsIdleIterator from "@oh-my-pi-zen/pi-ai/utils/idle-iterator";
|
|
140
|
+
import * as bundledPiAiUtilsOpenaiHttp from "@oh-my-pi-zen/pi-ai/utils/openai-http";
|
|
141
|
+
import * as bundledPiAiUtilsOpenrouterHeaders from "@oh-my-pi-zen/pi-ai/utils/openrouter-headers";
|
|
142
|
+
import * as bundledPiAiUtilsParseBind from "@oh-my-pi-zen/pi-ai/utils/parse-bind";
|
|
143
|
+
import * as bundledPiAiUtilsProviderResponse from "@oh-my-pi-zen/pi-ai/utils/provider-response";
|
|
144
|
+
import * as bundledPiAiUtilsProxy from "@oh-my-pi-zen/pi-ai/utils/proxy";
|
|
145
|
+
import * as bundledPiAiUtilsRequestDebug from "@oh-my-pi-zen/pi-ai/utils/request-debug";
|
|
146
|
+
import * as bundledPiAiUtilsRetry from "@oh-my-pi-zen/pi-ai/utils/retry";
|
|
147
|
+
import * as bundledPiAiUtilsRetryAfter from "@oh-my-pi-zen/pi-ai/utils/retry-after";
|
|
148
|
+
import * as bundledPiAiUtilsSchema from "@oh-my-pi-zen/pi-ai/utils/schema";
|
|
149
|
+
import * as bundledPiAiUtilsSchemaAdapt from "@oh-my-pi-zen/pi-ai/utils/schema/adapt";
|
|
150
|
+
import * as bundledPiAiUtilsSchemaCompatibility from "@oh-my-pi-zen/pi-ai/utils/schema/compatibility";
|
|
151
|
+
import * as bundledPiAiUtilsSchemaDereference from "@oh-my-pi-zen/pi-ai/utils/schema/dereference";
|
|
152
|
+
import * as bundledPiAiUtilsSchemaDraft from "@oh-my-pi-zen/pi-ai/utils/schema/draft";
|
|
153
|
+
import * as bundledPiAiUtilsSchemaEquality from "@oh-my-pi-zen/pi-ai/utils/schema/equality";
|
|
154
|
+
import * as bundledPiAiUtilsSchemaFields from "@oh-my-pi-zen/pi-ai/utils/schema/fields";
|
|
155
|
+
import * as bundledPiAiUtilsSchemaJsonSchemaValidator from "@oh-my-pi-zen/pi-ai/utils/schema/json-schema-validator";
|
|
156
|
+
import * as bundledPiAiUtilsSchemaMetaValidator from "@oh-my-pi-zen/pi-ai/utils/schema/meta-validator";
|
|
157
|
+
import * as bundledPiAiUtilsSchemaNormalize from "@oh-my-pi-zen/pi-ai/utils/schema/normalize";
|
|
158
|
+
import * as bundledPiAiUtilsSchemaSpill from "@oh-my-pi-zen/pi-ai/utils/schema/spill";
|
|
159
|
+
import * as bundledPiAiUtilsSchemaStamps from "@oh-my-pi-zen/pi-ai/utils/schema/stamps";
|
|
160
|
+
import * as bundledPiAiUtilsSchemaStrictToolValidation from "@oh-my-pi-zen/pi-ai/utils/schema/strict-tool-validation";
|
|
161
|
+
import * as bundledPiAiUtilsSchemaTypes from "@oh-my-pi-zen/pi-ai/utils/schema/types";
|
|
162
|
+
import * as bundledPiAiUtilsSchemaTypescript from "@oh-my-pi-zen/pi-ai/utils/schema/typescript";
|
|
163
|
+
import * as bundledPiAiUtilsSchemaWire from "@oh-my-pi-zen/pi-ai/utils/schema/wire";
|
|
164
|
+
import * as bundledPiAiUtilsSchemaZodDecontaminate from "@oh-my-pi-zen/pi-ai/utils/schema/zod-decontaminate";
|
|
165
|
+
import * as bundledPiAiUtilsSdkStreamTimeout from "@oh-my-pi-zen/pi-ai/utils/sdk-stream-timeout";
|
|
166
|
+
import * as bundledPiAiUtilsSseDebug from "@oh-my-pi-zen/pi-ai/utils/sse-debug";
|
|
167
|
+
import * as bundledPiAiUtilsStreamMarkupHealing from "@oh-my-pi-zen/pi-ai/utils/stream-markup-healing";
|
|
168
|
+
import * as bundledPiAiUtilsThinkingLoop from "@oh-my-pi-zen/pi-ai/utils/thinking-loop";
|
|
169
|
+
import * as bundledPiAiUtilsToolChoice from "@oh-my-pi-zen/pi-ai/utils/tool-choice";
|
|
170
|
+
import * as bundledPiAiUtilsValidation from "@oh-my-pi-zen/pi-ai/utils/validation";
|
|
171
|
+
import * as bundledPiCodingAgentAsync from "@oh-my-pi-zen/pi-coding-agent/async";
|
|
172
|
+
import * as bundledPiCodingAgentAsyncJobManager from "@oh-my-pi-zen/pi-coding-agent/async/job-manager";
|
|
173
|
+
import * as bundledPiCodingAgentAutoresearch from "@oh-my-pi-zen/pi-coding-agent/autoresearch";
|
|
174
|
+
import * as bundledPiCodingAgentAutoresearchDashboard from "@oh-my-pi-zen/pi-coding-agent/autoresearch/dashboard";
|
|
175
|
+
import * as bundledPiCodingAgentAutoresearchGit from "@oh-my-pi-zen/pi-coding-agent/autoresearch/git";
|
|
176
|
+
import * as bundledPiCodingAgentAutoresearchHelpers from "@oh-my-pi-zen/pi-coding-agent/autoresearch/helpers";
|
|
177
|
+
import * as bundledPiCodingAgentAutoresearchState from "@oh-my-pi-zen/pi-coding-agent/autoresearch/state";
|
|
178
|
+
import * as bundledPiCodingAgentAutoresearchStorage from "@oh-my-pi-zen/pi-coding-agent/autoresearch/storage";
|
|
179
|
+
import * as bundledPiCodingAgentAutoresearchToolsInitExperiment from "@oh-my-pi-zen/pi-coding-agent/autoresearch/tools/init-experiment";
|
|
180
|
+
import * as bundledPiCodingAgentAutoresearchToolsLogExperiment from "@oh-my-pi-zen/pi-coding-agent/autoresearch/tools/log-experiment";
|
|
181
|
+
import * as bundledPiCodingAgentAutoresearchToolsRunExperiment from "@oh-my-pi-zen/pi-coding-agent/autoresearch/tools/run-experiment";
|
|
182
|
+
import * as bundledPiCodingAgentAutoresearchToolsUpdateNotes from "@oh-my-pi-zen/pi-coding-agent/autoresearch/tools/update-notes";
|
|
183
|
+
import * as bundledPiCodingAgentAutoresearchTypes from "@oh-my-pi-zen/pi-coding-agent/autoresearch/types";
|
|
184
|
+
import * as bundledPiCodingAgentCapability from "@oh-my-pi-zen/pi-coding-agent/capability";
|
|
185
|
+
import * as bundledPiCodingAgentCapabilityContextFile from "@oh-my-pi-zen/pi-coding-agent/capability/context-file";
|
|
186
|
+
import * as bundledPiCodingAgentCapabilityExtension from "@oh-my-pi-zen/pi-coding-agent/capability/extension";
|
|
187
|
+
import * as bundledPiCodingAgentCapabilityExtensionModule from "@oh-my-pi-zen/pi-coding-agent/capability/extension-module";
|
|
188
|
+
import * as bundledPiCodingAgentCapabilityFs from "@oh-my-pi-zen/pi-coding-agent/capability/fs";
|
|
189
|
+
import * as bundledPiCodingAgentCapabilityHook from "@oh-my-pi-zen/pi-coding-agent/capability/hook";
|
|
190
|
+
import * as bundledPiCodingAgentCapabilityInstruction from "@oh-my-pi-zen/pi-coding-agent/capability/instruction";
|
|
191
|
+
import * as bundledPiCodingAgentCapabilityMcp from "@oh-my-pi-zen/pi-coding-agent/capability/mcp";
|
|
192
|
+
import * as bundledPiCodingAgentCapabilityPrompt from "@oh-my-pi-zen/pi-coding-agent/capability/prompt";
|
|
193
|
+
import * as bundledPiCodingAgentCapabilityRule from "@oh-my-pi-zen/pi-coding-agent/capability/rule";
|
|
194
|
+
import * as bundledPiCodingAgentCapabilityRuleBuckets from "@oh-my-pi-zen/pi-coding-agent/capability/rule-buckets";
|
|
195
|
+
import * as bundledPiCodingAgentCapabilitySettings from "@oh-my-pi-zen/pi-coding-agent/capability/settings";
|
|
196
|
+
import * as bundledPiCodingAgentCapabilitySkill from "@oh-my-pi-zen/pi-coding-agent/capability/skill";
|
|
197
|
+
import * as bundledPiCodingAgentCapabilitySlashCommand from "@oh-my-pi-zen/pi-coding-agent/capability/slash-command";
|
|
198
|
+
import * as bundledPiCodingAgentCapabilitySsh from "@oh-my-pi-zen/pi-coding-agent/capability/ssh";
|
|
199
|
+
import * as bundledPiCodingAgentCapabilitySystemPrompt from "@oh-my-pi-zen/pi-coding-agent/capability/system-prompt";
|
|
200
|
+
import * as bundledPiCodingAgentCapabilityTool from "@oh-my-pi-zen/pi-coding-agent/capability/tool";
|
|
201
|
+
import * as bundledPiCodingAgentCapabilityTypes from "@oh-my-pi-zen/pi-coding-agent/capability/types";
|
|
202
|
+
import * as bundledPiCodingAgentCliAgentsCli from "@oh-my-pi-zen/pi-coding-agent/cli/agents-cli";
|
|
203
|
+
import * as bundledPiCodingAgentCliArgs from "@oh-my-pi-zen/pi-coding-agent/cli/args";
|
|
204
|
+
import * as bundledPiCodingAgentCliAuthBrokerCli from "@oh-my-pi-zen/pi-coding-agent/cli/auth-broker-cli";
|
|
205
|
+
import * as bundledPiCodingAgentCliAuthGatewayCli from "@oh-my-pi-zen/pi-coding-agent/cli/auth-gateway-cli";
|
|
206
|
+
import * as bundledPiCodingAgentCliBenchCli from "@oh-my-pi-zen/pi-coding-agent/cli/bench-cli";
|
|
207
|
+
import * as bundledPiCodingAgentCliClassifyInstallTarget from "@oh-my-pi-zen/pi-coding-agent/cli/classify-install-target";
|
|
208
|
+
import * as bundledPiCodingAgentCliClaudeTraceCli from "@oh-my-pi-zen/pi-coding-agent/cli/claude-trace-cli";
|
|
209
|
+
import * as bundledPiCodingAgentCliCommandsInitXdg from "@oh-my-pi-zen/pi-coding-agent/cli/commands/init-xdg";
|
|
210
|
+
import * as bundledPiCodingAgentCliCompletionGen from "@oh-my-pi-zen/pi-coding-agent/cli/completion-gen";
|
|
211
|
+
import * as bundledPiCodingAgentCliConfigCli from "@oh-my-pi-zen/pi-coding-agent/cli/config-cli";
|
|
212
|
+
import * as bundledPiCodingAgentCliDryBalanceCli from "@oh-my-pi-zen/pi-coding-agent/cli/dry-balance-cli";
|
|
213
|
+
import * as bundledPiCodingAgentCliExtensionFlags from "@oh-my-pi-zen/pi-coding-agent/cli/extension-flags";
|
|
214
|
+
import * as bundledPiCodingAgentCliFileProcessor from "@oh-my-pi-zen/pi-coding-agent/cli/file-processor";
|
|
215
|
+
import * as bundledPiCodingAgentCliFlagTables from "@oh-my-pi-zen/pi-coding-agent/cli/flag-tables";
|
|
216
|
+
import * as bundledPiCodingAgentCliGalleryCli from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-cli";
|
|
217
|
+
import * as bundledPiCodingAgentCliGalleryFixtures from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures";
|
|
218
|
+
import * as bundledPiCodingAgentCliGalleryFixturesAgentic from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/agentic";
|
|
219
|
+
import * as bundledPiCodingAgentCliGalleryFixturesCodeintel from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/codeintel";
|
|
220
|
+
import * as bundledPiCodingAgentCliGalleryFixturesEdit from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/edit";
|
|
221
|
+
import * as bundledPiCodingAgentCliGalleryFixturesFs from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/fs";
|
|
222
|
+
import * as bundledPiCodingAgentCliGalleryFixturesInteraction from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/interaction";
|
|
223
|
+
import * as bundledPiCodingAgentCliGalleryFixturesMemory from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/memory";
|
|
224
|
+
import * as bundledPiCodingAgentCliGalleryFixturesMisc from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/misc";
|
|
225
|
+
import * as bundledPiCodingAgentCliGalleryFixturesSearch from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/search";
|
|
226
|
+
import * as bundledPiCodingAgentCliGalleryFixturesShell from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/shell";
|
|
227
|
+
import * as bundledPiCodingAgentCliGalleryFixturesTypes from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/types";
|
|
228
|
+
import * as bundledPiCodingAgentCliGalleryFixturesWeb from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/web";
|
|
229
|
+
import * as bundledPiCodingAgentCliGalleryScreenshot from "@oh-my-pi-zen/pi-coding-agent/cli/gallery-screenshot";
|
|
230
|
+
import * as bundledPiCodingAgentCliGcCli from "@oh-my-pi-zen/pi-coding-agent/cli/gc-cli";
|
|
231
|
+
import * as bundledPiCodingAgentCliGrepCli from "@oh-my-pi-zen/pi-coding-agent/cli/grep-cli";
|
|
232
|
+
import * as bundledPiCodingAgentCliGrievancesCli from "@oh-my-pi-zen/pi-coding-agent/cli/grievances-cli";
|
|
233
|
+
import * as bundledPiCodingAgentCliInitialMessage from "@oh-my-pi-zen/pi-coding-agent/cli/initial-message";
|
|
234
|
+
import * as bundledPiCodingAgentCliModelsCli from "@oh-my-pi-zen/pi-coding-agent/cli/models-cli";
|
|
235
|
+
import * as bundledPiCodingAgentCliPluginCli from "@oh-my-pi-zen/pi-coding-agent/cli/plugin-cli";
|
|
236
|
+
import * as bundledPiCodingAgentCliProfileAlias from "@oh-my-pi-zen/pi-coding-agent/cli/profile-alias";
|
|
237
|
+
import * as bundledPiCodingAgentCliProfileBootstrap from "@oh-my-pi-zen/pi-coding-agent/cli/profile-bootstrap";
|
|
238
|
+
import * as bundledPiCodingAgentCliReadCli from "@oh-my-pi-zen/pi-coding-agent/cli/read-cli";
|
|
239
|
+
import * as bundledPiCodingAgentCliSessionPicker from "@oh-my-pi-zen/pi-coding-agent/cli/session-picker";
|
|
240
|
+
import * as bundledPiCodingAgentCliSetupCli from "@oh-my-pi-zen/pi-coding-agent/cli/setup-cli";
|
|
241
|
+
import * as bundledPiCodingAgentCliSetupModelPicker from "@oh-my-pi-zen/pi-coding-agent/cli/setup-model-picker";
|
|
242
|
+
import * as bundledPiCodingAgentCliShellCli from "@oh-my-pi-zen/pi-coding-agent/cli/shell-cli";
|
|
243
|
+
import * as bundledPiCodingAgentCliSshCli from "@oh-my-pi-zen/pi-coding-agent/cli/ssh-cli";
|
|
244
|
+
import * as bundledPiCodingAgentCliStartupCwd from "@oh-my-pi-zen/pi-coding-agent/cli/startup-cwd";
|
|
245
|
+
import * as bundledPiCodingAgentCliStatsCli from "@oh-my-pi-zen/pi-coding-agent/cli/stats-cli";
|
|
246
|
+
import * as bundledPiCodingAgentCliTinyModelsCli from "@oh-my-pi-zen/pi-coding-agent/cli/tiny-models-cli";
|
|
247
|
+
import * as bundledPiCodingAgentCliTtsrCli from "@oh-my-pi-zen/pi-coding-agent/cli/ttsr-cli";
|
|
248
|
+
import * as bundledPiCodingAgentCliUpdateCli from "@oh-my-pi-zen/pi-coding-agent/cli/update-cli";
|
|
249
|
+
import * as bundledPiCodingAgentCliUsageCli from "@oh-my-pi-zen/pi-coding-agent/cli/usage-cli";
|
|
250
|
+
import * as bundledPiCodingAgentCliWebSearchCli from "@oh-my-pi-zen/pi-coding-agent/cli/web-search-cli";
|
|
251
|
+
import * as bundledPiCodingAgentCliWorktreeCli from "@oh-my-pi-zen/pi-coding-agent/cli/worktree-cli";
|
|
252
|
+
import * as bundledPiCodingAgentCommandsAcp from "@oh-my-pi-zen/pi-coding-agent/commands/acp";
|
|
253
|
+
import * as bundledPiCodingAgentCommandsAgents from "@oh-my-pi-zen/pi-coding-agent/commands/agents";
|
|
254
|
+
import * as bundledPiCodingAgentCommandsAuthBroker from "@oh-my-pi-zen/pi-coding-agent/commands/auth-broker";
|
|
255
|
+
import * as bundledPiCodingAgentCommandsAuthGateway from "@oh-my-pi-zen/pi-coding-agent/commands/auth-gateway";
|
|
256
|
+
import * as bundledPiCodingAgentCommandsBench from "@oh-my-pi-zen/pi-coding-agent/commands/bench";
|
|
257
|
+
import * as bundledPiCodingAgentCommandsCommit from "@oh-my-pi-zen/pi-coding-agent/commands/commit";
|
|
258
|
+
import * as bundledPiCodingAgentCommandsComplete from "@oh-my-pi-zen/pi-coding-agent/commands/complete";
|
|
259
|
+
import * as bundledPiCodingAgentCommandsCompletions from "@oh-my-pi-zen/pi-coding-agent/commands/completions";
|
|
260
|
+
import * as bundledPiCodingAgentCommandsConfig from "@oh-my-pi-zen/pi-coding-agent/commands/config";
|
|
261
|
+
import * as bundledPiCodingAgentCommandsDryBalance from "@oh-my-pi-zen/pi-coding-agent/commands/dry-balance";
|
|
262
|
+
import * as bundledPiCodingAgentCommandsGallery from "@oh-my-pi-zen/pi-coding-agent/commands/gallery";
|
|
263
|
+
import * as bundledPiCodingAgentCommandsGc from "@oh-my-pi-zen/pi-coding-agent/commands/gc";
|
|
264
|
+
import * as bundledPiCodingAgentCommandsGrep from "@oh-my-pi-zen/pi-coding-agent/commands/grep";
|
|
265
|
+
import * as bundledPiCodingAgentCommandsGrievances from "@oh-my-pi-zen/pi-coding-agent/commands/grievances";
|
|
266
|
+
import * as bundledPiCodingAgentCommandsInstall from "@oh-my-pi-zen/pi-coding-agent/commands/install";
|
|
267
|
+
import * as bundledPiCodingAgentCommandsJoin from "@oh-my-pi-zen/pi-coding-agent/commands/join";
|
|
268
|
+
import * as bundledPiCodingAgentCommandsLaunch from "@oh-my-pi-zen/pi-coding-agent/commands/launch";
|
|
269
|
+
import * as bundledPiCodingAgentCommandsModels from "@oh-my-pi-zen/pi-coding-agent/commands/models";
|
|
270
|
+
import * as bundledPiCodingAgentCommandsPlugin from "@oh-my-pi-zen/pi-coding-agent/commands/plugin";
|
|
271
|
+
import * as bundledPiCodingAgentCommandsRead from "@oh-my-pi-zen/pi-coding-agent/commands/read";
|
|
272
|
+
import * as bundledPiCodingAgentCommandsSay from "@oh-my-pi-zen/pi-coding-agent/commands/say";
|
|
273
|
+
import * as bundledPiCodingAgentCommandsSetup from "@oh-my-pi-zen/pi-coding-agent/commands/setup";
|
|
274
|
+
import * as bundledPiCodingAgentCommandsShell from "@oh-my-pi-zen/pi-coding-agent/commands/shell";
|
|
275
|
+
import * as bundledPiCodingAgentCommandsSsh from "@oh-my-pi-zen/pi-coding-agent/commands/ssh";
|
|
276
|
+
import * as bundledPiCodingAgentCommandsStats from "@oh-my-pi-zen/pi-coding-agent/commands/stats";
|
|
277
|
+
import * as bundledPiCodingAgentCommandsTinyModels from "@oh-my-pi-zen/pi-coding-agent/commands/tiny-models";
|
|
278
|
+
import * as bundledPiCodingAgentCommandsToken from "@oh-my-pi-zen/pi-coding-agent/commands/token";
|
|
279
|
+
import * as bundledPiCodingAgentCommandsTtsr from "@oh-my-pi-zen/pi-coding-agent/commands/ttsr";
|
|
280
|
+
import * as bundledPiCodingAgentCommandsUpdate from "@oh-my-pi-zen/pi-coding-agent/commands/update";
|
|
281
|
+
import * as bundledPiCodingAgentCommandsUsage from "@oh-my-pi-zen/pi-coding-agent/commands/usage";
|
|
282
|
+
import * as bundledPiCodingAgentCommandsWebSearch from "@oh-my-pi-zen/pi-coding-agent/commands/web-search";
|
|
283
|
+
import * as bundledPiCodingAgentCommandsWorktree from "@oh-my-pi-zen/pi-coding-agent/commands/worktree";
|
|
284
|
+
import * as bundledPiCodingAgentCommit from "@oh-my-pi-zen/pi-coding-agent/commit";
|
|
285
|
+
import * as bundledPiCodingAgentCommitAgentic from "@oh-my-pi-zen/pi-coding-agent/commit/agentic";
|
|
286
|
+
import * as bundledPiCodingAgentCommitAgenticAgent from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/agent";
|
|
287
|
+
import * as bundledPiCodingAgentCommitAgenticFallback from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/fallback";
|
|
288
|
+
import * as bundledPiCodingAgentCommitAgenticState from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/state";
|
|
289
|
+
import * as bundledPiCodingAgentCommitAgenticTools from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools";
|
|
290
|
+
import * as bundledPiCodingAgentCommitAgenticToolsAnalyzeFile from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/analyze-file";
|
|
291
|
+
import * as bundledPiCodingAgentCommitAgenticToolsGitFileDiff from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/git-file-diff";
|
|
292
|
+
import * as bundledPiCodingAgentCommitAgenticToolsGitHunk from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/git-hunk";
|
|
293
|
+
import * as bundledPiCodingAgentCommitAgenticToolsGitOverview from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/git-overview";
|
|
294
|
+
import * as bundledPiCodingAgentCommitAgenticToolsProposeChangelog from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/propose-changelog";
|
|
295
|
+
import * as bundledPiCodingAgentCommitAgenticToolsProposeCommit from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/propose-commit";
|
|
296
|
+
import * as bundledPiCodingAgentCommitAgenticToolsRecentCommits from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/recent-commits";
|
|
297
|
+
import * as bundledPiCodingAgentCommitAgenticToolsSchemas from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/schemas";
|
|
298
|
+
import * as bundledPiCodingAgentCommitAgenticToolsSplitCommit from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/split-commit";
|
|
299
|
+
import * as bundledPiCodingAgentCommitAgenticTopoSort from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/topo-sort";
|
|
300
|
+
import * as bundledPiCodingAgentCommitAgenticTrivial from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/trivial";
|
|
301
|
+
import * as bundledPiCodingAgentCommitAgenticValidation from "@oh-my-pi-zen/pi-coding-agent/commit/agentic/validation";
|
|
302
|
+
import * as bundledPiCodingAgentCommitAnalysis from "@oh-my-pi-zen/pi-coding-agent/commit/analysis";
|
|
303
|
+
import * as bundledPiCodingAgentCommitAnalysisConventional from "@oh-my-pi-zen/pi-coding-agent/commit/analysis/conventional";
|
|
304
|
+
import * as bundledPiCodingAgentCommitAnalysisScope from "@oh-my-pi-zen/pi-coding-agent/commit/analysis/scope";
|
|
305
|
+
import * as bundledPiCodingAgentCommitAnalysisSummary from "@oh-my-pi-zen/pi-coding-agent/commit/analysis/summary";
|
|
306
|
+
import * as bundledPiCodingAgentCommitAnalysisValidation from "@oh-my-pi-zen/pi-coding-agent/commit/analysis/validation";
|
|
307
|
+
import * as bundledPiCodingAgentCommitChangelog from "@oh-my-pi-zen/pi-coding-agent/commit/changelog";
|
|
308
|
+
import * as bundledPiCodingAgentCommitChangelogDetect from "@oh-my-pi-zen/pi-coding-agent/commit/changelog/detect";
|
|
309
|
+
import * as bundledPiCodingAgentCommitChangelogGenerate from "@oh-my-pi-zen/pi-coding-agent/commit/changelog/generate";
|
|
310
|
+
import * as bundledPiCodingAgentCommitChangelogParse from "@oh-my-pi-zen/pi-coding-agent/commit/changelog/parse";
|
|
311
|
+
import * as bundledPiCodingAgentCommitCli from "@oh-my-pi-zen/pi-coding-agent/commit/cli";
|
|
312
|
+
import * as bundledPiCodingAgentCommitGitDiff from "@oh-my-pi-zen/pi-coding-agent/commit/git/diff";
|
|
313
|
+
import * as bundledPiCodingAgentCommitMapReduce from "@oh-my-pi-zen/pi-coding-agent/commit/map-reduce";
|
|
314
|
+
import * as bundledPiCodingAgentCommitMapReduceMapPhase from "@oh-my-pi-zen/pi-coding-agent/commit/map-reduce/map-phase";
|
|
315
|
+
import * as bundledPiCodingAgentCommitMapReduceReducePhase from "@oh-my-pi-zen/pi-coding-agent/commit/map-reduce/reduce-phase";
|
|
316
|
+
import * as bundledPiCodingAgentCommitMapReduceUtils from "@oh-my-pi-zen/pi-coding-agent/commit/map-reduce/utils";
|
|
317
|
+
import * as bundledPiCodingAgentCommitMessage from "@oh-my-pi-zen/pi-coding-agent/commit/message";
|
|
318
|
+
import * as bundledPiCodingAgentCommitModelSelection from "@oh-my-pi-zen/pi-coding-agent/commit/model-selection";
|
|
319
|
+
import * as bundledPiCodingAgentCommitPipeline from "@oh-my-pi-zen/pi-coding-agent/commit/pipeline";
|
|
320
|
+
import * as bundledPiCodingAgentCommitSharedLlm from "@oh-my-pi-zen/pi-coding-agent/commit/shared-llm";
|
|
321
|
+
import * as bundledPiCodingAgentCommitTypes from "@oh-my-pi-zen/pi-coding-agent/commit/types";
|
|
322
|
+
import * as bundledPiCodingAgentCommitUtils from "@oh-my-pi-zen/pi-coding-agent/commit/utils";
|
|
323
|
+
import * as bundledPiCodingAgentCommitUtilsExclusions from "@oh-my-pi-zen/pi-coding-agent/commit/utils/exclusions";
|
|
324
|
+
import * as bundledPiCodingAgentConfigApiKeyResolver from "@oh-my-pi-zen/pi-coding-agent/config/api-key-resolver";
|
|
325
|
+
import * as bundledPiCodingAgentConfigAppendOnlyContextMode from "@oh-my-pi-zen/pi-coding-agent/config/append-only-context-mode";
|
|
326
|
+
import * as bundledPiCodingAgentConfigConfigFile from "@oh-my-pi-zen/pi-coding-agent/config/config-file";
|
|
327
|
+
import * as bundledPiCodingAgentConfigFileLock from "@oh-my-pi-zen/pi-coding-agent/config/file-lock";
|
|
328
|
+
import * as bundledPiCodingAgentConfigInlineToolDescriptorsMode from "@oh-my-pi-zen/pi-coding-agent/config/inline-tool-descriptors-mode";
|
|
329
|
+
import * as bundledPiCodingAgentConfigKeybindings from "@oh-my-pi-zen/pi-coding-agent/config/keybindings";
|
|
330
|
+
import * as bundledPiCodingAgentConfigModelDiscovery from "@oh-my-pi-zen/pi-coding-agent/config/model-discovery";
|
|
331
|
+
import * as bundledPiCodingAgentConfigModelRegistry from "@oh-my-pi-zen/pi-coding-agent/config/model-registry";
|
|
332
|
+
import * as bundledPiCodingAgentConfigModelResolver from "@oh-my-pi-zen/pi-coding-agent/config/model-resolver";
|
|
333
|
+
import * as bundledPiCodingAgentConfigModelRoles from "@oh-my-pi-zen/pi-coding-agent/config/model-roles";
|
|
334
|
+
import * as bundledPiCodingAgentConfigModelsConfig from "@oh-my-pi-zen/pi-coding-agent/config/models-config";
|
|
335
|
+
import * as bundledPiCodingAgentConfigModelsConfigSchema from "@oh-my-pi-zen/pi-coding-agent/config/models-config-schema";
|
|
336
|
+
import * as bundledPiCodingAgentConfigPromptTemplates from "@oh-my-pi-zen/pi-coding-agent/config/prompt-templates";
|
|
337
|
+
import * as bundledPiCodingAgentConfigResolveConfigValue from "@oh-my-pi-zen/pi-coding-agent/config/resolve-config-value";
|
|
338
|
+
import * as bundledPiCodingAgentConfigServiceTier from "@oh-my-pi-zen/pi-coding-agent/config/service-tier";
|
|
339
|
+
import * as bundledPiCodingAgentConfigSettings from "@oh-my-pi-zen/pi-coding-agent/config/settings";
|
|
340
|
+
import * as bundledPiCodingAgentConfigSettingsSchema from "@oh-my-pi-zen/pi-coding-agent/config/settings-schema";
|
|
341
|
+
import * as bundledPiCodingAgentDap from "@oh-my-pi-zen/pi-coding-agent/dap";
|
|
342
|
+
import * as bundledPiCodingAgentDapClient from "@oh-my-pi-zen/pi-coding-agent/dap/client";
|
|
343
|
+
import * as bundledPiCodingAgentDapConfig from "@oh-my-pi-zen/pi-coding-agent/dap/config";
|
|
344
|
+
import * as bundledPiCodingAgentDapSession from "@oh-my-pi-zen/pi-coding-agent/dap/session";
|
|
345
|
+
import * as bundledPiCodingAgentDapTypes from "@oh-my-pi-zen/pi-coding-agent/dap/types";
|
|
346
|
+
import * as bundledPiCodingAgentDebug from "@oh-my-pi-zen/pi-coding-agent/debug";
|
|
347
|
+
import * as bundledPiCodingAgentDebugLogFormatting from "@oh-my-pi-zen/pi-coding-agent/debug/log-formatting";
|
|
348
|
+
import * as bundledPiCodingAgentDebugLogViewer from "@oh-my-pi-zen/pi-coding-agent/debug/log-viewer";
|
|
349
|
+
import * as bundledPiCodingAgentDebugProfiler from "@oh-my-pi-zen/pi-coding-agent/debug/profiler";
|
|
350
|
+
import * as bundledPiCodingAgentDebugProtocolProbe from "@oh-my-pi-zen/pi-coding-agent/debug/protocol-probe";
|
|
351
|
+
import * as bundledPiCodingAgentDebugRawSse from "@oh-my-pi-zen/pi-coding-agent/debug/raw-sse";
|
|
352
|
+
import * as bundledPiCodingAgentDebugRawSseBuffer from "@oh-my-pi-zen/pi-coding-agent/debug/raw-sse-buffer";
|
|
353
|
+
import * as bundledPiCodingAgentDebugRemoteDebugger from "@oh-my-pi-zen/pi-coding-agent/debug/remote-debugger";
|
|
354
|
+
import * as bundledPiCodingAgentDebugReportBundle from "@oh-my-pi-zen/pi-coding-agent/debug/report-bundle";
|
|
355
|
+
import * as bundledPiCodingAgentDebugSystemInfo from "@oh-my-pi-zen/pi-coding-agent/debug/system-info";
|
|
356
|
+
import * as bundledPiCodingAgentDebugTerminalInfo from "@oh-my-pi-zen/pi-coding-agent/debug/terminal-info";
|
|
357
|
+
import * as bundledPiCodingAgentDiscovery from "@oh-my-pi-zen/pi-coding-agent/discovery";
|
|
358
|
+
import * as bundledPiCodingAgentDiscoveryAgents from "@oh-my-pi-zen/pi-coding-agent/discovery/agents";
|
|
359
|
+
import * as bundledPiCodingAgentDiscoveryAgentsMd from "@oh-my-pi-zen/pi-coding-agent/discovery/agents-md";
|
|
360
|
+
import * as bundledPiCodingAgentDiscoveryAtImports from "@oh-my-pi-zen/pi-coding-agent/discovery/at-imports";
|
|
361
|
+
import * as bundledPiCodingAgentDiscoveryBuiltin from "@oh-my-pi-zen/pi-coding-agent/discovery/builtin";
|
|
362
|
+
import * as bundledPiCodingAgentDiscoveryBuiltinDefaults from "@oh-my-pi-zen/pi-coding-agent/discovery/builtin-defaults";
|
|
363
|
+
import * as bundledPiCodingAgentDiscoveryClaude from "@oh-my-pi-zen/pi-coding-agent/discovery/claude";
|
|
364
|
+
import * as bundledPiCodingAgentDiscoveryClaudePlugins from "@oh-my-pi-zen/pi-coding-agent/discovery/claude-plugins";
|
|
365
|
+
import * as bundledPiCodingAgentDiscoveryCline from "@oh-my-pi-zen/pi-coding-agent/discovery/cline";
|
|
366
|
+
import * as bundledPiCodingAgentDiscoveryCodex from "@oh-my-pi-zen/pi-coding-agent/discovery/codex";
|
|
367
|
+
import * as bundledPiCodingAgentDiscoveryCursor from "@oh-my-pi-zen/pi-coding-agent/discovery/cursor";
|
|
368
|
+
import * as bundledPiCodingAgentDiscoveryGemini from "@oh-my-pi-zen/pi-coding-agent/discovery/gemini";
|
|
369
|
+
import * as bundledPiCodingAgentDiscoveryGithub from "@oh-my-pi-zen/pi-coding-agent/discovery/github";
|
|
370
|
+
import * as bundledPiCodingAgentDiscoveryHelpers from "@oh-my-pi-zen/pi-coding-agent/discovery/helpers";
|
|
371
|
+
import * as bundledPiCodingAgentDiscoveryMcpJson from "@oh-my-pi-zen/pi-coding-agent/discovery/mcp-json";
|
|
372
|
+
import * as bundledPiCodingAgentDiscoveryOmpExtensionRoots from "@oh-my-pi-zen/pi-coding-agent/discovery/omp-extension-roots";
|
|
373
|
+
import * as bundledPiCodingAgentDiscoveryOmpPlugins from "@oh-my-pi-zen/pi-coding-agent/discovery/omp-plugins";
|
|
374
|
+
import * as bundledPiCodingAgentDiscoveryOpencode from "@oh-my-pi-zen/pi-coding-agent/discovery/opencode";
|
|
375
|
+
import * as bundledPiCodingAgentDiscoveryPluginDirRoots from "@oh-my-pi-zen/pi-coding-agent/discovery/plugin-dir-roots";
|
|
376
|
+
import * as bundledPiCodingAgentDiscoverySsh from "@oh-my-pi-zen/pi-coding-agent/discovery/ssh";
|
|
377
|
+
import * as bundledPiCodingAgentDiscoverySubstitutePluginRoot from "@oh-my-pi-zen/pi-coding-agent/discovery/substitute-plugin-root";
|
|
378
|
+
import * as bundledPiCodingAgentDiscoveryVscode from "@oh-my-pi-zen/pi-coding-agent/discovery/vscode";
|
|
379
|
+
import * as bundledPiCodingAgentDiscoveryWindsurf from "@oh-my-pi-zen/pi-coding-agent/discovery/windsurf";
|
|
380
|
+
import * as bundledPiCodingAgentEdit from "@oh-my-pi-zen/pi-coding-agent/edit";
|
|
381
|
+
import * as bundledPiCodingAgentEditDiff from "@oh-my-pi-zen/pi-coding-agent/edit/diff";
|
|
382
|
+
import * as bundledPiCodingAgentEditFileSnapshotStore from "@oh-my-pi-zen/pi-coding-agent/edit/file-snapshot-store";
|
|
383
|
+
import * as bundledPiCodingAgentEditModesApplyPatch from "@oh-my-pi-zen/pi-coding-agent/edit/modes/apply-patch";
|
|
384
|
+
import * as bundledPiCodingAgentEditModesPatch from "@oh-my-pi-zen/pi-coding-agent/edit/modes/patch";
|
|
385
|
+
import * as bundledPiCodingAgentEditModesReplace from "@oh-my-pi-zen/pi-coding-agent/edit/modes/replace";
|
|
386
|
+
import * as bundledPiCodingAgentEditNormalize from "@oh-my-pi-zen/pi-coding-agent/edit/normalize";
|
|
387
|
+
import * as bundledPiCodingAgentEditNotebook from "@oh-my-pi-zen/pi-coding-agent/edit/notebook";
|
|
388
|
+
import * as bundledPiCodingAgentEditReadFile from "@oh-my-pi-zen/pi-coding-agent/edit/read-file";
|
|
389
|
+
import * as bundledPiCodingAgentEditRenderer from "@oh-my-pi-zen/pi-coding-agent/edit/renderer";
|
|
390
|
+
import * as bundledPiCodingAgentEditStreaming from "@oh-my-pi-zen/pi-coding-agent/edit/streaming";
|
|
391
|
+
import * as bundledPiCodingAgentEval from "@oh-my-pi-zen/pi-coding-agent/eval";
|
|
392
|
+
import * as bundledPiCodingAgentEvalJsContextManager from "@oh-my-pi-zen/pi-coding-agent/eval/js/context-manager";
|
|
393
|
+
import * as bundledPiCodingAgentEvalJsExecutor from "@oh-my-pi-zen/pi-coding-agent/eval/js/executor";
|
|
394
|
+
import * as bundledPiCodingAgentEvalJsToolBridge from "@oh-my-pi-zen/pi-coding-agent/eval/js/tool-bridge";
|
|
395
|
+
import * as bundledPiCodingAgentEvalJsWorkerCore from "@oh-my-pi-zen/pi-coding-agent/eval/js/worker-core";
|
|
396
|
+
import * as bundledPiCodingAgentEvalJsWorkerProtocol from "@oh-my-pi-zen/pi-coding-agent/eval/js/worker-protocol";
|
|
397
|
+
import * as bundledPiCodingAgentEvalPyDisplay from "@oh-my-pi-zen/pi-coding-agent/eval/py/display";
|
|
398
|
+
import * as bundledPiCodingAgentEvalPyExecutor from "@oh-my-pi-zen/pi-coding-agent/eval/py/executor";
|
|
399
|
+
import * as bundledPiCodingAgentEvalPyKernel from "@oh-my-pi-zen/pi-coding-agent/eval/py/kernel";
|
|
400
|
+
import * as bundledPiCodingAgentEvalPyPrelude from "@oh-my-pi-zen/pi-coding-agent/eval/py/prelude";
|
|
401
|
+
import * as bundledPiCodingAgentEvalPyRuntime from "@oh-my-pi-zen/pi-coding-agent/eval/py/runtime";
|
|
402
|
+
import * as bundledPiCodingAgentEvalPySpawnOptions from "@oh-my-pi-zen/pi-coding-agent/eval/py/spawn-options";
|
|
403
|
+
import * as bundledPiCodingAgentEvalPyToolBridge from "@oh-my-pi-zen/pi-coding-agent/eval/py/tool-bridge";
|
|
404
|
+
import * as bundledPiCodingAgentExa from "@oh-my-pi-zen/pi-coding-agent/exa";
|
|
405
|
+
import * as bundledPiCodingAgentExaMcpClient from "@oh-my-pi-zen/pi-coding-agent/exa/mcp-client";
|
|
406
|
+
import * as bundledPiCodingAgentExaTypes from "@oh-my-pi-zen/pi-coding-agent/exa/types";
|
|
407
|
+
import * as bundledPiCodingAgentExecBashExecutor from "@oh-my-pi-zen/pi-coding-agent/exec/bash-executor";
|
|
408
|
+
import * as bundledPiCodingAgentExecExec from "@oh-my-pi-zen/pi-coding-agent/exec/exec";
|
|
409
|
+
import * as bundledPiCodingAgentExecNonInteractiveEnv from "@oh-my-pi-zen/pi-coding-agent/exec/non-interactive-env";
|
|
410
|
+
import * as bundledPiCodingAgentExportCustomShare from "@oh-my-pi-zen/pi-coding-agent/export/custom-share";
|
|
411
|
+
import * as bundledPiCodingAgentExportHtml from "@oh-my-pi-zen/pi-coding-agent/export/html";
|
|
412
|
+
import * as bundledPiCodingAgentExportHtmlWebPalette from "@oh-my-pi-zen/pi-coding-agent/export/html/web-palette";
|
|
413
|
+
import * as bundledPiCodingAgentExportShare from "@oh-my-pi-zen/pi-coding-agent/export/share";
|
|
414
|
+
import * as bundledPiCodingAgentExportTtsr from "@oh-my-pi-zen/pi-coding-agent/export/ttsr";
|
|
415
|
+
import * as bundledPiCodingAgentExtensibilityCustomCommands from "@oh-my-pi-zen/pi-coding-agent/extensibility/custom-commands";
|
|
416
|
+
import * as bundledPiCodingAgentExtensibilityCustomCommandsBundledCiGreen from "@oh-my-pi-zen/pi-coding-agent/extensibility/custom-commands/bundled/ci-green";
|
|
417
|
+
import * as bundledPiCodingAgentExtensibilityCustomCommandsBundledReview from "@oh-my-pi-zen/pi-coding-agent/extensibility/custom-commands/bundled/review";
|
|
418
|
+
import * as bundledPiCodingAgentExtensibilityCustomCommandsLoader from "@oh-my-pi-zen/pi-coding-agent/extensibility/custom-commands/loader";
|
|
419
|
+
import * as bundledPiCodingAgentExtensibilityCustomCommandsTypes from "@oh-my-pi-zen/pi-coding-agent/extensibility/custom-commands/types";
|
|
420
|
+
import * as bundledPiCodingAgentExtensibilityCustomTools from "@oh-my-pi-zen/pi-coding-agent/extensibility/custom-tools";
|
|
421
|
+
import * as bundledPiCodingAgentExtensibilityCustomToolsLoader from "@oh-my-pi-zen/pi-coding-agent/extensibility/custom-tools/loader";
|
|
422
|
+
import * as bundledPiCodingAgentExtensibilityCustomToolsTypes from "@oh-my-pi-zen/pi-coding-agent/extensibility/custom-tools/types";
|
|
423
|
+
import * as bundledPiCodingAgentExtensibilityCustomToolsWrapper from "@oh-my-pi-zen/pi-coding-agent/extensibility/custom-tools/wrapper";
|
|
424
|
+
import * as bundledPiCodingAgentExtensibilityExtensions from "@oh-my-pi-zen/pi-coding-agent/extensibility/extensions";
|
|
425
|
+
import * as bundledPiCodingAgentExtensibilityExtensionsCompactHandler from "@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/compact-handler";
|
|
426
|
+
import * as bundledPiCodingAgentExtensibilityExtensionsGetCommandsHandler from "@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/get-commands-handler";
|
|
427
|
+
import * as bundledPiCodingAgentExtensibilityExtensionsLoader from "@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/loader";
|
|
428
|
+
import * as bundledPiCodingAgentExtensibilityExtensionsModelApi from "@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/model-api";
|
|
429
|
+
import * as bundledPiCodingAgentExtensibilityExtensionsRunner from "@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/runner";
|
|
430
|
+
import * as bundledPiCodingAgentExtensibilityExtensionsTypes from "@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/types";
|
|
431
|
+
import * as bundledPiCodingAgentExtensibilityExtensionsWrapper from "@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/wrapper";
|
|
432
|
+
import * as bundledPiCodingAgentExtensibilityHooks from "@oh-my-pi-zen/pi-coding-agent/extensibility/hooks";
|
|
433
|
+
import * as bundledPiCodingAgentExtensibilityHooksLoader from "@oh-my-pi-zen/pi-coding-agent/extensibility/hooks/loader";
|
|
434
|
+
import * as bundledPiCodingAgentExtensibilityHooksRunner from "@oh-my-pi-zen/pi-coding-agent/extensibility/hooks/runner";
|
|
435
|
+
import * as bundledPiCodingAgentExtensibilityHooksToolWrapper from "@oh-my-pi-zen/pi-coding-agent/extensibility/hooks/tool-wrapper";
|
|
436
|
+
import * as bundledPiCodingAgentExtensibilityHooksTypes from "@oh-my-pi-zen/pi-coding-agent/extensibility/hooks/types";
|
|
437
|
+
import * as bundledPiCodingAgentExtensibilityLegacyPiAiShim from "@oh-my-pi-zen/pi-coding-agent/extensibility/legacy-pi-ai-shim";
|
|
438
|
+
import * as bundledPiCodingAgentExtensibilityLegacyPiCodingAgentShim from "@oh-my-pi-zen/pi-coding-agent/extensibility/legacy-pi-coding-agent-shim";
|
|
439
|
+
import * as bundledPiCodingAgentExtensibilityPlugins from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins";
|
|
440
|
+
import * as bundledPiCodingAgentExtensibilityPluginsDoctor from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/doctor";
|
|
441
|
+
import * as bundledPiCodingAgentExtensibilityPluginsGitUrl from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/git-url";
|
|
442
|
+
import * as bundledPiCodingAgentExtensibilityPluginsInstaller from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/installer";
|
|
443
|
+
import * as bundledPiCodingAgentExtensibilityPluginsLegacyPiBundledKeys from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/legacy-pi-bundled-keys";
|
|
444
|
+
import * as bundledPiCodingAgentExtensibilityPluginsLegacyPiBundledRegistry from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/legacy-pi-bundled-registry";
|
|
445
|
+
import * as bundledPiCodingAgentExtensibilityPluginsLegacyPiCompat from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/legacy-pi-compat";
|
|
446
|
+
import * as bundledPiCodingAgentExtensibilityPluginsLoader from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/loader";
|
|
447
|
+
import * as bundledPiCodingAgentExtensibilityPluginsManager from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/manager";
|
|
448
|
+
import * as bundledPiCodingAgentExtensibilityPluginsMarketplace from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace";
|
|
449
|
+
import * as bundledPiCodingAgentExtensibilityPluginsMarketplaceCache from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/cache";
|
|
450
|
+
import * as bundledPiCodingAgentExtensibilityPluginsMarketplaceFetcher from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/fetcher";
|
|
451
|
+
import * as bundledPiCodingAgentExtensibilityPluginsMarketplaceManager from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/manager";
|
|
452
|
+
import * as bundledPiCodingAgentExtensibilityPluginsMarketplaceRegistry from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/registry";
|
|
453
|
+
import * as bundledPiCodingAgentExtensibilityPluginsMarketplaceSourceResolver from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/source-resolver";
|
|
454
|
+
import * as bundledPiCodingAgentExtensibilityPluginsMarketplaceTypes from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/types";
|
|
455
|
+
import * as bundledPiCodingAgentExtensibilityPluginsMarketplaceAutoUpdate from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace-auto-update";
|
|
456
|
+
import * as bundledPiCodingAgentExtensibilityPluginsParser from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/parser";
|
|
457
|
+
import * as bundledPiCodingAgentExtensibilityPluginsRuntimeConfig from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/runtime-config";
|
|
458
|
+
import * as bundledPiCodingAgentExtensibilityPluginsTypes from "@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/types";
|
|
459
|
+
import * as bundledPiCodingAgentExtensibilitySessionHandlerTypes from "@oh-my-pi-zen/pi-coding-agent/extensibility/session-handler-types";
|
|
460
|
+
import * as bundledPiCodingAgentExtensibilitySharedEvents from "@oh-my-pi-zen/pi-coding-agent/extensibility/shared-events";
|
|
461
|
+
import * as bundledPiCodingAgentExtensibilitySkills from "@oh-my-pi-zen/pi-coding-agent/extensibility/skills";
|
|
462
|
+
import * as bundledPiCodingAgentExtensibilitySlashCommands from "@oh-my-pi-zen/pi-coding-agent/extensibility/slash-commands";
|
|
463
|
+
import * as bundledPiCodingAgentExtensibilityToolEventInput from "@oh-my-pi-zen/pi-coding-agent/extensibility/tool-event-input";
|
|
464
|
+
import * as bundledPiCodingAgentExtensibilityToolProxy from "@oh-my-pi-zen/pi-coding-agent/extensibility/tool-proxy";
|
|
465
|
+
import * as bundledPiCodingAgentExtensibilityTypebox from "@oh-my-pi-zen/pi-coding-agent/extensibility/typebox";
|
|
466
|
+
import * as bundledPiCodingAgentExtensibilityUtils from "@oh-my-pi-zen/pi-coding-agent/extensibility/utils";
|
|
467
|
+
import * as bundledPiCodingAgentHindsight from "@oh-my-pi-zen/pi-coding-agent/hindsight";
|
|
468
|
+
import * as bundledPiCodingAgentHindsightBackend from "@oh-my-pi-zen/pi-coding-agent/hindsight/backend";
|
|
469
|
+
import * as bundledPiCodingAgentHindsightBank from "@oh-my-pi-zen/pi-coding-agent/hindsight/bank";
|
|
470
|
+
import * as bundledPiCodingAgentHindsightClient from "@oh-my-pi-zen/pi-coding-agent/hindsight/client";
|
|
471
|
+
import * as bundledPiCodingAgentHindsightConfig from "@oh-my-pi-zen/pi-coding-agent/hindsight/config";
|
|
472
|
+
import * as bundledPiCodingAgentHindsightContent from "@oh-my-pi-zen/pi-coding-agent/hindsight/content";
|
|
473
|
+
import * as bundledPiCodingAgentHindsightMentalModels from "@oh-my-pi-zen/pi-coding-agent/hindsight/mental-models";
|
|
474
|
+
import * as bundledPiCodingAgentHindsightState from "@oh-my-pi-zen/pi-coding-agent/hindsight/state";
|
|
475
|
+
import * as bundledPiCodingAgentHindsightTranscript from "@oh-my-pi-zen/pi-coding-agent/hindsight/transcript";
|
|
476
|
+
import * as bundledPiCodingAgentInternalUrls from "@oh-my-pi-zen/pi-coding-agent/internal-urls";
|
|
477
|
+
import * as bundledPiCodingAgentInternalUrlsAgentProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/agent-protocol";
|
|
478
|
+
import * as bundledPiCodingAgentInternalUrlsArtifactProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/artifact-protocol";
|
|
479
|
+
import * as bundledPiCodingAgentInternalUrlsDocsIndex from "@oh-my-pi-zen/pi-coding-agent/internal-urls/docs-index";
|
|
480
|
+
import * as bundledPiCodingAgentInternalUrlsFilesystemResource from "@oh-my-pi-zen/pi-coding-agent/internal-urls/filesystem-resource";
|
|
481
|
+
import * as bundledPiCodingAgentInternalUrlsHistoryProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/history-protocol";
|
|
482
|
+
import * as bundledPiCodingAgentInternalUrlsIssuePrProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/issue-pr-protocol";
|
|
483
|
+
import * as bundledPiCodingAgentInternalUrlsJsonQuery from "@oh-my-pi-zen/pi-coding-agent/internal-urls/json-query";
|
|
484
|
+
import * as bundledPiCodingAgentInternalUrlsLocalProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/local-protocol";
|
|
485
|
+
import * as bundledPiCodingAgentInternalUrlsMcpProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/mcp-protocol";
|
|
486
|
+
import * as bundledPiCodingAgentInternalUrlsMemoryProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/memory-protocol";
|
|
487
|
+
import * as bundledPiCodingAgentInternalUrlsOmpProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/omp-protocol";
|
|
488
|
+
import * as bundledPiCodingAgentInternalUrlsParse from "@oh-my-pi-zen/pi-coding-agent/internal-urls/parse";
|
|
489
|
+
import * as bundledPiCodingAgentInternalUrlsRegistryHelpers from "@oh-my-pi-zen/pi-coding-agent/internal-urls/registry-helpers";
|
|
490
|
+
import * as bundledPiCodingAgentInternalUrlsRouter from "@oh-my-pi-zen/pi-coding-agent/internal-urls/router";
|
|
491
|
+
import * as bundledPiCodingAgentInternalUrlsRuleProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/rule-protocol";
|
|
492
|
+
import * as bundledPiCodingAgentInternalUrlsSkillProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/skill-protocol";
|
|
493
|
+
import * as bundledPiCodingAgentInternalUrlsSshProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/ssh-protocol";
|
|
494
|
+
import * as bundledPiCodingAgentInternalUrlsTypes from "@oh-my-pi-zen/pi-coding-agent/internal-urls/types";
|
|
495
|
+
import * as bundledPiCodingAgentInternalUrlsVaultProtocol from "@oh-my-pi-zen/pi-coding-agent/internal-urls/vault-protocol";
|
|
496
|
+
import * as bundledPiCodingAgentLsp from "@oh-my-pi-zen/pi-coding-agent/lsp";
|
|
497
|
+
import * as bundledPiCodingAgentLspClient from "@oh-my-pi-zen/pi-coding-agent/lsp/client";
|
|
498
|
+
import * as bundledPiCodingAgentLspClients from "@oh-my-pi-zen/pi-coding-agent/lsp/clients";
|
|
499
|
+
import * as bundledPiCodingAgentLspClientsBiomeClient from "@oh-my-pi-zen/pi-coding-agent/lsp/clients/biome-client";
|
|
500
|
+
import * as bundledPiCodingAgentLspClientsLspLinterClient from "@oh-my-pi-zen/pi-coding-agent/lsp/clients/lsp-linter-client";
|
|
501
|
+
import * as bundledPiCodingAgentLspClientsSwiftlintClient from "@oh-my-pi-zen/pi-coding-agent/lsp/clients/swiftlint-client";
|
|
502
|
+
import * as bundledPiCodingAgentLspConfig from "@oh-my-pi-zen/pi-coding-agent/lsp/config";
|
|
503
|
+
import * as bundledPiCodingAgentLspDiagnosticsLedger from "@oh-my-pi-zen/pi-coding-agent/lsp/diagnostics-ledger";
|
|
504
|
+
import * as bundledPiCodingAgentLspEdits from "@oh-my-pi-zen/pi-coding-agent/lsp/edits";
|
|
505
|
+
import * as bundledPiCodingAgentLspFormatOptions from "@oh-my-pi-zen/pi-coding-agent/lsp/format-options";
|
|
506
|
+
import * as bundledPiCodingAgentLspLspmux from "@oh-my-pi-zen/pi-coding-agent/lsp/lspmux";
|
|
507
|
+
import * as bundledPiCodingAgentLspRender from "@oh-my-pi-zen/pi-coding-agent/lsp/render";
|
|
508
|
+
import * as bundledPiCodingAgentLspStartupEvents from "@oh-my-pi-zen/pi-coding-agent/lsp/startup-events";
|
|
509
|
+
import * as bundledPiCodingAgentLspTypes from "@oh-my-pi-zen/pi-coding-agent/lsp/types";
|
|
510
|
+
import * as bundledPiCodingAgentLspUtils from "@oh-my-pi-zen/pi-coding-agent/lsp/utils";
|
|
511
|
+
import * as bundledPiCodingAgentMarkit from "@oh-my-pi-zen/pi-coding-agent/markit";
|
|
512
|
+
import * as bundledPiCodingAgentMarkitRegistry from "@oh-my-pi-zen/pi-coding-agent/markit/registry";
|
|
513
|
+
import * as bundledPiCodingAgentMarkitTypes from "@oh-my-pi-zen/pi-coding-agent/markit/types";
|
|
514
|
+
import * as bundledPiCodingAgentMcp from "@oh-my-pi-zen/pi-coding-agent/mcp";
|
|
515
|
+
import * as bundledPiCodingAgentMcpClient from "@oh-my-pi-zen/pi-coding-agent/mcp/client";
|
|
516
|
+
import * as bundledPiCodingAgentMcpConfig from "@oh-my-pi-zen/pi-coding-agent/mcp/config";
|
|
517
|
+
import * as bundledPiCodingAgentMcpConfigWriter from "@oh-my-pi-zen/pi-coding-agent/mcp/config-writer";
|
|
518
|
+
import * as bundledPiCodingAgentMcpJsonRpc from "@oh-my-pi-zen/pi-coding-agent/mcp/json-rpc";
|
|
519
|
+
import * as bundledPiCodingAgentMcpLoader from "@oh-my-pi-zen/pi-coding-agent/mcp/loader";
|
|
520
|
+
import * as bundledPiCodingAgentMcpManager from "@oh-my-pi-zen/pi-coding-agent/mcp/manager";
|
|
521
|
+
import * as bundledPiCodingAgentMcpOauthCredentials from "@oh-my-pi-zen/pi-coding-agent/mcp/oauth-credentials";
|
|
522
|
+
import * as bundledPiCodingAgentMcpOauthDiscovery from "@oh-my-pi-zen/pi-coding-agent/mcp/oauth-discovery";
|
|
523
|
+
import * as bundledPiCodingAgentMcpOauthFlow from "@oh-my-pi-zen/pi-coding-agent/mcp/oauth-flow";
|
|
524
|
+
import * as bundledPiCodingAgentMcpRender from "@oh-my-pi-zen/pi-coding-agent/mcp/render";
|
|
525
|
+
import * as bundledPiCodingAgentMcpSmitheryAuth from "@oh-my-pi-zen/pi-coding-agent/mcp/smithery-auth";
|
|
526
|
+
import * as bundledPiCodingAgentMcpSmitheryConnect from "@oh-my-pi-zen/pi-coding-agent/mcp/smithery-connect";
|
|
527
|
+
import * as bundledPiCodingAgentMcpSmitheryRegistry from "@oh-my-pi-zen/pi-coding-agent/mcp/smithery-registry";
|
|
528
|
+
import * as bundledPiCodingAgentMcpStartupEvents from "@oh-my-pi-zen/pi-coding-agent/mcp/startup-events";
|
|
529
|
+
import * as bundledPiCodingAgentMcpTimeout from "@oh-my-pi-zen/pi-coding-agent/mcp/timeout";
|
|
530
|
+
import * as bundledPiCodingAgentMcpToolBridge from "@oh-my-pi-zen/pi-coding-agent/mcp/tool-bridge";
|
|
531
|
+
import * as bundledPiCodingAgentMcpToolCache from "@oh-my-pi-zen/pi-coding-agent/mcp/tool-cache";
|
|
532
|
+
import * as bundledPiCodingAgentMcpTransports from "@oh-my-pi-zen/pi-coding-agent/mcp/transports";
|
|
533
|
+
import * as bundledPiCodingAgentMcpTransportsHttp from "@oh-my-pi-zen/pi-coding-agent/mcp/transports/http";
|
|
534
|
+
import * as bundledPiCodingAgentMcpTransportsStdio from "@oh-my-pi-zen/pi-coding-agent/mcp/transports/stdio";
|
|
535
|
+
import * as bundledPiCodingAgentMcpTypes from "@oh-my-pi-zen/pi-coding-agent/mcp/types";
|
|
536
|
+
import * as bundledPiCodingAgentMemories from "@oh-my-pi-zen/pi-coding-agent/memories";
|
|
537
|
+
import * as bundledPiCodingAgentMemoriesStorage from "@oh-my-pi-zen/pi-coding-agent/memories/storage";
|
|
538
|
+
import * as bundledPiCodingAgentMemoryBackend from "@oh-my-pi-zen/pi-coding-agent/memory-backend";
|
|
539
|
+
import * as bundledPiCodingAgentMemoryBackendLocalBackend from "@oh-my-pi-zen/pi-coding-agent/memory-backend/local-backend";
|
|
540
|
+
import * as bundledPiCodingAgentMemoryBackendOffBackend from "@oh-my-pi-zen/pi-coding-agent/memory-backend/off-backend";
|
|
541
|
+
import * as bundledPiCodingAgentMemoryBackendResolve from "@oh-my-pi-zen/pi-coding-agent/memory-backend/resolve";
|
|
542
|
+
import * as bundledPiCodingAgentMemoryBackendRuntime from "@oh-my-pi-zen/pi-coding-agent/memory-backend/runtime";
|
|
543
|
+
import * as bundledPiCodingAgentMemoryBackendTypes from "@oh-my-pi-zen/pi-coding-agent/memory-backend/types";
|
|
544
|
+
import * as bundledPiCodingAgentModes from "@oh-my-pi-zen/pi-coding-agent/modes";
|
|
545
|
+
import * as bundledPiCodingAgentModesAcp from "@oh-my-pi-zen/pi-coding-agent/modes/acp";
|
|
546
|
+
import * as bundledPiCodingAgentModesAcpAcpAgent from "@oh-my-pi-zen/pi-coding-agent/modes/acp/acp-agent";
|
|
547
|
+
import * as bundledPiCodingAgentModesAcpAcpClientBridge from "@oh-my-pi-zen/pi-coding-agent/modes/acp/acp-client-bridge";
|
|
548
|
+
import * as bundledPiCodingAgentModesAcpAcpEventMapper from "@oh-my-pi-zen/pi-coding-agent/modes/acp/acp-event-mapper";
|
|
549
|
+
import * as bundledPiCodingAgentModesAcpAcpMode from "@oh-my-pi-zen/pi-coding-agent/modes/acp/acp-mode";
|
|
550
|
+
import * as bundledPiCodingAgentModesAcpTerminalAuth from "@oh-my-pi-zen/pi-coding-agent/modes/acp/terminal-auth";
|
|
551
|
+
import * as bundledPiCodingAgentModesComponents from "@oh-my-pi-zen/pi-coding-agent/modes/components";
|
|
552
|
+
import * as bundledPiCodingAgentModesComponentsAdvisorMessage from "@oh-my-pi-zen/pi-coding-agent/modes/components/advisor-message";
|
|
553
|
+
import * as bundledPiCodingAgentModesComponentsAgentDashboard from "@oh-my-pi-zen/pi-coding-agent/modes/components/agent-dashboard";
|
|
554
|
+
import * as bundledPiCodingAgentModesComponentsAgentHub from "@oh-my-pi-zen/pi-coding-agent/modes/components/agent-hub";
|
|
555
|
+
import * as bundledPiCodingAgentModesComponentsAgentTranscriptViewer from "@oh-my-pi-zen/pi-coding-agent/modes/components/agent-transcript-viewer";
|
|
556
|
+
import * as bundledPiCodingAgentModesComponentsAssistantMessage from "@oh-my-pi-zen/pi-coding-agent/modes/components/assistant-message";
|
|
557
|
+
import * as bundledPiCodingAgentModesComponentsBackgroundTanMessage from "@oh-my-pi-zen/pi-coding-agent/modes/components/background-tan-message";
|
|
558
|
+
import * as bundledPiCodingAgentModesComponentsBashExecution from "@oh-my-pi-zen/pi-coding-agent/modes/components/bash-execution";
|
|
559
|
+
import * as bundledPiCodingAgentModesComponentsBorderedLoader from "@oh-my-pi-zen/pi-coding-agent/modes/components/bordered-loader";
|
|
560
|
+
import * as bundledPiCodingAgentModesComponentsBtwPanel from "@oh-my-pi-zen/pi-coding-agent/modes/components/btw-panel";
|
|
561
|
+
import * as bundledPiCodingAgentModesComponentsCacheInvalidationMarker from "@oh-my-pi-zen/pi-coding-agent/modes/components/cache-invalidation-marker";
|
|
562
|
+
import * as bundledPiCodingAgentModesComponentsChatBlock from "@oh-my-pi-zen/pi-coding-agent/modes/components/chat-block";
|
|
563
|
+
import * as bundledPiCodingAgentModesComponentsChatTranscriptBuilder from "@oh-my-pi-zen/pi-coding-agent/modes/components/chat-transcript-builder";
|
|
564
|
+
import * as bundledPiCodingAgentModesComponentsCollabPromptMessage from "@oh-my-pi-zen/pi-coding-agent/modes/components/collab-prompt-message";
|
|
565
|
+
import * as bundledPiCodingAgentModesComponentsCompactionSummaryMessage from "@oh-my-pi-zen/pi-coding-agent/modes/components/compaction-summary-message";
|
|
566
|
+
import * as bundledPiCodingAgentModesComponentsCopySelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/copy-selector";
|
|
567
|
+
import * as bundledPiCodingAgentModesComponentsCountdownTimer from "@oh-my-pi-zen/pi-coding-agent/modes/components/countdown-timer";
|
|
568
|
+
import * as bundledPiCodingAgentModesComponentsCustomEditor from "@oh-my-pi-zen/pi-coding-agent/modes/components/custom-editor";
|
|
569
|
+
import * as bundledPiCodingAgentModesComponentsCustomMessage from "@oh-my-pi-zen/pi-coding-agent/modes/components/custom-message";
|
|
570
|
+
import * as bundledPiCodingAgentModesComponentsDiff from "@oh-my-pi-zen/pi-coding-agent/modes/components/diff";
|
|
571
|
+
import * as bundledPiCodingAgentModesComponentsDynamicBorder from "@oh-my-pi-zen/pi-coding-agent/modes/components/dynamic-border";
|
|
572
|
+
import * as bundledPiCodingAgentModesComponentsErrorBanner from "@oh-my-pi-zen/pi-coding-agent/modes/components/error-banner";
|
|
573
|
+
import * as bundledPiCodingAgentModesComponentsEvalExecution from "@oh-my-pi-zen/pi-coding-agent/modes/components/eval-execution";
|
|
574
|
+
import * as bundledPiCodingAgentModesComponentsExecutionShared from "@oh-my-pi-zen/pi-coding-agent/modes/components/execution-shared";
|
|
575
|
+
import * as bundledPiCodingAgentModesComponentsExtensions from "@oh-my-pi-zen/pi-coding-agent/modes/components/extensions";
|
|
576
|
+
import * as bundledPiCodingAgentModesComponentsExtensionsExtensionDashboard from "@oh-my-pi-zen/pi-coding-agent/modes/components/extensions/extension-dashboard";
|
|
577
|
+
import * as bundledPiCodingAgentModesComponentsExtensionsExtensionList from "@oh-my-pi-zen/pi-coding-agent/modes/components/extensions/extension-list";
|
|
578
|
+
import * as bundledPiCodingAgentModesComponentsExtensionsInspectorPanel from "@oh-my-pi-zen/pi-coding-agent/modes/components/extensions/inspector-panel";
|
|
579
|
+
import * as bundledPiCodingAgentModesComponentsExtensionsStateManager from "@oh-my-pi-zen/pi-coding-agent/modes/components/extensions/state-manager";
|
|
580
|
+
import * as bundledPiCodingAgentModesComponentsExtensionsTypes from "@oh-my-pi-zen/pi-coding-agent/modes/components/extensions/types";
|
|
581
|
+
import * as bundledPiCodingAgentModesComponentsFooter from "@oh-my-pi-zen/pi-coding-agent/modes/components/footer";
|
|
582
|
+
import * as bundledPiCodingAgentModesComponentsHistorySearch from "@oh-my-pi-zen/pi-coding-agent/modes/components/history-search";
|
|
583
|
+
import * as bundledPiCodingAgentModesComponentsHookEditor from "@oh-my-pi-zen/pi-coding-agent/modes/components/hook-editor";
|
|
584
|
+
import * as bundledPiCodingAgentModesComponentsHookInput from "@oh-my-pi-zen/pi-coding-agent/modes/components/hook-input";
|
|
585
|
+
import * as bundledPiCodingAgentModesComponentsHookMessage from "@oh-my-pi-zen/pi-coding-agent/modes/components/hook-message";
|
|
586
|
+
import * as bundledPiCodingAgentModesComponentsHookSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/hook-selector";
|
|
587
|
+
import * as bundledPiCodingAgentModesComponentsKeybindingHints from "@oh-my-pi-zen/pi-coding-agent/modes/components/keybinding-hints";
|
|
588
|
+
import * as bundledPiCodingAgentModesComponentsLateDiagnosticsMessage from "@oh-my-pi-zen/pi-coding-agent/modes/components/late-diagnostics-message";
|
|
589
|
+
import * as bundledPiCodingAgentModesComponentsLoginDialog from "@oh-my-pi-zen/pi-coding-agent/modes/components/login-dialog";
|
|
590
|
+
import * as bundledPiCodingAgentModesComponentsLogoutAccountSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/logout-account-selector";
|
|
591
|
+
import * as bundledPiCodingAgentModesComponentsMcpAddWizard from "@oh-my-pi-zen/pi-coding-agent/modes/components/mcp-add-wizard";
|
|
592
|
+
import * as bundledPiCodingAgentModesComponentsMessageFrame from "@oh-my-pi-zen/pi-coding-agent/modes/components/message-frame";
|
|
593
|
+
import * as bundledPiCodingAgentModesComponentsModelSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/model-selector";
|
|
594
|
+
import * as bundledPiCodingAgentModesComponentsMoveOverlay from "@oh-my-pi-zen/pi-coding-agent/modes/components/move-overlay";
|
|
595
|
+
import * as bundledPiCodingAgentModesComponentsOauthSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/oauth-selector";
|
|
596
|
+
import * as bundledPiCodingAgentModesComponentsOmfgPanel from "@oh-my-pi-zen/pi-coding-agent/modes/components/omfg-panel";
|
|
597
|
+
import * as bundledPiCodingAgentModesComponentsOverlayBox from "@oh-my-pi-zen/pi-coding-agent/modes/components/overlay-box";
|
|
598
|
+
import * as bundledPiCodingAgentModesComponentsPlanReviewOverlay from "@oh-my-pi-zen/pi-coding-agent/modes/components/plan-review-overlay";
|
|
599
|
+
import * as bundledPiCodingAgentModesComponentsPlanToc from "@oh-my-pi-zen/pi-coding-agent/modes/components/plan-toc";
|
|
600
|
+
import * as bundledPiCodingAgentModesComponentsPluginSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/plugin-selector";
|
|
601
|
+
import * as bundledPiCodingAgentModesComponentsPluginSettings from "@oh-my-pi-zen/pi-coding-agent/modes/components/plugin-settings";
|
|
602
|
+
import * as bundledPiCodingAgentModesComponentsQueueModeSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/queue-mode-selector";
|
|
603
|
+
import * as bundledPiCodingAgentModesComponentsReadToolGroup from "@oh-my-pi-zen/pi-coding-agent/modes/components/read-tool-group";
|
|
604
|
+
import * as bundledPiCodingAgentModesComponentsResetUsageSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/reset-usage-selector";
|
|
605
|
+
import * as bundledPiCodingAgentModesComponentsSegmentTrack from "@oh-my-pi-zen/pi-coding-agent/modes/components/segment-track";
|
|
606
|
+
import * as bundledPiCodingAgentModesComponentsSelectListMouseRouting from "@oh-my-pi-zen/pi-coding-agent/modes/components/select-list-mouse-routing";
|
|
607
|
+
import * as bundledPiCodingAgentModesComponentsSelectorHelpers from "@oh-my-pi-zen/pi-coding-agent/modes/components/selector-helpers";
|
|
608
|
+
import * as bundledPiCodingAgentModesComponentsSessionSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/session-selector";
|
|
609
|
+
import * as bundledPiCodingAgentModesComponentsSettingsDefs from "@oh-my-pi-zen/pi-coding-agent/modes/components/settings-defs";
|
|
610
|
+
import * as bundledPiCodingAgentModesComponentsSettingsSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/settings-selector";
|
|
611
|
+
import * as bundledPiCodingAgentModesComponentsShowImagesSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/show-images-selector";
|
|
612
|
+
import * as bundledPiCodingAgentModesComponentsSkillMessage from "@oh-my-pi-zen/pi-coding-agent/modes/components/skill-message";
|
|
613
|
+
import * as bundledPiCodingAgentModesComponentsSnapcompactShapePreview from "@oh-my-pi-zen/pi-coding-agent/modes/components/snapcompact-shape-preview";
|
|
614
|
+
import * as bundledPiCodingAgentModesComponentsStatusLine from "@oh-my-pi-zen/pi-coding-agent/modes/components/status-line";
|
|
615
|
+
import * as bundledPiCodingAgentModesComponentsStatusLineComponent from "@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/component";
|
|
616
|
+
import * as bundledPiCodingAgentModesComponentsStatusLineContextThresholds from "@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/context-thresholds";
|
|
617
|
+
import * as bundledPiCodingAgentModesComponentsStatusLineGitUtils from "@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/git-utils";
|
|
618
|
+
import * as bundledPiCodingAgentModesComponentsStatusLinePresets from "@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/presets";
|
|
619
|
+
import * as bundledPiCodingAgentModesComponentsStatusLineSegments from "@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/segments";
|
|
620
|
+
import * as bundledPiCodingAgentModesComponentsStatusLineSeparators from "@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/separators";
|
|
621
|
+
import * as bundledPiCodingAgentModesComponentsStatusLineTokenRate from "@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/token-rate";
|
|
622
|
+
import * as bundledPiCodingAgentModesComponentsStatusLineTypes from "@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/types";
|
|
623
|
+
import * as bundledPiCodingAgentModesComponentsThemeSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/theme-selector";
|
|
624
|
+
import * as bundledPiCodingAgentModesComponentsThinkingSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/thinking-selector";
|
|
625
|
+
import * as bundledPiCodingAgentModesComponentsTinyTitleDownloadProgress from "@oh-my-pi-zen/pi-coding-agent/modes/components/tiny-title-download-progress";
|
|
626
|
+
import * as bundledPiCodingAgentModesComponentsTodoReminder from "@oh-my-pi-zen/pi-coding-agent/modes/components/todo-reminder";
|
|
627
|
+
import * as bundledPiCodingAgentModesComponentsToolExecution from "@oh-my-pi-zen/pi-coding-agent/modes/components/tool-execution";
|
|
628
|
+
import * as bundledPiCodingAgentModesComponentsTranscriptContainer from "@oh-my-pi-zen/pi-coding-agent/modes/components/transcript-container";
|
|
629
|
+
import * as bundledPiCodingAgentModesComponentsTreeSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/tree-selector";
|
|
630
|
+
import * as bundledPiCodingAgentModesComponentsTtsrNotification from "@oh-my-pi-zen/pi-coding-agent/modes/components/ttsr-notification";
|
|
631
|
+
import * as bundledPiCodingAgentModesComponentsUsageRow from "@oh-my-pi-zen/pi-coding-agent/modes/components/usage-row";
|
|
632
|
+
import * as bundledPiCodingAgentModesComponentsUserMessage from "@oh-my-pi-zen/pi-coding-agent/modes/components/user-message";
|
|
633
|
+
import * as bundledPiCodingAgentModesComponentsUserMessageSelector from "@oh-my-pi-zen/pi-coding-agent/modes/components/user-message-selector";
|
|
634
|
+
import * as bundledPiCodingAgentModesComponentsVisualTruncate from "@oh-my-pi-zen/pi-coding-agent/modes/components/visual-truncate";
|
|
635
|
+
import * as bundledPiCodingAgentModesComponentsWelcome from "@oh-my-pi-zen/pi-coding-agent/modes/components/welcome";
|
|
636
|
+
import * as bundledPiCodingAgentModesControllersBtwController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/btw-controller";
|
|
637
|
+
import * as bundledPiCodingAgentModesControllersCommandController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/command-controller";
|
|
638
|
+
import * as bundledPiCodingAgentModesControllersCommandControllerShared from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/command-controller-shared";
|
|
639
|
+
import * as bundledPiCodingAgentModesControllersEventController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/event-controller";
|
|
640
|
+
import * as bundledPiCodingAgentModesControllersExtensionUiController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/extension-ui-controller";
|
|
641
|
+
import * as bundledPiCodingAgentModesControllersInputController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/input-controller";
|
|
642
|
+
import * as bundledPiCodingAgentModesControllersMcpCommandController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/mcp-command-controller";
|
|
643
|
+
import * as bundledPiCodingAgentModesControllersOmfgController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/omfg-controller";
|
|
644
|
+
import * as bundledPiCodingAgentModesControllersOmfgRule from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/omfg-rule";
|
|
645
|
+
import * as bundledPiCodingAgentModesControllersSelectorController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/selector-controller";
|
|
646
|
+
import * as bundledPiCodingAgentModesControllersSessionFocusController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/session-focus-controller";
|
|
647
|
+
import * as bundledPiCodingAgentModesControllersSshCommandController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/ssh-command-controller";
|
|
648
|
+
import * as bundledPiCodingAgentModesControllersStreamingReveal from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/streaming-reveal";
|
|
649
|
+
import * as bundledPiCodingAgentModesControllersTanCommandController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/tan-command-controller";
|
|
650
|
+
import * as bundledPiCodingAgentModesControllersTodoCommandController from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/todo-command-controller";
|
|
651
|
+
import * as bundledPiCodingAgentModesControllersToolArgsReveal from "@oh-my-pi-zen/pi-coding-agent/modes/controllers/tool-args-reveal";
|
|
652
|
+
import * as bundledPiCodingAgentModesEmojiAutocomplete from "@oh-my-pi-zen/pi-coding-agent/modes/emoji-autocomplete";
|
|
653
|
+
import * as bundledPiCodingAgentModesGradientHighlight from "@oh-my-pi-zen/pi-coding-agent/modes/gradient-highlight";
|
|
654
|
+
import * as bundledPiCodingAgentModesImageReferences from "@oh-my-pi-zen/pi-coding-agent/modes/image-references";
|
|
655
|
+
import * as bundledPiCodingAgentModesInteractiveMode from "@oh-my-pi-zen/pi-coding-agent/modes/interactive-mode";
|
|
656
|
+
import * as bundledPiCodingAgentModesInternalUrlAutocomplete from "@oh-my-pi-zen/pi-coding-agent/modes/internal-url-autocomplete";
|
|
657
|
+
import * as bundledPiCodingAgentModesLoopLimit from "@oh-my-pi-zen/pi-coding-agent/modes/loop-limit";
|
|
658
|
+
import * as bundledPiCodingAgentModesMagicKeywords from "@oh-my-pi-zen/pi-coding-agent/modes/magic-keywords";
|
|
659
|
+
import * as bundledPiCodingAgentModesMarkdownProse from "@oh-my-pi-zen/pi-coding-agent/modes/markdown-prose";
|
|
660
|
+
import * as bundledPiCodingAgentModesOauthManualInput from "@oh-my-pi-zen/pi-coding-agent/modes/oauth-manual-input";
|
|
661
|
+
import * as bundledPiCodingAgentModesOrchestrate from "@oh-my-pi-zen/pi-coding-agent/modes/orchestrate";
|
|
662
|
+
import * as bundledPiCodingAgentModesPrintMode from "@oh-my-pi-zen/pi-coding-agent/modes/print-mode";
|
|
663
|
+
import * as bundledPiCodingAgentModesPromptActionAutocomplete from "@oh-my-pi-zen/pi-coding-agent/modes/prompt-action-autocomplete";
|
|
664
|
+
import * as bundledPiCodingAgentModesRpcHostTools from "@oh-my-pi-zen/pi-coding-agent/modes/rpc/host-tools";
|
|
665
|
+
import * as bundledPiCodingAgentModesRpcHostUris from "@oh-my-pi-zen/pi-coding-agent/modes/rpc/host-uris";
|
|
666
|
+
import * as bundledPiCodingAgentModesRpcRpcClient from "@oh-my-pi-zen/pi-coding-agent/modes/rpc/rpc-client";
|
|
667
|
+
import * as bundledPiCodingAgentModesRpcRpcMode from "@oh-my-pi-zen/pi-coding-agent/modes/rpc/rpc-mode";
|
|
668
|
+
import * as bundledPiCodingAgentModesRpcRpcSubagents from "@oh-my-pi-zen/pi-coding-agent/modes/rpc/rpc-subagents";
|
|
669
|
+
import * as bundledPiCodingAgentModesRpcRpcTypes from "@oh-my-pi-zen/pi-coding-agent/modes/rpc/rpc-types";
|
|
670
|
+
import * as bundledPiCodingAgentModesRunningSubagentBadge from "@oh-my-pi-zen/pi-coding-agent/modes/running-subagent-badge";
|
|
671
|
+
import * as bundledPiCodingAgentModesRuntimeInit from "@oh-my-pi-zen/pi-coding-agent/modes/runtime-init";
|
|
672
|
+
import * as bundledPiCodingAgentModesSessionObserverRegistry from "@oh-my-pi-zen/pi-coding-agent/modes/session-observer-registry";
|
|
673
|
+
import * as bundledPiCodingAgentModesSetupVersion from "@oh-my-pi-zen/pi-coding-agent/modes/setup-version";
|
|
674
|
+
import * as bundledPiCodingAgentModesSetupWizard from "@oh-my-pi-zen/pi-coding-agent/modes/setup-wizard";
|
|
675
|
+
import * as bundledPiCodingAgentModesSetupWizardLazy from "@oh-my-pi-zen/pi-coding-agent/modes/setup-wizard/lazy";
|
|
676
|
+
import * as bundledPiCodingAgentModesSetupWizardStartupSplash from "@oh-my-pi-zen/pi-coding-agent/modes/setup-wizard/startup-splash";
|
|
677
|
+
import * as bundledPiCodingAgentModesSetupWizardWizardOverlay from "@oh-my-pi-zen/pi-coding-agent/modes/setup-wizard/wizard-overlay";
|
|
678
|
+
import * as bundledPiCodingAgentModesShared from "@oh-my-pi-zen/pi-coding-agent/modes/shared";
|
|
679
|
+
import * as bundledPiCodingAgentModesThemeDefaults from "@oh-my-pi-zen/pi-coding-agent/modes/theme/defaults";
|
|
680
|
+
import * as bundledPiCodingAgentModesThemeMermaidCache from "@oh-my-pi-zen/pi-coding-agent/modes/theme/mermaid-cache";
|
|
681
|
+
import * as bundledPiCodingAgentModesThemeShimmer from "@oh-my-pi-zen/pi-coding-agent/modes/theme/shimmer";
|
|
682
|
+
import * as bundledPiCodingAgentModesThemeTheme from "@oh-my-pi-zen/pi-coding-agent/modes/theme/theme";
|
|
683
|
+
import * as bundledPiCodingAgentModesTurnBudget from "@oh-my-pi-zen/pi-coding-agent/modes/turn-budget";
|
|
684
|
+
import * as bundledPiCodingAgentModesTypes from "@oh-my-pi-zen/pi-coding-agent/modes/types";
|
|
685
|
+
import * as bundledPiCodingAgentModesUltrathink from "@oh-my-pi-zen/pi-coding-agent/modes/ultrathink";
|
|
686
|
+
import * as bundledPiCodingAgentModesUtilsContextUsage from "@oh-my-pi-zen/pi-coding-agent/modes/utils/context-usage";
|
|
687
|
+
import * as bundledPiCodingAgentModesUtilsCopyTargets from "@oh-my-pi-zen/pi-coding-agent/modes/utils/copy-targets";
|
|
688
|
+
import * as bundledPiCodingAgentModesUtilsHotkeysMarkdown from "@oh-my-pi-zen/pi-coding-agent/modes/utils/hotkeys-markdown";
|
|
689
|
+
import * as bundledPiCodingAgentModesUtilsInteractiveContextHelpers from "@oh-my-pi-zen/pi-coding-agent/modes/utils/interactive-context-helpers";
|
|
690
|
+
import * as bundledPiCodingAgentModesUtilsKeybindingMatchers from "@oh-my-pi-zen/pi-coding-agent/modes/utils/keybinding-matchers";
|
|
691
|
+
import * as bundledPiCodingAgentModesUtilsToolsMarkdown from "@oh-my-pi-zen/pi-coding-agent/modes/utils/tools-markdown";
|
|
692
|
+
import * as bundledPiCodingAgentModesUtilsTranscriptRenderHelpers from "@oh-my-pi-zen/pi-coding-agent/modes/utils/transcript-render-helpers";
|
|
693
|
+
import * as bundledPiCodingAgentModesUtilsUiHelpers from "@oh-my-pi-zen/pi-coding-agent/modes/utils/ui-helpers";
|
|
694
|
+
import * as bundledPiCodingAgentModesWorkflow from "@oh-my-pi-zen/pi-coding-agent/modes/workflow";
|
|
695
|
+
import * as bundledPiCodingAgentPlanModeApprovedPlan from "@oh-my-pi-zen/pi-coding-agent/plan-mode/approved-plan";
|
|
696
|
+
import * as bundledPiCodingAgentPlanModePlanHandoff from "@oh-my-pi-zen/pi-coding-agent/plan-mode/plan-handoff";
|
|
697
|
+
import * as bundledPiCodingAgentPlanModePlanProtection from "@oh-my-pi-zen/pi-coding-agent/plan-mode/plan-protection";
|
|
698
|
+
import * as bundledPiCodingAgentPlanModeState from "@oh-my-pi-zen/pi-coding-agent/plan-mode/state";
|
|
699
|
+
import * as bundledPiCodingAgentSecrets from "@oh-my-pi-zen/pi-coding-agent/secrets";
|
|
700
|
+
import * as bundledPiCodingAgentSecretsObfuscator from "@oh-my-pi-zen/pi-coding-agent/secrets/obfuscator";
|
|
701
|
+
import * as bundledPiCodingAgentSecretsRegex from "@oh-my-pi-zen/pi-coding-agent/secrets/regex";
|
|
702
|
+
import * as bundledPiCodingAgentSessionAgentSession from "@oh-my-pi-zen/pi-coding-agent/session/agent-session";
|
|
703
|
+
import * as bundledPiCodingAgentSessionAgentStorage from "@oh-my-pi-zen/pi-coding-agent/session/agent-storage";
|
|
704
|
+
import * as bundledPiCodingAgentSessionArtifacts from "@oh-my-pi-zen/pi-coding-agent/session/artifacts";
|
|
705
|
+
import * as bundledPiCodingAgentSessionAuthBrokerConfig from "@oh-my-pi-zen/pi-coding-agent/session/auth-broker-config";
|
|
706
|
+
import * as bundledPiCodingAgentSessionAuthStorage from "@oh-my-pi-zen/pi-coding-agent/session/auth-storage";
|
|
707
|
+
import * as bundledPiCodingAgentSessionBlobStore from "@oh-my-pi-zen/pi-coding-agent/session/blob-store";
|
|
708
|
+
import * as bundledPiCodingAgentSessionClientBridge from "@oh-my-pi-zen/pi-coding-agent/session/client-bridge";
|
|
709
|
+
import * as bundledPiCodingAgentSessionCodexAutoReset from "@oh-my-pi-zen/pi-coding-agent/session/codex-auto-reset";
|
|
710
|
+
import * as bundledPiCodingAgentSessionCompactModes from "@oh-my-pi-zen/pi-coding-agent/session/compact-modes";
|
|
711
|
+
import * as bundledPiCodingAgentSessionHistoryStorage from "@oh-my-pi-zen/pi-coding-agent/session/history-storage";
|
|
712
|
+
import * as bundledPiCodingAgentSessionIndexedSessionStorage from "@oh-my-pi-zen/pi-coding-agent/session/indexed-session-storage";
|
|
713
|
+
import * as bundledPiCodingAgentSessionMessages from "@oh-my-pi-zen/pi-coding-agent/session/messages";
|
|
714
|
+
import * as bundledPiCodingAgentSessionProviderImageBudget from "@oh-my-pi-zen/pi-coding-agent/session/provider-image-budget";
|
|
715
|
+
import * as bundledPiCodingAgentSessionRedisSessionStorage from "@oh-my-pi-zen/pi-coding-agent/session/redis-session-storage";
|
|
716
|
+
import * as bundledPiCodingAgentSessionSessionContext from "@oh-my-pi-zen/pi-coding-agent/session/session-context";
|
|
717
|
+
import * as bundledPiCodingAgentSessionSessionDumpFormat from "@oh-my-pi-zen/pi-coding-agent/session/session-dump-format";
|
|
718
|
+
import * as bundledPiCodingAgentSessionSessionEntries from "@oh-my-pi-zen/pi-coding-agent/session/session-entries";
|
|
719
|
+
import * as bundledPiCodingAgentSessionSessionHistoryFormat from "@oh-my-pi-zen/pi-coding-agent/session/session-history-format";
|
|
720
|
+
import * as bundledPiCodingAgentSessionSessionListing from "@oh-my-pi-zen/pi-coding-agent/session/session-listing";
|
|
721
|
+
import * as bundledPiCodingAgentSessionSessionLoader from "@oh-my-pi-zen/pi-coding-agent/session/session-loader";
|
|
722
|
+
import * as bundledPiCodingAgentSessionSessionManager from "@oh-my-pi-zen/pi-coding-agent/session/session-manager";
|
|
723
|
+
import * as bundledPiCodingAgentSessionSessionMigrations from "@oh-my-pi-zen/pi-coding-agent/session/session-migrations";
|
|
724
|
+
import * as bundledPiCodingAgentSessionSessionPaths from "@oh-my-pi-zen/pi-coding-agent/session/session-paths";
|
|
725
|
+
import * as bundledPiCodingAgentSessionSessionPersistence from "@oh-my-pi-zen/pi-coding-agent/session/session-persistence";
|
|
726
|
+
import * as bundledPiCodingAgentSessionSessionStorage from "@oh-my-pi-zen/pi-coding-agent/session/session-storage";
|
|
727
|
+
import * as bundledPiCodingAgentSessionSettingsStreamFn from "@oh-my-pi-zen/pi-coding-agent/session/settings-stream-fn";
|
|
728
|
+
import * as bundledPiCodingAgentSessionShakeTypes from "@oh-my-pi-zen/pi-coding-agent/session/shake-types";
|
|
729
|
+
import * as bundledPiCodingAgentSessionSnapcompactInline from "@oh-my-pi-zen/pi-coding-agent/session/snapcompact-inline";
|
|
730
|
+
import * as bundledPiCodingAgentSessionSnapcompactSavingsJournal from "@oh-my-pi-zen/pi-coding-agent/session/snapcompact-savings-journal";
|
|
731
|
+
import * as bundledPiCodingAgentSessionSqlSessionStorage from "@oh-my-pi-zen/pi-coding-agent/session/sql-session-storage";
|
|
732
|
+
import * as bundledPiCodingAgentSessionStreamingOutput from "@oh-my-pi-zen/pi-coding-agent/session/streaming-output";
|
|
733
|
+
import * as bundledPiCodingAgentSessionToolChoiceQueue from "@oh-my-pi-zen/pi-coding-agent/session/tool-choice-queue";
|
|
734
|
+
import * as bundledPiCodingAgentSessionTurnPersistence from "@oh-my-pi-zen/pi-coding-agent/session/turn-persistence";
|
|
735
|
+
import * as bundledPiCodingAgentSessionUnexpectedStopClassifier from "@oh-my-pi-zen/pi-coding-agent/session/unexpected-stop-classifier";
|
|
736
|
+
import * as bundledPiCodingAgentSessionYieldQueue from "@oh-my-pi-zen/pi-coding-agent/session/yield-queue";
|
|
737
|
+
import * as bundledPiCodingAgentSlashCommandsAcpBuiltins from "@oh-my-pi-zen/pi-coding-agent/slash-commands/acp-builtins";
|
|
738
|
+
import * as bundledPiCodingAgentSlashCommandsAvailableCommands from "@oh-my-pi-zen/pi-coding-agent/slash-commands/available-commands";
|
|
739
|
+
import * as bundledPiCodingAgentSlashCommandsBuiltinRegistry from "@oh-my-pi-zen/pi-coding-agent/slash-commands/builtin-registry";
|
|
740
|
+
import * as bundledPiCodingAgentSlashCommandsMarketplaceInstallParser from "@oh-my-pi-zen/pi-coding-agent/slash-commands/marketplace-install-parser";
|
|
741
|
+
import * as bundledPiCodingAgentSlashCommandsTypes from "@oh-my-pi-zen/pi-coding-agent/slash-commands/types";
|
|
742
|
+
import * as bundledPiCodingAgentSshConfigWriter from "@oh-my-pi-zen/pi-coding-agent/ssh/config-writer";
|
|
743
|
+
import * as bundledPiCodingAgentSshConnectionManager from "@oh-my-pi-zen/pi-coding-agent/ssh/connection-manager";
|
|
744
|
+
import * as bundledPiCodingAgentSshFileTransfer from "@oh-my-pi-zen/pi-coding-agent/ssh/file-transfer";
|
|
745
|
+
import * as bundledPiCodingAgentSshSshExecutor from "@oh-my-pi-zen/pi-coding-agent/ssh/ssh-executor";
|
|
746
|
+
import * as bundledPiCodingAgentSshSshfsMount from "@oh-my-pi-zen/pi-coding-agent/ssh/sshfs-mount";
|
|
747
|
+
import * as bundledPiCodingAgentSshUtils from "@oh-my-pi-zen/pi-coding-agent/ssh/utils";
|
|
748
|
+
import * as bundledPiCodingAgentStt from "@oh-my-pi-zen/pi-coding-agent/stt";
|
|
749
|
+
import * as bundledPiCodingAgentSttAsrClient from "@oh-my-pi-zen/pi-coding-agent/stt/asr-client";
|
|
750
|
+
import * as bundledPiCodingAgentSttAsrProtocol from "@oh-my-pi-zen/pi-coding-agent/stt/asr-protocol";
|
|
751
|
+
import * as bundledPiCodingAgentSttAsrWorker from "@oh-my-pi-zen/pi-coding-agent/stt/asr-worker";
|
|
752
|
+
import * as bundledPiCodingAgentSttDownloader from "@oh-my-pi-zen/pi-coding-agent/stt/downloader";
|
|
753
|
+
import * as bundledPiCodingAgentSttEndpointer from "@oh-my-pi-zen/pi-coding-agent/stt/endpointer";
|
|
754
|
+
import * as bundledPiCodingAgentSttModels from "@oh-my-pi-zen/pi-coding-agent/stt/models";
|
|
755
|
+
import * as bundledPiCodingAgentSttRecorder from "@oh-my-pi-zen/pi-coding-agent/stt/recorder";
|
|
756
|
+
import * as bundledPiCodingAgentSttSttController from "@oh-my-pi-zen/pi-coding-agent/stt/stt-controller";
|
|
757
|
+
import * as bundledPiCodingAgentSttTranscriber from "@oh-my-pi-zen/pi-coding-agent/stt/transcriber";
|
|
758
|
+
import * as bundledPiCodingAgentSttWav from "@oh-my-pi-zen/pi-coding-agent/stt/wav";
|
|
759
|
+
import * as bundledPiCodingAgentTask from "@oh-my-pi-zen/pi-coding-agent/task";
|
|
760
|
+
import * as bundledPiCodingAgentTaskAgents from "@oh-my-pi-zen/pi-coding-agent/task/agents";
|
|
761
|
+
import * as bundledPiCodingAgentTaskCommands from "@oh-my-pi-zen/pi-coding-agent/task/commands";
|
|
762
|
+
import * as bundledPiCodingAgentTaskDiscovery from "@oh-my-pi-zen/pi-coding-agent/task/discovery";
|
|
763
|
+
import * as bundledPiCodingAgentTaskExecutor from "@oh-my-pi-zen/pi-coding-agent/task/executor";
|
|
764
|
+
import * as bundledPiCodingAgentTaskIsolationRunner from "@oh-my-pi-zen/pi-coding-agent/task/isolation-runner";
|
|
765
|
+
import * as bundledPiCodingAgentTaskNameGenerator from "@oh-my-pi-zen/pi-coding-agent/task/name-generator";
|
|
766
|
+
import * as bundledPiCodingAgentTaskOmpCommand from "@oh-my-pi-zen/pi-coding-agent/task/omp-command";
|
|
767
|
+
import * as bundledPiCodingAgentTaskOutputManager from "@oh-my-pi-zen/pi-coding-agent/task/output-manager";
|
|
768
|
+
import * as bundledPiCodingAgentTaskParallel from "@oh-my-pi-zen/pi-coding-agent/task/parallel";
|
|
769
|
+
import * as bundledPiCodingAgentTaskPersistedRevive from "@oh-my-pi-zen/pi-coding-agent/task/persisted-revive";
|
|
770
|
+
import * as bundledPiCodingAgentTaskRender from "@oh-my-pi-zen/pi-coding-agent/task/render";
|
|
771
|
+
import * as bundledPiCodingAgentTaskRepairArgs from "@oh-my-pi-zen/pi-coding-agent/task/repair-args";
|
|
772
|
+
import * as bundledPiCodingAgentTaskSubprocessToolRegistry from "@oh-my-pi-zen/pi-coding-agent/task/subprocess-tool-registry";
|
|
773
|
+
import * as bundledPiCodingAgentTaskTypes from "@oh-my-pi-zen/pi-coding-agent/task/types";
|
|
774
|
+
import * as bundledPiCodingAgentTaskWorktree from "@oh-my-pi-zen/pi-coding-agent/task/worktree";
|
|
775
|
+
import * as bundledPiCodingAgentToolDiscoveryMode from "@oh-my-pi-zen/pi-coding-agent/tool-discovery/mode";
|
|
776
|
+
import * as bundledPiCodingAgentToolDiscoveryToolIndex from "@oh-my-pi-zen/pi-coding-agent/tool-discovery/tool-index";
|
|
777
|
+
import * as bundledPiCodingAgentTools from "@oh-my-pi-zen/pi-coding-agent/tools";
|
|
778
|
+
import * as bundledPiCodingAgentToolsAcpBridge from "@oh-my-pi-zen/pi-coding-agent/tools/acp-bridge";
|
|
779
|
+
import * as bundledPiCodingAgentToolsApproval from "@oh-my-pi-zen/pi-coding-agent/tools/approval";
|
|
780
|
+
import * as bundledPiCodingAgentToolsAsk from "@oh-my-pi-zen/pi-coding-agent/tools/ask";
|
|
781
|
+
import * as bundledPiCodingAgentToolsAstEdit from "@oh-my-pi-zen/pi-coding-agent/tools/ast-edit";
|
|
782
|
+
import * as bundledPiCodingAgentToolsAstGrep from "@oh-my-pi-zen/pi-coding-agent/tools/ast-grep";
|
|
783
|
+
import * as bundledPiCodingAgentToolsAutoGeneratedGuard from "@oh-my-pi-zen/pi-coding-agent/tools/auto-generated-guard";
|
|
784
|
+
import * as bundledPiCodingAgentToolsBash from "@oh-my-pi-zen/pi-coding-agent/tools/bash";
|
|
785
|
+
import * as bundledPiCodingAgentToolsBashCommandFixup from "@oh-my-pi-zen/pi-coding-agent/tools/bash-command-fixup";
|
|
786
|
+
import * as bundledPiCodingAgentToolsBashInteractive from "@oh-my-pi-zen/pi-coding-agent/tools/bash-interactive";
|
|
787
|
+
import * as bundledPiCodingAgentToolsBashInterceptor from "@oh-my-pi-zen/pi-coding-agent/tools/bash-interceptor";
|
|
788
|
+
import * as bundledPiCodingAgentToolsBashPtySelection from "@oh-my-pi-zen/pi-coding-agent/tools/bash-pty-selection";
|
|
789
|
+
import * as bundledPiCodingAgentToolsBashSkillUrls from "@oh-my-pi-zen/pi-coding-agent/tools/bash-skill-urls";
|
|
790
|
+
import * as bundledPiCodingAgentToolsBrowser from "@oh-my-pi-zen/pi-coding-agent/tools/browser";
|
|
791
|
+
import * as bundledPiCodingAgentToolsBuiltinNames from "@oh-my-pi-zen/pi-coding-agent/tools/builtin-names";
|
|
792
|
+
import * as bundledPiCodingAgentToolsCheckpoint from "@oh-my-pi-zen/pi-coding-agent/tools/checkpoint";
|
|
793
|
+
import * as bundledPiCodingAgentToolsConflictDetect from "@oh-my-pi-zen/pi-coding-agent/tools/conflict-detect";
|
|
794
|
+
import * as bundledPiCodingAgentToolsContext from "@oh-my-pi-zen/pi-coding-agent/tools/context";
|
|
795
|
+
import * as bundledPiCodingAgentToolsDebug from "@oh-my-pi-zen/pi-coding-agent/tools/debug";
|
|
796
|
+
import * as bundledPiCodingAgentToolsEval from "@oh-my-pi-zen/pi-coding-agent/tools/eval";
|
|
797
|
+
import * as bundledPiCodingAgentToolsEvalBackends from "@oh-my-pi-zen/pi-coding-agent/tools/eval-backends";
|
|
798
|
+
import * as bundledPiCodingAgentToolsEvalRender from "@oh-my-pi-zen/pi-coding-agent/tools/eval-render";
|
|
799
|
+
import * as bundledPiCodingAgentToolsFetch from "@oh-my-pi-zen/pi-coding-agent/tools/fetch";
|
|
800
|
+
import * as bundledPiCodingAgentToolsFileRecorder from "@oh-my-pi-zen/pi-coding-agent/tools/file-recorder";
|
|
801
|
+
import * as bundledPiCodingAgentToolsFsCacheInvalidation from "@oh-my-pi-zen/pi-coding-agent/tools/fs-cache-invalidation";
|
|
802
|
+
import * as bundledPiCodingAgentToolsGh from "@oh-my-pi-zen/pi-coding-agent/tools/gh";
|
|
803
|
+
import * as bundledPiCodingAgentToolsGhCacheInvalidation from "@oh-my-pi-zen/pi-coding-agent/tools/gh-cache-invalidation";
|
|
804
|
+
import * as bundledPiCodingAgentToolsGhFormat from "@oh-my-pi-zen/pi-coding-agent/tools/gh-format";
|
|
805
|
+
import * as bundledPiCodingAgentToolsGhRenderer from "@oh-my-pi-zen/pi-coding-agent/tools/gh-renderer";
|
|
806
|
+
import * as bundledPiCodingAgentToolsGithubCache from "@oh-my-pi-zen/pi-coding-agent/tools/github-cache";
|
|
807
|
+
import * as bundledPiCodingAgentToolsGlob from "@oh-my-pi-zen/pi-coding-agent/tools/glob";
|
|
808
|
+
import * as bundledPiCodingAgentToolsGrep from "@oh-my-pi-zen/pi-coding-agent/tools/grep";
|
|
809
|
+
import * as bundledPiCodingAgentToolsGroupedFileOutput from "@oh-my-pi-zen/pi-coding-agent/tools/grouped-file-output";
|
|
810
|
+
import * as bundledPiCodingAgentToolsImageGen from "@oh-my-pi-zen/pi-coding-agent/tools/image-gen";
|
|
811
|
+
import * as bundledPiCodingAgentToolsInspectImage from "@oh-my-pi-zen/pi-coding-agent/tools/inspect-image";
|
|
812
|
+
import * as bundledPiCodingAgentToolsInspectImageRenderer from "@oh-my-pi-zen/pi-coding-agent/tools/inspect-image-renderer";
|
|
813
|
+
import * as bundledPiCodingAgentToolsIrc from "@oh-my-pi-zen/pi-coding-agent/tools/irc";
|
|
814
|
+
import * as bundledPiCodingAgentToolsJob from "@oh-my-pi-zen/pi-coding-agent/tools/job";
|
|
815
|
+
import * as bundledPiCodingAgentToolsJsonTree from "@oh-my-pi-zen/pi-coding-agent/tools/json-tree";
|
|
816
|
+
import * as bundledPiCodingAgentToolsJtdToJsonSchema from "@oh-my-pi-zen/pi-coding-agent/tools/jtd-to-json-schema";
|
|
817
|
+
import * as bundledPiCodingAgentToolsJtdToTypescript from "@oh-my-pi-zen/pi-coding-agent/tools/jtd-to-typescript";
|
|
818
|
+
import * as bundledPiCodingAgentToolsJtdUtils from "@oh-my-pi-zen/pi-coding-agent/tools/jtd-utils";
|
|
819
|
+
import * as bundledPiCodingAgentToolsLearn from "@oh-my-pi-zen/pi-coding-agent/tools/learn";
|
|
820
|
+
import * as bundledPiCodingAgentToolsListLimit from "@oh-my-pi-zen/pi-coding-agent/tools/list-limit";
|
|
821
|
+
import * as bundledPiCodingAgentToolsManageSkill from "@oh-my-pi-zen/pi-coding-agent/tools/manage-skill";
|
|
822
|
+
import * as bundledPiCodingAgentToolsMatchLineFormat from "@oh-my-pi-zen/pi-coding-agent/tools/match-line-format";
|
|
823
|
+
import * as bundledPiCodingAgentToolsMemoryEdit from "@oh-my-pi-zen/pi-coding-agent/tools/memory-edit";
|
|
824
|
+
import * as bundledPiCodingAgentToolsMemoryRecall from "@oh-my-pi-zen/pi-coding-agent/tools/memory-recall";
|
|
825
|
+
import * as bundledPiCodingAgentToolsMemoryReflect from "@oh-my-pi-zen/pi-coding-agent/tools/memory-reflect";
|
|
826
|
+
import * as bundledPiCodingAgentToolsMemoryRender from "@oh-my-pi-zen/pi-coding-agent/tools/memory-render";
|
|
827
|
+
import * as bundledPiCodingAgentToolsMemoryRetain from "@oh-my-pi-zen/pi-coding-agent/tools/memory-retain";
|
|
828
|
+
import * as bundledPiCodingAgentToolsOutputMeta from "@oh-my-pi-zen/pi-coding-agent/tools/output-meta";
|
|
829
|
+
import * as bundledPiCodingAgentToolsOutputSchemaValidator from "@oh-my-pi-zen/pi-coding-agent/tools/output-schema-validator";
|
|
830
|
+
import * as bundledPiCodingAgentToolsPathUtils from "@oh-my-pi-zen/pi-coding-agent/tools/path-utils";
|
|
831
|
+
import * as bundledPiCodingAgentToolsPlanModeGuard from "@oh-my-pi-zen/pi-coding-agent/tools/plan-mode-guard";
|
|
832
|
+
import * as bundledPiCodingAgentToolsRead from "@oh-my-pi-zen/pi-coding-agent/tools/read";
|
|
833
|
+
import * as bundledPiCodingAgentToolsRenderUtils from "@oh-my-pi-zen/pi-coding-agent/tools/render-utils";
|
|
834
|
+
import * as bundledPiCodingAgentToolsRenderers from "@oh-my-pi-zen/pi-coding-agent/tools/renderers";
|
|
835
|
+
import * as bundledPiCodingAgentToolsReportToolIssue from "@oh-my-pi-zen/pi-coding-agent/tools/report-tool-issue";
|
|
836
|
+
import * as bundledPiCodingAgentToolsResolve from "@oh-my-pi-zen/pi-coding-agent/tools/resolve";
|
|
837
|
+
import * as bundledPiCodingAgentToolsReview from "@oh-my-pi-zen/pi-coding-agent/tools/review";
|
|
838
|
+
import * as bundledPiCodingAgentToolsSearchToolBm25 from "@oh-my-pi-zen/pi-coding-agent/tools/search-tool-bm25";
|
|
839
|
+
import * as bundledPiCodingAgentToolsSqliteReader from "@oh-my-pi-zen/pi-coding-agent/tools/sqlite-reader";
|
|
840
|
+
import * as bundledPiCodingAgentToolsSsh from "@oh-my-pi-zen/pi-coding-agent/tools/ssh";
|
|
841
|
+
import * as bundledPiCodingAgentToolsTodo from "@oh-my-pi-zen/pi-coding-agent/tools/todo";
|
|
842
|
+
import * as bundledPiCodingAgentToolsToolErrors from "@oh-my-pi-zen/pi-coding-agent/tools/tool-errors";
|
|
843
|
+
import * as bundledPiCodingAgentToolsToolResult from "@oh-my-pi-zen/pi-coding-agent/tools/tool-result";
|
|
844
|
+
import * as bundledPiCodingAgentToolsToolTimeouts from "@oh-my-pi-zen/pi-coding-agent/tools/tool-timeouts";
|
|
845
|
+
import * as bundledPiCodingAgentToolsTts from "@oh-my-pi-zen/pi-coding-agent/tools/tts";
|
|
846
|
+
import * as bundledPiCodingAgentToolsWrite from "@oh-my-pi-zen/pi-coding-agent/tools/write";
|
|
847
|
+
import * as bundledPiCodingAgentToolsYield from "@oh-my-pi-zen/pi-coding-agent/tools/yield";
|
|
848
|
+
import * as bundledPiCodingAgentTui from "@oh-my-pi-zen/pi-coding-agent/tui";
|
|
849
|
+
import * as bundledPiCodingAgentTuiCodeCell from "@oh-my-pi-zen/pi-coding-agent/tui/code-cell";
|
|
850
|
+
import * as bundledPiCodingAgentTuiFileList from "@oh-my-pi-zen/pi-coding-agent/tui/file-list";
|
|
851
|
+
import * as bundledPiCodingAgentTuiHyperlink from "@oh-my-pi-zen/pi-coding-agent/tui/hyperlink";
|
|
852
|
+
import * as bundledPiCodingAgentTuiOutputBlock from "@oh-my-pi-zen/pi-coding-agent/tui/output-block";
|
|
853
|
+
import * as bundledPiCodingAgentTuiStatusLine from "@oh-my-pi-zen/pi-coding-agent/tui/status-line";
|
|
854
|
+
import * as bundledPiCodingAgentTuiTreeList from "@oh-my-pi-zen/pi-coding-agent/tui/tree-list";
|
|
855
|
+
import * as bundledPiCodingAgentTuiTypes from "@oh-my-pi-zen/pi-coding-agent/tui/types";
|
|
856
|
+
import * as bundledPiCodingAgentTuiUtils from "@oh-my-pi-zen/pi-coding-agent/tui/utils";
|
|
857
|
+
import * as bundledPiCodingAgentTuiWidthAwareText from "@oh-my-pi-zen/pi-coding-agent/tui/width-aware-text";
|
|
858
|
+
import * as bundledPiCodingAgentUtilsActiveRepoContext from "@oh-my-pi-zen/pi-coding-agent/utils/active-repo-context";
|
|
859
|
+
import * as bundledPiCodingAgentUtilsBlockContext from "@oh-my-pi-zen/pi-coding-agent/utils/block-context";
|
|
860
|
+
import * as bundledPiCodingAgentUtilsChangelog from "@oh-my-pi-zen/pi-coding-agent/utils/changelog";
|
|
861
|
+
import * as bundledPiCodingAgentUtilsClipboard from "@oh-my-pi-zen/pi-coding-agent/utils/clipboard";
|
|
862
|
+
import * as bundledPiCodingAgentUtilsCommandArgs from "@oh-my-pi-zen/pi-coding-agent/utils/command-args";
|
|
863
|
+
import * as bundledPiCodingAgentUtilsCommitMessageGenerator from "@oh-my-pi-zen/pi-coding-agent/utils/commit-message-generator";
|
|
864
|
+
import * as bundledPiCodingAgentUtilsEditMode from "@oh-my-pi-zen/pi-coding-agent/utils/edit-mode";
|
|
865
|
+
import * as bundledPiCodingAgentUtilsEnhancedPaste from "@oh-my-pi-zen/pi-coding-agent/utils/enhanced-paste";
|
|
866
|
+
import * as bundledPiCodingAgentUtilsEventBus from "@oh-my-pi-zen/pi-coding-agent/utils/event-bus";
|
|
867
|
+
import * as bundledPiCodingAgentUtilsExternalEditor from "@oh-my-pi-zen/pi-coding-agent/utils/external-editor";
|
|
868
|
+
import * as bundledPiCodingAgentUtilsFileDisplayMode from "@oh-my-pi-zen/pi-coding-agent/utils/file-display-mode";
|
|
869
|
+
import * as bundledPiCodingAgentUtilsFileMentions from "@oh-my-pi-zen/pi-coding-agent/utils/file-mentions";
|
|
870
|
+
import * as bundledPiCodingAgentUtilsGit from "@oh-my-pi-zen/pi-coding-agent/utils/git";
|
|
871
|
+
import * as bundledPiCodingAgentUtilsImageLoading from "@oh-my-pi-zen/pi-coding-agent/utils/image-loading";
|
|
872
|
+
import * as bundledPiCodingAgentUtilsImageResize from "@oh-my-pi-zen/pi-coding-agent/utils/image-resize";
|
|
873
|
+
import * as bundledPiCodingAgentUtilsImageVisionFallback from "@oh-my-pi-zen/pi-coding-agent/utils/image-vision-fallback";
|
|
874
|
+
import * as bundledPiCodingAgentUtilsIpc from "@oh-my-pi-zen/pi-coding-agent/utils/ipc";
|
|
875
|
+
import * as bundledPiCodingAgentUtilsJj from "@oh-my-pi-zen/pi-coding-agent/utils/jj";
|
|
876
|
+
import * as bundledPiCodingAgentUtilsLangFromPath from "@oh-my-pi-zen/pi-coding-agent/utils/lang-from-path";
|
|
877
|
+
import * as bundledPiCodingAgentUtilsMarkit from "@oh-my-pi-zen/pi-coding-agent/utils/markit";
|
|
878
|
+
import * as bundledPiCodingAgentUtilsMarkitCache from "@oh-my-pi-zen/pi-coding-agent/utils/markit-cache";
|
|
879
|
+
import * as bundledPiCodingAgentUtilsMupdfWasmEmbed from "@oh-my-pi-zen/pi-coding-agent/utils/mupdf-wasm-embed";
|
|
880
|
+
import * as bundledPiCodingAgentUtilsOpen from "@oh-my-pi-zen/pi-coding-agent/utils/open";
|
|
881
|
+
import * as bundledPiCodingAgentUtilsPromptPath from "@oh-my-pi-zen/pi-coding-agent/utils/prompt-path";
|
|
882
|
+
import * as bundledPiCodingAgentUtilsQrcode from "@oh-my-pi-zen/pi-coding-agent/utils/qrcode";
|
|
883
|
+
import * as bundledPiCodingAgentUtilsSessionColor from "@oh-my-pi-zen/pi-coding-agent/utils/session-color";
|
|
884
|
+
import * as bundledPiCodingAgentUtilsShellSnapshot from "@oh-my-pi-zen/pi-coding-agent/utils/shell-snapshot";
|
|
885
|
+
import * as bundledPiCodingAgentUtilsSixel from "@oh-my-pi-zen/pi-coding-agent/utils/sixel";
|
|
886
|
+
import * as bundledPiCodingAgentUtilsThinkingDisplay from "@oh-my-pi-zen/pi-coding-agent/utils/thinking-display";
|
|
887
|
+
import * as bundledPiCodingAgentUtilsTitleGenerator from "@oh-my-pi-zen/pi-coding-agent/utils/title-generator";
|
|
888
|
+
import * as bundledPiCodingAgentUtilsToolChoice from "@oh-my-pi-zen/pi-coding-agent/utils/tool-choice";
|
|
889
|
+
import * as bundledPiCodingAgentUtilsToolsManager from "@oh-my-pi-zen/pi-coding-agent/utils/tools-manager";
|
|
890
|
+
import * as bundledPiCodingAgentUtilsTurndown from "@oh-my-pi-zen/pi-coding-agent/utils/turndown";
|
|
891
|
+
import * as bundledPiCodingAgentUtilsZip from "@oh-my-pi-zen/pi-coding-agent/utils/zip";
|
|
892
|
+
import * as bundledPiCodingAgentWebKagi from "@oh-my-pi-zen/pi-coding-agent/web/kagi";
|
|
893
|
+
import * as bundledPiCodingAgentWebParallel from "@oh-my-pi-zen/pi-coding-agent/web/parallel";
|
|
894
|
+
import * as bundledPiCodingAgentWebScrapers from "@oh-my-pi-zen/pi-coding-agent/web/scrapers";
|
|
895
|
+
import * as bundledPiCodingAgentWebScrapersArtifacthub from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/artifacthub";
|
|
896
|
+
import * as bundledPiCodingAgentWebScrapersArxiv from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/arxiv";
|
|
897
|
+
import * as bundledPiCodingAgentWebScrapersAur from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/aur";
|
|
898
|
+
import * as bundledPiCodingAgentWebScrapersBiorxiv from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/biorxiv";
|
|
899
|
+
import * as bundledPiCodingAgentWebScrapersBluesky from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/bluesky";
|
|
900
|
+
import * as bundledPiCodingAgentWebScrapersBrew from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/brew";
|
|
901
|
+
import * as bundledPiCodingAgentWebScrapersCheatsh from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/cheatsh";
|
|
902
|
+
import * as bundledPiCodingAgentWebScrapersChocolatey from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/chocolatey";
|
|
903
|
+
import * as bundledPiCodingAgentWebScrapersChoosealicense from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/choosealicense";
|
|
904
|
+
import * as bundledPiCodingAgentWebScrapersCisaKev from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/cisa-kev";
|
|
905
|
+
import * as bundledPiCodingAgentWebScrapersClojars from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/clojars";
|
|
906
|
+
import * as bundledPiCodingAgentWebScrapersCoingecko from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/coingecko";
|
|
907
|
+
import * as bundledPiCodingAgentWebScrapersCratesIo from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/crates-io";
|
|
908
|
+
import * as bundledPiCodingAgentWebScrapersCrossref from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/crossref";
|
|
909
|
+
import * as bundledPiCodingAgentWebScrapersDevto from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/devto";
|
|
910
|
+
import * as bundledPiCodingAgentWebScrapersDiscogs from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/discogs";
|
|
911
|
+
import * as bundledPiCodingAgentWebScrapersDiscourse from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/discourse";
|
|
912
|
+
import * as bundledPiCodingAgentWebScrapersDockerhub from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/dockerhub";
|
|
913
|
+
import * as bundledPiCodingAgentWebScrapersDocsRs from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/docs-rs";
|
|
914
|
+
import * as bundledPiCodingAgentWebScrapersFdroid from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/fdroid";
|
|
915
|
+
import * as bundledPiCodingAgentWebScrapersFirefoxAddons from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/firefox-addons";
|
|
916
|
+
import * as bundledPiCodingAgentWebScrapersFlathub from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/flathub";
|
|
917
|
+
import * as bundledPiCodingAgentWebScrapersGithub from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/github";
|
|
918
|
+
import * as bundledPiCodingAgentWebScrapersGithubGist from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/github-gist";
|
|
919
|
+
import * as bundledPiCodingAgentWebScrapersGitlab from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/gitlab";
|
|
920
|
+
import * as bundledPiCodingAgentWebScrapersGoPkg from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/go-pkg";
|
|
921
|
+
import * as bundledPiCodingAgentWebScrapersHackage from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/hackage";
|
|
922
|
+
import * as bundledPiCodingAgentWebScrapersHackernews from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/hackernews";
|
|
923
|
+
import * as bundledPiCodingAgentWebScrapersHex from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/hex";
|
|
924
|
+
import * as bundledPiCodingAgentWebScrapersHuggingface from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/huggingface";
|
|
925
|
+
import * as bundledPiCodingAgentWebScrapersIacr from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/iacr";
|
|
926
|
+
import * as bundledPiCodingAgentWebScrapersJetbrainsMarketplace from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/jetbrains-marketplace";
|
|
927
|
+
import * as bundledPiCodingAgentWebScrapersLemmy from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/lemmy";
|
|
928
|
+
import * as bundledPiCodingAgentWebScrapersLobsters from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/lobsters";
|
|
929
|
+
import * as bundledPiCodingAgentWebScrapersMastodon from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/mastodon";
|
|
930
|
+
import * as bundledPiCodingAgentWebScrapersMaven from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/maven";
|
|
931
|
+
import * as bundledPiCodingAgentWebScrapersMdn from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/mdn";
|
|
932
|
+
import * as bundledPiCodingAgentWebScrapersMetacpan from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/metacpan";
|
|
933
|
+
import * as bundledPiCodingAgentWebScrapersMusicbrainz from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/musicbrainz";
|
|
934
|
+
import * as bundledPiCodingAgentWebScrapersNpm from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/npm";
|
|
935
|
+
import * as bundledPiCodingAgentWebScrapersNuget from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/nuget";
|
|
936
|
+
import * as bundledPiCodingAgentWebScrapersNvd from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/nvd";
|
|
937
|
+
import * as bundledPiCodingAgentWebScrapersOllama from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/ollama";
|
|
938
|
+
import * as bundledPiCodingAgentWebScrapersOpenVsx from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/open-vsx";
|
|
939
|
+
import * as bundledPiCodingAgentWebScrapersOpencorporates from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/opencorporates";
|
|
940
|
+
import * as bundledPiCodingAgentWebScrapersOpenlibrary from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/openlibrary";
|
|
941
|
+
import * as bundledPiCodingAgentWebScrapersOrcid from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/orcid";
|
|
942
|
+
import * as bundledPiCodingAgentWebScrapersOsv from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/osv";
|
|
943
|
+
import * as bundledPiCodingAgentWebScrapersPackagist from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/packagist";
|
|
944
|
+
import * as bundledPiCodingAgentWebScrapersPubDev from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/pub-dev";
|
|
945
|
+
import * as bundledPiCodingAgentWebScrapersPubmed from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/pubmed";
|
|
946
|
+
import * as bundledPiCodingAgentWebScrapersPypi from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/pypi";
|
|
947
|
+
import * as bundledPiCodingAgentWebScrapersRawg from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/rawg";
|
|
948
|
+
import * as bundledPiCodingAgentWebScrapersReadthedocs from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/readthedocs";
|
|
949
|
+
import * as bundledPiCodingAgentWebScrapersReddit from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/reddit";
|
|
950
|
+
import * as bundledPiCodingAgentWebScrapersRepology from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/repology";
|
|
951
|
+
import * as bundledPiCodingAgentWebScrapersRfc from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/rfc";
|
|
952
|
+
import * as bundledPiCodingAgentWebScrapersRubygems from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/rubygems";
|
|
953
|
+
import * as bundledPiCodingAgentWebScrapersSearchcode from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/searchcode";
|
|
954
|
+
import * as bundledPiCodingAgentWebScrapersSecEdgar from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/sec-edgar";
|
|
955
|
+
import * as bundledPiCodingAgentWebScrapersSemanticScholar from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/semantic-scholar";
|
|
956
|
+
import * as bundledPiCodingAgentWebScrapersSnapcraft from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/snapcraft";
|
|
957
|
+
import * as bundledPiCodingAgentWebScrapersSourcegraph from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/sourcegraph";
|
|
958
|
+
import * as bundledPiCodingAgentWebScrapersSpdx from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/spdx";
|
|
959
|
+
import * as bundledPiCodingAgentWebScrapersSpotify from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/spotify";
|
|
960
|
+
import * as bundledPiCodingAgentWebScrapersStackoverflow from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/stackoverflow";
|
|
961
|
+
import * as bundledPiCodingAgentWebScrapersTerraform from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/terraform";
|
|
962
|
+
import * as bundledPiCodingAgentWebScrapersTldr from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/tldr";
|
|
963
|
+
import * as bundledPiCodingAgentWebScrapersTwitter from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/twitter";
|
|
964
|
+
import * as bundledPiCodingAgentWebScrapersTypes from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/types";
|
|
965
|
+
import * as bundledPiCodingAgentWebScrapersUtils from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/utils";
|
|
966
|
+
import * as bundledPiCodingAgentWebScrapersVimeo from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/vimeo";
|
|
967
|
+
import * as bundledPiCodingAgentWebScrapersVscodeMarketplace from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/vscode-marketplace";
|
|
968
|
+
import * as bundledPiCodingAgentWebScrapersW3c from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/w3c";
|
|
969
|
+
import * as bundledPiCodingAgentWebScrapersWikidata from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/wikidata";
|
|
970
|
+
import * as bundledPiCodingAgentWebScrapersWikipedia from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/wikipedia";
|
|
971
|
+
import * as bundledPiCodingAgentWebScrapersYoutube from "@oh-my-pi-zen/pi-coding-agent/web/scrapers/youtube";
|
|
972
|
+
import * as bundledPiCodingAgentWebSearch from "@oh-my-pi-zen/pi-coding-agent/web/search";
|
|
973
|
+
import * as bundledPiCodingAgentWebSearchProvider from "@oh-my-pi-zen/pi-coding-agent/web/search/provider";
|
|
974
|
+
import * as bundledPiCodingAgentWebSearchProvidersAnthropic from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/anthropic";
|
|
975
|
+
import * as bundledPiCodingAgentWebSearchProvidersBase from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/base";
|
|
976
|
+
import * as bundledPiCodingAgentWebSearchProvidersBrave from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/brave";
|
|
977
|
+
import * as bundledPiCodingAgentWebSearchProvidersCodex from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/codex";
|
|
978
|
+
import * as bundledPiCodingAgentWebSearchProvidersDuckduckgo from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/duckduckgo";
|
|
979
|
+
import * as bundledPiCodingAgentWebSearchProvidersExa from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/exa";
|
|
980
|
+
import * as bundledPiCodingAgentWebSearchProvidersFirecrawl from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/firecrawl";
|
|
981
|
+
import * as bundledPiCodingAgentWebSearchProvidersGemini from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/gemini";
|
|
982
|
+
import * as bundledPiCodingAgentWebSearchProvidersJina from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/jina";
|
|
983
|
+
import * as bundledPiCodingAgentWebSearchProvidersKagi from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/kagi";
|
|
984
|
+
import * as bundledPiCodingAgentWebSearchProvidersKimi from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/kimi";
|
|
985
|
+
import * as bundledPiCodingAgentWebSearchProvidersParallel from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/parallel";
|
|
986
|
+
import * as bundledPiCodingAgentWebSearchProvidersPerplexity from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/perplexity";
|
|
987
|
+
import * as bundledPiCodingAgentWebSearchProvidersPerplexityAuth from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/perplexity-auth";
|
|
988
|
+
import * as bundledPiCodingAgentWebSearchProvidersSearxng from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/searxng";
|
|
989
|
+
import * as bundledPiCodingAgentWebSearchProvidersSynthetic from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/synthetic";
|
|
990
|
+
import * as bundledPiCodingAgentWebSearchProvidersTavily from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/tavily";
|
|
991
|
+
import * as bundledPiCodingAgentWebSearchProvidersTinyfish from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/tinyfish";
|
|
992
|
+
import * as bundledPiCodingAgentWebSearchProvidersUtils from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/utils";
|
|
993
|
+
import * as bundledPiCodingAgentWebSearchProvidersXai from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/xai";
|
|
994
|
+
import * as bundledPiCodingAgentWebSearchProvidersZai from "@oh-my-pi-zen/pi-coding-agent/web/search/providers/zai";
|
|
995
|
+
import * as bundledPiCodingAgentWebSearchRender from "@oh-my-pi-zen/pi-coding-agent/web/search/render";
|
|
996
|
+
import * as bundledPiCodingAgentWebSearchTypes from "@oh-my-pi-zen/pi-coding-agent/web/search/types";
|
|
997
|
+
import * as bundledPiCodingAgentWebSearchUtils from "@oh-my-pi-zen/pi-coding-agent/web/search/utils";
|
|
998
|
+
import * as bundledPiNatives from "@oh-my-pi-zen/pi-natives";
|
|
999
|
+
import * as bundledPiTui from "@oh-my-pi-zen/pi-tui";
|
|
1000
|
+
import * as bundledPiTuiComponentsBox from "@oh-my-pi-zen/pi-tui/components/box";
|
|
1001
|
+
import * as bundledPiTuiComponentsCancellableLoader from "@oh-my-pi-zen/pi-tui/components/cancellable-loader";
|
|
1002
|
+
import * as bundledPiTuiComponentsEditor from "@oh-my-pi-zen/pi-tui/components/editor";
|
|
1003
|
+
import * as bundledPiTuiComponentsImage from "@oh-my-pi-zen/pi-tui/components/image";
|
|
1004
|
+
import * as bundledPiTuiComponentsInput from "@oh-my-pi-zen/pi-tui/components/input";
|
|
1005
|
+
import * as bundledPiTuiComponentsLoader from "@oh-my-pi-zen/pi-tui/components/loader";
|
|
1006
|
+
import * as bundledPiTuiComponentsMarkdown from "@oh-my-pi-zen/pi-tui/components/markdown";
|
|
1007
|
+
import * as bundledPiTuiComponentsScrollView from "@oh-my-pi-zen/pi-tui/components/scroll-view";
|
|
1008
|
+
import * as bundledPiTuiComponentsSelectList from "@oh-my-pi-zen/pi-tui/components/select-list";
|
|
1009
|
+
import * as bundledPiTuiComponentsSettingsList from "@oh-my-pi-zen/pi-tui/components/settings-list";
|
|
1010
|
+
import * as bundledPiTuiComponentsSpacer from "@oh-my-pi-zen/pi-tui/components/spacer";
|
|
1011
|
+
import * as bundledPiTuiComponentsTabBar from "@oh-my-pi-zen/pi-tui/components/tab-bar";
|
|
1012
|
+
import * as bundledPiTuiComponentsText from "@oh-my-pi-zen/pi-tui/components/text";
|
|
1013
|
+
import * as bundledPiTuiComponentsTruncatedText from "@oh-my-pi-zen/pi-tui/components/truncated-text";
|
|
1014
|
+
import * as bundledPiUtils from "@oh-my-pi-zen/pi-utils";
|
|
1015
|
+
import * as bundledPiAi from "../legacy-pi-ai-shim";
|
|
1016
|
+
import * as bundledPiCodingAgent from "../legacy-pi-coding-agent-shim";
|
|
1017
|
+
import * as bundledTypeBoxShim from "../typebox";
|
|
1018
|
+
|
|
1019
|
+
/**
|
|
1020
|
+
* Canonical specifier → live module namespace. Keys MUST match the right-hand
|
|
1021
|
+
* side of `bundledRegistryVirtualSpecifier(...)` calls in
|
|
1022
|
+
* `legacy-pi-compat.ts`; the synthesizer enumerates each namespace's own
|
|
1023
|
+
* enumerable exports at extension load time. The companion
|
|
1024
|
+
* `legacy-pi-bundled-keys.ts` mirrors `Object.keys(BUNDLED_PI_REGISTRY)` and
|
|
1025
|
+
* is statically imported by `legacy-pi-compat.ts` to seed the override map
|
|
1026
|
+
* without paying the cascade above.
|
|
1027
|
+
*/
|
|
1028
|
+
export const BUNDLED_PI_REGISTRY: Readonly<Record<string, Readonly<Record<string, unknown>>>> = {
|
|
1029
|
+
"@oh-my-pi-zen/pi-agent-core": bundledPiAgentCore as unknown as Readonly<Record<string, unknown>>,
|
|
1030
|
+
"@oh-my-pi-zen/pi-agent-core/compaction": bundledPiAgentCoreCompaction as unknown as Readonly<Record<string, unknown>>,
|
|
1031
|
+
"@oh-my-pi-zen/pi-agent-core/compaction/branch-summarization":
|
|
1032
|
+
bundledPiAgentCoreCompactionBranchSummarization as unknown as Readonly<Record<string, unknown>>,
|
|
1033
|
+
"@oh-my-pi-zen/pi-agent-core/compaction/compaction": bundledPiAgentCoreCompactionCompaction as unknown as Readonly<
|
|
1034
|
+
Record<string, unknown>
|
|
1035
|
+
>,
|
|
1036
|
+
"@oh-my-pi-zen/pi-agent-core/compaction/entries": bundledPiAgentCoreCompactionEntries as unknown as Readonly<
|
|
1037
|
+
Record<string, unknown>
|
|
1038
|
+
>,
|
|
1039
|
+
"@oh-my-pi-zen/pi-agent-core/compaction/errors": bundledPiAgentCoreCompactionErrors as unknown as Readonly<
|
|
1040
|
+
Record<string, unknown>
|
|
1041
|
+
>,
|
|
1042
|
+
"@oh-my-pi-zen/pi-agent-core/compaction/messages": bundledPiAgentCoreCompactionMessages as unknown as Readonly<
|
|
1043
|
+
Record<string, unknown>
|
|
1044
|
+
>,
|
|
1045
|
+
"@oh-my-pi-zen/pi-agent-core/compaction/openai": bundledPiAgentCoreCompactionOpenai as unknown as Readonly<
|
|
1046
|
+
Record<string, unknown>
|
|
1047
|
+
>,
|
|
1048
|
+
"@oh-my-pi-zen/pi-agent-core/compaction/pruning": bundledPiAgentCoreCompactionPruning as unknown as Readonly<
|
|
1049
|
+
Record<string, unknown>
|
|
1050
|
+
>,
|
|
1051
|
+
"@oh-my-pi-zen/pi-agent-core/compaction/shake": bundledPiAgentCoreCompactionShake as unknown as Readonly<
|
|
1052
|
+
Record<string, unknown>
|
|
1053
|
+
>,
|
|
1054
|
+
"@oh-my-pi-zen/pi-agent-core/compaction/tool-protection":
|
|
1055
|
+
bundledPiAgentCoreCompactionToolProtection as unknown as Readonly<Record<string, unknown>>,
|
|
1056
|
+
"@oh-my-pi-zen/pi-agent-core/compaction/utils": bundledPiAgentCoreCompactionUtils as unknown as Readonly<
|
|
1057
|
+
Record<string, unknown>
|
|
1058
|
+
>,
|
|
1059
|
+
"@oh-my-pi-zen/pi-ai": bundledPiAi as unknown as Readonly<Record<string, unknown>>,
|
|
1060
|
+
"@oh-my-pi-zen/pi-ai/error": bundledPiAiError as unknown as Readonly<Record<string, unknown>>,
|
|
1061
|
+
"@oh-my-pi-zen/pi-ai/auth-broker": bundledPiAiAuthBroker as unknown as Readonly<Record<string, unknown>>,
|
|
1062
|
+
"@oh-my-pi-zen/pi-ai/auth-gateway": bundledPiAiAuthGateway as unknown as Readonly<Record<string, unknown>>,
|
|
1063
|
+
"@oh-my-pi-zen/pi-ai/utils/harmony-leak": bundledPiAiUtilsHarmonyLeak as unknown as Readonly<Record<string, unknown>>,
|
|
1064
|
+
"@oh-my-pi-zen/pi-ai/dialect": bundledPiAiDialect as unknown as Readonly<Record<string, unknown>>,
|
|
1065
|
+
"@oh-my-pi-zen/pi-ai/oauth": bundledPiAiOauth as unknown as Readonly<Record<string, unknown>>,
|
|
1066
|
+
"@oh-my-pi-zen/pi-ai/registry": bundledPiAiRegistry as unknown as Readonly<Record<string, unknown>>,
|
|
1067
|
+
"@oh-my-pi-zen/pi-ai/registry/oauth": bundledPiAiRegistryOauth as unknown as Readonly<Record<string, unknown>>,
|
|
1068
|
+
"@oh-my-pi-zen/pi-ai/utils/schema": bundledPiAiUtilsSchema as unknown as Readonly<Record<string, unknown>>,
|
|
1069
|
+
"@oh-my-pi-zen/pi-ai/auth-broker/client": bundledPiAiAuthBrokerClient as unknown as Readonly<Record<string, unknown>>,
|
|
1070
|
+
"@oh-my-pi-zen/pi-ai/auth-broker/discover": bundledPiAiAuthBrokerDiscover as unknown as Readonly<
|
|
1071
|
+
Record<string, unknown>
|
|
1072
|
+
>,
|
|
1073
|
+
"@oh-my-pi-zen/pi-ai/auth-broker/refresher": bundledPiAiAuthBrokerRefresher as unknown as Readonly<
|
|
1074
|
+
Record<string, unknown>
|
|
1075
|
+
>,
|
|
1076
|
+
"@oh-my-pi-zen/pi-ai/auth-broker/remote-store": bundledPiAiAuthBrokerRemoteStore as unknown as Readonly<
|
|
1077
|
+
Record<string, unknown>
|
|
1078
|
+
>,
|
|
1079
|
+
"@oh-my-pi-zen/pi-ai/auth-broker/server": bundledPiAiAuthBrokerServer as unknown as Readonly<Record<string, unknown>>,
|
|
1080
|
+
"@oh-my-pi-zen/pi-ai/auth-broker/snapshot-cache": bundledPiAiAuthBrokerSnapshotCache as unknown as Readonly<
|
|
1081
|
+
Record<string, unknown>
|
|
1082
|
+
>,
|
|
1083
|
+
"@oh-my-pi-zen/pi-ai/auth-broker/types": bundledPiAiAuthBrokerTypes as unknown as Readonly<Record<string, unknown>>,
|
|
1084
|
+
"@oh-my-pi-zen/pi-ai/auth-broker/wire-schemas": bundledPiAiAuthBrokerWireSchemas as unknown as Readonly<
|
|
1085
|
+
Record<string, unknown>
|
|
1086
|
+
>,
|
|
1087
|
+
"@oh-my-pi-zen/pi-ai/auth-gateway/http": bundledPiAiAuthGatewayHttp as unknown as Readonly<Record<string, unknown>>,
|
|
1088
|
+
"@oh-my-pi-zen/pi-ai/auth-gateway/server": bundledPiAiAuthGatewayServer as unknown as Readonly<Record<string, unknown>>,
|
|
1089
|
+
"@oh-my-pi-zen/pi-ai/auth-gateway/types": bundledPiAiAuthGatewayTypes as unknown as Readonly<Record<string, unknown>>,
|
|
1090
|
+
"@oh-my-pi-zen/pi-ai/providers/amazon-bedrock": bundledPiAiProvidersAmazonBedrock as unknown as Readonly<
|
|
1091
|
+
Record<string, unknown>
|
|
1092
|
+
>,
|
|
1093
|
+
"@oh-my-pi-zen/pi-ai/providers/anthropic-client": bundledPiAiProvidersAnthropicClient as unknown as Readonly<
|
|
1094
|
+
Record<string, unknown>
|
|
1095
|
+
>,
|
|
1096
|
+
"@oh-my-pi-zen/pi-ai/providers/anthropic-messages-server-schema":
|
|
1097
|
+
bundledPiAiProvidersAnthropicMessagesServerSchema as unknown as Readonly<Record<string, unknown>>,
|
|
1098
|
+
"@oh-my-pi-zen/pi-ai/providers/anthropic-messages-server":
|
|
1099
|
+
bundledPiAiProvidersAnthropicMessagesServer as unknown as Readonly<Record<string, unknown>>,
|
|
1100
|
+
"@oh-my-pi-zen/pi-ai/providers/anthropic-wire": bundledPiAiProvidersAnthropicWire as unknown as Readonly<
|
|
1101
|
+
Record<string, unknown>
|
|
1102
|
+
>,
|
|
1103
|
+
"@oh-my-pi-zen/pi-ai/providers/anthropic": bundledPiAiProvidersAnthropic as unknown as Readonly<Record<string, unknown>>,
|
|
1104
|
+
"@oh-my-pi-zen/pi-ai/providers/aws-credentials": bundledPiAiProvidersAwsCredentials as unknown as Readonly<
|
|
1105
|
+
Record<string, unknown>
|
|
1106
|
+
>,
|
|
1107
|
+
"@oh-my-pi-zen/pi-ai/providers/aws-eventstream": bundledPiAiProvidersAwsEventstream as unknown as Readonly<
|
|
1108
|
+
Record<string, unknown>
|
|
1109
|
+
>,
|
|
1110
|
+
"@oh-my-pi-zen/pi-ai/providers/aws-sigv4": bundledPiAiProvidersAwsSigv4 as unknown as Readonly<Record<string, unknown>>,
|
|
1111
|
+
"@oh-my-pi-zen/pi-ai/providers/azure-openai-responses": bundledPiAiProvidersAzureOpenaiResponses as unknown as Readonly<
|
|
1112
|
+
Record<string, unknown>
|
|
1113
|
+
>,
|
|
1114
|
+
"@oh-my-pi-zen/pi-ai/providers/cursor": bundledPiAiProvidersCursor as unknown as Readonly<Record<string, unknown>>,
|
|
1115
|
+
"@oh-my-pi-zen/pi-ai/providers/devin": bundledPiAiProvidersDevin as unknown as Readonly<Record<string, unknown>>,
|
|
1116
|
+
"@oh-my-pi-zen/pi-ai/providers/error-message": bundledPiAiProvidersErrorMessage as unknown as Readonly<
|
|
1117
|
+
Record<string, unknown>
|
|
1118
|
+
>,
|
|
1119
|
+
"@oh-my-pi-zen/pi-ai/providers/github-copilot-headers": bundledPiAiProvidersGithubCopilotHeaders as unknown as Readonly<
|
|
1120
|
+
Record<string, unknown>
|
|
1121
|
+
>,
|
|
1122
|
+
"@oh-my-pi-zen/pi-ai/providers/gitlab-duo-workflow": bundledPiAiProvidersGitlabDuoWorkflow as unknown as Readonly<
|
|
1123
|
+
Record<string, unknown>
|
|
1124
|
+
>,
|
|
1125
|
+
"@oh-my-pi-zen/pi-ai/providers/gitlab-duo": bundledPiAiProvidersGitlabDuo as unknown as Readonly<
|
|
1126
|
+
Record<string, unknown>
|
|
1127
|
+
>,
|
|
1128
|
+
"@oh-my-pi-zen/pi-ai/providers/google-auth": bundledPiAiProvidersGoogleAuth as unknown as Readonly<
|
|
1129
|
+
Record<string, unknown>
|
|
1130
|
+
>,
|
|
1131
|
+
"@oh-my-pi-zen/pi-ai/providers/google-gemini-cli": bundledPiAiProvidersGoogleGeminiCli as unknown as Readonly<
|
|
1132
|
+
Record<string, unknown>
|
|
1133
|
+
>,
|
|
1134
|
+
"@oh-my-pi-zen/pi-ai/providers/google-shared": bundledPiAiProvidersGoogleShared as unknown as Readonly<
|
|
1135
|
+
Record<string, unknown>
|
|
1136
|
+
>,
|
|
1137
|
+
"@oh-my-pi-zen/pi-ai/providers/google-types": bundledPiAiProvidersGoogleTypes as unknown as Readonly<
|
|
1138
|
+
Record<string, unknown>
|
|
1139
|
+
>,
|
|
1140
|
+
"@oh-my-pi-zen/pi-ai/providers/google-vertex": bundledPiAiProvidersGoogleVertex as unknown as Readonly<
|
|
1141
|
+
Record<string, unknown>
|
|
1142
|
+
>,
|
|
1143
|
+
"@oh-my-pi-zen/pi-ai/providers/google": bundledPiAiProvidersGoogle as unknown as Readonly<Record<string, unknown>>,
|
|
1144
|
+
"@oh-my-pi-zen/pi-ai/providers/grammar": bundledPiAiProvidersGrammar as unknown as Readonly<Record<string, unknown>>,
|
|
1145
|
+
"@oh-my-pi-zen/pi-ai/providers/kimi": bundledPiAiProvidersKimi as unknown as Readonly<Record<string, unknown>>,
|
|
1146
|
+
"@oh-my-pi-zen/pi-ai/providers/mock": bundledPiAiProvidersMock as unknown as Readonly<Record<string, unknown>>,
|
|
1147
|
+
"@oh-my-pi-zen/pi-ai/providers/ollama": bundledPiAiProvidersOllama as unknown as Readonly<Record<string, unknown>>,
|
|
1148
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-anthropic-shim": bundledPiAiProvidersOpenaiAnthropicShim as unknown as Readonly<
|
|
1149
|
+
Record<string, unknown>
|
|
1150
|
+
>,
|
|
1151
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-chat-server-schema":
|
|
1152
|
+
bundledPiAiProvidersOpenaiChatServerSchema as unknown as Readonly<Record<string, unknown>>,
|
|
1153
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-chat-server": bundledPiAiProvidersOpenaiChatServer as unknown as Readonly<
|
|
1154
|
+
Record<string, unknown>
|
|
1155
|
+
>,
|
|
1156
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-chat-wire": bundledPiAiProvidersOpenaiChatWire as unknown as Readonly<
|
|
1157
|
+
Record<string, unknown>
|
|
1158
|
+
>,
|
|
1159
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-codex-responses": bundledPiAiProvidersOpenaiCodexResponses as unknown as Readonly<
|
|
1160
|
+
Record<string, unknown>
|
|
1161
|
+
>,
|
|
1162
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-completions": bundledPiAiProvidersOpenaiCompletions as unknown as Readonly<
|
|
1163
|
+
Record<string, unknown>
|
|
1164
|
+
>,
|
|
1165
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-reasoning-fallback":
|
|
1166
|
+
bundledPiAiProvidersOpenaiReasoningFallback as unknown as Readonly<Record<string, unknown>>,
|
|
1167
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-responses-server-schema":
|
|
1168
|
+
bundledPiAiProvidersOpenaiResponsesServerSchema as unknown as Readonly<Record<string, unknown>>,
|
|
1169
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-responses-server":
|
|
1170
|
+
bundledPiAiProvidersOpenaiResponsesServer as unknown as Readonly<Record<string, unknown>>,
|
|
1171
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-responses-wire": bundledPiAiProvidersOpenaiResponsesWire as unknown as Readonly<
|
|
1172
|
+
Record<string, unknown>
|
|
1173
|
+
>,
|
|
1174
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-responses": bundledPiAiProvidersOpenaiResponses as unknown as Readonly<
|
|
1175
|
+
Record<string, unknown>
|
|
1176
|
+
>,
|
|
1177
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-shared": bundledPiAiProvidersOpenaiShared as unknown as Readonly<
|
|
1178
|
+
Record<string, unknown>
|
|
1179
|
+
>,
|
|
1180
|
+
"@oh-my-pi-zen/pi-ai/providers/pi-native-client": bundledPiAiProvidersPiNativeClient as unknown as Readonly<
|
|
1181
|
+
Record<string, unknown>
|
|
1182
|
+
>,
|
|
1183
|
+
"@oh-my-pi-zen/pi-ai/providers/pi-native-server": bundledPiAiProvidersPiNativeServer as unknown as Readonly<
|
|
1184
|
+
Record<string, unknown>
|
|
1185
|
+
>,
|
|
1186
|
+
"@oh-my-pi-zen/pi-ai/providers/register-builtins": bundledPiAiProvidersRegisterBuiltins as unknown as Readonly<
|
|
1187
|
+
Record<string, unknown>
|
|
1188
|
+
>,
|
|
1189
|
+
"@oh-my-pi-zen/pi-ai/providers/synthetic": bundledPiAiProvidersSynthetic as unknown as Readonly<Record<string, unknown>>,
|
|
1190
|
+
"@oh-my-pi-zen/pi-ai/providers/transform-messages": bundledPiAiProvidersTransformMessages as unknown as Readonly<
|
|
1191
|
+
Record<string, unknown>
|
|
1192
|
+
>,
|
|
1193
|
+
"@oh-my-pi-zen/pi-ai/providers/vision-guard": bundledPiAiProvidersVisionGuard as unknown as Readonly<
|
|
1194
|
+
Record<string, unknown>
|
|
1195
|
+
>,
|
|
1196
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-codex/request-transformer":
|
|
1197
|
+
bundledPiAiProvidersOpenaiCodexRequestTransformer as unknown as Readonly<Record<string, unknown>>,
|
|
1198
|
+
"@oh-my-pi-zen/pi-ai/providers/openai-codex/response-handler":
|
|
1199
|
+
bundledPiAiProvidersOpenaiCodexResponseHandler as unknown as Readonly<Record<string, unknown>>,
|
|
1200
|
+
"@oh-my-pi-zen/pi-ai/usage/claude": bundledPiAiUsageClaude as unknown as Readonly<Record<string, unknown>>,
|
|
1201
|
+
"@oh-my-pi-zen/pi-ai/usage/gemini": bundledPiAiUsageGemini as unknown as Readonly<Record<string, unknown>>,
|
|
1202
|
+
"@oh-my-pi-zen/pi-ai/usage/github-copilot": bundledPiAiUsageGithubCopilot as unknown as Readonly<
|
|
1203
|
+
Record<string, unknown>
|
|
1204
|
+
>,
|
|
1205
|
+
"@oh-my-pi-zen/pi-ai/usage/google-antigravity": bundledPiAiUsageGoogleAntigravity as unknown as Readonly<
|
|
1206
|
+
Record<string, unknown>
|
|
1207
|
+
>,
|
|
1208
|
+
"@oh-my-pi-zen/pi-ai/usage/kimi": bundledPiAiUsageKimi as unknown as Readonly<Record<string, unknown>>,
|
|
1209
|
+
"@oh-my-pi-zen/pi-ai/usage/minimax-code": bundledPiAiUsageMinimaxCode as unknown as Readonly<Record<string, unknown>>,
|
|
1210
|
+
"@oh-my-pi-zen/pi-ai/usage/ollama": bundledPiAiUsageOllama as unknown as Readonly<Record<string, unknown>>,
|
|
1211
|
+
"@oh-my-pi-zen/pi-ai/usage/openai-codex-base-url": bundledPiAiUsageOpenaiCodexBaseUrl as unknown as Readonly<
|
|
1212
|
+
Record<string, unknown>
|
|
1213
|
+
>,
|
|
1214
|
+
"@oh-my-pi-zen/pi-ai/usage/openai-codex-reset": bundledPiAiUsageOpenaiCodexReset as unknown as Readonly<
|
|
1215
|
+
Record<string, unknown>
|
|
1216
|
+
>,
|
|
1217
|
+
"@oh-my-pi-zen/pi-ai/usage/openai-codex": bundledPiAiUsageOpenaiCodex as unknown as Readonly<Record<string, unknown>>,
|
|
1218
|
+
"@oh-my-pi-zen/pi-ai/usage/opencode-go": bundledPiAiUsageOpencodeGo as unknown as Readonly<Record<string, unknown>>,
|
|
1219
|
+
"@oh-my-pi-zen/pi-ai/usage/shared": bundledPiAiUsageShared as unknown as Readonly<Record<string, unknown>>,
|
|
1220
|
+
"@oh-my-pi-zen/pi-ai/usage/zai": bundledPiAiUsageZai as unknown as Readonly<Record<string, unknown>>,
|
|
1221
|
+
"@oh-my-pi-zen/pi-ai/utils/abort": bundledPiAiUtilsAbort as unknown as Readonly<Record<string, unknown>>,
|
|
1222
|
+
"@oh-my-pi-zen/pi-ai/utils/anthropic-auth": bundledPiAiUtilsAnthropicAuth as unknown as Readonly<
|
|
1223
|
+
Record<string, unknown>
|
|
1224
|
+
>,
|
|
1225
|
+
"@oh-my-pi-zen/pi-ai/utils/block-symbols": bundledPiAiUtilsBlockSymbols as unknown as Readonly<Record<string, unknown>>,
|
|
1226
|
+
"@oh-my-pi-zen/pi-ai/utils/deterministic-id": bundledPiAiUtilsDeterministicId as unknown as Readonly<
|
|
1227
|
+
Record<string, unknown>
|
|
1228
|
+
>,
|
|
1229
|
+
"@oh-my-pi-zen/pi-ai/utils/empty-completion-retry": bundledPiAiUtilsEmptyCompletionRetry as unknown as Readonly<
|
|
1230
|
+
Record<string, unknown>
|
|
1231
|
+
>,
|
|
1232
|
+
"@oh-my-pi-zen/pi-ai/utils/event-stream": bundledPiAiUtilsEventStream as unknown as Readonly<Record<string, unknown>>,
|
|
1233
|
+
"@oh-my-pi-zen/pi-ai/utils/foundry": bundledPiAiUtilsFoundry as unknown as Readonly<Record<string, unknown>>,
|
|
1234
|
+
"@oh-my-pi-zen/pi-ai/utils/google-validation": bundledPiAiUtilsGoogleValidation as unknown as Readonly<
|
|
1235
|
+
Record<string, unknown>
|
|
1236
|
+
>,
|
|
1237
|
+
"@oh-my-pi-zen/pi-ai/utils/http-inspector": bundledPiAiUtilsHttpInspector as unknown as Readonly<
|
|
1238
|
+
Record<string, unknown>
|
|
1239
|
+
>,
|
|
1240
|
+
"@oh-my-pi-zen/pi-ai/utils/idle-iterator": bundledPiAiUtilsIdleIterator as unknown as Readonly<Record<string, unknown>>,
|
|
1241
|
+
"@oh-my-pi-zen/pi-ai/utils/openai-http": bundledPiAiUtilsOpenaiHttp as unknown as Readonly<Record<string, unknown>>,
|
|
1242
|
+
"@oh-my-pi-zen/pi-ai/utils/openrouter-headers": bundledPiAiUtilsOpenrouterHeaders as unknown as Readonly<
|
|
1243
|
+
Record<string, unknown>
|
|
1244
|
+
>,
|
|
1245
|
+
"@oh-my-pi-zen/pi-ai/utils/parse-bind": bundledPiAiUtilsParseBind as unknown as Readonly<Record<string, unknown>>,
|
|
1246
|
+
"@oh-my-pi-zen/pi-ai/utils/provider-response": bundledPiAiUtilsProviderResponse as unknown as Readonly<
|
|
1247
|
+
Record<string, unknown>
|
|
1248
|
+
>,
|
|
1249
|
+
"@oh-my-pi-zen/pi-ai/utils/proxy": bundledPiAiUtilsProxy as unknown as Readonly<Record<string, unknown>>,
|
|
1250
|
+
"@oh-my-pi-zen/pi-ai/utils/request-debug": bundledPiAiUtilsRequestDebug as unknown as Readonly<Record<string, unknown>>,
|
|
1251
|
+
"@oh-my-pi-zen/pi-ai/utils/retry-after": bundledPiAiUtilsRetryAfter as unknown as Readonly<Record<string, unknown>>,
|
|
1252
|
+
"@oh-my-pi-zen/pi-ai/utils/retry": bundledPiAiUtilsRetry as unknown as Readonly<Record<string, unknown>>,
|
|
1253
|
+
"@oh-my-pi-zen/pi-ai/utils/sdk-stream-timeout": bundledPiAiUtilsSdkStreamTimeout as unknown as Readonly<
|
|
1254
|
+
Record<string, unknown>
|
|
1255
|
+
>,
|
|
1256
|
+
"@oh-my-pi-zen/pi-ai/utils/sse-debug": bundledPiAiUtilsSseDebug as unknown as Readonly<Record<string, unknown>>,
|
|
1257
|
+
"@oh-my-pi-zen/pi-ai/utils/stream-markup-healing": bundledPiAiUtilsStreamMarkupHealing as unknown as Readonly<
|
|
1258
|
+
Record<string, unknown>
|
|
1259
|
+
>,
|
|
1260
|
+
"@oh-my-pi-zen/pi-ai/utils/thinking-loop": bundledPiAiUtilsThinkingLoop as unknown as Readonly<Record<string, unknown>>,
|
|
1261
|
+
"@oh-my-pi-zen/pi-ai/utils/tool-choice": bundledPiAiUtilsToolChoice as unknown as Readonly<Record<string, unknown>>,
|
|
1262
|
+
"@oh-my-pi-zen/pi-ai/utils/validation": bundledPiAiUtilsValidation as unknown as Readonly<Record<string, unknown>>,
|
|
1263
|
+
"@oh-my-pi-zen/pi-ai/oauth/anthropic": bundledPiAiOauthAnthropic as unknown as Readonly<Record<string, unknown>>,
|
|
1264
|
+
"@oh-my-pi-zen/pi-ai/oauth/callback-server": bundledPiAiOauthCallbackServer as unknown as Readonly<
|
|
1265
|
+
Record<string, unknown>
|
|
1266
|
+
>,
|
|
1267
|
+
"@oh-my-pi-zen/pi-ai/oauth/cursor": bundledPiAiOauthCursor as unknown as Readonly<Record<string, unknown>>,
|
|
1268
|
+
"@oh-my-pi-zen/pi-ai/oauth/devin": bundledPiAiOauthDevin as unknown as Readonly<Record<string, unknown>>,
|
|
1269
|
+
"@oh-my-pi-zen/pi-ai/oauth/github-copilot": bundledPiAiOauthGithubCopilot as unknown as Readonly<
|
|
1270
|
+
Record<string, unknown>
|
|
1271
|
+
>,
|
|
1272
|
+
"@oh-my-pi-zen/pi-ai/oauth/gitlab-duo-workflow": bundledPiAiOauthGitlabDuoWorkflow as unknown as Readonly<
|
|
1273
|
+
Record<string, unknown>
|
|
1274
|
+
>,
|
|
1275
|
+
"@oh-my-pi-zen/pi-ai/oauth/gitlab-duo": bundledPiAiOauthGitlabDuo as unknown as Readonly<Record<string, unknown>>,
|
|
1276
|
+
"@oh-my-pi-zen/pi-ai/oauth/google-antigravity": bundledPiAiOauthGoogleAntigravity as unknown as Readonly<
|
|
1277
|
+
Record<string, unknown>
|
|
1278
|
+
>,
|
|
1279
|
+
"@oh-my-pi-zen/pi-ai/oauth/google-gemini-cli": bundledPiAiOauthGoogleGeminiCli as unknown as Readonly<
|
|
1280
|
+
Record<string, unknown>
|
|
1281
|
+
>,
|
|
1282
|
+
"@oh-my-pi-zen/pi-ai/oauth/google-oauth-shared": bundledPiAiOauthGoogleOauthShared as unknown as Readonly<
|
|
1283
|
+
Record<string, unknown>
|
|
1284
|
+
>,
|
|
1285
|
+
"@oh-my-pi-zen/pi-ai/oauth/kimi": bundledPiAiOauthKimi as unknown as Readonly<Record<string, unknown>>,
|
|
1286
|
+
"@oh-my-pi-zen/pi-ai/oauth/minimax-code": bundledPiAiOauthMinimaxCode as unknown as Readonly<Record<string, unknown>>,
|
|
1287
|
+
"@oh-my-pi-zen/pi-ai/oauth/openai-codex": bundledPiAiOauthOpenaiCodex as unknown as Readonly<Record<string, unknown>>,
|
|
1288
|
+
"@oh-my-pi-zen/pi-ai/oauth/opencode": bundledPiAiOauthOpencode as unknown as Readonly<Record<string, unknown>>,
|
|
1289
|
+
"@oh-my-pi-zen/pi-ai/oauth/perplexity": bundledPiAiOauthPerplexity as unknown as Readonly<Record<string, unknown>>,
|
|
1290
|
+
"@oh-my-pi-zen/pi-ai/oauth/pkce": bundledPiAiOauthPkce as unknown as Readonly<Record<string, unknown>>,
|
|
1291
|
+
"@oh-my-pi-zen/pi-ai/oauth/types": bundledPiAiOauthTypes as unknown as Readonly<Record<string, unknown>>,
|
|
1292
|
+
"@oh-my-pi-zen/pi-ai/oauth/wafer": bundledPiAiOauthWafer as unknown as Readonly<Record<string, unknown>>,
|
|
1293
|
+
"@oh-my-pi-zen/pi-ai/oauth/xai-oauth": bundledPiAiOauthXaiOauth as unknown as Readonly<Record<string, unknown>>,
|
|
1294
|
+
"@oh-my-pi-zen/pi-ai/oauth/xiaomi": bundledPiAiOauthXiaomi as unknown as Readonly<Record<string, unknown>>,
|
|
1295
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/adapt": bundledPiAiUtilsSchemaAdapt as unknown as Readonly<Record<string, unknown>>,
|
|
1296
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/compatibility": bundledPiAiUtilsSchemaCompatibility as unknown as Readonly<
|
|
1297
|
+
Record<string, unknown>
|
|
1298
|
+
>,
|
|
1299
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/dereference": bundledPiAiUtilsSchemaDereference as unknown as Readonly<
|
|
1300
|
+
Record<string, unknown>
|
|
1301
|
+
>,
|
|
1302
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/draft": bundledPiAiUtilsSchemaDraft as unknown as Readonly<Record<string, unknown>>,
|
|
1303
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/equality": bundledPiAiUtilsSchemaEquality as unknown as Readonly<
|
|
1304
|
+
Record<string, unknown>
|
|
1305
|
+
>,
|
|
1306
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/fields": bundledPiAiUtilsSchemaFields as unknown as Readonly<Record<string, unknown>>,
|
|
1307
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/json-schema-validator":
|
|
1308
|
+
bundledPiAiUtilsSchemaJsonSchemaValidator as unknown as Readonly<Record<string, unknown>>,
|
|
1309
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/meta-validator": bundledPiAiUtilsSchemaMetaValidator as unknown as Readonly<
|
|
1310
|
+
Record<string, unknown>
|
|
1311
|
+
>,
|
|
1312
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/normalize": bundledPiAiUtilsSchemaNormalize as unknown as Readonly<
|
|
1313
|
+
Record<string, unknown>
|
|
1314
|
+
>,
|
|
1315
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/spill": bundledPiAiUtilsSchemaSpill as unknown as Readonly<Record<string, unknown>>,
|
|
1316
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/stamps": bundledPiAiUtilsSchemaStamps as unknown as Readonly<Record<string, unknown>>,
|
|
1317
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/strict-tool-validation":
|
|
1318
|
+
bundledPiAiUtilsSchemaStrictToolValidation as unknown as Readonly<Record<string, unknown>>,
|
|
1319
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/types": bundledPiAiUtilsSchemaTypes as unknown as Readonly<Record<string, unknown>>,
|
|
1320
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/typescript": bundledPiAiUtilsSchemaTypescript as unknown as Readonly<
|
|
1321
|
+
Record<string, unknown>
|
|
1322
|
+
>,
|
|
1323
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/wire": bundledPiAiUtilsSchemaWire as unknown as Readonly<Record<string, unknown>>,
|
|
1324
|
+
"@oh-my-pi-zen/pi-ai/utils/schema/zod-decontaminate": bundledPiAiUtilsSchemaZodDecontaminate as unknown as Readonly<
|
|
1325
|
+
Record<string, unknown>
|
|
1326
|
+
>,
|
|
1327
|
+
"@oh-my-pi-zen/pi-coding-agent": bundledPiCodingAgent as unknown as Readonly<Record<string, unknown>>,
|
|
1328
|
+
"@oh-my-pi-zen/pi-coding-agent/async": bundledPiCodingAgentAsync as unknown as Readonly<Record<string, unknown>>,
|
|
1329
|
+
"@oh-my-pi-zen/pi-coding-agent/autoresearch": bundledPiCodingAgentAutoresearch as unknown as Readonly<
|
|
1330
|
+
Record<string, unknown>
|
|
1331
|
+
>,
|
|
1332
|
+
"@oh-my-pi-zen/pi-coding-agent/capability": bundledPiCodingAgentCapability as unknown as Readonly<
|
|
1333
|
+
Record<string, unknown>
|
|
1334
|
+
>,
|
|
1335
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures": bundledPiCodingAgentCliGalleryFixtures as unknown as Readonly<
|
|
1336
|
+
Record<string, unknown>
|
|
1337
|
+
>,
|
|
1338
|
+
"@oh-my-pi-zen/pi-coding-agent/commit": bundledPiCodingAgentCommit as unknown as Readonly<Record<string, unknown>>,
|
|
1339
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic": bundledPiCodingAgentCommitAgentic as unknown as Readonly<
|
|
1340
|
+
Record<string, unknown>
|
|
1341
|
+
>,
|
|
1342
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools": bundledPiCodingAgentCommitAgenticTools as unknown as Readonly<
|
|
1343
|
+
Record<string, unknown>
|
|
1344
|
+
>,
|
|
1345
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/analysis": bundledPiCodingAgentCommitAnalysis as unknown as Readonly<
|
|
1346
|
+
Record<string, unknown>
|
|
1347
|
+
>,
|
|
1348
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/changelog": bundledPiCodingAgentCommitChangelog as unknown as Readonly<
|
|
1349
|
+
Record<string, unknown>
|
|
1350
|
+
>,
|
|
1351
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/map-reduce": bundledPiCodingAgentCommitMapReduce as unknown as Readonly<
|
|
1352
|
+
Record<string, unknown>
|
|
1353
|
+
>,
|
|
1354
|
+
"@oh-my-pi-zen/pi-coding-agent/dap": bundledPiCodingAgentDap as unknown as Readonly<Record<string, unknown>>,
|
|
1355
|
+
"@oh-my-pi-zen/pi-coding-agent/debug": bundledPiCodingAgentDebug as unknown as Readonly<Record<string, unknown>>,
|
|
1356
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery": bundledPiCodingAgentDiscovery as unknown as Readonly<Record<string, unknown>>,
|
|
1357
|
+
"@oh-my-pi-zen/pi-coding-agent/edit": bundledPiCodingAgentEdit as unknown as Readonly<Record<string, unknown>>,
|
|
1358
|
+
"@oh-my-pi-zen/pi-coding-agent/exa": bundledPiCodingAgentExa as unknown as Readonly<Record<string, unknown>>,
|
|
1359
|
+
"@oh-my-pi-zen/pi-coding-agent/export/html": bundledPiCodingAgentExportHtml as unknown as Readonly<
|
|
1360
|
+
Record<string, unknown>
|
|
1361
|
+
>,
|
|
1362
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/custom-commands":
|
|
1363
|
+
bundledPiCodingAgentExtensibilityCustomCommands as unknown as Readonly<Record<string, unknown>>,
|
|
1364
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/custom-commands/bundled/ci-green":
|
|
1365
|
+
bundledPiCodingAgentExtensibilityCustomCommandsBundledCiGreen as unknown as Readonly<Record<string, unknown>>,
|
|
1366
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/custom-commands/bundled/review":
|
|
1367
|
+
bundledPiCodingAgentExtensibilityCustomCommandsBundledReview as unknown as Readonly<Record<string, unknown>>,
|
|
1368
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/custom-tools":
|
|
1369
|
+
bundledPiCodingAgentExtensibilityCustomTools as unknown as Readonly<Record<string, unknown>>,
|
|
1370
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/extensions":
|
|
1371
|
+
bundledPiCodingAgentExtensibilityExtensions as unknown as Readonly<Record<string, unknown>>,
|
|
1372
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/hooks": bundledPiCodingAgentExtensibilityHooks as unknown as Readonly<
|
|
1373
|
+
Record<string, unknown>
|
|
1374
|
+
>,
|
|
1375
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins": bundledPiCodingAgentExtensibilityPlugins as unknown as Readonly<
|
|
1376
|
+
Record<string, unknown>
|
|
1377
|
+
>,
|
|
1378
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace":
|
|
1379
|
+
bundledPiCodingAgentExtensibilityPluginsMarketplace as unknown as Readonly<Record<string, unknown>>,
|
|
1380
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls": bundledPiCodingAgentInternalUrls as unknown as Readonly<
|
|
1381
|
+
Record<string, unknown>
|
|
1382
|
+
>,
|
|
1383
|
+
"@oh-my-pi-zen/pi-coding-agent/eval": bundledPiCodingAgentEval as unknown as Readonly<Record<string, unknown>>,
|
|
1384
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp": bundledPiCodingAgentLsp as unknown as Readonly<Record<string, unknown>>,
|
|
1385
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/clients": bundledPiCodingAgentLspClients as unknown as Readonly<
|
|
1386
|
+
Record<string, unknown>
|
|
1387
|
+
>,
|
|
1388
|
+
"@oh-my-pi-zen/pi-coding-agent/markit": bundledPiCodingAgentMarkit as unknown as Readonly<Record<string, unknown>>,
|
|
1389
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp": bundledPiCodingAgentMcp as unknown as Readonly<Record<string, unknown>>,
|
|
1390
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/transports": bundledPiCodingAgentMcpTransports as unknown as Readonly<
|
|
1391
|
+
Record<string, unknown>
|
|
1392
|
+
>,
|
|
1393
|
+
"@oh-my-pi-zen/pi-coding-agent/memories": bundledPiCodingAgentMemories as unknown as Readonly<Record<string, unknown>>,
|
|
1394
|
+
"@oh-my-pi-zen/pi-coding-agent/memory-backend": bundledPiCodingAgentMemoryBackend as unknown as Readonly<
|
|
1395
|
+
Record<string, unknown>
|
|
1396
|
+
>,
|
|
1397
|
+
"@oh-my-pi-zen/pi-coding-agent/hindsight": bundledPiCodingAgentHindsight as unknown as Readonly<Record<string, unknown>>,
|
|
1398
|
+
"@oh-my-pi-zen/pi-coding-agent/modes": bundledPiCodingAgentModes as unknown as Readonly<Record<string, unknown>>,
|
|
1399
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/acp": bundledPiCodingAgentModesAcp as unknown as Readonly<Record<string, unknown>>,
|
|
1400
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components": bundledPiCodingAgentModesComponents as unknown as Readonly<
|
|
1401
|
+
Record<string, unknown>
|
|
1402
|
+
>,
|
|
1403
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/extensions":
|
|
1404
|
+
bundledPiCodingAgentModesComponentsExtensions as unknown as Readonly<Record<string, unknown>>,
|
|
1405
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/status-line":
|
|
1406
|
+
bundledPiCodingAgentModesComponentsStatusLine as unknown as Readonly<Record<string, unknown>>,
|
|
1407
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/setup-wizard": bundledPiCodingAgentModesSetupWizard as unknown as Readonly<
|
|
1408
|
+
Record<string, unknown>
|
|
1409
|
+
>,
|
|
1410
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/theme/defaults": bundledPiCodingAgentModesThemeDefaults as unknown as Readonly<
|
|
1411
|
+
Record<string, unknown>
|
|
1412
|
+
>,
|
|
1413
|
+
"@oh-my-pi-zen/pi-coding-agent/secrets": bundledPiCodingAgentSecrets as unknown as Readonly<Record<string, unknown>>,
|
|
1414
|
+
"@oh-my-pi-zen/pi-coding-agent/stt": bundledPiCodingAgentStt as unknown as Readonly<Record<string, unknown>>,
|
|
1415
|
+
"@oh-my-pi-zen/pi-coding-agent/task": bundledPiCodingAgentTask as unknown as Readonly<Record<string, unknown>>,
|
|
1416
|
+
"@oh-my-pi-zen/pi-coding-agent/tools": bundledPiCodingAgentTools as unknown as Readonly<Record<string, unknown>>,
|
|
1417
|
+
"@oh-my-pi-zen/pi-coding-agent/tui": bundledPiCodingAgentTui as unknown as Readonly<Record<string, unknown>>,
|
|
1418
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers": bundledPiCodingAgentWebScrapers as unknown as Readonly<
|
|
1419
|
+
Record<string, unknown>
|
|
1420
|
+
>,
|
|
1421
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search": bundledPiCodingAgentWebSearch as unknown as Readonly<
|
|
1422
|
+
Record<string, unknown>
|
|
1423
|
+
>,
|
|
1424
|
+
"@oh-my-pi-zen/pi-coding-agent/async/job-manager": bundledPiCodingAgentAsyncJobManager as unknown as Readonly<
|
|
1425
|
+
Record<string, unknown>
|
|
1426
|
+
>,
|
|
1427
|
+
"@oh-my-pi-zen/pi-coding-agent/autoresearch/dashboard": bundledPiCodingAgentAutoresearchDashboard as unknown as Readonly<
|
|
1428
|
+
Record<string, unknown>
|
|
1429
|
+
>,
|
|
1430
|
+
"@oh-my-pi-zen/pi-coding-agent/autoresearch/git": bundledPiCodingAgentAutoresearchGit as unknown as Readonly<
|
|
1431
|
+
Record<string, unknown>
|
|
1432
|
+
>,
|
|
1433
|
+
"@oh-my-pi-zen/pi-coding-agent/autoresearch/helpers": bundledPiCodingAgentAutoresearchHelpers as unknown as Readonly<
|
|
1434
|
+
Record<string, unknown>
|
|
1435
|
+
>,
|
|
1436
|
+
"@oh-my-pi-zen/pi-coding-agent/autoresearch/state": bundledPiCodingAgentAutoresearchState as unknown as Readonly<
|
|
1437
|
+
Record<string, unknown>
|
|
1438
|
+
>,
|
|
1439
|
+
"@oh-my-pi-zen/pi-coding-agent/autoresearch/storage": bundledPiCodingAgentAutoresearchStorage as unknown as Readonly<
|
|
1440
|
+
Record<string, unknown>
|
|
1441
|
+
>,
|
|
1442
|
+
"@oh-my-pi-zen/pi-coding-agent/autoresearch/types": bundledPiCodingAgentAutoresearchTypes as unknown as Readonly<
|
|
1443
|
+
Record<string, unknown>
|
|
1444
|
+
>,
|
|
1445
|
+
"@oh-my-pi-zen/pi-coding-agent/autoresearch/tools/init-experiment":
|
|
1446
|
+
bundledPiCodingAgentAutoresearchToolsInitExperiment as unknown as Readonly<Record<string, unknown>>,
|
|
1447
|
+
"@oh-my-pi-zen/pi-coding-agent/autoresearch/tools/log-experiment":
|
|
1448
|
+
bundledPiCodingAgentAutoresearchToolsLogExperiment as unknown as Readonly<Record<string, unknown>>,
|
|
1449
|
+
"@oh-my-pi-zen/pi-coding-agent/autoresearch/tools/run-experiment":
|
|
1450
|
+
bundledPiCodingAgentAutoresearchToolsRunExperiment as unknown as Readonly<Record<string, unknown>>,
|
|
1451
|
+
"@oh-my-pi-zen/pi-coding-agent/autoresearch/tools/update-notes":
|
|
1452
|
+
bundledPiCodingAgentAutoresearchToolsUpdateNotes as unknown as Readonly<Record<string, unknown>>,
|
|
1453
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/context-file":
|
|
1454
|
+
bundledPiCodingAgentCapabilityContextFile as unknown as Readonly<Record<string, unknown>>,
|
|
1455
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/extension-module":
|
|
1456
|
+
bundledPiCodingAgentCapabilityExtensionModule as unknown as Readonly<Record<string, unknown>>,
|
|
1457
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/extension": bundledPiCodingAgentCapabilityExtension as unknown as Readonly<
|
|
1458
|
+
Record<string, unknown>
|
|
1459
|
+
>,
|
|
1460
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/fs": bundledPiCodingAgentCapabilityFs as unknown as Readonly<
|
|
1461
|
+
Record<string, unknown>
|
|
1462
|
+
>,
|
|
1463
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/hook": bundledPiCodingAgentCapabilityHook as unknown as Readonly<
|
|
1464
|
+
Record<string, unknown>
|
|
1465
|
+
>,
|
|
1466
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/instruction": bundledPiCodingAgentCapabilityInstruction as unknown as Readonly<
|
|
1467
|
+
Record<string, unknown>
|
|
1468
|
+
>,
|
|
1469
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/mcp": bundledPiCodingAgentCapabilityMcp as unknown as Readonly<
|
|
1470
|
+
Record<string, unknown>
|
|
1471
|
+
>,
|
|
1472
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/prompt": bundledPiCodingAgentCapabilityPrompt as unknown as Readonly<
|
|
1473
|
+
Record<string, unknown>
|
|
1474
|
+
>,
|
|
1475
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/rule-buckets":
|
|
1476
|
+
bundledPiCodingAgentCapabilityRuleBuckets as unknown as Readonly<Record<string, unknown>>,
|
|
1477
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/rule": bundledPiCodingAgentCapabilityRule as unknown as Readonly<
|
|
1478
|
+
Record<string, unknown>
|
|
1479
|
+
>,
|
|
1480
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/settings": bundledPiCodingAgentCapabilitySettings as unknown as Readonly<
|
|
1481
|
+
Record<string, unknown>
|
|
1482
|
+
>,
|
|
1483
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/skill": bundledPiCodingAgentCapabilitySkill as unknown as Readonly<
|
|
1484
|
+
Record<string, unknown>
|
|
1485
|
+
>,
|
|
1486
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/slash-command":
|
|
1487
|
+
bundledPiCodingAgentCapabilitySlashCommand as unknown as Readonly<Record<string, unknown>>,
|
|
1488
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/ssh": bundledPiCodingAgentCapabilitySsh as unknown as Readonly<
|
|
1489
|
+
Record<string, unknown>
|
|
1490
|
+
>,
|
|
1491
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/system-prompt":
|
|
1492
|
+
bundledPiCodingAgentCapabilitySystemPrompt as unknown as Readonly<Record<string, unknown>>,
|
|
1493
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/tool": bundledPiCodingAgentCapabilityTool as unknown as Readonly<
|
|
1494
|
+
Record<string, unknown>
|
|
1495
|
+
>,
|
|
1496
|
+
"@oh-my-pi-zen/pi-coding-agent/capability/types": bundledPiCodingAgentCapabilityTypes as unknown as Readonly<
|
|
1497
|
+
Record<string, unknown>
|
|
1498
|
+
>,
|
|
1499
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/agents-cli": bundledPiCodingAgentCliAgentsCli as unknown as Readonly<
|
|
1500
|
+
Record<string, unknown>
|
|
1501
|
+
>,
|
|
1502
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/args": bundledPiCodingAgentCliArgs as unknown as Readonly<Record<string, unknown>>,
|
|
1503
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/auth-broker-cli": bundledPiCodingAgentCliAuthBrokerCli as unknown as Readonly<
|
|
1504
|
+
Record<string, unknown>
|
|
1505
|
+
>,
|
|
1506
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/auth-gateway-cli": bundledPiCodingAgentCliAuthGatewayCli as unknown as Readonly<
|
|
1507
|
+
Record<string, unknown>
|
|
1508
|
+
>,
|
|
1509
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/bench-cli": bundledPiCodingAgentCliBenchCli as unknown as Readonly<
|
|
1510
|
+
Record<string, unknown>
|
|
1511
|
+
>,
|
|
1512
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/classify-install-target":
|
|
1513
|
+
bundledPiCodingAgentCliClassifyInstallTarget as unknown as Readonly<Record<string, unknown>>,
|
|
1514
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/claude-trace-cli": bundledPiCodingAgentCliClaudeTraceCli as unknown as Readonly<
|
|
1515
|
+
Record<string, unknown>
|
|
1516
|
+
>,
|
|
1517
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/completion-gen": bundledPiCodingAgentCliCompletionGen as unknown as Readonly<
|
|
1518
|
+
Record<string, unknown>
|
|
1519
|
+
>,
|
|
1520
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/config-cli": bundledPiCodingAgentCliConfigCli as unknown as Readonly<
|
|
1521
|
+
Record<string, unknown>
|
|
1522
|
+
>,
|
|
1523
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/dry-balance-cli": bundledPiCodingAgentCliDryBalanceCli as unknown as Readonly<
|
|
1524
|
+
Record<string, unknown>
|
|
1525
|
+
>,
|
|
1526
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/extension-flags": bundledPiCodingAgentCliExtensionFlags as unknown as Readonly<
|
|
1527
|
+
Record<string, unknown>
|
|
1528
|
+
>,
|
|
1529
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/file-processor": bundledPiCodingAgentCliFileProcessor as unknown as Readonly<
|
|
1530
|
+
Record<string, unknown>
|
|
1531
|
+
>,
|
|
1532
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/flag-tables": bundledPiCodingAgentCliFlagTables as unknown as Readonly<
|
|
1533
|
+
Record<string, unknown>
|
|
1534
|
+
>,
|
|
1535
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-cli": bundledPiCodingAgentCliGalleryCli as unknown as Readonly<
|
|
1536
|
+
Record<string, unknown>
|
|
1537
|
+
>,
|
|
1538
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-screenshot": bundledPiCodingAgentCliGalleryScreenshot as unknown as Readonly<
|
|
1539
|
+
Record<string, unknown>
|
|
1540
|
+
>,
|
|
1541
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gc-cli": bundledPiCodingAgentCliGcCli as unknown as Readonly<Record<string, unknown>>,
|
|
1542
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/grep-cli": bundledPiCodingAgentCliGrepCli as unknown as Readonly<
|
|
1543
|
+
Record<string, unknown>
|
|
1544
|
+
>,
|
|
1545
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/grievances-cli": bundledPiCodingAgentCliGrievancesCli as unknown as Readonly<
|
|
1546
|
+
Record<string, unknown>
|
|
1547
|
+
>,
|
|
1548
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/initial-message": bundledPiCodingAgentCliInitialMessage as unknown as Readonly<
|
|
1549
|
+
Record<string, unknown>
|
|
1550
|
+
>,
|
|
1551
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/models-cli": bundledPiCodingAgentCliModelsCli as unknown as Readonly<
|
|
1552
|
+
Record<string, unknown>
|
|
1553
|
+
>,
|
|
1554
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/plugin-cli": bundledPiCodingAgentCliPluginCli as unknown as Readonly<
|
|
1555
|
+
Record<string, unknown>
|
|
1556
|
+
>,
|
|
1557
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/profile-alias": bundledPiCodingAgentCliProfileAlias as unknown as Readonly<
|
|
1558
|
+
Record<string, unknown>
|
|
1559
|
+
>,
|
|
1560
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/profile-bootstrap": bundledPiCodingAgentCliProfileBootstrap as unknown as Readonly<
|
|
1561
|
+
Record<string, unknown>
|
|
1562
|
+
>,
|
|
1563
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/read-cli": bundledPiCodingAgentCliReadCli as unknown as Readonly<
|
|
1564
|
+
Record<string, unknown>
|
|
1565
|
+
>,
|
|
1566
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/session-picker": bundledPiCodingAgentCliSessionPicker as unknown as Readonly<
|
|
1567
|
+
Record<string, unknown>
|
|
1568
|
+
>,
|
|
1569
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/setup-cli": bundledPiCodingAgentCliSetupCli as unknown as Readonly<
|
|
1570
|
+
Record<string, unknown>
|
|
1571
|
+
>,
|
|
1572
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/setup-model-picker": bundledPiCodingAgentCliSetupModelPicker as unknown as Readonly<
|
|
1573
|
+
Record<string, unknown>
|
|
1574
|
+
>,
|
|
1575
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/shell-cli": bundledPiCodingAgentCliShellCli as unknown as Readonly<
|
|
1576
|
+
Record<string, unknown>
|
|
1577
|
+
>,
|
|
1578
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/ssh-cli": bundledPiCodingAgentCliSshCli as unknown as Readonly<
|
|
1579
|
+
Record<string, unknown>
|
|
1580
|
+
>,
|
|
1581
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/startup-cwd": bundledPiCodingAgentCliStartupCwd as unknown as Readonly<
|
|
1582
|
+
Record<string, unknown>
|
|
1583
|
+
>,
|
|
1584
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/stats-cli": bundledPiCodingAgentCliStatsCli as unknown as Readonly<
|
|
1585
|
+
Record<string, unknown>
|
|
1586
|
+
>,
|
|
1587
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/tiny-models-cli": bundledPiCodingAgentCliTinyModelsCli as unknown as Readonly<
|
|
1588
|
+
Record<string, unknown>
|
|
1589
|
+
>,
|
|
1590
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/ttsr-cli": bundledPiCodingAgentCliTtsrCli as unknown as Readonly<
|
|
1591
|
+
Record<string, unknown>
|
|
1592
|
+
>,
|
|
1593
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/update-cli": bundledPiCodingAgentCliUpdateCli as unknown as Readonly<
|
|
1594
|
+
Record<string, unknown>
|
|
1595
|
+
>,
|
|
1596
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/usage-cli": bundledPiCodingAgentCliUsageCli as unknown as Readonly<
|
|
1597
|
+
Record<string, unknown>
|
|
1598
|
+
>,
|
|
1599
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/web-search-cli": bundledPiCodingAgentCliWebSearchCli as unknown as Readonly<
|
|
1600
|
+
Record<string, unknown>
|
|
1601
|
+
>,
|
|
1602
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/worktree-cli": bundledPiCodingAgentCliWorktreeCli as unknown as Readonly<
|
|
1603
|
+
Record<string, unknown>
|
|
1604
|
+
>,
|
|
1605
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/agentic":
|
|
1606
|
+
bundledPiCodingAgentCliGalleryFixturesAgentic as unknown as Readonly<Record<string, unknown>>,
|
|
1607
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/codeintel":
|
|
1608
|
+
bundledPiCodingAgentCliGalleryFixturesCodeintel as unknown as Readonly<Record<string, unknown>>,
|
|
1609
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/edit":
|
|
1610
|
+
bundledPiCodingAgentCliGalleryFixturesEdit as unknown as Readonly<Record<string, unknown>>,
|
|
1611
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/fs": bundledPiCodingAgentCliGalleryFixturesFs as unknown as Readonly<
|
|
1612
|
+
Record<string, unknown>
|
|
1613
|
+
>,
|
|
1614
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/interaction":
|
|
1615
|
+
bundledPiCodingAgentCliGalleryFixturesInteraction as unknown as Readonly<Record<string, unknown>>,
|
|
1616
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/memory":
|
|
1617
|
+
bundledPiCodingAgentCliGalleryFixturesMemory as unknown as Readonly<Record<string, unknown>>,
|
|
1618
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/misc":
|
|
1619
|
+
bundledPiCodingAgentCliGalleryFixturesMisc as unknown as Readonly<Record<string, unknown>>,
|
|
1620
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/search":
|
|
1621
|
+
bundledPiCodingAgentCliGalleryFixturesSearch as unknown as Readonly<Record<string, unknown>>,
|
|
1622
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/shell":
|
|
1623
|
+
bundledPiCodingAgentCliGalleryFixturesShell as unknown as Readonly<Record<string, unknown>>,
|
|
1624
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/types":
|
|
1625
|
+
bundledPiCodingAgentCliGalleryFixturesTypes as unknown as Readonly<Record<string, unknown>>,
|
|
1626
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/gallery-fixtures/web":
|
|
1627
|
+
bundledPiCodingAgentCliGalleryFixturesWeb as unknown as Readonly<Record<string, unknown>>,
|
|
1628
|
+
"@oh-my-pi-zen/pi-coding-agent/cli/commands/init-xdg": bundledPiCodingAgentCliCommandsInitXdg as unknown as Readonly<
|
|
1629
|
+
Record<string, unknown>
|
|
1630
|
+
>,
|
|
1631
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/acp": bundledPiCodingAgentCommandsAcp as unknown as Readonly<
|
|
1632
|
+
Record<string, unknown>
|
|
1633
|
+
>,
|
|
1634
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/agents": bundledPiCodingAgentCommandsAgents as unknown as Readonly<
|
|
1635
|
+
Record<string, unknown>
|
|
1636
|
+
>,
|
|
1637
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/auth-broker": bundledPiCodingAgentCommandsAuthBroker as unknown as Readonly<
|
|
1638
|
+
Record<string, unknown>
|
|
1639
|
+
>,
|
|
1640
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/auth-gateway": bundledPiCodingAgentCommandsAuthGateway as unknown as Readonly<
|
|
1641
|
+
Record<string, unknown>
|
|
1642
|
+
>,
|
|
1643
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/bench": bundledPiCodingAgentCommandsBench as unknown as Readonly<
|
|
1644
|
+
Record<string, unknown>
|
|
1645
|
+
>,
|
|
1646
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/commit": bundledPiCodingAgentCommandsCommit as unknown as Readonly<
|
|
1647
|
+
Record<string, unknown>
|
|
1648
|
+
>,
|
|
1649
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/complete": bundledPiCodingAgentCommandsComplete as unknown as Readonly<
|
|
1650
|
+
Record<string, unknown>
|
|
1651
|
+
>,
|
|
1652
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/completions": bundledPiCodingAgentCommandsCompletions as unknown as Readonly<
|
|
1653
|
+
Record<string, unknown>
|
|
1654
|
+
>,
|
|
1655
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/config": bundledPiCodingAgentCommandsConfig as unknown as Readonly<
|
|
1656
|
+
Record<string, unknown>
|
|
1657
|
+
>,
|
|
1658
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/dry-balance": bundledPiCodingAgentCommandsDryBalance as unknown as Readonly<
|
|
1659
|
+
Record<string, unknown>
|
|
1660
|
+
>,
|
|
1661
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/gallery": bundledPiCodingAgentCommandsGallery as unknown as Readonly<
|
|
1662
|
+
Record<string, unknown>
|
|
1663
|
+
>,
|
|
1664
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/gc": bundledPiCodingAgentCommandsGc as unknown as Readonly<
|
|
1665
|
+
Record<string, unknown>
|
|
1666
|
+
>,
|
|
1667
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/grep": bundledPiCodingAgentCommandsGrep as unknown as Readonly<
|
|
1668
|
+
Record<string, unknown>
|
|
1669
|
+
>,
|
|
1670
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/grievances": bundledPiCodingAgentCommandsGrievances as unknown as Readonly<
|
|
1671
|
+
Record<string, unknown>
|
|
1672
|
+
>,
|
|
1673
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/install": bundledPiCodingAgentCommandsInstall as unknown as Readonly<
|
|
1674
|
+
Record<string, unknown>
|
|
1675
|
+
>,
|
|
1676
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/join": bundledPiCodingAgentCommandsJoin as unknown as Readonly<
|
|
1677
|
+
Record<string, unknown>
|
|
1678
|
+
>,
|
|
1679
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/launch": bundledPiCodingAgentCommandsLaunch as unknown as Readonly<
|
|
1680
|
+
Record<string, unknown>
|
|
1681
|
+
>,
|
|
1682
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/models": bundledPiCodingAgentCommandsModels as unknown as Readonly<
|
|
1683
|
+
Record<string, unknown>
|
|
1684
|
+
>,
|
|
1685
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/plugin": bundledPiCodingAgentCommandsPlugin as unknown as Readonly<
|
|
1686
|
+
Record<string, unknown>
|
|
1687
|
+
>,
|
|
1688
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/read": bundledPiCodingAgentCommandsRead as unknown as Readonly<
|
|
1689
|
+
Record<string, unknown>
|
|
1690
|
+
>,
|
|
1691
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/say": bundledPiCodingAgentCommandsSay as unknown as Readonly<
|
|
1692
|
+
Record<string, unknown>
|
|
1693
|
+
>,
|
|
1694
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/setup": bundledPiCodingAgentCommandsSetup as unknown as Readonly<
|
|
1695
|
+
Record<string, unknown>
|
|
1696
|
+
>,
|
|
1697
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/shell": bundledPiCodingAgentCommandsShell as unknown as Readonly<
|
|
1698
|
+
Record<string, unknown>
|
|
1699
|
+
>,
|
|
1700
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/ssh": bundledPiCodingAgentCommandsSsh as unknown as Readonly<
|
|
1701
|
+
Record<string, unknown>
|
|
1702
|
+
>,
|
|
1703
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/stats": bundledPiCodingAgentCommandsStats as unknown as Readonly<
|
|
1704
|
+
Record<string, unknown>
|
|
1705
|
+
>,
|
|
1706
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/tiny-models": bundledPiCodingAgentCommandsTinyModels as unknown as Readonly<
|
|
1707
|
+
Record<string, unknown>
|
|
1708
|
+
>,
|
|
1709
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/token": bundledPiCodingAgentCommandsToken as unknown as Readonly<
|
|
1710
|
+
Record<string, unknown>
|
|
1711
|
+
>,
|
|
1712
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/ttsr": bundledPiCodingAgentCommandsTtsr as unknown as Readonly<
|
|
1713
|
+
Record<string, unknown>
|
|
1714
|
+
>,
|
|
1715
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/update": bundledPiCodingAgentCommandsUpdate as unknown as Readonly<
|
|
1716
|
+
Record<string, unknown>
|
|
1717
|
+
>,
|
|
1718
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/usage": bundledPiCodingAgentCommandsUsage as unknown as Readonly<
|
|
1719
|
+
Record<string, unknown>
|
|
1720
|
+
>,
|
|
1721
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/web-search": bundledPiCodingAgentCommandsWebSearch as unknown as Readonly<
|
|
1722
|
+
Record<string, unknown>
|
|
1723
|
+
>,
|
|
1724
|
+
"@oh-my-pi-zen/pi-coding-agent/commands/worktree": bundledPiCodingAgentCommandsWorktree as unknown as Readonly<
|
|
1725
|
+
Record<string, unknown>
|
|
1726
|
+
>,
|
|
1727
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/cli": bundledPiCodingAgentCommitCli as unknown as Readonly<
|
|
1728
|
+
Record<string, unknown>
|
|
1729
|
+
>,
|
|
1730
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/message": bundledPiCodingAgentCommitMessage as unknown as Readonly<
|
|
1731
|
+
Record<string, unknown>
|
|
1732
|
+
>,
|
|
1733
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/model-selection": bundledPiCodingAgentCommitModelSelection as unknown as Readonly<
|
|
1734
|
+
Record<string, unknown>
|
|
1735
|
+
>,
|
|
1736
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/pipeline": bundledPiCodingAgentCommitPipeline as unknown as Readonly<
|
|
1737
|
+
Record<string, unknown>
|
|
1738
|
+
>,
|
|
1739
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/shared-llm": bundledPiCodingAgentCommitSharedLlm as unknown as Readonly<
|
|
1740
|
+
Record<string, unknown>
|
|
1741
|
+
>,
|
|
1742
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/types": bundledPiCodingAgentCommitTypes as unknown as Readonly<
|
|
1743
|
+
Record<string, unknown>
|
|
1744
|
+
>,
|
|
1745
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/utils": bundledPiCodingAgentCommitUtils as unknown as Readonly<
|
|
1746
|
+
Record<string, unknown>
|
|
1747
|
+
>,
|
|
1748
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/agent": bundledPiCodingAgentCommitAgenticAgent as unknown as Readonly<
|
|
1749
|
+
Record<string, unknown>
|
|
1750
|
+
>,
|
|
1751
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/fallback":
|
|
1752
|
+
bundledPiCodingAgentCommitAgenticFallback as unknown as Readonly<Record<string, unknown>>,
|
|
1753
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/state": bundledPiCodingAgentCommitAgenticState as unknown as Readonly<
|
|
1754
|
+
Record<string, unknown>
|
|
1755
|
+
>,
|
|
1756
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/topo-sort":
|
|
1757
|
+
bundledPiCodingAgentCommitAgenticTopoSort as unknown as Readonly<Record<string, unknown>>,
|
|
1758
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/trivial": bundledPiCodingAgentCommitAgenticTrivial as unknown as Readonly<
|
|
1759
|
+
Record<string, unknown>
|
|
1760
|
+
>,
|
|
1761
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/validation":
|
|
1762
|
+
bundledPiCodingAgentCommitAgenticValidation as unknown as Readonly<Record<string, unknown>>,
|
|
1763
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/analyze-file":
|
|
1764
|
+
bundledPiCodingAgentCommitAgenticToolsAnalyzeFile as unknown as Readonly<Record<string, unknown>>,
|
|
1765
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/git-file-diff":
|
|
1766
|
+
bundledPiCodingAgentCommitAgenticToolsGitFileDiff as unknown as Readonly<Record<string, unknown>>,
|
|
1767
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/git-hunk":
|
|
1768
|
+
bundledPiCodingAgentCommitAgenticToolsGitHunk as unknown as Readonly<Record<string, unknown>>,
|
|
1769
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/git-overview":
|
|
1770
|
+
bundledPiCodingAgentCommitAgenticToolsGitOverview as unknown as Readonly<Record<string, unknown>>,
|
|
1771
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/propose-changelog":
|
|
1772
|
+
bundledPiCodingAgentCommitAgenticToolsProposeChangelog as unknown as Readonly<Record<string, unknown>>,
|
|
1773
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/propose-commit":
|
|
1774
|
+
bundledPiCodingAgentCommitAgenticToolsProposeCommit as unknown as Readonly<Record<string, unknown>>,
|
|
1775
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/recent-commits":
|
|
1776
|
+
bundledPiCodingAgentCommitAgenticToolsRecentCommits as unknown as Readonly<Record<string, unknown>>,
|
|
1777
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/schemas":
|
|
1778
|
+
bundledPiCodingAgentCommitAgenticToolsSchemas as unknown as Readonly<Record<string, unknown>>,
|
|
1779
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/agentic/tools/split-commit":
|
|
1780
|
+
bundledPiCodingAgentCommitAgenticToolsSplitCommit as unknown as Readonly<Record<string, unknown>>,
|
|
1781
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/analysis/conventional":
|
|
1782
|
+
bundledPiCodingAgentCommitAnalysisConventional as unknown as Readonly<Record<string, unknown>>,
|
|
1783
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/analysis/scope": bundledPiCodingAgentCommitAnalysisScope as unknown as Readonly<
|
|
1784
|
+
Record<string, unknown>
|
|
1785
|
+
>,
|
|
1786
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/analysis/summary":
|
|
1787
|
+
bundledPiCodingAgentCommitAnalysisSummary as unknown as Readonly<Record<string, unknown>>,
|
|
1788
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/analysis/validation":
|
|
1789
|
+
bundledPiCodingAgentCommitAnalysisValidation as unknown as Readonly<Record<string, unknown>>,
|
|
1790
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/changelog/detect":
|
|
1791
|
+
bundledPiCodingAgentCommitChangelogDetect as unknown as Readonly<Record<string, unknown>>,
|
|
1792
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/changelog/generate":
|
|
1793
|
+
bundledPiCodingAgentCommitChangelogGenerate as unknown as Readonly<Record<string, unknown>>,
|
|
1794
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/changelog/parse": bundledPiCodingAgentCommitChangelogParse as unknown as Readonly<
|
|
1795
|
+
Record<string, unknown>
|
|
1796
|
+
>,
|
|
1797
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/git/diff": bundledPiCodingAgentCommitGitDiff as unknown as Readonly<
|
|
1798
|
+
Record<string, unknown>
|
|
1799
|
+
>,
|
|
1800
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/map-reduce/map-phase":
|
|
1801
|
+
bundledPiCodingAgentCommitMapReduceMapPhase as unknown as Readonly<Record<string, unknown>>,
|
|
1802
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/map-reduce/reduce-phase":
|
|
1803
|
+
bundledPiCodingAgentCommitMapReduceReducePhase as unknown as Readonly<Record<string, unknown>>,
|
|
1804
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/map-reduce/utils": bundledPiCodingAgentCommitMapReduceUtils as unknown as Readonly<
|
|
1805
|
+
Record<string, unknown>
|
|
1806
|
+
>,
|
|
1807
|
+
"@oh-my-pi-zen/pi-coding-agent/commit/utils/exclusions":
|
|
1808
|
+
bundledPiCodingAgentCommitUtilsExclusions as unknown as Readonly<Record<string, unknown>>,
|
|
1809
|
+
"@oh-my-pi-zen/pi-coding-agent/config/api-key-resolver": bundledPiCodingAgentConfigApiKeyResolver as unknown as Readonly<
|
|
1810
|
+
Record<string, unknown>
|
|
1811
|
+
>,
|
|
1812
|
+
"@oh-my-pi-zen/pi-coding-agent/config/append-only-context-mode":
|
|
1813
|
+
bundledPiCodingAgentConfigAppendOnlyContextMode as unknown as Readonly<Record<string, unknown>>,
|
|
1814
|
+
"@oh-my-pi-zen/pi-coding-agent/config/config-file": bundledPiCodingAgentConfigConfigFile as unknown as Readonly<
|
|
1815
|
+
Record<string, unknown>
|
|
1816
|
+
>,
|
|
1817
|
+
"@oh-my-pi-zen/pi-coding-agent/config/file-lock": bundledPiCodingAgentConfigFileLock as unknown as Readonly<
|
|
1818
|
+
Record<string, unknown>
|
|
1819
|
+
>,
|
|
1820
|
+
"@oh-my-pi-zen/pi-coding-agent/config/inline-tool-descriptors-mode":
|
|
1821
|
+
bundledPiCodingAgentConfigInlineToolDescriptorsMode as unknown as Readonly<Record<string, unknown>>,
|
|
1822
|
+
"@oh-my-pi-zen/pi-coding-agent/config/keybindings": bundledPiCodingAgentConfigKeybindings as unknown as Readonly<
|
|
1823
|
+
Record<string, unknown>
|
|
1824
|
+
>,
|
|
1825
|
+
"@oh-my-pi-zen/pi-coding-agent/config/model-discovery": bundledPiCodingAgentConfigModelDiscovery as unknown as Readonly<
|
|
1826
|
+
Record<string, unknown>
|
|
1827
|
+
>,
|
|
1828
|
+
"@oh-my-pi-zen/pi-coding-agent/config/model-registry": bundledPiCodingAgentConfigModelRegistry as unknown as Readonly<
|
|
1829
|
+
Record<string, unknown>
|
|
1830
|
+
>,
|
|
1831
|
+
"@oh-my-pi-zen/pi-coding-agent/config/model-resolver": bundledPiCodingAgentConfigModelResolver as unknown as Readonly<
|
|
1832
|
+
Record<string, unknown>
|
|
1833
|
+
>,
|
|
1834
|
+
"@oh-my-pi-zen/pi-coding-agent/config/model-roles": bundledPiCodingAgentConfigModelRoles as unknown as Readonly<
|
|
1835
|
+
Record<string, unknown>
|
|
1836
|
+
>,
|
|
1837
|
+
"@oh-my-pi-zen/pi-coding-agent/config/models-config-schema":
|
|
1838
|
+
bundledPiCodingAgentConfigModelsConfigSchema as unknown as Readonly<Record<string, unknown>>,
|
|
1839
|
+
"@oh-my-pi-zen/pi-coding-agent/config/models-config": bundledPiCodingAgentConfigModelsConfig as unknown as Readonly<
|
|
1840
|
+
Record<string, unknown>
|
|
1841
|
+
>,
|
|
1842
|
+
"@oh-my-pi-zen/pi-coding-agent/config/prompt-templates":
|
|
1843
|
+
bundledPiCodingAgentConfigPromptTemplates as unknown as Readonly<Record<string, unknown>>,
|
|
1844
|
+
"@oh-my-pi-zen/pi-coding-agent/config/resolve-config-value":
|
|
1845
|
+
bundledPiCodingAgentConfigResolveConfigValue as unknown as Readonly<Record<string, unknown>>,
|
|
1846
|
+
"@oh-my-pi-zen/pi-coding-agent/config/service-tier": bundledPiCodingAgentConfigServiceTier as unknown as Readonly<
|
|
1847
|
+
Record<string, unknown>
|
|
1848
|
+
>,
|
|
1849
|
+
"@oh-my-pi-zen/pi-coding-agent/config/settings-schema": bundledPiCodingAgentConfigSettingsSchema as unknown as Readonly<
|
|
1850
|
+
Record<string, unknown>
|
|
1851
|
+
>,
|
|
1852
|
+
"@oh-my-pi-zen/pi-coding-agent/config/settings": bundledPiCodingAgentConfigSettings as unknown as Readonly<
|
|
1853
|
+
Record<string, unknown>
|
|
1854
|
+
>,
|
|
1855
|
+
"@oh-my-pi-zen/pi-coding-agent/dap/client": bundledPiCodingAgentDapClient as unknown as Readonly<
|
|
1856
|
+
Record<string, unknown>
|
|
1857
|
+
>,
|
|
1858
|
+
"@oh-my-pi-zen/pi-coding-agent/dap/config": bundledPiCodingAgentDapConfig as unknown as Readonly<
|
|
1859
|
+
Record<string, unknown>
|
|
1860
|
+
>,
|
|
1861
|
+
"@oh-my-pi-zen/pi-coding-agent/dap/session": bundledPiCodingAgentDapSession as unknown as Readonly<
|
|
1862
|
+
Record<string, unknown>
|
|
1863
|
+
>,
|
|
1864
|
+
"@oh-my-pi-zen/pi-coding-agent/dap/types": bundledPiCodingAgentDapTypes as unknown as Readonly<Record<string, unknown>>,
|
|
1865
|
+
"@oh-my-pi-zen/pi-coding-agent/debug/log-formatting": bundledPiCodingAgentDebugLogFormatting as unknown as Readonly<
|
|
1866
|
+
Record<string, unknown>
|
|
1867
|
+
>,
|
|
1868
|
+
"@oh-my-pi-zen/pi-coding-agent/debug/log-viewer": bundledPiCodingAgentDebugLogViewer as unknown as Readonly<
|
|
1869
|
+
Record<string, unknown>
|
|
1870
|
+
>,
|
|
1871
|
+
"@oh-my-pi-zen/pi-coding-agent/debug/profiler": bundledPiCodingAgentDebugProfiler as unknown as Readonly<
|
|
1872
|
+
Record<string, unknown>
|
|
1873
|
+
>,
|
|
1874
|
+
"@oh-my-pi-zen/pi-coding-agent/debug/protocol-probe": bundledPiCodingAgentDebugProtocolProbe as unknown as Readonly<
|
|
1875
|
+
Record<string, unknown>
|
|
1876
|
+
>,
|
|
1877
|
+
"@oh-my-pi-zen/pi-coding-agent/debug/raw-sse-buffer": bundledPiCodingAgentDebugRawSseBuffer as unknown as Readonly<
|
|
1878
|
+
Record<string, unknown>
|
|
1879
|
+
>,
|
|
1880
|
+
"@oh-my-pi-zen/pi-coding-agent/debug/raw-sse": bundledPiCodingAgentDebugRawSse as unknown as Readonly<
|
|
1881
|
+
Record<string, unknown>
|
|
1882
|
+
>,
|
|
1883
|
+
"@oh-my-pi-zen/pi-coding-agent/debug/remote-debugger": bundledPiCodingAgentDebugRemoteDebugger as unknown as Readonly<
|
|
1884
|
+
Record<string, unknown>
|
|
1885
|
+
>,
|
|
1886
|
+
"@oh-my-pi-zen/pi-coding-agent/debug/report-bundle": bundledPiCodingAgentDebugReportBundle as unknown as Readonly<
|
|
1887
|
+
Record<string, unknown>
|
|
1888
|
+
>,
|
|
1889
|
+
"@oh-my-pi-zen/pi-coding-agent/debug/system-info": bundledPiCodingAgentDebugSystemInfo as unknown as Readonly<
|
|
1890
|
+
Record<string, unknown>
|
|
1891
|
+
>,
|
|
1892
|
+
"@oh-my-pi-zen/pi-coding-agent/debug/terminal-info": bundledPiCodingAgentDebugTerminalInfo as unknown as Readonly<
|
|
1893
|
+
Record<string, unknown>
|
|
1894
|
+
>,
|
|
1895
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/agents-md": bundledPiCodingAgentDiscoveryAgentsMd as unknown as Readonly<
|
|
1896
|
+
Record<string, unknown>
|
|
1897
|
+
>,
|
|
1898
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/agents": bundledPiCodingAgentDiscoveryAgents as unknown as Readonly<
|
|
1899
|
+
Record<string, unknown>
|
|
1900
|
+
>,
|
|
1901
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/at-imports": bundledPiCodingAgentDiscoveryAtImports as unknown as Readonly<
|
|
1902
|
+
Record<string, unknown>
|
|
1903
|
+
>,
|
|
1904
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/builtin-defaults":
|
|
1905
|
+
bundledPiCodingAgentDiscoveryBuiltinDefaults as unknown as Readonly<Record<string, unknown>>,
|
|
1906
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/builtin": bundledPiCodingAgentDiscoveryBuiltin as unknown as Readonly<
|
|
1907
|
+
Record<string, unknown>
|
|
1908
|
+
>,
|
|
1909
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/claude-plugins":
|
|
1910
|
+
bundledPiCodingAgentDiscoveryClaudePlugins as unknown as Readonly<Record<string, unknown>>,
|
|
1911
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/claude": bundledPiCodingAgentDiscoveryClaude as unknown as Readonly<
|
|
1912
|
+
Record<string, unknown>
|
|
1913
|
+
>,
|
|
1914
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/cline": bundledPiCodingAgentDiscoveryCline as unknown as Readonly<
|
|
1915
|
+
Record<string, unknown>
|
|
1916
|
+
>,
|
|
1917
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/codex": bundledPiCodingAgentDiscoveryCodex as unknown as Readonly<
|
|
1918
|
+
Record<string, unknown>
|
|
1919
|
+
>,
|
|
1920
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/cursor": bundledPiCodingAgentDiscoveryCursor as unknown as Readonly<
|
|
1921
|
+
Record<string, unknown>
|
|
1922
|
+
>,
|
|
1923
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/gemini": bundledPiCodingAgentDiscoveryGemini as unknown as Readonly<
|
|
1924
|
+
Record<string, unknown>
|
|
1925
|
+
>,
|
|
1926
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/github": bundledPiCodingAgentDiscoveryGithub as unknown as Readonly<
|
|
1927
|
+
Record<string, unknown>
|
|
1928
|
+
>,
|
|
1929
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/helpers": bundledPiCodingAgentDiscoveryHelpers as unknown as Readonly<
|
|
1930
|
+
Record<string, unknown>
|
|
1931
|
+
>,
|
|
1932
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/mcp-json": bundledPiCodingAgentDiscoveryMcpJson as unknown as Readonly<
|
|
1933
|
+
Record<string, unknown>
|
|
1934
|
+
>,
|
|
1935
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/omp-extension-roots":
|
|
1936
|
+
bundledPiCodingAgentDiscoveryOmpExtensionRoots as unknown as Readonly<Record<string, unknown>>,
|
|
1937
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/omp-plugins": bundledPiCodingAgentDiscoveryOmpPlugins as unknown as Readonly<
|
|
1938
|
+
Record<string, unknown>
|
|
1939
|
+
>,
|
|
1940
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/opencode": bundledPiCodingAgentDiscoveryOpencode as unknown as Readonly<
|
|
1941
|
+
Record<string, unknown>
|
|
1942
|
+
>,
|
|
1943
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/plugin-dir-roots":
|
|
1944
|
+
bundledPiCodingAgentDiscoveryPluginDirRoots as unknown as Readonly<Record<string, unknown>>,
|
|
1945
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/ssh": bundledPiCodingAgentDiscoverySsh as unknown as Readonly<
|
|
1946
|
+
Record<string, unknown>
|
|
1947
|
+
>,
|
|
1948
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/substitute-plugin-root":
|
|
1949
|
+
bundledPiCodingAgentDiscoverySubstitutePluginRoot as unknown as Readonly<Record<string, unknown>>,
|
|
1950
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/vscode": bundledPiCodingAgentDiscoveryVscode as unknown as Readonly<
|
|
1951
|
+
Record<string, unknown>
|
|
1952
|
+
>,
|
|
1953
|
+
"@oh-my-pi-zen/pi-coding-agent/discovery/windsurf": bundledPiCodingAgentDiscoveryWindsurf as unknown as Readonly<
|
|
1954
|
+
Record<string, unknown>
|
|
1955
|
+
>,
|
|
1956
|
+
"@oh-my-pi-zen/pi-coding-agent/edit/diff": bundledPiCodingAgentEditDiff as unknown as Readonly<Record<string, unknown>>,
|
|
1957
|
+
"@oh-my-pi-zen/pi-coding-agent/edit/file-snapshot-store":
|
|
1958
|
+
bundledPiCodingAgentEditFileSnapshotStore as unknown as Readonly<Record<string, unknown>>,
|
|
1959
|
+
"@oh-my-pi-zen/pi-coding-agent/edit/normalize": bundledPiCodingAgentEditNormalize as unknown as Readonly<
|
|
1960
|
+
Record<string, unknown>
|
|
1961
|
+
>,
|
|
1962
|
+
"@oh-my-pi-zen/pi-coding-agent/edit/notebook": bundledPiCodingAgentEditNotebook as unknown as Readonly<
|
|
1963
|
+
Record<string, unknown>
|
|
1964
|
+
>,
|
|
1965
|
+
"@oh-my-pi-zen/pi-coding-agent/edit/read-file": bundledPiCodingAgentEditReadFile as unknown as Readonly<
|
|
1966
|
+
Record<string, unknown>
|
|
1967
|
+
>,
|
|
1968
|
+
"@oh-my-pi-zen/pi-coding-agent/edit/renderer": bundledPiCodingAgentEditRenderer as unknown as Readonly<
|
|
1969
|
+
Record<string, unknown>
|
|
1970
|
+
>,
|
|
1971
|
+
"@oh-my-pi-zen/pi-coding-agent/edit/streaming": bundledPiCodingAgentEditStreaming as unknown as Readonly<
|
|
1972
|
+
Record<string, unknown>
|
|
1973
|
+
>,
|
|
1974
|
+
"@oh-my-pi-zen/pi-coding-agent/edit/modes/apply-patch": bundledPiCodingAgentEditModesApplyPatch as unknown as Readonly<
|
|
1975
|
+
Record<string, unknown>
|
|
1976
|
+
>,
|
|
1977
|
+
"@oh-my-pi-zen/pi-coding-agent/edit/modes/patch": bundledPiCodingAgentEditModesPatch as unknown as Readonly<
|
|
1978
|
+
Record<string, unknown>
|
|
1979
|
+
>,
|
|
1980
|
+
"@oh-my-pi-zen/pi-coding-agent/edit/modes/replace": bundledPiCodingAgentEditModesReplace as unknown as Readonly<
|
|
1981
|
+
Record<string, unknown>
|
|
1982
|
+
>,
|
|
1983
|
+
"@oh-my-pi-zen/pi-coding-agent/exa/mcp-client": bundledPiCodingAgentExaMcpClient as unknown as Readonly<
|
|
1984
|
+
Record<string, unknown>
|
|
1985
|
+
>,
|
|
1986
|
+
"@oh-my-pi-zen/pi-coding-agent/exa/types": bundledPiCodingAgentExaTypes as unknown as Readonly<Record<string, unknown>>,
|
|
1987
|
+
"@oh-my-pi-zen/pi-coding-agent/exec/bash-executor": bundledPiCodingAgentExecBashExecutor as unknown as Readonly<
|
|
1988
|
+
Record<string, unknown>
|
|
1989
|
+
>,
|
|
1990
|
+
"@oh-my-pi-zen/pi-coding-agent/exec/exec": bundledPiCodingAgentExecExec as unknown as Readonly<Record<string, unknown>>,
|
|
1991
|
+
"@oh-my-pi-zen/pi-coding-agent/exec/non-interactive-env":
|
|
1992
|
+
bundledPiCodingAgentExecNonInteractiveEnv as unknown as Readonly<Record<string, unknown>>,
|
|
1993
|
+
"@oh-my-pi-zen/pi-coding-agent/export/custom-share": bundledPiCodingAgentExportCustomShare as unknown as Readonly<
|
|
1994
|
+
Record<string, unknown>
|
|
1995
|
+
>,
|
|
1996
|
+
"@oh-my-pi-zen/pi-coding-agent/export/share": bundledPiCodingAgentExportShare as unknown as Readonly<
|
|
1997
|
+
Record<string, unknown>
|
|
1998
|
+
>,
|
|
1999
|
+
"@oh-my-pi-zen/pi-coding-agent/export/ttsr": bundledPiCodingAgentExportTtsr as unknown as Readonly<
|
|
2000
|
+
Record<string, unknown>
|
|
2001
|
+
>,
|
|
2002
|
+
"@oh-my-pi-zen/pi-coding-agent/export/html/web-palette": bundledPiCodingAgentExportHtmlWebPalette as unknown as Readonly<
|
|
2003
|
+
Record<string, unknown>
|
|
2004
|
+
>,
|
|
2005
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/legacy-pi-ai-shim":
|
|
2006
|
+
bundledPiCodingAgentExtensibilityLegacyPiAiShim as unknown as Readonly<Record<string, unknown>>,
|
|
2007
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/legacy-pi-coding-agent-shim":
|
|
2008
|
+
bundledPiCodingAgentExtensibilityLegacyPiCodingAgentShim as unknown as Readonly<Record<string, unknown>>,
|
|
2009
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/session-handler-types":
|
|
2010
|
+
bundledPiCodingAgentExtensibilitySessionHandlerTypes as unknown as Readonly<Record<string, unknown>>,
|
|
2011
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/shared-events":
|
|
2012
|
+
bundledPiCodingAgentExtensibilitySharedEvents as unknown as Readonly<Record<string, unknown>>,
|
|
2013
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/skills": bundledPiCodingAgentExtensibilitySkills as unknown as Readonly<
|
|
2014
|
+
Record<string, unknown>
|
|
2015
|
+
>,
|
|
2016
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/slash-commands":
|
|
2017
|
+
bundledPiCodingAgentExtensibilitySlashCommands as unknown as Readonly<Record<string, unknown>>,
|
|
2018
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/tool-event-input":
|
|
2019
|
+
bundledPiCodingAgentExtensibilityToolEventInput as unknown as Readonly<Record<string, unknown>>,
|
|
2020
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/tool-proxy":
|
|
2021
|
+
bundledPiCodingAgentExtensibilityToolProxy as unknown as Readonly<Record<string, unknown>>,
|
|
2022
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/typebox": bundledPiCodingAgentExtensibilityTypebox as unknown as Readonly<
|
|
2023
|
+
Record<string, unknown>
|
|
2024
|
+
>,
|
|
2025
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/utils": bundledPiCodingAgentExtensibilityUtils as unknown as Readonly<
|
|
2026
|
+
Record<string, unknown>
|
|
2027
|
+
>,
|
|
2028
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/custom-commands/loader":
|
|
2029
|
+
bundledPiCodingAgentExtensibilityCustomCommandsLoader as unknown as Readonly<Record<string, unknown>>,
|
|
2030
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/custom-commands/types":
|
|
2031
|
+
bundledPiCodingAgentExtensibilityCustomCommandsTypes as unknown as Readonly<Record<string, unknown>>,
|
|
2032
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/custom-tools/loader":
|
|
2033
|
+
bundledPiCodingAgentExtensibilityCustomToolsLoader as unknown as Readonly<Record<string, unknown>>,
|
|
2034
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/custom-tools/types":
|
|
2035
|
+
bundledPiCodingAgentExtensibilityCustomToolsTypes as unknown as Readonly<Record<string, unknown>>,
|
|
2036
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/custom-tools/wrapper":
|
|
2037
|
+
bundledPiCodingAgentExtensibilityCustomToolsWrapper as unknown as Readonly<Record<string, unknown>>,
|
|
2038
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/compact-handler":
|
|
2039
|
+
bundledPiCodingAgentExtensibilityExtensionsCompactHandler as unknown as Readonly<Record<string, unknown>>,
|
|
2040
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/get-commands-handler":
|
|
2041
|
+
bundledPiCodingAgentExtensibilityExtensionsGetCommandsHandler as unknown as Readonly<Record<string, unknown>>,
|
|
2042
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/loader":
|
|
2043
|
+
bundledPiCodingAgentExtensibilityExtensionsLoader as unknown as Readonly<Record<string, unknown>>,
|
|
2044
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/model-api":
|
|
2045
|
+
bundledPiCodingAgentExtensibilityExtensionsModelApi as unknown as Readonly<Record<string, unknown>>,
|
|
2046
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/runner":
|
|
2047
|
+
bundledPiCodingAgentExtensibilityExtensionsRunner as unknown as Readonly<Record<string, unknown>>,
|
|
2048
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/types":
|
|
2049
|
+
bundledPiCodingAgentExtensibilityExtensionsTypes as unknown as Readonly<Record<string, unknown>>,
|
|
2050
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/extensions/wrapper":
|
|
2051
|
+
bundledPiCodingAgentExtensibilityExtensionsWrapper as unknown as Readonly<Record<string, unknown>>,
|
|
2052
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/hooks/loader":
|
|
2053
|
+
bundledPiCodingAgentExtensibilityHooksLoader as unknown as Readonly<Record<string, unknown>>,
|
|
2054
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/hooks/runner":
|
|
2055
|
+
bundledPiCodingAgentExtensibilityHooksRunner as unknown as Readonly<Record<string, unknown>>,
|
|
2056
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/hooks/tool-wrapper":
|
|
2057
|
+
bundledPiCodingAgentExtensibilityHooksToolWrapper as unknown as Readonly<Record<string, unknown>>,
|
|
2058
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/hooks/types":
|
|
2059
|
+
bundledPiCodingAgentExtensibilityHooksTypes as unknown as Readonly<Record<string, unknown>>,
|
|
2060
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/doctor":
|
|
2061
|
+
bundledPiCodingAgentExtensibilityPluginsDoctor as unknown as Readonly<Record<string, unknown>>,
|
|
2062
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/git-url":
|
|
2063
|
+
bundledPiCodingAgentExtensibilityPluginsGitUrl as unknown as Readonly<Record<string, unknown>>,
|
|
2064
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/installer":
|
|
2065
|
+
bundledPiCodingAgentExtensibilityPluginsInstaller as unknown as Readonly<Record<string, unknown>>,
|
|
2066
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/legacy-pi-bundled-keys":
|
|
2067
|
+
bundledPiCodingAgentExtensibilityPluginsLegacyPiBundledKeys as unknown as Readonly<Record<string, unknown>>,
|
|
2068
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/legacy-pi-bundled-registry":
|
|
2069
|
+
bundledPiCodingAgentExtensibilityPluginsLegacyPiBundledRegistry as unknown as Readonly<Record<string, unknown>>,
|
|
2070
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/legacy-pi-compat":
|
|
2071
|
+
bundledPiCodingAgentExtensibilityPluginsLegacyPiCompat as unknown as Readonly<Record<string, unknown>>,
|
|
2072
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/loader":
|
|
2073
|
+
bundledPiCodingAgentExtensibilityPluginsLoader as unknown as Readonly<Record<string, unknown>>,
|
|
2074
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/manager":
|
|
2075
|
+
bundledPiCodingAgentExtensibilityPluginsManager as unknown as Readonly<Record<string, unknown>>,
|
|
2076
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace-auto-update":
|
|
2077
|
+
bundledPiCodingAgentExtensibilityPluginsMarketplaceAutoUpdate as unknown as Readonly<Record<string, unknown>>,
|
|
2078
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/parser":
|
|
2079
|
+
bundledPiCodingAgentExtensibilityPluginsParser as unknown as Readonly<Record<string, unknown>>,
|
|
2080
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/runtime-config":
|
|
2081
|
+
bundledPiCodingAgentExtensibilityPluginsRuntimeConfig as unknown as Readonly<Record<string, unknown>>,
|
|
2082
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/types":
|
|
2083
|
+
bundledPiCodingAgentExtensibilityPluginsTypes as unknown as Readonly<Record<string, unknown>>,
|
|
2084
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/cache":
|
|
2085
|
+
bundledPiCodingAgentExtensibilityPluginsMarketplaceCache as unknown as Readonly<Record<string, unknown>>,
|
|
2086
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/fetcher":
|
|
2087
|
+
bundledPiCodingAgentExtensibilityPluginsMarketplaceFetcher as unknown as Readonly<Record<string, unknown>>,
|
|
2088
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/manager":
|
|
2089
|
+
bundledPiCodingAgentExtensibilityPluginsMarketplaceManager as unknown as Readonly<Record<string, unknown>>,
|
|
2090
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/registry":
|
|
2091
|
+
bundledPiCodingAgentExtensibilityPluginsMarketplaceRegistry as unknown as Readonly<Record<string, unknown>>,
|
|
2092
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/source-resolver":
|
|
2093
|
+
bundledPiCodingAgentExtensibilityPluginsMarketplaceSourceResolver as unknown as Readonly<Record<string, unknown>>,
|
|
2094
|
+
"@oh-my-pi-zen/pi-coding-agent/extensibility/plugins/marketplace/types":
|
|
2095
|
+
bundledPiCodingAgentExtensibilityPluginsMarketplaceTypes as unknown as Readonly<Record<string, unknown>>,
|
|
2096
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/agent-protocol":
|
|
2097
|
+
bundledPiCodingAgentInternalUrlsAgentProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2098
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/artifact-protocol":
|
|
2099
|
+
bundledPiCodingAgentInternalUrlsArtifactProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2100
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/docs-index":
|
|
2101
|
+
bundledPiCodingAgentInternalUrlsDocsIndex as unknown as Readonly<Record<string, unknown>>,
|
|
2102
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/filesystem-resource":
|
|
2103
|
+
bundledPiCodingAgentInternalUrlsFilesystemResource as unknown as Readonly<Record<string, unknown>>,
|
|
2104
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/history-protocol":
|
|
2105
|
+
bundledPiCodingAgentInternalUrlsHistoryProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2106
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/issue-pr-protocol":
|
|
2107
|
+
bundledPiCodingAgentInternalUrlsIssuePrProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2108
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/json-query":
|
|
2109
|
+
bundledPiCodingAgentInternalUrlsJsonQuery as unknown as Readonly<Record<string, unknown>>,
|
|
2110
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/local-protocol":
|
|
2111
|
+
bundledPiCodingAgentInternalUrlsLocalProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2112
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/mcp-protocol":
|
|
2113
|
+
bundledPiCodingAgentInternalUrlsMcpProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2114
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/memory-protocol":
|
|
2115
|
+
bundledPiCodingAgentInternalUrlsMemoryProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2116
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/omp-protocol":
|
|
2117
|
+
bundledPiCodingAgentInternalUrlsOmpProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2118
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/parse": bundledPiCodingAgentInternalUrlsParse as unknown as Readonly<
|
|
2119
|
+
Record<string, unknown>
|
|
2120
|
+
>,
|
|
2121
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/registry-helpers":
|
|
2122
|
+
bundledPiCodingAgentInternalUrlsRegistryHelpers as unknown as Readonly<Record<string, unknown>>,
|
|
2123
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/router": bundledPiCodingAgentInternalUrlsRouter as unknown as Readonly<
|
|
2124
|
+
Record<string, unknown>
|
|
2125
|
+
>,
|
|
2126
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/rule-protocol":
|
|
2127
|
+
bundledPiCodingAgentInternalUrlsRuleProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2128
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/skill-protocol":
|
|
2129
|
+
bundledPiCodingAgentInternalUrlsSkillProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2130
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/ssh-protocol":
|
|
2131
|
+
bundledPiCodingAgentInternalUrlsSshProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2132
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/types": bundledPiCodingAgentInternalUrlsTypes as unknown as Readonly<
|
|
2133
|
+
Record<string, unknown>
|
|
2134
|
+
>,
|
|
2135
|
+
"@oh-my-pi-zen/pi-coding-agent/internal-urls/vault-protocol":
|
|
2136
|
+
bundledPiCodingAgentInternalUrlsVaultProtocol as unknown as Readonly<Record<string, unknown>>,
|
|
2137
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/js/context-manager": bundledPiCodingAgentEvalJsContextManager as unknown as Readonly<
|
|
2138
|
+
Record<string, unknown>
|
|
2139
|
+
>,
|
|
2140
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/js/executor": bundledPiCodingAgentEvalJsExecutor as unknown as Readonly<
|
|
2141
|
+
Record<string, unknown>
|
|
2142
|
+
>,
|
|
2143
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/js/tool-bridge": bundledPiCodingAgentEvalJsToolBridge as unknown as Readonly<
|
|
2144
|
+
Record<string, unknown>
|
|
2145
|
+
>,
|
|
2146
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/js/worker-core": bundledPiCodingAgentEvalJsWorkerCore as unknown as Readonly<
|
|
2147
|
+
Record<string, unknown>
|
|
2148
|
+
>,
|
|
2149
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/js/worker-protocol": bundledPiCodingAgentEvalJsWorkerProtocol as unknown as Readonly<
|
|
2150
|
+
Record<string, unknown>
|
|
2151
|
+
>,
|
|
2152
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/py/display": bundledPiCodingAgentEvalPyDisplay as unknown as Readonly<
|
|
2153
|
+
Record<string, unknown>
|
|
2154
|
+
>,
|
|
2155
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/py/executor": bundledPiCodingAgentEvalPyExecutor as unknown as Readonly<
|
|
2156
|
+
Record<string, unknown>
|
|
2157
|
+
>,
|
|
2158
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/py/kernel": bundledPiCodingAgentEvalPyKernel as unknown as Readonly<
|
|
2159
|
+
Record<string, unknown>
|
|
2160
|
+
>,
|
|
2161
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/py/prelude": bundledPiCodingAgentEvalPyPrelude as unknown as Readonly<
|
|
2162
|
+
Record<string, unknown>
|
|
2163
|
+
>,
|
|
2164
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/py/runtime": bundledPiCodingAgentEvalPyRuntime as unknown as Readonly<
|
|
2165
|
+
Record<string, unknown>
|
|
2166
|
+
>,
|
|
2167
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/py/spawn-options": bundledPiCodingAgentEvalPySpawnOptions as unknown as Readonly<
|
|
2168
|
+
Record<string, unknown>
|
|
2169
|
+
>,
|
|
2170
|
+
"@oh-my-pi-zen/pi-coding-agent/eval/py/tool-bridge": bundledPiCodingAgentEvalPyToolBridge as unknown as Readonly<
|
|
2171
|
+
Record<string, unknown>
|
|
2172
|
+
>,
|
|
2173
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/client": bundledPiCodingAgentLspClient as unknown as Readonly<
|
|
2174
|
+
Record<string, unknown>
|
|
2175
|
+
>,
|
|
2176
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/config": bundledPiCodingAgentLspConfig as unknown as Readonly<
|
|
2177
|
+
Record<string, unknown>
|
|
2178
|
+
>,
|
|
2179
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/diagnostics-ledger": bundledPiCodingAgentLspDiagnosticsLedger as unknown as Readonly<
|
|
2180
|
+
Record<string, unknown>
|
|
2181
|
+
>,
|
|
2182
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/edits": bundledPiCodingAgentLspEdits as unknown as Readonly<Record<string, unknown>>,
|
|
2183
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/format-options": bundledPiCodingAgentLspFormatOptions as unknown as Readonly<
|
|
2184
|
+
Record<string, unknown>
|
|
2185
|
+
>,
|
|
2186
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/lspmux": bundledPiCodingAgentLspLspmux as unknown as Readonly<
|
|
2187
|
+
Record<string, unknown>
|
|
2188
|
+
>,
|
|
2189
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/render": bundledPiCodingAgentLspRender as unknown as Readonly<
|
|
2190
|
+
Record<string, unknown>
|
|
2191
|
+
>,
|
|
2192
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/startup-events": bundledPiCodingAgentLspStartupEvents as unknown as Readonly<
|
|
2193
|
+
Record<string, unknown>
|
|
2194
|
+
>,
|
|
2195
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/types": bundledPiCodingAgentLspTypes as unknown as Readonly<Record<string, unknown>>,
|
|
2196
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/utils": bundledPiCodingAgentLspUtils as unknown as Readonly<Record<string, unknown>>,
|
|
2197
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/clients/biome-client":
|
|
2198
|
+
bundledPiCodingAgentLspClientsBiomeClient as unknown as Readonly<Record<string, unknown>>,
|
|
2199
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/clients/lsp-linter-client":
|
|
2200
|
+
bundledPiCodingAgentLspClientsLspLinterClient as unknown as Readonly<Record<string, unknown>>,
|
|
2201
|
+
"@oh-my-pi-zen/pi-coding-agent/lsp/clients/swiftlint-client":
|
|
2202
|
+
bundledPiCodingAgentLspClientsSwiftlintClient as unknown as Readonly<Record<string, unknown>>,
|
|
2203
|
+
"@oh-my-pi-zen/pi-coding-agent/markit/registry": bundledPiCodingAgentMarkitRegistry as unknown as Readonly<
|
|
2204
|
+
Record<string, unknown>
|
|
2205
|
+
>,
|
|
2206
|
+
"@oh-my-pi-zen/pi-coding-agent/markit/types": bundledPiCodingAgentMarkitTypes as unknown as Readonly<
|
|
2207
|
+
Record<string, unknown>
|
|
2208
|
+
>,
|
|
2209
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/client": bundledPiCodingAgentMcpClient as unknown as Readonly<
|
|
2210
|
+
Record<string, unknown>
|
|
2211
|
+
>,
|
|
2212
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/config-writer": bundledPiCodingAgentMcpConfigWriter as unknown as Readonly<
|
|
2213
|
+
Record<string, unknown>
|
|
2214
|
+
>,
|
|
2215
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/config": bundledPiCodingAgentMcpConfig as unknown as Readonly<
|
|
2216
|
+
Record<string, unknown>
|
|
2217
|
+
>,
|
|
2218
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/json-rpc": bundledPiCodingAgentMcpJsonRpc as unknown as Readonly<
|
|
2219
|
+
Record<string, unknown>
|
|
2220
|
+
>,
|
|
2221
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/loader": bundledPiCodingAgentMcpLoader as unknown as Readonly<
|
|
2222
|
+
Record<string, unknown>
|
|
2223
|
+
>,
|
|
2224
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/manager": bundledPiCodingAgentMcpManager as unknown as Readonly<
|
|
2225
|
+
Record<string, unknown>
|
|
2226
|
+
>,
|
|
2227
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/oauth-credentials": bundledPiCodingAgentMcpOauthCredentials as unknown as Readonly<
|
|
2228
|
+
Record<string, unknown>
|
|
2229
|
+
>,
|
|
2230
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/oauth-discovery": bundledPiCodingAgentMcpOauthDiscovery as unknown as Readonly<
|
|
2231
|
+
Record<string, unknown>
|
|
2232
|
+
>,
|
|
2233
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/oauth-flow": bundledPiCodingAgentMcpOauthFlow as unknown as Readonly<
|
|
2234
|
+
Record<string, unknown>
|
|
2235
|
+
>,
|
|
2236
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/render": bundledPiCodingAgentMcpRender as unknown as Readonly<
|
|
2237
|
+
Record<string, unknown>
|
|
2238
|
+
>,
|
|
2239
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/smithery-auth": bundledPiCodingAgentMcpSmitheryAuth as unknown as Readonly<
|
|
2240
|
+
Record<string, unknown>
|
|
2241
|
+
>,
|
|
2242
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/smithery-connect": bundledPiCodingAgentMcpSmitheryConnect as unknown as Readonly<
|
|
2243
|
+
Record<string, unknown>
|
|
2244
|
+
>,
|
|
2245
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/smithery-registry": bundledPiCodingAgentMcpSmitheryRegistry as unknown as Readonly<
|
|
2246
|
+
Record<string, unknown>
|
|
2247
|
+
>,
|
|
2248
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/startup-events": bundledPiCodingAgentMcpStartupEvents as unknown as Readonly<
|
|
2249
|
+
Record<string, unknown>
|
|
2250
|
+
>,
|
|
2251
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/timeout": bundledPiCodingAgentMcpTimeout as unknown as Readonly<
|
|
2252
|
+
Record<string, unknown>
|
|
2253
|
+
>,
|
|
2254
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/tool-bridge": bundledPiCodingAgentMcpToolBridge as unknown as Readonly<
|
|
2255
|
+
Record<string, unknown>
|
|
2256
|
+
>,
|
|
2257
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/tool-cache": bundledPiCodingAgentMcpToolCache as unknown as Readonly<
|
|
2258
|
+
Record<string, unknown>
|
|
2259
|
+
>,
|
|
2260
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/types": bundledPiCodingAgentMcpTypes as unknown as Readonly<Record<string, unknown>>,
|
|
2261
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/transports/http": bundledPiCodingAgentMcpTransportsHttp as unknown as Readonly<
|
|
2262
|
+
Record<string, unknown>
|
|
2263
|
+
>,
|
|
2264
|
+
"@oh-my-pi-zen/pi-coding-agent/mcp/transports/stdio": bundledPiCodingAgentMcpTransportsStdio as unknown as Readonly<
|
|
2265
|
+
Record<string, unknown>
|
|
2266
|
+
>,
|
|
2267
|
+
"@oh-my-pi-zen/pi-coding-agent/memories/storage": bundledPiCodingAgentMemoriesStorage as unknown as Readonly<
|
|
2268
|
+
Record<string, unknown>
|
|
2269
|
+
>,
|
|
2270
|
+
"@oh-my-pi-zen/pi-coding-agent/memory-backend/local-backend":
|
|
2271
|
+
bundledPiCodingAgentMemoryBackendLocalBackend as unknown as Readonly<Record<string, unknown>>,
|
|
2272
|
+
"@oh-my-pi-zen/pi-coding-agent/memory-backend/off-backend":
|
|
2273
|
+
bundledPiCodingAgentMemoryBackendOffBackend as unknown as Readonly<Record<string, unknown>>,
|
|
2274
|
+
"@oh-my-pi-zen/pi-coding-agent/memory-backend/resolve": bundledPiCodingAgentMemoryBackendResolve as unknown as Readonly<
|
|
2275
|
+
Record<string, unknown>
|
|
2276
|
+
>,
|
|
2277
|
+
"@oh-my-pi-zen/pi-coding-agent/memory-backend/runtime": bundledPiCodingAgentMemoryBackendRuntime as unknown as Readonly<
|
|
2278
|
+
Record<string, unknown>
|
|
2279
|
+
>,
|
|
2280
|
+
"@oh-my-pi-zen/pi-coding-agent/memory-backend/types": bundledPiCodingAgentMemoryBackendTypes as unknown as Readonly<
|
|
2281
|
+
Record<string, unknown>
|
|
2282
|
+
>,
|
|
2283
|
+
"@oh-my-pi-zen/pi-coding-agent/hindsight/backend": bundledPiCodingAgentHindsightBackend as unknown as Readonly<
|
|
2284
|
+
Record<string, unknown>
|
|
2285
|
+
>,
|
|
2286
|
+
"@oh-my-pi-zen/pi-coding-agent/hindsight/bank": bundledPiCodingAgentHindsightBank as unknown as Readonly<
|
|
2287
|
+
Record<string, unknown>
|
|
2288
|
+
>,
|
|
2289
|
+
"@oh-my-pi-zen/pi-coding-agent/hindsight/client": bundledPiCodingAgentHindsightClient as unknown as Readonly<
|
|
2290
|
+
Record<string, unknown>
|
|
2291
|
+
>,
|
|
2292
|
+
"@oh-my-pi-zen/pi-coding-agent/hindsight/config": bundledPiCodingAgentHindsightConfig as unknown as Readonly<
|
|
2293
|
+
Record<string, unknown>
|
|
2294
|
+
>,
|
|
2295
|
+
"@oh-my-pi-zen/pi-coding-agent/hindsight/content": bundledPiCodingAgentHindsightContent as unknown as Readonly<
|
|
2296
|
+
Record<string, unknown>
|
|
2297
|
+
>,
|
|
2298
|
+
"@oh-my-pi-zen/pi-coding-agent/hindsight/mental-models":
|
|
2299
|
+
bundledPiCodingAgentHindsightMentalModels as unknown as Readonly<Record<string, unknown>>,
|
|
2300
|
+
"@oh-my-pi-zen/pi-coding-agent/hindsight/state": bundledPiCodingAgentHindsightState as unknown as Readonly<
|
|
2301
|
+
Record<string, unknown>
|
|
2302
|
+
>,
|
|
2303
|
+
"@oh-my-pi-zen/pi-coding-agent/hindsight/transcript": bundledPiCodingAgentHindsightTranscript as unknown as Readonly<
|
|
2304
|
+
Record<string, unknown>
|
|
2305
|
+
>,
|
|
2306
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/emoji-autocomplete":
|
|
2307
|
+
bundledPiCodingAgentModesEmojiAutocomplete as unknown as Readonly<Record<string, unknown>>,
|
|
2308
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/gradient-highlight":
|
|
2309
|
+
bundledPiCodingAgentModesGradientHighlight as unknown as Readonly<Record<string, unknown>>,
|
|
2310
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/image-references": bundledPiCodingAgentModesImageReferences as unknown as Readonly<
|
|
2311
|
+
Record<string, unknown>
|
|
2312
|
+
>,
|
|
2313
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/interactive-mode": bundledPiCodingAgentModesInteractiveMode as unknown as Readonly<
|
|
2314
|
+
Record<string, unknown>
|
|
2315
|
+
>,
|
|
2316
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/internal-url-autocomplete":
|
|
2317
|
+
bundledPiCodingAgentModesInternalUrlAutocomplete as unknown as Readonly<Record<string, unknown>>,
|
|
2318
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/loop-limit": bundledPiCodingAgentModesLoopLimit as unknown as Readonly<
|
|
2319
|
+
Record<string, unknown>
|
|
2320
|
+
>,
|
|
2321
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/magic-keywords": bundledPiCodingAgentModesMagicKeywords as unknown as Readonly<
|
|
2322
|
+
Record<string, unknown>
|
|
2323
|
+
>,
|
|
2324
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/markdown-prose": bundledPiCodingAgentModesMarkdownProse as unknown as Readonly<
|
|
2325
|
+
Record<string, unknown>
|
|
2326
|
+
>,
|
|
2327
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/oauth-manual-input":
|
|
2328
|
+
bundledPiCodingAgentModesOauthManualInput as unknown as Readonly<Record<string, unknown>>,
|
|
2329
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/orchestrate": bundledPiCodingAgentModesOrchestrate as unknown as Readonly<
|
|
2330
|
+
Record<string, unknown>
|
|
2331
|
+
>,
|
|
2332
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/print-mode": bundledPiCodingAgentModesPrintMode as unknown as Readonly<
|
|
2333
|
+
Record<string, unknown>
|
|
2334
|
+
>,
|
|
2335
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/prompt-action-autocomplete":
|
|
2336
|
+
bundledPiCodingAgentModesPromptActionAutocomplete as unknown as Readonly<Record<string, unknown>>,
|
|
2337
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/running-subagent-badge":
|
|
2338
|
+
bundledPiCodingAgentModesRunningSubagentBadge as unknown as Readonly<Record<string, unknown>>,
|
|
2339
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/runtime-init": bundledPiCodingAgentModesRuntimeInit as unknown as Readonly<
|
|
2340
|
+
Record<string, unknown>
|
|
2341
|
+
>,
|
|
2342
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/session-observer-registry":
|
|
2343
|
+
bundledPiCodingAgentModesSessionObserverRegistry as unknown as Readonly<Record<string, unknown>>,
|
|
2344
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/setup-version": bundledPiCodingAgentModesSetupVersion as unknown as Readonly<
|
|
2345
|
+
Record<string, unknown>
|
|
2346
|
+
>,
|
|
2347
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/shared": bundledPiCodingAgentModesShared as unknown as Readonly<
|
|
2348
|
+
Record<string, unknown>
|
|
2349
|
+
>,
|
|
2350
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/turn-budget": bundledPiCodingAgentModesTurnBudget as unknown as Readonly<
|
|
2351
|
+
Record<string, unknown>
|
|
2352
|
+
>,
|
|
2353
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/types": bundledPiCodingAgentModesTypes as unknown as Readonly<
|
|
2354
|
+
Record<string, unknown>
|
|
2355
|
+
>,
|
|
2356
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/ultrathink": bundledPiCodingAgentModesUltrathink as unknown as Readonly<
|
|
2357
|
+
Record<string, unknown>
|
|
2358
|
+
>,
|
|
2359
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/workflow": bundledPiCodingAgentModesWorkflow as unknown as Readonly<
|
|
2360
|
+
Record<string, unknown>
|
|
2361
|
+
>,
|
|
2362
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/acp/acp-agent": bundledPiCodingAgentModesAcpAcpAgent as unknown as Readonly<
|
|
2363
|
+
Record<string, unknown>
|
|
2364
|
+
>,
|
|
2365
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/acp/acp-client-bridge":
|
|
2366
|
+
bundledPiCodingAgentModesAcpAcpClientBridge as unknown as Readonly<Record<string, unknown>>,
|
|
2367
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/acp/acp-event-mapper":
|
|
2368
|
+
bundledPiCodingAgentModesAcpAcpEventMapper as unknown as Readonly<Record<string, unknown>>,
|
|
2369
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/acp/acp-mode": bundledPiCodingAgentModesAcpAcpMode as unknown as Readonly<
|
|
2370
|
+
Record<string, unknown>
|
|
2371
|
+
>,
|
|
2372
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/acp/terminal-auth": bundledPiCodingAgentModesAcpTerminalAuth as unknown as Readonly<
|
|
2373
|
+
Record<string, unknown>
|
|
2374
|
+
>,
|
|
2375
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/advisor-message":
|
|
2376
|
+
bundledPiCodingAgentModesComponentsAdvisorMessage as unknown as Readonly<Record<string, unknown>>,
|
|
2377
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/agent-dashboard":
|
|
2378
|
+
bundledPiCodingAgentModesComponentsAgentDashboard as unknown as Readonly<Record<string, unknown>>,
|
|
2379
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/agent-hub":
|
|
2380
|
+
bundledPiCodingAgentModesComponentsAgentHub as unknown as Readonly<Record<string, unknown>>,
|
|
2381
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/agent-transcript-viewer":
|
|
2382
|
+
bundledPiCodingAgentModesComponentsAgentTranscriptViewer as unknown as Readonly<Record<string, unknown>>,
|
|
2383
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/assistant-message":
|
|
2384
|
+
bundledPiCodingAgentModesComponentsAssistantMessage as unknown as Readonly<Record<string, unknown>>,
|
|
2385
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/background-tan-message":
|
|
2386
|
+
bundledPiCodingAgentModesComponentsBackgroundTanMessage as unknown as Readonly<Record<string, unknown>>,
|
|
2387
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/bash-execution":
|
|
2388
|
+
bundledPiCodingAgentModesComponentsBashExecution as unknown as Readonly<Record<string, unknown>>,
|
|
2389
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/bordered-loader":
|
|
2390
|
+
bundledPiCodingAgentModesComponentsBorderedLoader as unknown as Readonly<Record<string, unknown>>,
|
|
2391
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/btw-panel":
|
|
2392
|
+
bundledPiCodingAgentModesComponentsBtwPanel as unknown as Readonly<Record<string, unknown>>,
|
|
2393
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/cache-invalidation-marker":
|
|
2394
|
+
bundledPiCodingAgentModesComponentsCacheInvalidationMarker as unknown as Readonly<Record<string, unknown>>,
|
|
2395
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/chat-block":
|
|
2396
|
+
bundledPiCodingAgentModesComponentsChatBlock as unknown as Readonly<Record<string, unknown>>,
|
|
2397
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/chat-transcript-builder":
|
|
2398
|
+
bundledPiCodingAgentModesComponentsChatTranscriptBuilder as unknown as Readonly<Record<string, unknown>>,
|
|
2399
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/collab-prompt-message":
|
|
2400
|
+
bundledPiCodingAgentModesComponentsCollabPromptMessage as unknown as Readonly<Record<string, unknown>>,
|
|
2401
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/compaction-summary-message":
|
|
2402
|
+
bundledPiCodingAgentModesComponentsCompactionSummaryMessage as unknown as Readonly<Record<string, unknown>>,
|
|
2403
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/copy-selector":
|
|
2404
|
+
bundledPiCodingAgentModesComponentsCopySelector as unknown as Readonly<Record<string, unknown>>,
|
|
2405
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/countdown-timer":
|
|
2406
|
+
bundledPiCodingAgentModesComponentsCountdownTimer as unknown as Readonly<Record<string, unknown>>,
|
|
2407
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/custom-editor":
|
|
2408
|
+
bundledPiCodingAgentModesComponentsCustomEditor as unknown as Readonly<Record<string, unknown>>,
|
|
2409
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/custom-message":
|
|
2410
|
+
bundledPiCodingAgentModesComponentsCustomMessage as unknown as Readonly<Record<string, unknown>>,
|
|
2411
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/diff": bundledPiCodingAgentModesComponentsDiff as unknown as Readonly<
|
|
2412
|
+
Record<string, unknown>
|
|
2413
|
+
>,
|
|
2414
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/dynamic-border":
|
|
2415
|
+
bundledPiCodingAgentModesComponentsDynamicBorder as unknown as Readonly<Record<string, unknown>>,
|
|
2416
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/error-banner":
|
|
2417
|
+
bundledPiCodingAgentModesComponentsErrorBanner as unknown as Readonly<Record<string, unknown>>,
|
|
2418
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/eval-execution":
|
|
2419
|
+
bundledPiCodingAgentModesComponentsEvalExecution as unknown as Readonly<Record<string, unknown>>,
|
|
2420
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/execution-shared":
|
|
2421
|
+
bundledPiCodingAgentModesComponentsExecutionShared as unknown as Readonly<Record<string, unknown>>,
|
|
2422
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/footer":
|
|
2423
|
+
bundledPiCodingAgentModesComponentsFooter as unknown as Readonly<Record<string, unknown>>,
|
|
2424
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/history-search":
|
|
2425
|
+
bundledPiCodingAgentModesComponentsHistorySearch as unknown as Readonly<Record<string, unknown>>,
|
|
2426
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/hook-editor":
|
|
2427
|
+
bundledPiCodingAgentModesComponentsHookEditor as unknown as Readonly<Record<string, unknown>>,
|
|
2428
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/hook-input":
|
|
2429
|
+
bundledPiCodingAgentModesComponentsHookInput as unknown as Readonly<Record<string, unknown>>,
|
|
2430
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/hook-message":
|
|
2431
|
+
bundledPiCodingAgentModesComponentsHookMessage as unknown as Readonly<Record<string, unknown>>,
|
|
2432
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/hook-selector":
|
|
2433
|
+
bundledPiCodingAgentModesComponentsHookSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2434
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/keybinding-hints":
|
|
2435
|
+
bundledPiCodingAgentModesComponentsKeybindingHints as unknown as Readonly<Record<string, unknown>>,
|
|
2436
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/late-diagnostics-message":
|
|
2437
|
+
bundledPiCodingAgentModesComponentsLateDiagnosticsMessage as unknown as Readonly<Record<string, unknown>>,
|
|
2438
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/login-dialog":
|
|
2439
|
+
bundledPiCodingAgentModesComponentsLoginDialog as unknown as Readonly<Record<string, unknown>>,
|
|
2440
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/logout-account-selector":
|
|
2441
|
+
bundledPiCodingAgentModesComponentsLogoutAccountSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2442
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/mcp-add-wizard":
|
|
2443
|
+
bundledPiCodingAgentModesComponentsMcpAddWizard as unknown as Readonly<Record<string, unknown>>,
|
|
2444
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/message-frame":
|
|
2445
|
+
bundledPiCodingAgentModesComponentsMessageFrame as unknown as Readonly<Record<string, unknown>>,
|
|
2446
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/model-selector":
|
|
2447
|
+
bundledPiCodingAgentModesComponentsModelSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2448
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/move-overlay":
|
|
2449
|
+
bundledPiCodingAgentModesComponentsMoveOverlay as unknown as Readonly<Record<string, unknown>>,
|
|
2450
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/oauth-selector":
|
|
2451
|
+
bundledPiCodingAgentModesComponentsOauthSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2452
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/omfg-panel":
|
|
2453
|
+
bundledPiCodingAgentModesComponentsOmfgPanel as unknown as Readonly<Record<string, unknown>>,
|
|
2454
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/overlay-box":
|
|
2455
|
+
bundledPiCodingAgentModesComponentsOverlayBox as unknown as Readonly<Record<string, unknown>>,
|
|
2456
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/plan-review-overlay":
|
|
2457
|
+
bundledPiCodingAgentModesComponentsPlanReviewOverlay as unknown as Readonly<Record<string, unknown>>,
|
|
2458
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/plan-toc":
|
|
2459
|
+
bundledPiCodingAgentModesComponentsPlanToc as unknown as Readonly<Record<string, unknown>>,
|
|
2460
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/plugin-selector":
|
|
2461
|
+
bundledPiCodingAgentModesComponentsPluginSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2462
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/plugin-settings":
|
|
2463
|
+
bundledPiCodingAgentModesComponentsPluginSettings as unknown as Readonly<Record<string, unknown>>,
|
|
2464
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/queue-mode-selector":
|
|
2465
|
+
bundledPiCodingAgentModesComponentsQueueModeSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2466
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/read-tool-group":
|
|
2467
|
+
bundledPiCodingAgentModesComponentsReadToolGroup as unknown as Readonly<Record<string, unknown>>,
|
|
2468
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/reset-usage-selector":
|
|
2469
|
+
bundledPiCodingAgentModesComponentsResetUsageSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2470
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/segment-track":
|
|
2471
|
+
bundledPiCodingAgentModesComponentsSegmentTrack as unknown as Readonly<Record<string, unknown>>,
|
|
2472
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/select-list-mouse-routing":
|
|
2473
|
+
bundledPiCodingAgentModesComponentsSelectListMouseRouting as unknown as Readonly<Record<string, unknown>>,
|
|
2474
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/selector-helpers":
|
|
2475
|
+
bundledPiCodingAgentModesComponentsSelectorHelpers as unknown as Readonly<Record<string, unknown>>,
|
|
2476
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/session-selector":
|
|
2477
|
+
bundledPiCodingAgentModesComponentsSessionSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2478
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/settings-defs":
|
|
2479
|
+
bundledPiCodingAgentModesComponentsSettingsDefs as unknown as Readonly<Record<string, unknown>>,
|
|
2480
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/settings-selector":
|
|
2481
|
+
bundledPiCodingAgentModesComponentsSettingsSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2482
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/show-images-selector":
|
|
2483
|
+
bundledPiCodingAgentModesComponentsShowImagesSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2484
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/skill-message":
|
|
2485
|
+
bundledPiCodingAgentModesComponentsSkillMessage as unknown as Readonly<Record<string, unknown>>,
|
|
2486
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/snapcompact-shape-preview":
|
|
2487
|
+
bundledPiCodingAgentModesComponentsSnapcompactShapePreview as unknown as Readonly<Record<string, unknown>>,
|
|
2488
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/theme-selector":
|
|
2489
|
+
bundledPiCodingAgentModesComponentsThemeSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2490
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/thinking-selector":
|
|
2491
|
+
bundledPiCodingAgentModesComponentsThinkingSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2492
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/tiny-title-download-progress":
|
|
2493
|
+
bundledPiCodingAgentModesComponentsTinyTitleDownloadProgress as unknown as Readonly<Record<string, unknown>>,
|
|
2494
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/todo-reminder":
|
|
2495
|
+
bundledPiCodingAgentModesComponentsTodoReminder as unknown as Readonly<Record<string, unknown>>,
|
|
2496
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/tool-execution":
|
|
2497
|
+
bundledPiCodingAgentModesComponentsToolExecution as unknown as Readonly<Record<string, unknown>>,
|
|
2498
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/transcript-container":
|
|
2499
|
+
bundledPiCodingAgentModesComponentsTranscriptContainer as unknown as Readonly<Record<string, unknown>>,
|
|
2500
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/tree-selector":
|
|
2501
|
+
bundledPiCodingAgentModesComponentsTreeSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2502
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/ttsr-notification":
|
|
2503
|
+
bundledPiCodingAgentModesComponentsTtsrNotification as unknown as Readonly<Record<string, unknown>>,
|
|
2504
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/usage-row":
|
|
2505
|
+
bundledPiCodingAgentModesComponentsUsageRow as unknown as Readonly<Record<string, unknown>>,
|
|
2506
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/user-message-selector":
|
|
2507
|
+
bundledPiCodingAgentModesComponentsUserMessageSelector as unknown as Readonly<Record<string, unknown>>,
|
|
2508
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/user-message":
|
|
2509
|
+
bundledPiCodingAgentModesComponentsUserMessage as unknown as Readonly<Record<string, unknown>>,
|
|
2510
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/visual-truncate":
|
|
2511
|
+
bundledPiCodingAgentModesComponentsVisualTruncate as unknown as Readonly<Record<string, unknown>>,
|
|
2512
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/welcome":
|
|
2513
|
+
bundledPiCodingAgentModesComponentsWelcome as unknown as Readonly<Record<string, unknown>>,
|
|
2514
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/extensions/extension-dashboard":
|
|
2515
|
+
bundledPiCodingAgentModesComponentsExtensionsExtensionDashboard as unknown as Readonly<Record<string, unknown>>,
|
|
2516
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/extensions/extension-list":
|
|
2517
|
+
bundledPiCodingAgentModesComponentsExtensionsExtensionList as unknown as Readonly<Record<string, unknown>>,
|
|
2518
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/extensions/inspector-panel":
|
|
2519
|
+
bundledPiCodingAgentModesComponentsExtensionsInspectorPanel as unknown as Readonly<Record<string, unknown>>,
|
|
2520
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/extensions/state-manager":
|
|
2521
|
+
bundledPiCodingAgentModesComponentsExtensionsStateManager as unknown as Readonly<Record<string, unknown>>,
|
|
2522
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/extensions/types":
|
|
2523
|
+
bundledPiCodingAgentModesComponentsExtensionsTypes as unknown as Readonly<Record<string, unknown>>,
|
|
2524
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/component":
|
|
2525
|
+
bundledPiCodingAgentModesComponentsStatusLineComponent as unknown as Readonly<Record<string, unknown>>,
|
|
2526
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/context-thresholds":
|
|
2527
|
+
bundledPiCodingAgentModesComponentsStatusLineContextThresholds as unknown as Readonly<Record<string, unknown>>,
|
|
2528
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/git-utils":
|
|
2529
|
+
bundledPiCodingAgentModesComponentsStatusLineGitUtils as unknown as Readonly<Record<string, unknown>>,
|
|
2530
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/presets":
|
|
2531
|
+
bundledPiCodingAgentModesComponentsStatusLinePresets as unknown as Readonly<Record<string, unknown>>,
|
|
2532
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/segments":
|
|
2533
|
+
bundledPiCodingAgentModesComponentsStatusLineSegments as unknown as Readonly<Record<string, unknown>>,
|
|
2534
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/separators":
|
|
2535
|
+
bundledPiCodingAgentModesComponentsStatusLineSeparators as unknown as Readonly<Record<string, unknown>>,
|
|
2536
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/token-rate":
|
|
2537
|
+
bundledPiCodingAgentModesComponentsStatusLineTokenRate as unknown as Readonly<Record<string, unknown>>,
|
|
2538
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/components/status-line/types":
|
|
2539
|
+
bundledPiCodingAgentModesComponentsStatusLineTypes as unknown as Readonly<Record<string, unknown>>,
|
|
2540
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/btw-controller":
|
|
2541
|
+
bundledPiCodingAgentModesControllersBtwController as unknown as Readonly<Record<string, unknown>>,
|
|
2542
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/command-controller-shared":
|
|
2543
|
+
bundledPiCodingAgentModesControllersCommandControllerShared as unknown as Readonly<Record<string, unknown>>,
|
|
2544
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/command-controller":
|
|
2545
|
+
bundledPiCodingAgentModesControllersCommandController as unknown as Readonly<Record<string, unknown>>,
|
|
2546
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/event-controller":
|
|
2547
|
+
bundledPiCodingAgentModesControllersEventController as unknown as Readonly<Record<string, unknown>>,
|
|
2548
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/extension-ui-controller":
|
|
2549
|
+
bundledPiCodingAgentModesControllersExtensionUiController as unknown as Readonly<Record<string, unknown>>,
|
|
2550
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/input-controller":
|
|
2551
|
+
bundledPiCodingAgentModesControllersInputController as unknown as Readonly<Record<string, unknown>>,
|
|
2552
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/mcp-command-controller":
|
|
2553
|
+
bundledPiCodingAgentModesControllersMcpCommandController as unknown as Readonly<Record<string, unknown>>,
|
|
2554
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/omfg-controller":
|
|
2555
|
+
bundledPiCodingAgentModesControllersOmfgController as unknown as Readonly<Record<string, unknown>>,
|
|
2556
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/omfg-rule":
|
|
2557
|
+
bundledPiCodingAgentModesControllersOmfgRule as unknown as Readonly<Record<string, unknown>>,
|
|
2558
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/selector-controller":
|
|
2559
|
+
bundledPiCodingAgentModesControllersSelectorController as unknown as Readonly<Record<string, unknown>>,
|
|
2560
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/session-focus-controller":
|
|
2561
|
+
bundledPiCodingAgentModesControllersSessionFocusController as unknown as Readonly<Record<string, unknown>>,
|
|
2562
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/ssh-command-controller":
|
|
2563
|
+
bundledPiCodingAgentModesControllersSshCommandController as unknown as Readonly<Record<string, unknown>>,
|
|
2564
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/streaming-reveal":
|
|
2565
|
+
bundledPiCodingAgentModesControllersStreamingReveal as unknown as Readonly<Record<string, unknown>>,
|
|
2566
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/tan-command-controller":
|
|
2567
|
+
bundledPiCodingAgentModesControllersTanCommandController as unknown as Readonly<Record<string, unknown>>,
|
|
2568
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/todo-command-controller":
|
|
2569
|
+
bundledPiCodingAgentModesControllersTodoCommandController as unknown as Readonly<Record<string, unknown>>,
|
|
2570
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/controllers/tool-args-reveal":
|
|
2571
|
+
bundledPiCodingAgentModesControllersToolArgsReveal as unknown as Readonly<Record<string, unknown>>,
|
|
2572
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/setup-wizard/lazy": bundledPiCodingAgentModesSetupWizardLazy as unknown as Readonly<
|
|
2573
|
+
Record<string, unknown>
|
|
2574
|
+
>,
|
|
2575
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/setup-wizard/startup-splash":
|
|
2576
|
+
bundledPiCodingAgentModesSetupWizardStartupSplash as unknown as Readonly<Record<string, unknown>>,
|
|
2577
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/setup-wizard/wizard-overlay":
|
|
2578
|
+
bundledPiCodingAgentModesSetupWizardWizardOverlay as unknown as Readonly<Record<string, unknown>>,
|
|
2579
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/rpc/host-tools": bundledPiCodingAgentModesRpcHostTools as unknown as Readonly<
|
|
2580
|
+
Record<string, unknown>
|
|
2581
|
+
>,
|
|
2582
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/rpc/host-uris": bundledPiCodingAgentModesRpcHostUris as unknown as Readonly<
|
|
2583
|
+
Record<string, unknown>
|
|
2584
|
+
>,
|
|
2585
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/rpc/rpc-client": bundledPiCodingAgentModesRpcRpcClient as unknown as Readonly<
|
|
2586
|
+
Record<string, unknown>
|
|
2587
|
+
>,
|
|
2588
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/rpc/rpc-mode": bundledPiCodingAgentModesRpcRpcMode as unknown as Readonly<
|
|
2589
|
+
Record<string, unknown>
|
|
2590
|
+
>,
|
|
2591
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/rpc/rpc-subagents": bundledPiCodingAgentModesRpcRpcSubagents as unknown as Readonly<
|
|
2592
|
+
Record<string, unknown>
|
|
2593
|
+
>,
|
|
2594
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/rpc/rpc-types": bundledPiCodingAgentModesRpcRpcTypes as unknown as Readonly<
|
|
2595
|
+
Record<string, unknown>
|
|
2596
|
+
>,
|
|
2597
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/theme/mermaid-cache":
|
|
2598
|
+
bundledPiCodingAgentModesThemeMermaidCache as unknown as Readonly<Record<string, unknown>>,
|
|
2599
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/theme/shimmer": bundledPiCodingAgentModesThemeShimmer as unknown as Readonly<
|
|
2600
|
+
Record<string, unknown>
|
|
2601
|
+
>,
|
|
2602
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/theme/theme": bundledPiCodingAgentModesThemeTheme as unknown as Readonly<
|
|
2603
|
+
Record<string, unknown>
|
|
2604
|
+
>,
|
|
2605
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/utils/context-usage":
|
|
2606
|
+
bundledPiCodingAgentModesUtilsContextUsage as unknown as Readonly<Record<string, unknown>>,
|
|
2607
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/utils/copy-targets":
|
|
2608
|
+
bundledPiCodingAgentModesUtilsCopyTargets as unknown as Readonly<Record<string, unknown>>,
|
|
2609
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/utils/hotkeys-markdown":
|
|
2610
|
+
bundledPiCodingAgentModesUtilsHotkeysMarkdown as unknown as Readonly<Record<string, unknown>>,
|
|
2611
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/utils/interactive-context-helpers":
|
|
2612
|
+
bundledPiCodingAgentModesUtilsInteractiveContextHelpers as unknown as Readonly<Record<string, unknown>>,
|
|
2613
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/utils/keybinding-matchers":
|
|
2614
|
+
bundledPiCodingAgentModesUtilsKeybindingMatchers as unknown as Readonly<Record<string, unknown>>,
|
|
2615
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/utils/tools-markdown":
|
|
2616
|
+
bundledPiCodingAgentModesUtilsToolsMarkdown as unknown as Readonly<Record<string, unknown>>,
|
|
2617
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/utils/transcript-render-helpers":
|
|
2618
|
+
bundledPiCodingAgentModesUtilsTranscriptRenderHelpers as unknown as Readonly<Record<string, unknown>>,
|
|
2619
|
+
"@oh-my-pi-zen/pi-coding-agent/modes/utils/ui-helpers": bundledPiCodingAgentModesUtilsUiHelpers as unknown as Readonly<
|
|
2620
|
+
Record<string, unknown>
|
|
2621
|
+
>,
|
|
2622
|
+
"@oh-my-pi-zen/pi-coding-agent/plan-mode/approved-plan": bundledPiCodingAgentPlanModeApprovedPlan as unknown as Readonly<
|
|
2623
|
+
Record<string, unknown>
|
|
2624
|
+
>,
|
|
2625
|
+
"@oh-my-pi-zen/pi-coding-agent/plan-mode/plan-handoff": bundledPiCodingAgentPlanModePlanHandoff as unknown as Readonly<
|
|
2626
|
+
Record<string, unknown>
|
|
2627
|
+
>,
|
|
2628
|
+
"@oh-my-pi-zen/pi-coding-agent/plan-mode/plan-protection":
|
|
2629
|
+
bundledPiCodingAgentPlanModePlanProtection as unknown as Readonly<Record<string, unknown>>,
|
|
2630
|
+
"@oh-my-pi-zen/pi-coding-agent/plan-mode/state": bundledPiCodingAgentPlanModeState as unknown as Readonly<
|
|
2631
|
+
Record<string, unknown>
|
|
2632
|
+
>,
|
|
2633
|
+
"@oh-my-pi-zen/pi-coding-agent/secrets/obfuscator": bundledPiCodingAgentSecretsObfuscator as unknown as Readonly<
|
|
2634
|
+
Record<string, unknown>
|
|
2635
|
+
>,
|
|
2636
|
+
"@oh-my-pi-zen/pi-coding-agent/secrets/regex": bundledPiCodingAgentSecretsRegex as unknown as Readonly<
|
|
2637
|
+
Record<string, unknown>
|
|
2638
|
+
>,
|
|
2639
|
+
"@oh-my-pi-zen/pi-coding-agent/session/agent-session": bundledPiCodingAgentSessionAgentSession as unknown as Readonly<
|
|
2640
|
+
Record<string, unknown>
|
|
2641
|
+
>,
|
|
2642
|
+
"@oh-my-pi-zen/pi-coding-agent/session/agent-storage": bundledPiCodingAgentSessionAgentStorage as unknown as Readonly<
|
|
2643
|
+
Record<string, unknown>
|
|
2644
|
+
>,
|
|
2645
|
+
"@oh-my-pi-zen/pi-coding-agent/session/artifacts": bundledPiCodingAgentSessionArtifacts as unknown as Readonly<
|
|
2646
|
+
Record<string, unknown>
|
|
2647
|
+
>,
|
|
2648
|
+
"@oh-my-pi-zen/pi-coding-agent/session/auth-broker-config":
|
|
2649
|
+
bundledPiCodingAgentSessionAuthBrokerConfig as unknown as Readonly<Record<string, unknown>>,
|
|
2650
|
+
"@oh-my-pi-zen/pi-coding-agent/session/auth-storage": bundledPiCodingAgentSessionAuthStorage as unknown as Readonly<
|
|
2651
|
+
Record<string, unknown>
|
|
2652
|
+
>,
|
|
2653
|
+
"@oh-my-pi-zen/pi-coding-agent/session/blob-store": bundledPiCodingAgentSessionBlobStore as unknown as Readonly<
|
|
2654
|
+
Record<string, unknown>
|
|
2655
|
+
>,
|
|
2656
|
+
"@oh-my-pi-zen/pi-coding-agent/session/client-bridge": bundledPiCodingAgentSessionClientBridge as unknown as Readonly<
|
|
2657
|
+
Record<string, unknown>
|
|
2658
|
+
>,
|
|
2659
|
+
"@oh-my-pi-zen/pi-coding-agent/session/codex-auto-reset":
|
|
2660
|
+
bundledPiCodingAgentSessionCodexAutoReset as unknown as Readonly<Record<string, unknown>>,
|
|
2661
|
+
"@oh-my-pi-zen/pi-coding-agent/session/compact-modes": bundledPiCodingAgentSessionCompactModes as unknown as Readonly<
|
|
2662
|
+
Record<string, unknown>
|
|
2663
|
+
>,
|
|
2664
|
+
"@oh-my-pi-zen/pi-coding-agent/session/history-storage":
|
|
2665
|
+
bundledPiCodingAgentSessionHistoryStorage as unknown as Readonly<Record<string, unknown>>,
|
|
2666
|
+
"@oh-my-pi-zen/pi-coding-agent/session/indexed-session-storage":
|
|
2667
|
+
bundledPiCodingAgentSessionIndexedSessionStorage as unknown as Readonly<Record<string, unknown>>,
|
|
2668
|
+
"@oh-my-pi-zen/pi-coding-agent/session/messages": bundledPiCodingAgentSessionMessages as unknown as Readonly<
|
|
2669
|
+
Record<string, unknown>
|
|
2670
|
+
>,
|
|
2671
|
+
"@oh-my-pi-zen/pi-coding-agent/session/provider-image-budget":
|
|
2672
|
+
bundledPiCodingAgentSessionProviderImageBudget as unknown as Readonly<Record<string, unknown>>,
|
|
2673
|
+
"@oh-my-pi-zen/pi-coding-agent/session/redis-session-storage":
|
|
2674
|
+
bundledPiCodingAgentSessionRedisSessionStorage as unknown as Readonly<Record<string, unknown>>,
|
|
2675
|
+
"@oh-my-pi-zen/pi-coding-agent/session/session-context":
|
|
2676
|
+
bundledPiCodingAgentSessionSessionContext as unknown as Readonly<Record<string, unknown>>,
|
|
2677
|
+
"@oh-my-pi-zen/pi-coding-agent/session/session-dump-format":
|
|
2678
|
+
bundledPiCodingAgentSessionSessionDumpFormat as unknown as Readonly<Record<string, unknown>>,
|
|
2679
|
+
"@oh-my-pi-zen/pi-coding-agent/session/session-entries":
|
|
2680
|
+
bundledPiCodingAgentSessionSessionEntries as unknown as Readonly<Record<string, unknown>>,
|
|
2681
|
+
"@oh-my-pi-zen/pi-coding-agent/session/session-history-format":
|
|
2682
|
+
bundledPiCodingAgentSessionSessionHistoryFormat as unknown as Readonly<Record<string, unknown>>,
|
|
2683
|
+
"@oh-my-pi-zen/pi-coding-agent/session/session-listing":
|
|
2684
|
+
bundledPiCodingAgentSessionSessionListing as unknown as Readonly<Record<string, unknown>>,
|
|
2685
|
+
"@oh-my-pi-zen/pi-coding-agent/session/session-loader": bundledPiCodingAgentSessionSessionLoader as unknown as Readonly<
|
|
2686
|
+
Record<string, unknown>
|
|
2687
|
+
>,
|
|
2688
|
+
"@oh-my-pi-zen/pi-coding-agent/session/session-manager":
|
|
2689
|
+
bundledPiCodingAgentSessionSessionManager as unknown as Readonly<Record<string, unknown>>,
|
|
2690
|
+
"@oh-my-pi-zen/pi-coding-agent/session/session-migrations":
|
|
2691
|
+
bundledPiCodingAgentSessionSessionMigrations as unknown as Readonly<Record<string, unknown>>,
|
|
2692
|
+
"@oh-my-pi-zen/pi-coding-agent/session/session-paths": bundledPiCodingAgentSessionSessionPaths as unknown as Readonly<
|
|
2693
|
+
Record<string, unknown>
|
|
2694
|
+
>,
|
|
2695
|
+
"@oh-my-pi-zen/pi-coding-agent/session/session-persistence":
|
|
2696
|
+
bundledPiCodingAgentSessionSessionPersistence as unknown as Readonly<Record<string, unknown>>,
|
|
2697
|
+
"@oh-my-pi-zen/pi-coding-agent/session/session-storage":
|
|
2698
|
+
bundledPiCodingAgentSessionSessionStorage as unknown as Readonly<Record<string, unknown>>,
|
|
2699
|
+
"@oh-my-pi-zen/pi-coding-agent/session/settings-stream-fn":
|
|
2700
|
+
bundledPiCodingAgentSessionSettingsStreamFn as unknown as Readonly<Record<string, unknown>>,
|
|
2701
|
+
"@oh-my-pi-zen/pi-coding-agent/session/shake-types": bundledPiCodingAgentSessionShakeTypes as unknown as Readonly<
|
|
2702
|
+
Record<string, unknown>
|
|
2703
|
+
>,
|
|
2704
|
+
"@oh-my-pi-zen/pi-coding-agent/session/snapcompact-inline":
|
|
2705
|
+
bundledPiCodingAgentSessionSnapcompactInline as unknown as Readonly<Record<string, unknown>>,
|
|
2706
|
+
"@oh-my-pi-zen/pi-coding-agent/session/snapcompact-savings-journal":
|
|
2707
|
+
bundledPiCodingAgentSessionSnapcompactSavingsJournal as unknown as Readonly<Record<string, unknown>>,
|
|
2708
|
+
"@oh-my-pi-zen/pi-coding-agent/session/sql-session-storage":
|
|
2709
|
+
bundledPiCodingAgentSessionSqlSessionStorage as unknown as Readonly<Record<string, unknown>>,
|
|
2710
|
+
"@oh-my-pi-zen/pi-coding-agent/session/streaming-output":
|
|
2711
|
+
bundledPiCodingAgentSessionStreamingOutput as unknown as Readonly<Record<string, unknown>>,
|
|
2712
|
+
"@oh-my-pi-zen/pi-coding-agent/session/tool-choice-queue":
|
|
2713
|
+
bundledPiCodingAgentSessionToolChoiceQueue as unknown as Readonly<Record<string, unknown>>,
|
|
2714
|
+
"@oh-my-pi-zen/pi-coding-agent/session/turn-persistence":
|
|
2715
|
+
bundledPiCodingAgentSessionTurnPersistence as unknown as Readonly<Record<string, unknown>>,
|
|
2716
|
+
"@oh-my-pi-zen/pi-coding-agent/session/unexpected-stop-classifier":
|
|
2717
|
+
bundledPiCodingAgentSessionUnexpectedStopClassifier as unknown as Readonly<Record<string, unknown>>,
|
|
2718
|
+
"@oh-my-pi-zen/pi-coding-agent/session/yield-queue": bundledPiCodingAgentSessionYieldQueue as unknown as Readonly<
|
|
2719
|
+
Record<string, unknown>
|
|
2720
|
+
>,
|
|
2721
|
+
"@oh-my-pi-zen/pi-coding-agent/slash-commands/acp-builtins":
|
|
2722
|
+
bundledPiCodingAgentSlashCommandsAcpBuiltins as unknown as Readonly<Record<string, unknown>>,
|
|
2723
|
+
"@oh-my-pi-zen/pi-coding-agent/slash-commands/available-commands":
|
|
2724
|
+
bundledPiCodingAgentSlashCommandsAvailableCommands as unknown as Readonly<Record<string, unknown>>,
|
|
2725
|
+
"@oh-my-pi-zen/pi-coding-agent/slash-commands/builtin-registry":
|
|
2726
|
+
bundledPiCodingAgentSlashCommandsBuiltinRegistry as unknown as Readonly<Record<string, unknown>>,
|
|
2727
|
+
"@oh-my-pi-zen/pi-coding-agent/slash-commands/marketplace-install-parser":
|
|
2728
|
+
bundledPiCodingAgentSlashCommandsMarketplaceInstallParser as unknown as Readonly<Record<string, unknown>>,
|
|
2729
|
+
"@oh-my-pi-zen/pi-coding-agent/slash-commands/types": bundledPiCodingAgentSlashCommandsTypes as unknown as Readonly<
|
|
2730
|
+
Record<string, unknown>
|
|
2731
|
+
>,
|
|
2732
|
+
"@oh-my-pi-zen/pi-coding-agent/ssh/config-writer": bundledPiCodingAgentSshConfigWriter as unknown as Readonly<
|
|
2733
|
+
Record<string, unknown>
|
|
2734
|
+
>,
|
|
2735
|
+
"@oh-my-pi-zen/pi-coding-agent/ssh/connection-manager": bundledPiCodingAgentSshConnectionManager as unknown as Readonly<
|
|
2736
|
+
Record<string, unknown>
|
|
2737
|
+
>,
|
|
2738
|
+
"@oh-my-pi-zen/pi-coding-agent/ssh/file-transfer": bundledPiCodingAgentSshFileTransfer as unknown as Readonly<
|
|
2739
|
+
Record<string, unknown>
|
|
2740
|
+
>,
|
|
2741
|
+
"@oh-my-pi-zen/pi-coding-agent/ssh/ssh-executor": bundledPiCodingAgentSshSshExecutor as unknown as Readonly<
|
|
2742
|
+
Record<string, unknown>
|
|
2743
|
+
>,
|
|
2744
|
+
"@oh-my-pi-zen/pi-coding-agent/ssh/sshfs-mount": bundledPiCodingAgentSshSshfsMount as unknown as Readonly<
|
|
2745
|
+
Record<string, unknown>
|
|
2746
|
+
>,
|
|
2747
|
+
"@oh-my-pi-zen/pi-coding-agent/ssh/utils": bundledPiCodingAgentSshUtils as unknown as Readonly<Record<string, unknown>>,
|
|
2748
|
+
"@oh-my-pi-zen/pi-coding-agent/stt/asr-client": bundledPiCodingAgentSttAsrClient as unknown as Readonly<
|
|
2749
|
+
Record<string, unknown>
|
|
2750
|
+
>,
|
|
2751
|
+
"@oh-my-pi-zen/pi-coding-agent/stt/asr-protocol": bundledPiCodingAgentSttAsrProtocol as unknown as Readonly<
|
|
2752
|
+
Record<string, unknown>
|
|
2753
|
+
>,
|
|
2754
|
+
"@oh-my-pi-zen/pi-coding-agent/stt/asr-worker": bundledPiCodingAgentSttAsrWorker as unknown as Readonly<
|
|
2755
|
+
Record<string, unknown>
|
|
2756
|
+
>,
|
|
2757
|
+
"@oh-my-pi-zen/pi-coding-agent/stt/downloader": bundledPiCodingAgentSttDownloader as unknown as Readonly<
|
|
2758
|
+
Record<string, unknown>
|
|
2759
|
+
>,
|
|
2760
|
+
"@oh-my-pi-zen/pi-coding-agent/stt/endpointer": bundledPiCodingAgentSttEndpointer as unknown as Readonly<
|
|
2761
|
+
Record<string, unknown>
|
|
2762
|
+
>,
|
|
2763
|
+
"@oh-my-pi-zen/pi-coding-agent/stt/models": bundledPiCodingAgentSttModels as unknown as Readonly<
|
|
2764
|
+
Record<string, unknown>
|
|
2765
|
+
>,
|
|
2766
|
+
"@oh-my-pi-zen/pi-coding-agent/stt/recorder": bundledPiCodingAgentSttRecorder as unknown as Readonly<
|
|
2767
|
+
Record<string, unknown>
|
|
2768
|
+
>,
|
|
2769
|
+
"@oh-my-pi-zen/pi-coding-agent/stt/stt-controller": bundledPiCodingAgentSttSttController as unknown as Readonly<
|
|
2770
|
+
Record<string, unknown>
|
|
2771
|
+
>,
|
|
2772
|
+
"@oh-my-pi-zen/pi-coding-agent/stt/transcriber": bundledPiCodingAgentSttTranscriber as unknown as Readonly<
|
|
2773
|
+
Record<string, unknown>
|
|
2774
|
+
>,
|
|
2775
|
+
"@oh-my-pi-zen/pi-coding-agent/stt/wav": bundledPiCodingAgentSttWav as unknown as Readonly<Record<string, unknown>>,
|
|
2776
|
+
"@oh-my-pi-zen/pi-coding-agent/task/agents": bundledPiCodingAgentTaskAgents as unknown as Readonly<
|
|
2777
|
+
Record<string, unknown>
|
|
2778
|
+
>,
|
|
2779
|
+
"@oh-my-pi-zen/pi-coding-agent/task/commands": bundledPiCodingAgentTaskCommands as unknown as Readonly<
|
|
2780
|
+
Record<string, unknown>
|
|
2781
|
+
>,
|
|
2782
|
+
"@oh-my-pi-zen/pi-coding-agent/task/discovery": bundledPiCodingAgentTaskDiscovery as unknown as Readonly<
|
|
2783
|
+
Record<string, unknown>
|
|
2784
|
+
>,
|
|
2785
|
+
"@oh-my-pi-zen/pi-coding-agent/task/executor": bundledPiCodingAgentTaskExecutor as unknown as Readonly<
|
|
2786
|
+
Record<string, unknown>
|
|
2787
|
+
>,
|
|
2788
|
+
"@oh-my-pi-zen/pi-coding-agent/task/isolation-runner": bundledPiCodingAgentTaskIsolationRunner as unknown as Readonly<
|
|
2789
|
+
Record<string, unknown>
|
|
2790
|
+
>,
|
|
2791
|
+
"@oh-my-pi-zen/pi-coding-agent/task/name-generator": bundledPiCodingAgentTaskNameGenerator as unknown as Readonly<
|
|
2792
|
+
Record<string, unknown>
|
|
2793
|
+
>,
|
|
2794
|
+
"@oh-my-pi-zen/pi-coding-agent/task/omp-command": bundledPiCodingAgentTaskOmpCommand as unknown as Readonly<
|
|
2795
|
+
Record<string, unknown>
|
|
2796
|
+
>,
|
|
2797
|
+
"@oh-my-pi-zen/pi-coding-agent/task/output-manager": bundledPiCodingAgentTaskOutputManager as unknown as Readonly<
|
|
2798
|
+
Record<string, unknown>
|
|
2799
|
+
>,
|
|
2800
|
+
"@oh-my-pi-zen/pi-coding-agent/task/parallel": bundledPiCodingAgentTaskParallel as unknown as Readonly<
|
|
2801
|
+
Record<string, unknown>
|
|
2802
|
+
>,
|
|
2803
|
+
"@oh-my-pi-zen/pi-coding-agent/task/persisted-revive": bundledPiCodingAgentTaskPersistedRevive as unknown as Readonly<
|
|
2804
|
+
Record<string, unknown>
|
|
2805
|
+
>,
|
|
2806
|
+
"@oh-my-pi-zen/pi-coding-agent/task/render": bundledPiCodingAgentTaskRender as unknown as Readonly<
|
|
2807
|
+
Record<string, unknown>
|
|
2808
|
+
>,
|
|
2809
|
+
"@oh-my-pi-zen/pi-coding-agent/task/repair-args": bundledPiCodingAgentTaskRepairArgs as unknown as Readonly<
|
|
2810
|
+
Record<string, unknown>
|
|
2811
|
+
>,
|
|
2812
|
+
"@oh-my-pi-zen/pi-coding-agent/task/subprocess-tool-registry":
|
|
2813
|
+
bundledPiCodingAgentTaskSubprocessToolRegistry as unknown as Readonly<Record<string, unknown>>,
|
|
2814
|
+
"@oh-my-pi-zen/pi-coding-agent/task/types": bundledPiCodingAgentTaskTypes as unknown as Readonly<
|
|
2815
|
+
Record<string, unknown>
|
|
2816
|
+
>,
|
|
2817
|
+
"@oh-my-pi-zen/pi-coding-agent/task/worktree": bundledPiCodingAgentTaskWorktree as unknown as Readonly<
|
|
2818
|
+
Record<string, unknown>
|
|
2819
|
+
>,
|
|
2820
|
+
"@oh-my-pi-zen/pi-coding-agent/tool-discovery/mode": bundledPiCodingAgentToolDiscoveryMode as unknown as Readonly<
|
|
2821
|
+
Record<string, unknown>
|
|
2822
|
+
>,
|
|
2823
|
+
"@oh-my-pi-zen/pi-coding-agent/tool-discovery/tool-index":
|
|
2824
|
+
bundledPiCodingAgentToolDiscoveryToolIndex as unknown as Readonly<Record<string, unknown>>,
|
|
2825
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/acp-bridge": bundledPiCodingAgentToolsAcpBridge as unknown as Readonly<
|
|
2826
|
+
Record<string, unknown>
|
|
2827
|
+
>,
|
|
2828
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/approval": bundledPiCodingAgentToolsApproval as unknown as Readonly<
|
|
2829
|
+
Record<string, unknown>
|
|
2830
|
+
>,
|
|
2831
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/ask": bundledPiCodingAgentToolsAsk as unknown as Readonly<Record<string, unknown>>,
|
|
2832
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/ast-edit": bundledPiCodingAgentToolsAstEdit as unknown as Readonly<
|
|
2833
|
+
Record<string, unknown>
|
|
2834
|
+
>,
|
|
2835
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/ast-grep": bundledPiCodingAgentToolsAstGrep as unknown as Readonly<
|
|
2836
|
+
Record<string, unknown>
|
|
2837
|
+
>,
|
|
2838
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/auto-generated-guard":
|
|
2839
|
+
bundledPiCodingAgentToolsAutoGeneratedGuard as unknown as Readonly<Record<string, unknown>>,
|
|
2840
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/bash-command-fixup":
|
|
2841
|
+
bundledPiCodingAgentToolsBashCommandFixup as unknown as Readonly<Record<string, unknown>>,
|
|
2842
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/bash-interactive": bundledPiCodingAgentToolsBashInteractive as unknown as Readonly<
|
|
2843
|
+
Record<string, unknown>
|
|
2844
|
+
>,
|
|
2845
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/bash-interceptor": bundledPiCodingAgentToolsBashInterceptor as unknown as Readonly<
|
|
2846
|
+
Record<string, unknown>
|
|
2847
|
+
>,
|
|
2848
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/bash-pty-selection":
|
|
2849
|
+
bundledPiCodingAgentToolsBashPtySelection as unknown as Readonly<Record<string, unknown>>,
|
|
2850
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/bash-skill-urls": bundledPiCodingAgentToolsBashSkillUrls as unknown as Readonly<
|
|
2851
|
+
Record<string, unknown>
|
|
2852
|
+
>,
|
|
2853
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/bash": bundledPiCodingAgentToolsBash as unknown as Readonly<
|
|
2854
|
+
Record<string, unknown>
|
|
2855
|
+
>,
|
|
2856
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/browser": bundledPiCodingAgentToolsBrowser as unknown as Readonly<
|
|
2857
|
+
Record<string, unknown>
|
|
2858
|
+
>,
|
|
2859
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/builtin-names": bundledPiCodingAgentToolsBuiltinNames as unknown as Readonly<
|
|
2860
|
+
Record<string, unknown>
|
|
2861
|
+
>,
|
|
2862
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/checkpoint": bundledPiCodingAgentToolsCheckpoint as unknown as Readonly<
|
|
2863
|
+
Record<string, unknown>
|
|
2864
|
+
>,
|
|
2865
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/conflict-detect": bundledPiCodingAgentToolsConflictDetect as unknown as Readonly<
|
|
2866
|
+
Record<string, unknown>
|
|
2867
|
+
>,
|
|
2868
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/context": bundledPiCodingAgentToolsContext as unknown as Readonly<
|
|
2869
|
+
Record<string, unknown>
|
|
2870
|
+
>,
|
|
2871
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/debug": bundledPiCodingAgentToolsDebug as unknown as Readonly<
|
|
2872
|
+
Record<string, unknown>
|
|
2873
|
+
>,
|
|
2874
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/eval-backends": bundledPiCodingAgentToolsEvalBackends as unknown as Readonly<
|
|
2875
|
+
Record<string, unknown>
|
|
2876
|
+
>,
|
|
2877
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/eval-render": bundledPiCodingAgentToolsEvalRender as unknown as Readonly<
|
|
2878
|
+
Record<string, unknown>
|
|
2879
|
+
>,
|
|
2880
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/eval": bundledPiCodingAgentToolsEval as unknown as Readonly<
|
|
2881
|
+
Record<string, unknown>
|
|
2882
|
+
>,
|
|
2883
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/fetch": bundledPiCodingAgentToolsFetch as unknown as Readonly<
|
|
2884
|
+
Record<string, unknown>
|
|
2885
|
+
>,
|
|
2886
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/file-recorder": bundledPiCodingAgentToolsFileRecorder as unknown as Readonly<
|
|
2887
|
+
Record<string, unknown>
|
|
2888
|
+
>,
|
|
2889
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/fs-cache-invalidation":
|
|
2890
|
+
bundledPiCodingAgentToolsFsCacheInvalidation as unknown as Readonly<Record<string, unknown>>,
|
|
2891
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/gh-cache-invalidation":
|
|
2892
|
+
bundledPiCodingAgentToolsGhCacheInvalidation as unknown as Readonly<Record<string, unknown>>,
|
|
2893
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/gh-format": bundledPiCodingAgentToolsGhFormat as unknown as Readonly<
|
|
2894
|
+
Record<string, unknown>
|
|
2895
|
+
>,
|
|
2896
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/gh-renderer": bundledPiCodingAgentToolsGhRenderer as unknown as Readonly<
|
|
2897
|
+
Record<string, unknown>
|
|
2898
|
+
>,
|
|
2899
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/gh": bundledPiCodingAgentToolsGh as unknown as Readonly<Record<string, unknown>>,
|
|
2900
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/github-cache": bundledPiCodingAgentToolsGithubCache as unknown as Readonly<
|
|
2901
|
+
Record<string, unknown>
|
|
2902
|
+
>,
|
|
2903
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/glob": bundledPiCodingAgentToolsGlob as unknown as Readonly<
|
|
2904
|
+
Record<string, unknown>
|
|
2905
|
+
>,
|
|
2906
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/grep": bundledPiCodingAgentToolsGrep as unknown as Readonly<
|
|
2907
|
+
Record<string, unknown>
|
|
2908
|
+
>,
|
|
2909
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/grouped-file-output":
|
|
2910
|
+
bundledPiCodingAgentToolsGroupedFileOutput as unknown as Readonly<Record<string, unknown>>,
|
|
2911
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/image-gen": bundledPiCodingAgentToolsImageGen as unknown as Readonly<
|
|
2912
|
+
Record<string, unknown>
|
|
2913
|
+
>,
|
|
2914
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/inspect-image-renderer":
|
|
2915
|
+
bundledPiCodingAgentToolsInspectImageRenderer as unknown as Readonly<Record<string, unknown>>,
|
|
2916
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/inspect-image": bundledPiCodingAgentToolsInspectImage as unknown as Readonly<
|
|
2917
|
+
Record<string, unknown>
|
|
2918
|
+
>,
|
|
2919
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/irc": bundledPiCodingAgentToolsIrc as unknown as Readonly<Record<string, unknown>>,
|
|
2920
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/job": bundledPiCodingAgentToolsJob as unknown as Readonly<Record<string, unknown>>,
|
|
2921
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/json-tree": bundledPiCodingAgentToolsJsonTree as unknown as Readonly<
|
|
2922
|
+
Record<string, unknown>
|
|
2923
|
+
>,
|
|
2924
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/jtd-to-json-schema":
|
|
2925
|
+
bundledPiCodingAgentToolsJtdToJsonSchema as unknown as Readonly<Record<string, unknown>>,
|
|
2926
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/jtd-to-typescript": bundledPiCodingAgentToolsJtdToTypescript as unknown as Readonly<
|
|
2927
|
+
Record<string, unknown>
|
|
2928
|
+
>,
|
|
2929
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/jtd-utils": bundledPiCodingAgentToolsJtdUtils as unknown as Readonly<
|
|
2930
|
+
Record<string, unknown>
|
|
2931
|
+
>,
|
|
2932
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/learn": bundledPiCodingAgentToolsLearn as unknown as Readonly<
|
|
2933
|
+
Record<string, unknown>
|
|
2934
|
+
>,
|
|
2935
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/list-limit": bundledPiCodingAgentToolsListLimit as unknown as Readonly<
|
|
2936
|
+
Record<string, unknown>
|
|
2937
|
+
>,
|
|
2938
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/manage-skill": bundledPiCodingAgentToolsManageSkill as unknown as Readonly<
|
|
2939
|
+
Record<string, unknown>
|
|
2940
|
+
>,
|
|
2941
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/match-line-format": bundledPiCodingAgentToolsMatchLineFormat as unknown as Readonly<
|
|
2942
|
+
Record<string, unknown>
|
|
2943
|
+
>,
|
|
2944
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/memory-edit": bundledPiCodingAgentToolsMemoryEdit as unknown as Readonly<
|
|
2945
|
+
Record<string, unknown>
|
|
2946
|
+
>,
|
|
2947
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/memory-recall": bundledPiCodingAgentToolsMemoryRecall as unknown as Readonly<
|
|
2948
|
+
Record<string, unknown>
|
|
2949
|
+
>,
|
|
2950
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/memory-reflect": bundledPiCodingAgentToolsMemoryReflect as unknown as Readonly<
|
|
2951
|
+
Record<string, unknown>
|
|
2952
|
+
>,
|
|
2953
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/memory-render": bundledPiCodingAgentToolsMemoryRender as unknown as Readonly<
|
|
2954
|
+
Record<string, unknown>
|
|
2955
|
+
>,
|
|
2956
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/memory-retain": bundledPiCodingAgentToolsMemoryRetain as unknown as Readonly<
|
|
2957
|
+
Record<string, unknown>
|
|
2958
|
+
>,
|
|
2959
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/output-meta": bundledPiCodingAgentToolsOutputMeta as unknown as Readonly<
|
|
2960
|
+
Record<string, unknown>
|
|
2961
|
+
>,
|
|
2962
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/output-schema-validator":
|
|
2963
|
+
bundledPiCodingAgentToolsOutputSchemaValidator as unknown as Readonly<Record<string, unknown>>,
|
|
2964
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/path-utils": bundledPiCodingAgentToolsPathUtils as unknown as Readonly<
|
|
2965
|
+
Record<string, unknown>
|
|
2966
|
+
>,
|
|
2967
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/plan-mode-guard": bundledPiCodingAgentToolsPlanModeGuard as unknown as Readonly<
|
|
2968
|
+
Record<string, unknown>
|
|
2969
|
+
>,
|
|
2970
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/read": bundledPiCodingAgentToolsRead as unknown as Readonly<
|
|
2971
|
+
Record<string, unknown>
|
|
2972
|
+
>,
|
|
2973
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/render-utils": bundledPiCodingAgentToolsRenderUtils as unknown as Readonly<
|
|
2974
|
+
Record<string, unknown>
|
|
2975
|
+
>,
|
|
2976
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/renderers": bundledPiCodingAgentToolsRenderers as unknown as Readonly<
|
|
2977
|
+
Record<string, unknown>
|
|
2978
|
+
>,
|
|
2979
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/report-tool-issue": bundledPiCodingAgentToolsReportToolIssue as unknown as Readonly<
|
|
2980
|
+
Record<string, unknown>
|
|
2981
|
+
>,
|
|
2982
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/resolve": bundledPiCodingAgentToolsResolve as unknown as Readonly<
|
|
2983
|
+
Record<string, unknown>
|
|
2984
|
+
>,
|
|
2985
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/review": bundledPiCodingAgentToolsReview as unknown as Readonly<
|
|
2986
|
+
Record<string, unknown>
|
|
2987
|
+
>,
|
|
2988
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/search-tool-bm25": bundledPiCodingAgentToolsSearchToolBm25 as unknown as Readonly<
|
|
2989
|
+
Record<string, unknown>
|
|
2990
|
+
>,
|
|
2991
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/sqlite-reader": bundledPiCodingAgentToolsSqliteReader as unknown as Readonly<
|
|
2992
|
+
Record<string, unknown>
|
|
2993
|
+
>,
|
|
2994
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/ssh": bundledPiCodingAgentToolsSsh as unknown as Readonly<Record<string, unknown>>,
|
|
2995
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/todo": bundledPiCodingAgentToolsTodo as unknown as Readonly<
|
|
2996
|
+
Record<string, unknown>
|
|
2997
|
+
>,
|
|
2998
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/tool-errors": bundledPiCodingAgentToolsToolErrors as unknown as Readonly<
|
|
2999
|
+
Record<string, unknown>
|
|
3000
|
+
>,
|
|
3001
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/tool-result": bundledPiCodingAgentToolsToolResult as unknown as Readonly<
|
|
3002
|
+
Record<string, unknown>
|
|
3003
|
+
>,
|
|
3004
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/tool-timeouts": bundledPiCodingAgentToolsToolTimeouts as unknown as Readonly<
|
|
3005
|
+
Record<string, unknown>
|
|
3006
|
+
>,
|
|
3007
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/tts": bundledPiCodingAgentToolsTts as unknown as Readonly<Record<string, unknown>>,
|
|
3008
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/write": bundledPiCodingAgentToolsWrite as unknown as Readonly<
|
|
3009
|
+
Record<string, unknown>
|
|
3010
|
+
>,
|
|
3011
|
+
"@oh-my-pi-zen/pi-coding-agent/tools/yield": bundledPiCodingAgentToolsYield as unknown as Readonly<
|
|
3012
|
+
Record<string, unknown>
|
|
3013
|
+
>,
|
|
3014
|
+
"@oh-my-pi-zen/pi-coding-agent/tui/code-cell": bundledPiCodingAgentTuiCodeCell as unknown as Readonly<
|
|
3015
|
+
Record<string, unknown>
|
|
3016
|
+
>,
|
|
3017
|
+
"@oh-my-pi-zen/pi-coding-agent/tui/file-list": bundledPiCodingAgentTuiFileList as unknown as Readonly<
|
|
3018
|
+
Record<string, unknown>
|
|
3019
|
+
>,
|
|
3020
|
+
"@oh-my-pi-zen/pi-coding-agent/tui/hyperlink": bundledPiCodingAgentTuiHyperlink as unknown as Readonly<
|
|
3021
|
+
Record<string, unknown>
|
|
3022
|
+
>,
|
|
3023
|
+
"@oh-my-pi-zen/pi-coding-agent/tui/output-block": bundledPiCodingAgentTuiOutputBlock as unknown as Readonly<
|
|
3024
|
+
Record<string, unknown>
|
|
3025
|
+
>,
|
|
3026
|
+
"@oh-my-pi-zen/pi-coding-agent/tui/status-line": bundledPiCodingAgentTuiStatusLine as unknown as Readonly<
|
|
3027
|
+
Record<string, unknown>
|
|
3028
|
+
>,
|
|
3029
|
+
"@oh-my-pi-zen/pi-coding-agent/tui/tree-list": bundledPiCodingAgentTuiTreeList as unknown as Readonly<
|
|
3030
|
+
Record<string, unknown>
|
|
3031
|
+
>,
|
|
3032
|
+
"@oh-my-pi-zen/pi-coding-agent/tui/types": bundledPiCodingAgentTuiTypes as unknown as Readonly<Record<string, unknown>>,
|
|
3033
|
+
"@oh-my-pi-zen/pi-coding-agent/tui/utils": bundledPiCodingAgentTuiUtils as unknown as Readonly<Record<string, unknown>>,
|
|
3034
|
+
"@oh-my-pi-zen/pi-coding-agent/tui/width-aware-text": bundledPiCodingAgentTuiWidthAwareText as unknown as Readonly<
|
|
3035
|
+
Record<string, unknown>
|
|
3036
|
+
>,
|
|
3037
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/active-repo-context":
|
|
3038
|
+
bundledPiCodingAgentUtilsActiveRepoContext as unknown as Readonly<Record<string, unknown>>,
|
|
3039
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/block-context": bundledPiCodingAgentUtilsBlockContext as unknown as Readonly<
|
|
3040
|
+
Record<string, unknown>
|
|
3041
|
+
>,
|
|
3042
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/changelog": bundledPiCodingAgentUtilsChangelog as unknown as Readonly<
|
|
3043
|
+
Record<string, unknown>
|
|
3044
|
+
>,
|
|
3045
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/clipboard": bundledPiCodingAgentUtilsClipboard as unknown as Readonly<
|
|
3046
|
+
Record<string, unknown>
|
|
3047
|
+
>,
|
|
3048
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/command-args": bundledPiCodingAgentUtilsCommandArgs as unknown as Readonly<
|
|
3049
|
+
Record<string, unknown>
|
|
3050
|
+
>,
|
|
3051
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/commit-message-generator":
|
|
3052
|
+
bundledPiCodingAgentUtilsCommitMessageGenerator as unknown as Readonly<Record<string, unknown>>,
|
|
3053
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/edit-mode": bundledPiCodingAgentUtilsEditMode as unknown as Readonly<
|
|
3054
|
+
Record<string, unknown>
|
|
3055
|
+
>,
|
|
3056
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/enhanced-paste": bundledPiCodingAgentUtilsEnhancedPaste as unknown as Readonly<
|
|
3057
|
+
Record<string, unknown>
|
|
3058
|
+
>,
|
|
3059
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/event-bus": bundledPiCodingAgentUtilsEventBus as unknown as Readonly<
|
|
3060
|
+
Record<string, unknown>
|
|
3061
|
+
>,
|
|
3062
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/external-editor": bundledPiCodingAgentUtilsExternalEditor as unknown as Readonly<
|
|
3063
|
+
Record<string, unknown>
|
|
3064
|
+
>,
|
|
3065
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/file-display-mode": bundledPiCodingAgentUtilsFileDisplayMode as unknown as Readonly<
|
|
3066
|
+
Record<string, unknown>
|
|
3067
|
+
>,
|
|
3068
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/file-mentions": bundledPiCodingAgentUtilsFileMentions as unknown as Readonly<
|
|
3069
|
+
Record<string, unknown>
|
|
3070
|
+
>,
|
|
3071
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/git": bundledPiCodingAgentUtilsGit as unknown as Readonly<Record<string, unknown>>,
|
|
3072
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/image-loading": bundledPiCodingAgentUtilsImageLoading as unknown as Readonly<
|
|
3073
|
+
Record<string, unknown>
|
|
3074
|
+
>,
|
|
3075
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/image-resize": bundledPiCodingAgentUtilsImageResize as unknown as Readonly<
|
|
3076
|
+
Record<string, unknown>
|
|
3077
|
+
>,
|
|
3078
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/image-vision-fallback":
|
|
3079
|
+
bundledPiCodingAgentUtilsImageVisionFallback as unknown as Readonly<Record<string, unknown>>,
|
|
3080
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/ipc": bundledPiCodingAgentUtilsIpc as unknown as Readonly<Record<string, unknown>>,
|
|
3081
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/jj": bundledPiCodingAgentUtilsJj as unknown as Readonly<Record<string, unknown>>,
|
|
3082
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/lang-from-path": bundledPiCodingAgentUtilsLangFromPath as unknown as Readonly<
|
|
3083
|
+
Record<string, unknown>
|
|
3084
|
+
>,
|
|
3085
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/markit-cache": bundledPiCodingAgentUtilsMarkitCache as unknown as Readonly<
|
|
3086
|
+
Record<string, unknown>
|
|
3087
|
+
>,
|
|
3088
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/markit": bundledPiCodingAgentUtilsMarkit as unknown as Readonly<
|
|
3089
|
+
Record<string, unknown>
|
|
3090
|
+
>,
|
|
3091
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/mupdf-wasm-embed": bundledPiCodingAgentUtilsMupdfWasmEmbed as unknown as Readonly<
|
|
3092
|
+
Record<string, unknown>
|
|
3093
|
+
>,
|
|
3094
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/open": bundledPiCodingAgentUtilsOpen as unknown as Readonly<
|
|
3095
|
+
Record<string, unknown>
|
|
3096
|
+
>,
|
|
3097
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/prompt-path": bundledPiCodingAgentUtilsPromptPath as unknown as Readonly<
|
|
3098
|
+
Record<string, unknown>
|
|
3099
|
+
>,
|
|
3100
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/qrcode": bundledPiCodingAgentUtilsQrcode as unknown as Readonly<
|
|
3101
|
+
Record<string, unknown>
|
|
3102
|
+
>,
|
|
3103
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/session-color": bundledPiCodingAgentUtilsSessionColor as unknown as Readonly<
|
|
3104
|
+
Record<string, unknown>
|
|
3105
|
+
>,
|
|
3106
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/shell-snapshot": bundledPiCodingAgentUtilsShellSnapshot as unknown as Readonly<
|
|
3107
|
+
Record<string, unknown>
|
|
3108
|
+
>,
|
|
3109
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/sixel": bundledPiCodingAgentUtilsSixel as unknown as Readonly<
|
|
3110
|
+
Record<string, unknown>
|
|
3111
|
+
>,
|
|
3112
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/thinking-display": bundledPiCodingAgentUtilsThinkingDisplay as unknown as Readonly<
|
|
3113
|
+
Record<string, unknown>
|
|
3114
|
+
>,
|
|
3115
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/title-generator": bundledPiCodingAgentUtilsTitleGenerator as unknown as Readonly<
|
|
3116
|
+
Record<string, unknown>
|
|
3117
|
+
>,
|
|
3118
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/tool-choice": bundledPiCodingAgentUtilsToolChoice as unknown as Readonly<
|
|
3119
|
+
Record<string, unknown>
|
|
3120
|
+
>,
|
|
3121
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/tools-manager": bundledPiCodingAgentUtilsToolsManager as unknown as Readonly<
|
|
3122
|
+
Record<string, unknown>
|
|
3123
|
+
>,
|
|
3124
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/turndown": bundledPiCodingAgentUtilsTurndown as unknown as Readonly<
|
|
3125
|
+
Record<string, unknown>
|
|
3126
|
+
>,
|
|
3127
|
+
"@oh-my-pi-zen/pi-coding-agent/utils/zip": bundledPiCodingAgentUtilsZip as unknown as Readonly<Record<string, unknown>>,
|
|
3128
|
+
"@oh-my-pi-zen/pi-coding-agent/web/kagi": bundledPiCodingAgentWebKagi as unknown as Readonly<Record<string, unknown>>,
|
|
3129
|
+
"@oh-my-pi-zen/pi-coding-agent/web/parallel": bundledPiCodingAgentWebParallel as unknown as Readonly<
|
|
3130
|
+
Record<string, unknown>
|
|
3131
|
+
>,
|
|
3132
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/artifacthub":
|
|
3133
|
+
bundledPiCodingAgentWebScrapersArtifacthub as unknown as Readonly<Record<string, unknown>>,
|
|
3134
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/arxiv": bundledPiCodingAgentWebScrapersArxiv as unknown as Readonly<
|
|
3135
|
+
Record<string, unknown>
|
|
3136
|
+
>,
|
|
3137
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/aur": bundledPiCodingAgentWebScrapersAur as unknown as Readonly<
|
|
3138
|
+
Record<string, unknown>
|
|
3139
|
+
>,
|
|
3140
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/biorxiv": bundledPiCodingAgentWebScrapersBiorxiv as unknown as Readonly<
|
|
3141
|
+
Record<string, unknown>
|
|
3142
|
+
>,
|
|
3143
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/bluesky": bundledPiCodingAgentWebScrapersBluesky as unknown as Readonly<
|
|
3144
|
+
Record<string, unknown>
|
|
3145
|
+
>,
|
|
3146
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/brew": bundledPiCodingAgentWebScrapersBrew as unknown as Readonly<
|
|
3147
|
+
Record<string, unknown>
|
|
3148
|
+
>,
|
|
3149
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/cheatsh": bundledPiCodingAgentWebScrapersCheatsh as unknown as Readonly<
|
|
3150
|
+
Record<string, unknown>
|
|
3151
|
+
>,
|
|
3152
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/chocolatey":
|
|
3153
|
+
bundledPiCodingAgentWebScrapersChocolatey as unknown as Readonly<Record<string, unknown>>,
|
|
3154
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/choosealicense":
|
|
3155
|
+
bundledPiCodingAgentWebScrapersChoosealicense as unknown as Readonly<Record<string, unknown>>,
|
|
3156
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/cisa-kev": bundledPiCodingAgentWebScrapersCisaKev as unknown as Readonly<
|
|
3157
|
+
Record<string, unknown>
|
|
3158
|
+
>,
|
|
3159
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/clojars": bundledPiCodingAgentWebScrapersClojars as unknown as Readonly<
|
|
3160
|
+
Record<string, unknown>
|
|
3161
|
+
>,
|
|
3162
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/coingecko": bundledPiCodingAgentWebScrapersCoingecko as unknown as Readonly<
|
|
3163
|
+
Record<string, unknown>
|
|
3164
|
+
>,
|
|
3165
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/crates-io": bundledPiCodingAgentWebScrapersCratesIo as unknown as Readonly<
|
|
3166
|
+
Record<string, unknown>
|
|
3167
|
+
>,
|
|
3168
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/crossref": bundledPiCodingAgentWebScrapersCrossref as unknown as Readonly<
|
|
3169
|
+
Record<string, unknown>
|
|
3170
|
+
>,
|
|
3171
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/devto": bundledPiCodingAgentWebScrapersDevto as unknown as Readonly<
|
|
3172
|
+
Record<string, unknown>
|
|
3173
|
+
>,
|
|
3174
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/discogs": bundledPiCodingAgentWebScrapersDiscogs as unknown as Readonly<
|
|
3175
|
+
Record<string, unknown>
|
|
3176
|
+
>,
|
|
3177
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/discourse": bundledPiCodingAgentWebScrapersDiscourse as unknown as Readonly<
|
|
3178
|
+
Record<string, unknown>
|
|
3179
|
+
>,
|
|
3180
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/dockerhub": bundledPiCodingAgentWebScrapersDockerhub as unknown as Readonly<
|
|
3181
|
+
Record<string, unknown>
|
|
3182
|
+
>,
|
|
3183
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/docs-rs": bundledPiCodingAgentWebScrapersDocsRs as unknown as Readonly<
|
|
3184
|
+
Record<string, unknown>
|
|
3185
|
+
>,
|
|
3186
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/fdroid": bundledPiCodingAgentWebScrapersFdroid as unknown as Readonly<
|
|
3187
|
+
Record<string, unknown>
|
|
3188
|
+
>,
|
|
3189
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/firefox-addons":
|
|
3190
|
+
bundledPiCodingAgentWebScrapersFirefoxAddons as unknown as Readonly<Record<string, unknown>>,
|
|
3191
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/flathub": bundledPiCodingAgentWebScrapersFlathub as unknown as Readonly<
|
|
3192
|
+
Record<string, unknown>
|
|
3193
|
+
>,
|
|
3194
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/github-gist":
|
|
3195
|
+
bundledPiCodingAgentWebScrapersGithubGist as unknown as Readonly<Record<string, unknown>>,
|
|
3196
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/github": bundledPiCodingAgentWebScrapersGithub as unknown as Readonly<
|
|
3197
|
+
Record<string, unknown>
|
|
3198
|
+
>,
|
|
3199
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/gitlab": bundledPiCodingAgentWebScrapersGitlab as unknown as Readonly<
|
|
3200
|
+
Record<string, unknown>
|
|
3201
|
+
>,
|
|
3202
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/go-pkg": bundledPiCodingAgentWebScrapersGoPkg as unknown as Readonly<
|
|
3203
|
+
Record<string, unknown>
|
|
3204
|
+
>,
|
|
3205
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/hackage": bundledPiCodingAgentWebScrapersHackage as unknown as Readonly<
|
|
3206
|
+
Record<string, unknown>
|
|
3207
|
+
>,
|
|
3208
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/hackernews":
|
|
3209
|
+
bundledPiCodingAgentWebScrapersHackernews as unknown as Readonly<Record<string, unknown>>,
|
|
3210
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/hex": bundledPiCodingAgentWebScrapersHex as unknown as Readonly<
|
|
3211
|
+
Record<string, unknown>
|
|
3212
|
+
>,
|
|
3213
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/huggingface":
|
|
3214
|
+
bundledPiCodingAgentWebScrapersHuggingface as unknown as Readonly<Record<string, unknown>>,
|
|
3215
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/iacr": bundledPiCodingAgentWebScrapersIacr as unknown as Readonly<
|
|
3216
|
+
Record<string, unknown>
|
|
3217
|
+
>,
|
|
3218
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/jetbrains-marketplace":
|
|
3219
|
+
bundledPiCodingAgentWebScrapersJetbrainsMarketplace as unknown as Readonly<Record<string, unknown>>,
|
|
3220
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/lemmy": bundledPiCodingAgentWebScrapersLemmy as unknown as Readonly<
|
|
3221
|
+
Record<string, unknown>
|
|
3222
|
+
>,
|
|
3223
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/lobsters": bundledPiCodingAgentWebScrapersLobsters as unknown as Readonly<
|
|
3224
|
+
Record<string, unknown>
|
|
3225
|
+
>,
|
|
3226
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/mastodon": bundledPiCodingAgentWebScrapersMastodon as unknown as Readonly<
|
|
3227
|
+
Record<string, unknown>
|
|
3228
|
+
>,
|
|
3229
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/maven": bundledPiCodingAgentWebScrapersMaven as unknown as Readonly<
|
|
3230
|
+
Record<string, unknown>
|
|
3231
|
+
>,
|
|
3232
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/mdn": bundledPiCodingAgentWebScrapersMdn as unknown as Readonly<
|
|
3233
|
+
Record<string, unknown>
|
|
3234
|
+
>,
|
|
3235
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/metacpan": bundledPiCodingAgentWebScrapersMetacpan as unknown as Readonly<
|
|
3236
|
+
Record<string, unknown>
|
|
3237
|
+
>,
|
|
3238
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/musicbrainz":
|
|
3239
|
+
bundledPiCodingAgentWebScrapersMusicbrainz as unknown as Readonly<Record<string, unknown>>,
|
|
3240
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/npm": bundledPiCodingAgentWebScrapersNpm as unknown as Readonly<
|
|
3241
|
+
Record<string, unknown>
|
|
3242
|
+
>,
|
|
3243
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/nuget": bundledPiCodingAgentWebScrapersNuget as unknown as Readonly<
|
|
3244
|
+
Record<string, unknown>
|
|
3245
|
+
>,
|
|
3246
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/nvd": bundledPiCodingAgentWebScrapersNvd as unknown as Readonly<
|
|
3247
|
+
Record<string, unknown>
|
|
3248
|
+
>,
|
|
3249
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/ollama": bundledPiCodingAgentWebScrapersOllama as unknown as Readonly<
|
|
3250
|
+
Record<string, unknown>
|
|
3251
|
+
>,
|
|
3252
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/open-vsx": bundledPiCodingAgentWebScrapersOpenVsx as unknown as Readonly<
|
|
3253
|
+
Record<string, unknown>
|
|
3254
|
+
>,
|
|
3255
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/opencorporates":
|
|
3256
|
+
bundledPiCodingAgentWebScrapersOpencorporates as unknown as Readonly<Record<string, unknown>>,
|
|
3257
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/openlibrary":
|
|
3258
|
+
bundledPiCodingAgentWebScrapersOpenlibrary as unknown as Readonly<Record<string, unknown>>,
|
|
3259
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/orcid": bundledPiCodingAgentWebScrapersOrcid as unknown as Readonly<
|
|
3260
|
+
Record<string, unknown>
|
|
3261
|
+
>,
|
|
3262
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/osv": bundledPiCodingAgentWebScrapersOsv as unknown as Readonly<
|
|
3263
|
+
Record<string, unknown>
|
|
3264
|
+
>,
|
|
3265
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/packagist": bundledPiCodingAgentWebScrapersPackagist as unknown as Readonly<
|
|
3266
|
+
Record<string, unknown>
|
|
3267
|
+
>,
|
|
3268
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/pub-dev": bundledPiCodingAgentWebScrapersPubDev as unknown as Readonly<
|
|
3269
|
+
Record<string, unknown>
|
|
3270
|
+
>,
|
|
3271
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/pubmed": bundledPiCodingAgentWebScrapersPubmed as unknown as Readonly<
|
|
3272
|
+
Record<string, unknown>
|
|
3273
|
+
>,
|
|
3274
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/pypi": bundledPiCodingAgentWebScrapersPypi as unknown as Readonly<
|
|
3275
|
+
Record<string, unknown>
|
|
3276
|
+
>,
|
|
3277
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/rawg": bundledPiCodingAgentWebScrapersRawg as unknown as Readonly<
|
|
3278
|
+
Record<string, unknown>
|
|
3279
|
+
>,
|
|
3280
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/readthedocs":
|
|
3281
|
+
bundledPiCodingAgentWebScrapersReadthedocs as unknown as Readonly<Record<string, unknown>>,
|
|
3282
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/reddit": bundledPiCodingAgentWebScrapersReddit as unknown as Readonly<
|
|
3283
|
+
Record<string, unknown>
|
|
3284
|
+
>,
|
|
3285
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/repology": bundledPiCodingAgentWebScrapersRepology as unknown as Readonly<
|
|
3286
|
+
Record<string, unknown>
|
|
3287
|
+
>,
|
|
3288
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/rfc": bundledPiCodingAgentWebScrapersRfc as unknown as Readonly<
|
|
3289
|
+
Record<string, unknown>
|
|
3290
|
+
>,
|
|
3291
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/rubygems": bundledPiCodingAgentWebScrapersRubygems as unknown as Readonly<
|
|
3292
|
+
Record<string, unknown>
|
|
3293
|
+
>,
|
|
3294
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/searchcode":
|
|
3295
|
+
bundledPiCodingAgentWebScrapersSearchcode as unknown as Readonly<Record<string, unknown>>,
|
|
3296
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/sec-edgar": bundledPiCodingAgentWebScrapersSecEdgar as unknown as Readonly<
|
|
3297
|
+
Record<string, unknown>
|
|
3298
|
+
>,
|
|
3299
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/semantic-scholar":
|
|
3300
|
+
bundledPiCodingAgentWebScrapersSemanticScholar as unknown as Readonly<Record<string, unknown>>,
|
|
3301
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/snapcraft": bundledPiCodingAgentWebScrapersSnapcraft as unknown as Readonly<
|
|
3302
|
+
Record<string, unknown>
|
|
3303
|
+
>,
|
|
3304
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/sourcegraph":
|
|
3305
|
+
bundledPiCodingAgentWebScrapersSourcegraph as unknown as Readonly<Record<string, unknown>>,
|
|
3306
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/spdx": bundledPiCodingAgentWebScrapersSpdx as unknown as Readonly<
|
|
3307
|
+
Record<string, unknown>
|
|
3308
|
+
>,
|
|
3309
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/spotify": bundledPiCodingAgentWebScrapersSpotify as unknown as Readonly<
|
|
3310
|
+
Record<string, unknown>
|
|
3311
|
+
>,
|
|
3312
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/stackoverflow":
|
|
3313
|
+
bundledPiCodingAgentWebScrapersStackoverflow as unknown as Readonly<Record<string, unknown>>,
|
|
3314
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/terraform": bundledPiCodingAgentWebScrapersTerraform as unknown as Readonly<
|
|
3315
|
+
Record<string, unknown>
|
|
3316
|
+
>,
|
|
3317
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/tldr": bundledPiCodingAgentWebScrapersTldr as unknown as Readonly<
|
|
3318
|
+
Record<string, unknown>
|
|
3319
|
+
>,
|
|
3320
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/twitter": bundledPiCodingAgentWebScrapersTwitter as unknown as Readonly<
|
|
3321
|
+
Record<string, unknown>
|
|
3322
|
+
>,
|
|
3323
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/types": bundledPiCodingAgentWebScrapersTypes as unknown as Readonly<
|
|
3324
|
+
Record<string, unknown>
|
|
3325
|
+
>,
|
|
3326
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/utils": bundledPiCodingAgentWebScrapersUtils as unknown as Readonly<
|
|
3327
|
+
Record<string, unknown>
|
|
3328
|
+
>,
|
|
3329
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/vimeo": bundledPiCodingAgentWebScrapersVimeo as unknown as Readonly<
|
|
3330
|
+
Record<string, unknown>
|
|
3331
|
+
>,
|
|
3332
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/vscode-marketplace":
|
|
3333
|
+
bundledPiCodingAgentWebScrapersVscodeMarketplace as unknown as Readonly<Record<string, unknown>>,
|
|
3334
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/w3c": bundledPiCodingAgentWebScrapersW3c as unknown as Readonly<
|
|
3335
|
+
Record<string, unknown>
|
|
3336
|
+
>,
|
|
3337
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/wikidata": bundledPiCodingAgentWebScrapersWikidata as unknown as Readonly<
|
|
3338
|
+
Record<string, unknown>
|
|
3339
|
+
>,
|
|
3340
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/wikipedia": bundledPiCodingAgentWebScrapersWikipedia as unknown as Readonly<
|
|
3341
|
+
Record<string, unknown>
|
|
3342
|
+
>,
|
|
3343
|
+
"@oh-my-pi-zen/pi-coding-agent/web/scrapers/youtube": bundledPiCodingAgentWebScrapersYoutube as unknown as Readonly<
|
|
3344
|
+
Record<string, unknown>
|
|
3345
|
+
>,
|
|
3346
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/provider": bundledPiCodingAgentWebSearchProvider as unknown as Readonly<
|
|
3347
|
+
Record<string, unknown>
|
|
3348
|
+
>,
|
|
3349
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/render": bundledPiCodingAgentWebSearchRender as unknown as Readonly<
|
|
3350
|
+
Record<string, unknown>
|
|
3351
|
+
>,
|
|
3352
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/types": bundledPiCodingAgentWebSearchTypes as unknown as Readonly<
|
|
3353
|
+
Record<string, unknown>
|
|
3354
|
+
>,
|
|
3355
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/utils": bundledPiCodingAgentWebSearchUtils as unknown as Readonly<
|
|
3356
|
+
Record<string, unknown>
|
|
3357
|
+
>,
|
|
3358
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/anthropic":
|
|
3359
|
+
bundledPiCodingAgentWebSearchProvidersAnthropic as unknown as Readonly<Record<string, unknown>>,
|
|
3360
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/base":
|
|
3361
|
+
bundledPiCodingAgentWebSearchProvidersBase as unknown as Readonly<Record<string, unknown>>,
|
|
3362
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/brave":
|
|
3363
|
+
bundledPiCodingAgentWebSearchProvidersBrave as unknown as Readonly<Record<string, unknown>>,
|
|
3364
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/codex":
|
|
3365
|
+
bundledPiCodingAgentWebSearchProvidersCodex as unknown as Readonly<Record<string, unknown>>,
|
|
3366
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/duckduckgo":
|
|
3367
|
+
bundledPiCodingAgentWebSearchProvidersDuckduckgo as unknown as Readonly<Record<string, unknown>>,
|
|
3368
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/exa":
|
|
3369
|
+
bundledPiCodingAgentWebSearchProvidersExa as unknown as Readonly<Record<string, unknown>>,
|
|
3370
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/firecrawl":
|
|
3371
|
+
bundledPiCodingAgentWebSearchProvidersFirecrawl as unknown as Readonly<Record<string, unknown>>,
|
|
3372
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/gemini":
|
|
3373
|
+
bundledPiCodingAgentWebSearchProvidersGemini as unknown as Readonly<Record<string, unknown>>,
|
|
3374
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/jina":
|
|
3375
|
+
bundledPiCodingAgentWebSearchProvidersJina as unknown as Readonly<Record<string, unknown>>,
|
|
3376
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/kagi":
|
|
3377
|
+
bundledPiCodingAgentWebSearchProvidersKagi as unknown as Readonly<Record<string, unknown>>,
|
|
3378
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/kimi":
|
|
3379
|
+
bundledPiCodingAgentWebSearchProvidersKimi as unknown as Readonly<Record<string, unknown>>,
|
|
3380
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/parallel":
|
|
3381
|
+
bundledPiCodingAgentWebSearchProvidersParallel as unknown as Readonly<Record<string, unknown>>,
|
|
3382
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/perplexity-auth":
|
|
3383
|
+
bundledPiCodingAgentWebSearchProvidersPerplexityAuth as unknown as Readonly<Record<string, unknown>>,
|
|
3384
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/perplexity":
|
|
3385
|
+
bundledPiCodingAgentWebSearchProvidersPerplexity as unknown as Readonly<Record<string, unknown>>,
|
|
3386
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/searxng":
|
|
3387
|
+
bundledPiCodingAgentWebSearchProvidersSearxng as unknown as Readonly<Record<string, unknown>>,
|
|
3388
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/synthetic":
|
|
3389
|
+
bundledPiCodingAgentWebSearchProvidersSynthetic as unknown as Readonly<Record<string, unknown>>,
|
|
3390
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/tavily":
|
|
3391
|
+
bundledPiCodingAgentWebSearchProvidersTavily as unknown as Readonly<Record<string, unknown>>,
|
|
3392
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/tinyfish":
|
|
3393
|
+
bundledPiCodingAgentWebSearchProvidersTinyfish as unknown as Readonly<Record<string, unknown>>,
|
|
3394
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/utils":
|
|
3395
|
+
bundledPiCodingAgentWebSearchProvidersUtils as unknown as Readonly<Record<string, unknown>>,
|
|
3396
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/xai":
|
|
3397
|
+
bundledPiCodingAgentWebSearchProvidersXai as unknown as Readonly<Record<string, unknown>>,
|
|
3398
|
+
"@oh-my-pi-zen/pi-coding-agent/web/search/providers/zai":
|
|
3399
|
+
bundledPiCodingAgentWebSearchProvidersZai as unknown as Readonly<Record<string, unknown>>,
|
|
3400
|
+
"@oh-my-pi-zen/pi-natives": bundledPiNatives as unknown as Readonly<Record<string, unknown>>,
|
|
3401
|
+
"@oh-my-pi-zen/pi-tui": bundledPiTui as unknown as Readonly<Record<string, unknown>>,
|
|
3402
|
+
"@oh-my-pi-zen/pi-tui/components/box": bundledPiTuiComponentsBox as unknown as Readonly<Record<string, unknown>>,
|
|
3403
|
+
"@oh-my-pi-zen/pi-tui/components/cancellable-loader": bundledPiTuiComponentsCancellableLoader as unknown as Readonly<
|
|
3404
|
+
Record<string, unknown>
|
|
3405
|
+
>,
|
|
3406
|
+
"@oh-my-pi-zen/pi-tui/components/editor": bundledPiTuiComponentsEditor as unknown as Readonly<Record<string, unknown>>,
|
|
3407
|
+
"@oh-my-pi-zen/pi-tui/components/image": bundledPiTuiComponentsImage as unknown as Readonly<Record<string, unknown>>,
|
|
3408
|
+
"@oh-my-pi-zen/pi-tui/components/input": bundledPiTuiComponentsInput as unknown as Readonly<Record<string, unknown>>,
|
|
3409
|
+
"@oh-my-pi-zen/pi-tui/components/loader": bundledPiTuiComponentsLoader as unknown as Readonly<Record<string, unknown>>,
|
|
3410
|
+
"@oh-my-pi-zen/pi-tui/components/markdown": bundledPiTuiComponentsMarkdown as unknown as Readonly<
|
|
3411
|
+
Record<string, unknown>
|
|
3412
|
+
>,
|
|
3413
|
+
"@oh-my-pi-zen/pi-tui/components/scroll-view": bundledPiTuiComponentsScrollView as unknown as Readonly<
|
|
3414
|
+
Record<string, unknown>
|
|
3415
|
+
>,
|
|
3416
|
+
"@oh-my-pi-zen/pi-tui/components/select-list": bundledPiTuiComponentsSelectList as unknown as Readonly<
|
|
3417
|
+
Record<string, unknown>
|
|
3418
|
+
>,
|
|
3419
|
+
"@oh-my-pi-zen/pi-tui/components/settings-list": bundledPiTuiComponentsSettingsList as unknown as Readonly<
|
|
3420
|
+
Record<string, unknown>
|
|
3421
|
+
>,
|
|
3422
|
+
"@oh-my-pi-zen/pi-tui/components/spacer": bundledPiTuiComponentsSpacer as unknown as Readonly<Record<string, unknown>>,
|
|
3423
|
+
"@oh-my-pi-zen/pi-tui/components/tab-bar": bundledPiTuiComponentsTabBar as unknown as Readonly<Record<string, unknown>>,
|
|
3424
|
+
"@oh-my-pi-zen/pi-tui/components/text": bundledPiTuiComponentsText as unknown as Readonly<Record<string, unknown>>,
|
|
3425
|
+
"@oh-my-pi-zen/pi-tui/components/truncated-text": bundledPiTuiComponentsTruncatedText as unknown as Readonly<
|
|
3426
|
+
Record<string, unknown>
|
|
3427
|
+
>,
|
|
3428
|
+
"@oh-my-pi-zen/pi-utils": bundledPiUtils as unknown as Readonly<Record<string, unknown>>,
|
|
3429
|
+
typebox: bundledTypeBoxShim as unknown as Readonly<Record<string, unknown>>,
|
|
3430
|
+
};
|