@f5-sales-demo/xcsh 19.51.2
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 +7073 -0
- package/README.md +14 -0
- package/examples/README.md +21 -0
- package/examples/custom-tools/README.md +109 -0
- package/examples/custom-tools/hello/index.ts +20 -0
- package/examples/custom-tools/todo/index.ts +206 -0
- package/examples/extensions/README.md +143 -0
- package/examples/extensions/api-demo.ts +89 -0
- package/examples/extensions/chalk-logger.ts +25 -0
- package/examples/extensions/hello.ts +32 -0
- package/examples/extensions/pirate.ts +43 -0
- package/examples/extensions/plan-mode.ts +551 -0
- package/examples/extensions/reload-runtime.ts +37 -0
- package/examples/extensions/todo.ts +296 -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 +16 -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 +43 -0
- package/examples/sdk/04-skills.ts +43 -0
- package/examples/sdk/06-extensions.ts +80 -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/README.md +172 -0
- package/package.json +539 -0
- package/scripts/build-info/resolvers.ts +51 -0
- package/scripts/capture-ax-fixture.ts +84 -0
- package/scripts/capture-login-fixture.ts +30 -0
- package/scripts/check-workflow-field-coverage.ts +101 -0
- package/scripts/extension-uat-harness.ts +340 -0
- package/scripts/format-prompts.ts +68 -0
- package/scripts/generate-api-spec-index.ts +580 -0
- package/scripts/generate-branding-index.ts +81 -0
- package/scripts/generate-build-info.ts +106 -0
- package/scripts/generate-console-catalog.ts +88 -0
- package/scripts/generate-console-field-metadata.ts +74 -0
- package/scripts/generate-docs-index.ts +40 -0
- package/scripts/generate-template.ts +32 -0
- package/scripts/generate-terraform-index.ts +81 -0
- package/scripts/mermaid-gallery.ts +132 -0
- package/scripts/uat-matrix-modalities.ts +451 -0
- package/scripts/uat-matrix-report.ts +175 -0
- package/scripts/uat-matrix.ts +353 -0
- package/src/async/index.ts +2 -0
- package/src/async/job-manager.ts +416 -0
- package/src/async/support.ts +5 -0
- package/src/autoresearch/apply-contract-to-state.ts +1 -0
- package/src/autoresearch/command-resume.md +17 -0
- package/src/autoresearch/contract.ts +205 -0
- package/src/autoresearch/dashboard.ts +374 -0
- package/src/autoresearch/git.ts +191 -0
- package/src/autoresearch/helpers.ts +328 -0
- package/src/autoresearch/index.ts +402 -0
- package/src/autoresearch/prompt.md +236 -0
- package/src/autoresearch/resume-message.md +16 -0
- package/src/autoresearch/state.ts +303 -0
- package/src/autoresearch/tools/init-experiment.ts +400 -0
- package/src/autoresearch/tools/log-experiment.ts +793 -0
- package/src/autoresearch/tools/run-experiment.ts +679 -0
- package/src/autoresearch/types.ts +114 -0
- package/src/browser/acquire.ts +249 -0
- package/src/browser/actions.ts +126 -0
- package/src/browser/auth.ts +176 -0
- package/src/browser/ax.ts +134 -0
- package/src/browser/cdp-core.ts +45 -0
- package/src/browser/cdp-page-actions.ts +51 -0
- package/src/browser/chrome-locate.ts +66 -0
- package/src/browser/dom-context.ts +89 -0
- package/src/browser/dt-context.ts +100 -0
- package/src/browser/extension-bridge.ts +182 -0
- package/src/browser/extension-page-actions.ts +397 -0
- package/src/browser/extension-provider.ts +373 -0
- package/src/browser/index.ts +17 -0
- package/src/browser/input-commit.ts +74 -0
- package/src/browser/native-messaging.ts +20 -0
- package/src/browser/page-actions.ts +18 -0
- package/src/browser/provider.ts +155 -0
- package/src/browser/resolver.ts +126 -0
- package/src/browser/selector.ts +40 -0
- package/src/bun-imports.d.ts +22 -0
- package/src/capability/context-file.ts +43 -0
- package/src/capability/extension-module.ts +34 -0
- package/src/capability/extension.ts +47 -0
- package/src/capability/fs.ts +107 -0
- package/src/capability/hook.ts +40 -0
- package/src/capability/index.ts +438 -0
- package/src/capability/instruction.ts +37 -0
- package/src/capability/mcp.ts +74 -0
- package/src/capability/prompt.ts +35 -0
- package/src/capability/rule.ts +224 -0
- package/src/capability/settings.ts +34 -0
- package/src/capability/skill.ts +50 -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 +286 -0
- package/src/cli/chrome-cli.ts +88 -0
- package/src/cli/classify-install-target.ts +50 -0
- package/src/cli/commands/init-xdg.ts +27 -0
- package/src/cli/config-cli.ts +418 -0
- package/src/cli/file-processor.ts +121 -0
- package/src/cli/grep-cli.ts +160 -0
- package/src/cli/grievances-cli.ts +78 -0
- package/src/cli/initial-message.ts +58 -0
- package/src/cli/jupyter-cli.ts +106 -0
- package/src/cli/list-models.ts +128 -0
- package/src/cli/plugin-cli.ts +964 -0
- package/src/cli/read-cli.ts +68 -0
- package/src/cli/session-picker.ts +52 -0
- package/src/cli/setup-cli.ts +479 -0
- package/src/cli/shell-cli.ts +174 -0
- package/src/cli/ssh-cli.ts +179 -0
- package/src/cli/stats-cli.ts +182 -0
- package/src/cli/update-cli.ts +446 -0
- package/src/cli/web-search-cli.ts +203 -0
- package/src/cli.ts +123 -0
- package/src/commands/agents.ts +57 -0
- package/src/commands/chrome-host.ts +71 -0
- package/src/commands/chrome.ts +28 -0
- package/src/commands/commit.ts +36 -0
- package/src/commands/config.ts +51 -0
- package/src/commands/grep.ts +48 -0
- package/src/commands/grievances.ts +20 -0
- package/src/commands/jupyter.ts +32 -0
- package/src/commands/launch.ts +144 -0
- package/src/commands/plugin.ts +78 -0
- package/src/commands/read.ts +33 -0
- package/src/commands/setup.ts +42 -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/update.ts +21 -0
- package/src/commands/web-search.ts +46 -0
- package/src/commit/agentic/agent.ts +314 -0
- package/src/commit/agentic/fallback.ts +96 -0
- package/src/commit/agentic/index.ts +354 -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 +127 -0
- package/src/commit/agentic/tools/git-file-diff.ts +191 -0
- package/src/commit/agentic/tools/git-hunk.ts +50 -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 +139 -0
- package/src/commit/agentic/tools/propose-commit.ts +122 -0
- package/src/commit/agentic/tools/recent-commits.ts +81 -0
- package/src/commit/agentic/tools/schemas.ts +31 -0
- package/src/commit/agentic/tools/split-commit.ts +251 -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 +122 -0
- package/src/commit/analysis/index.ts +4 -0
- package/src/commit/analysis/scope.ts +242 -0
- package/src/commit/analysis/summary.ts +105 -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 +108 -0
- package/src/commit/map-reduce/utils.ts +9 -0
- package/src/commit/message.ts +11 -0
- package/src/commit/model-selection.ts +66 -0
- package/src/commit/pipeline.ts +242 -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/types.ts +118 -0
- package/src/commit/utils/exclusions.ts +42 -0
- package/src/commit/utils.ts +44 -0
- package/src/config/auto-config.ts +698 -0
- package/src/config/context-schema.json +115 -0
- package/src/config/file-lock.ts +121 -0
- package/src/config/keybindings.ts +493 -0
- package/src/config/mcp-schema.json +230 -0
- package/src/config/model-equivalence.ts +675 -0
- package/src/config/model-registry.ts +2265 -0
- package/src/config/model-resolver.ts +1289 -0
- package/src/config/prompt-templates.ts +271 -0
- package/src/config/resolve-config-value.ts +110 -0
- package/src/config/settings-schema.ts +2155 -0
- package/src/config/settings.ts +730 -0
- package/src/config.ts +418 -0
- package/src/cursor.ts +323 -0
- package/src/dap/client.ts +674 -0
- package/src/dap/config.ts +150 -0
- package/src/dap/defaults.json +211 -0
- package/src/dap/index.ts +4 -0
- package/src/dap/session.ts +1255 -0
- package/src/dap/types.ts +600 -0
- package/src/debug/index.ts +440 -0
- package/src/debug/log-formatting.ts +58 -0
- package/src/debug/log-viewer.ts +908 -0
- package/src/debug/profiler.ts +158 -0
- package/src/debug/report-bundle.ts +365 -0
- package/src/debug/system-info.ts +107 -0
- package/src/discovery/agents-md.ts +67 -0
- package/src/discovery/agents.ts +219 -0
- package/src/discovery/builtin.ts +851 -0
- package/src/discovery/claude-plugins.ts +297 -0
- package/src/discovery/claude.ts +543 -0
- package/src/discovery/cline.ts +83 -0
- package/src/discovery/codex.ts +535 -0
- package/src/discovery/cursor.ts +220 -0
- package/src/discovery/gemini.ts +396 -0
- package/src/discovery/github.ts +118 -0
- package/src/discovery/helpers.ts +934 -0
- package/src/discovery/index.ts +79 -0
- package/src/discovery/language.ts +46 -0
- package/src/discovery/mcp-json.ts +171 -0
- package/src/discovery/opencode.ts +393 -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/diff.ts +818 -0
- package/src/edit/index.ts +481 -0
- package/src/edit/line-hash.ts +67 -0
- package/src/edit/modes/chunk.ts +762 -0
- package/src/edit/modes/hashline.ts +1366 -0
- package/src/edit/modes/patch.ts +1791 -0
- package/src/edit/modes/replace.ts +1115 -0
- package/src/edit/normalize.ts +375 -0
- package/src/edit/renderer.ts +627 -0
- package/src/exa/factory.ts +61 -0
- package/src/exa/index.ts +27 -0
- package/src/exa/mcp-client.ts +293 -0
- package/src/exa/render.ts +232 -0
- package/src/exa/researcher.ts +47 -0
- package/src/exa/search.ts +86 -0
- package/src/exa/types.ts +166 -0
- package/src/exa/websets.ts +247 -0
- package/src/exec/bash-executor.ts +332 -0
- package/src/exec/exec.ts +53 -0
- package/src/exec/idle-timeout-watchdog.ts +126 -0
- package/src/exec/non-interactive-env.ts +48 -0
- package/src/export/custom-share.ts +65 -0
- package/src/export/html/index.ts +161 -0
- package/src/export/html/template.css +1001 -0
- package/src/export/html/template.generated.ts +2 -0
- package/src/export/html/template.html +46 -0
- package/src/export/html/template.js +1950 -0
- package/src/export/html/template.macro.ts +24 -0
- package/src/export/html/vendor/highlight.min.js +1213 -0
- package/src/export/html/vendor/marked.min.js +6 -0
- package/src/export/ttsr.ts +434 -0
- package/src/extensibility/custom-commands/bundled/ci-green/index.ts +25 -0
- package/src/extensibility/custom-commands/bundled/review/index.ts +456 -0
- package/src/extensibility/custom-commands/index.ts +2 -0
- package/src/extensibility/custom-commands/loader.ts +236 -0
- package/src/extensibility/custom-commands/types.ts +111 -0
- package/src/extensibility/custom-tools/index.ts +7 -0
- package/src/extensibility/custom-tools/loader.ts +238 -0
- package/src/extensibility/custom-tools/types.ts +251 -0
- package/src/extensibility/custom-tools/wrapper.ts +47 -0
- package/src/extensibility/extensions/index.ts +15 -0
- package/src/extensibility/extensions/loader.ts +572 -0
- package/src/extensibility/extensions/runner.ts +848 -0
- package/src/extensibility/extensions/types.ts +1394 -0
- package/src/extensibility/extensions/wrapper.ts +191 -0
- package/src/extensibility/hooks/index.ts +5 -0
- package/src/extensibility/hooks/loader.ts +255 -0
- package/src/extensibility/hooks/runner.ts +425 -0
- package/src/extensibility/hooks/tool-wrapper.ts +108 -0
- package/src/extensibility/hooks/types.ts +826 -0
- package/src/extensibility/plugins/doctor.ts +66 -0
- package/src/extensibility/plugins/git-url.ts +281 -0
- package/src/extensibility/plugins/index.ts +9 -0
- package/src/extensibility/plugins/installer.ts +192 -0
- package/src/extensibility/plugins/loader.ts +267 -0
- package/src/extensibility/plugins/manager.ts +731 -0
- package/src/extensibility/plugins/marketplace/cache.ts +136 -0
- package/src/extensibility/plugins/marketplace/fetcher.ts +318 -0
- package/src/extensibility/plugins/marketplace/index.ts +6 -0
- package/src/extensibility/plugins/marketplace/manager.ts +781 -0
- package/src/extensibility/plugins/marketplace/prerequisites.ts +255 -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 +201 -0
- package/src/extensibility/plugins/parser.ts +105 -0
- package/src/extensibility/plugins/types.ts +194 -0
- package/src/extensibility/skills.ts +269 -0
- package/src/extensibility/slash-commands.ts +246 -0
- package/src/extensibility/tool-proxy.ts +25 -0
- package/src/extensibility/utils.ts +38 -0
- package/src/index.ts +61 -0
- package/src/internal-urls/agent-protocol.ts +136 -0
- package/src/internal-urls/api-catalog-resolve.ts +495 -0
- package/src/internal-urls/api-catalog-types.ts +94 -0
- package/src/internal-urls/api-spec-resolve.ts +1036 -0
- package/src/internal-urls/api-spec-types.ts +239 -0
- package/src/internal-urls/artifact-protocol.ts +97 -0
- package/src/internal-urls/branding-index.generated.ts +88 -0
- package/src/internal-urls/build-info-runtime.ts +302 -0
- package/src/internal-urls/build-info.generated.ts +33 -0
- package/src/internal-urls/computer-profile.ts +692 -0
- package/src/internal-urls/console-catalog-types.ts +21 -0
- package/src/internal-urls/console-catalog.generated.ts +532 -0
- package/src/internal-urls/console-field-metadata-types.ts +59 -0
- package/src/internal-urls/console-field-metadata.generated.ts +4841 -0
- package/src/internal-urls/console-resolve.ts +178 -0
- package/src/internal-urls/docs-index.generated.ts +698 -0
- package/src/internal-urls/extension-api.md +147 -0
- package/src/internal-urls/index.ts +46 -0
- package/src/internal-urls/jobs-protocol.ts +119 -0
- package/src/internal-urls/json-query.ts +126 -0
- package/src/internal-urls/local-protocol.ts +206 -0
- package/src/internal-urls/mcp-protocol.ts +156 -0
- package/src/internal-urls/memory-protocol.ts +133 -0
- package/src/internal-urls/parse.ts +72 -0
- package/src/internal-urls/profile-collectors.ts +106 -0
- package/src/internal-urls/router.ts +55 -0
- package/src/internal-urls/rule-protocol.ts +55 -0
- package/src/internal-urls/skill-protocol.ts +111 -0
- package/src/internal-urls/terraform-index.generated.ts +1852 -0
- package/src/internal-urls/terraform-resolve.ts +184 -0
- package/src/internal-urls/terraform-types.ts +45 -0
- package/src/internal-urls/types.ts +52 -0
- package/src/internal-urls/user-profile.ts +363 -0
- package/src/internal-urls/xcsh-protocol.ts +644 -0
- package/src/ipy/cancellation.ts +28 -0
- package/src/ipy/executor.ts +1155 -0
- package/src/ipy/gateway-coordinator.ts +424 -0
- package/src/ipy/kernel.ts +1091 -0
- package/src/ipy/modules.ts +144 -0
- package/src/ipy/prelude.py +849 -0
- package/src/ipy/prelude.ts +3 -0
- package/src/ipy/runtime.ts +221 -0
- package/src/locales/ar.json +512 -0
- package/src/locales/de.json +512 -0
- package/src/locales/en.json +549 -0
- package/src/locales/es.json +512 -0
- package/src/locales/fr.json +512 -0
- package/src/locales/hi.json +512 -0
- package/src/locales/index.ts +29 -0
- package/src/locales/it.json +512 -0
- package/src/locales/ja.json +512 -0
- package/src/locales/ko.json +512 -0
- package/src/locales/pt-br.json +512 -0
- package/src/locales/th.json +512 -0
- package/src/locales/zh-cn.json +512 -0
- package/src/locales/zh-tw.json +512 -0
- package/src/lsp/client.ts +941 -0
- package/src/lsp/clients/biome-client.ts +202 -0
- package/src/lsp/clients/index.ts +50 -0
- package/src/lsp/clients/lsp-linter-client.ts +93 -0
- package/src/lsp/clients/swiftlint-client.ts +120 -0
- package/src/lsp/config.ts +418 -0
- package/src/lsp/defaults.json +999 -0
- package/src/lsp/edits.ts +109 -0
- package/src/lsp/index.ts +1746 -0
- package/src/lsp/lspmux.ts +233 -0
- package/src/lsp/render.ts +692 -0
- package/src/lsp/startup-events.ts +13 -0
- package/src/lsp/types.ts +444 -0
- package/src/lsp/utils.ts +691 -0
- package/src/main.ts +944 -0
- package/src/mcp/client.ts +482 -0
- package/src/mcp/config-writer.ts +225 -0
- package/src/mcp/config.ts +365 -0
- package/src/mcp/discoverable-tool-metadata.ts +202 -0
- package/src/mcp/index.ts +29 -0
- package/src/mcp/json-rpc.ts +84 -0
- package/src/mcp/loader.ts +124 -0
- package/src/mcp/manager.ts +1152 -0
- package/src/mcp/oauth-discovery.ts +349 -0
- package/src/mcp/oauth-flow.ts +387 -0
- package/src/mcp/render.ts +157 -0
- package/src/mcp/smithery-auth.ts +104 -0
- package/src/mcp/smithery-connect.ts +145 -0
- package/src/mcp/smithery-registry.ts +477 -0
- package/src/mcp/tool-bridge.ts +417 -0
- package/src/mcp/tool-cache.ts +117 -0
- package/src/mcp/transports/http.ts +475 -0
- package/src/mcp/transports/index.ts +6 -0
- package/src/mcp/transports/stdio.ts +325 -0
- package/src/mcp/types.ts +423 -0
- package/src/memories/index.ts +1115 -0
- package/src/memories/storage.ts +577 -0
- package/src/modes/acp/acp-agent.ts +1361 -0
- package/src/modes/acp/acp-event-mapper.ts +538 -0
- package/src/modes/acp/acp-mode.ts +15 -0
- package/src/modes/acp/index.ts +2 -0
- package/src/modes/components/agent-dashboard.ts +1124 -0
- package/src/modes/components/assistant-message.ts +213 -0
- package/src/modes/components/bash-execution.ts +345 -0
- package/src/modes/components/bordered-loader.ts +41 -0
- package/src/modes/components/branch-summary-message.ts +45 -0
- package/src/modes/components/btw-panel.ts +103 -0
- package/src/modes/components/compaction-summary-message.ts +51 -0
- package/src/modes/components/context-add-wizard.ts +534 -0
- package/src/modes/components/countdown-timer.ts +75 -0
- package/src/modes/components/custom-editor.ts +238 -0
- package/src/modes/components/custom-message.ts +91 -0
- package/src/modes/components/diff.ts +210 -0
- package/src/modes/components/dynamic-border.ts +25 -0
- package/src/modes/components/extensions/extension-dashboard.ts +326 -0
- package/src/modes/components/extensions/extension-list.ts +492 -0
- package/src/modes/components/extensions/index.ts +9 -0
- package/src/modes/components/extensions/inspector-panel.ts +317 -0
- package/src/modes/components/extensions/state-manager.ts +587 -0
- package/src/modes/components/extensions/types.ts +191 -0
- package/src/modes/components/footer.ts +262 -0
- package/src/modes/components/gutter-block.ts +315 -0
- package/src/modes/components/history-search.ts +158 -0
- package/src/modes/components/hook-editor.ts +151 -0
- package/src/modes/components/hook-input.ts +81 -0
- package/src/modes/components/hook-message.ts +100 -0
- package/src/modes/components/hook-selector.ts +192 -0
- package/src/modes/components/index.ts +36 -0
- package/src/modes/components/keybinding-hints.ts +65 -0
- package/src/modes/components/login-dialog.ts +164 -0
- package/src/modes/components/mcp-add-wizard.ts +1314 -0
- package/src/modes/components/model-selector.ts +946 -0
- package/src/modes/components/oauth-selector.ts +211 -0
- package/src/modes/components/plugin-selector.ts +95 -0
- package/src/modes/components/plugin-settings.ts +477 -0
- package/src/modes/components/plugins/index.ts +5 -0
- package/src/modes/components/plugins/plugin-dashboard.ts +523 -0
- package/src/modes/components/plugins/plugin-inspector-pane.ts +84 -0
- package/src/modes/components/plugins/plugin-list-pane.ts +109 -0
- package/src/modes/components/plugins/state-manager.ts +229 -0
- package/src/modes/components/plugins/types.ts +51 -0
- package/src/modes/components/plugins/utils.ts +6 -0
- package/src/modes/components/python-execution.ts +244 -0
- package/src/modes/components/queue-mode-selector.ts +56 -0
- package/src/modes/components/read-tool-group.ts +137 -0
- package/src/modes/components/session-observer-overlay.ts +483 -0
- package/src/modes/components/session-selector.ts +343 -0
- package/src/modes/components/settings-defs.ts +568 -0
- package/src/modes/components/settings-selector.ts +641 -0
- package/src/modes/components/show-images-selector.ts +45 -0
- package/src/modes/components/skill-message.ts +90 -0
- package/src/modes/components/status-line/context-gradient.ts +64 -0
- package/src/modes/components/status-line/git-utils.ts +42 -0
- package/src/modes/components/status-line/hex-ansi.ts +29 -0
- package/src/modes/components/status-line/index.ts +4 -0
- package/src/modes/components/status-line/presets.ts +174 -0
- package/src/modes/components/status-line/segments.ts +494 -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 +96 -0
- package/src/modes/components/status-line-segment-editor.ts +361 -0
- package/src/modes/components/status-line.ts +729 -0
- package/src/modes/components/theme-selector.ts +63 -0
- package/src/modes/components/thinking-selector.ts +52 -0
- package/src/modes/components/todo-reminder.ts +54 -0
- package/src/modes/components/tool-execution.ts +781 -0
- package/src/modes/components/tree-selector.ts +908 -0
- package/src/modes/components/ttsr-notification.ts +80 -0
- package/src/modes/components/user-message-selector.ts +141 -0
- package/src/modes/components/user-message.ts +100 -0
- package/src/modes/components/visual-truncate.ts +63 -0
- package/src/modes/components/welcome-checks.ts +313 -0
- package/src/modes/components/welcome.ts +270 -0
- package/src/modes/controllers/btw-controller.ts +193 -0
- package/src/modes/controllers/chord-routing.ts +37 -0
- package/src/modes/controllers/command-controller.ts +1293 -0
- package/src/modes/controllers/context-command-controller.ts +61 -0
- package/src/modes/controllers/event-controller.ts +743 -0
- package/src/modes/controllers/extension-ui-controller.ts +983 -0
- package/src/modes/controllers/input-controller.ts +877 -0
- package/src/modes/controllers/mcp-command-controller.ts +1940 -0
- package/src/modes/controllers/selector-controller.ts +1292 -0
- package/src/modes/controllers/ssh-command-controller.ts +421 -0
- package/src/modes/index.ts +34 -0
- package/src/modes/interactive-mode.ts +1781 -0
- package/src/modes/oauth-manual-input.ts +42 -0
- package/src/modes/print-mode.ts +196 -0
- package/src/modes/prompt-action-autocomplete.ts +231 -0
- package/src/modes/rpc/host-tools.ts +186 -0
- package/src/modes/rpc/rpc-client.ts +762 -0
- package/src/modes/rpc/rpc-mode.ts +877 -0
- package/src/modes/rpc/rpc-types.ts +322 -0
- package/src/modes/session-observer-registry.ts +146 -0
- package/src/modes/shared.ts +30 -0
- package/src/modes/theme/defaults/index.ts +7 -0
- package/src/modes/theme/defaults/xcsh-dark.json +113 -0
- package/src/modes/theme/defaults/xcsh-light.json +115 -0
- package/src/modes/theme/mermaid-cache.ts +151 -0
- package/src/modes/theme/mermaid-palette.ts +39 -0
- package/src/modes/theme/theme-schema.json +553 -0
- package/src/modes/theme/theme.ts +2563 -0
- package/src/modes/types.ts +273 -0
- package/src/modes/utils/hotkeys-markdown.ts +60 -0
- package/src/modes/utils/keybinding-matchers.ts +30 -0
- package/src/modes/utils/read-group-outcome-aggregator.ts +55 -0
- package/src/modes/utils/sanitize-error-message.ts +60 -0
- package/src/modes/utils/tools-markdown.ts +28 -0
- package/src/modes/utils/ui-helpers.ts +734 -0
- package/src/plan-mode/approved-plan.ts +55 -0
- package/src/plan-mode/state.ts +6 -0
- package/src/priority.json +37 -0
- package/src/prompts/agents/designer.md +67 -0
- package/src/prompts/agents/explore.md +61 -0
- package/src/prompts/agents/frontmatter.md +10 -0
- package/src/prompts/agents/init.md +36 -0
- package/src/prompts/agents/librarian.md +121 -0
- package/src/prompts/agents/plan.md +49 -0
- package/src/prompts/agents/reviewer.md +127 -0
- package/src/prompts/agents/task.md +16 -0
- package/src/prompts/ci-green-request.md +35 -0
- package/src/prompts/compaction/branch-summary-context.md +5 -0
- package/src/prompts/compaction/branch-summary-preamble.md +2 -0
- package/src/prompts/compaction/branch-summary.md +30 -0
- package/src/prompts/compaction/compaction-short-summary.md +9 -0
- package/src/prompts/compaction/compaction-summary-context.md +5 -0
- package/src/prompts/compaction/compaction-summary.md +38 -0
- package/src/prompts/compaction/compaction-turn-prefix.md +17 -0
- package/src/prompts/compaction/compaction-update-summary.md +45 -0
- package/src/prompts/memories/consolidation.md +30 -0
- package/src/prompts/memories/read-path.md +11 -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-request.md +70 -0
- package/src/prompts/system/agent-creation-architect.md +65 -0
- package/src/prompts/system/agent-creation-user.md +6 -0
- package/src/prompts/system/auto-handoff-threshold-focus.md +1 -0
- package/src/prompts/system/btw-user.md +8 -0
- package/src/prompts/system/commit-message-system.md +2 -0
- package/src/prompts/system/custom-system-prompt.md +82 -0
- package/src/prompts/system/eager-todo.md +13 -0
- package/src/prompts/system/file-operations.md +10 -0
- package/src/prompts/system/handoff-document.md +48 -0
- package/src/prompts/system/plan-mode-active.md +114 -0
- package/src/prompts/system/plan-mode-approved.md +23 -0
- package/src/prompts/system/plan-mode-reference.md +14 -0
- package/src/prompts/system/plan-mode-subagent.md +34 -0
- package/src/prompts/system/plan-mode-tool-decision-reminder.md +9 -0
- package/src/prompts/system/subagent-submit-reminder.md +7 -0
- package/src/prompts/system/subagent-system-prompt.md +36 -0
- package/src/prompts/system/subagent-user-prompt.md +12 -0
- package/src/prompts/system/summarization-system.md +3 -0
- package/src/prompts/system/system-prompt.md +698 -0
- package/src/prompts/system/title-system.md +2 -0
- package/src/prompts/system/ttsr-interrupt.md +7 -0
- package/src/prompts/system/web-search.md +28 -0
- package/src/prompts/tools/ask.md +28 -0
- package/src/prompts/tools/ast-edit.md +48 -0
- package/src/prompts/tools/ast-grep.md +54 -0
- package/src/prompts/tools/async-result.md +5 -0
- package/src/prompts/tools/bash.md +67 -0
- package/src/prompts/tools/browser.md +26 -0
- package/src/prompts/tools/calculator.md +10 -0
- package/src/prompts/tools/cancel-job.md +5 -0
- package/src/prompts/tools/catalog-workflow-runner.md +13 -0
- package/src/prompts/tools/checkpoint.md +16 -0
- package/src/prompts/tools/chunk-edit.md +279 -0
- package/src/prompts/tools/debug.md +43 -0
- package/src/prompts/tools/display-image.md +23 -0
- package/src/prompts/tools/exit-plan-mode.md +41 -0
- package/src/prompts/tools/find.md +26 -0
- package/src/prompts/tools/gemini-image.md +7 -0
- package/src/prompts/tools/grep.md +29 -0
- package/src/prompts/tools/hashline.md +131 -0
- package/src/prompts/tools/inspect-image-system.md +20 -0
- package/src/prompts/tools/inspect-image.md +32 -0
- package/src/prompts/tools/lsp.md +33 -0
- package/src/prompts/tools/patch.md +77 -0
- package/src/prompts/tools/poll.md +5 -0
- package/src/prompts/tools/python.md +60 -0
- package/src/prompts/tools/read-chunk.md +35 -0
- package/src/prompts/tools/read.md +63 -0
- package/src/prompts/tools/render-mermaid.md +9 -0
- package/src/prompts/tools/replace.md +36 -0
- package/src/prompts/tools/resolve.md +8 -0
- package/src/prompts/tools/rewind.md +13 -0
- package/src/prompts/tools/search-tool-bm25.md +34 -0
- package/src/prompts/tools/ssh.md +44 -0
- package/src/prompts/tools/task-summary.md +28 -0
- package/src/prompts/tools/task.md +131 -0
- package/src/prompts/tools/todo-write.md +89 -0
- package/src/prompts/tools/vim.md +98 -0
- package/src/prompts/tools/web-search.md +10 -0
- package/src/prompts/tools/write.md +14 -0
- package/src/prompts/tools/xcsh-api.md +283 -0
- package/src/resource-management/index.ts +42 -0
- package/src/sdk.ts +2123 -0
- package/src/secrets/index.ts +146 -0
- package/src/secrets/obfuscator.ts +290 -0
- package/src/secrets/regex.ts +21 -0
- package/src/services/context-env.ts +102 -0
- package/src/services/xcsh-api-client.ts +230 -0
- package/src/services/xcsh-context-command.ts +803 -0
- package/src/services/xcsh-context-display.ts +49 -0
- package/src/services/xcsh-context-indicators.ts +17 -0
- package/src/services/xcsh-context-segment.ts +39 -0
- package/src/services/xcsh-context.ts +1410 -0
- package/src/services/xcsh-env.ts +107 -0
- package/src/services/xcsh-knowledge.ts +177 -0
- package/src/services/xcsh-table.ts +164 -0
- package/src/session/agent-session.ts +6690 -0
- package/src/session/agent-storage.ts +451 -0
- package/src/session/artifacts.ts +132 -0
- package/src/session/auth-storage.ts +17 -0
- package/src/session/blob-store.ts +135 -0
- package/src/session/compaction/branch-summarization.ts +322 -0
- package/src/session/compaction/compaction.ts +1388 -0
- package/src/session/compaction/index.ts +7 -0
- package/src/session/compaction/pruning.ts +91 -0
- package/src/session/compaction/utils.ts +184 -0
- package/src/session/history-storage.ts +253 -0
- package/src/session/messages.ts +597 -0
- package/src/session/session-dump-format.ts +203 -0
- package/src/session/session-manager.ts +2816 -0
- package/src/session/session-storage.ts +370 -0
- package/src/session/streaming-output.ts +770 -0
- package/src/session/tool-choice-queue.ts +213 -0
- package/src/slash-commands/builtin-registry.ts +1614 -0
- package/src/slash-commands/export-command.ts +178 -0
- package/src/slash-commands/marketplace-install-parser.ts +99 -0
- package/src/slash-commands/resource-commands.ts +250 -0
- package/src/ssh/config-writer.ts +183 -0
- package/src/ssh/connection-manager.ts +445 -0
- package/src/ssh/ssh-executor.ts +131 -0
- package/src/ssh/sshfs-mount.ts +137 -0
- package/src/ssh/utils.ts +8 -0
- package/src/stt/downloader.ts +71 -0
- package/src/stt/index.ts +3 -0
- package/src/stt/recorder.ts +351 -0
- package/src/stt/setup.ts +52 -0
- package/src/stt/stt-controller.ts +160 -0
- package/src/stt/transcribe.py +70 -0
- package/src/stt/transcriber.ts +91 -0
- package/src/system-prompt.ts +688 -0
- package/src/task/agents.ts +166 -0
- package/src/task/commands.ts +131 -0
- package/src/task/discovery.ts +126 -0
- package/src/task/executor.ts +1324 -0
- package/src/task/index.ts +1197 -0
- package/src/task/isolation-backend.ts +72 -0
- package/src/task/name-generator.ts +1577 -0
- package/src/task/output-manager.ts +107 -0
- package/src/task/parallel.ts +116 -0
- package/src/task/render.ts +1035 -0
- package/src/task/subprocess-tool-registry.ts +88 -0
- package/src/task/template.ts +33 -0
- package/src/task/types.ts +230 -0
- package/src/task/worktree.ts +580 -0
- package/src/task/xcsh-command.ts +26 -0
- package/src/thinking.ts +87 -0
- package/src/tools/action-renderer.ts +198 -0
- package/src/tools/archive-reader.ts +315 -0
- package/src/tools/ask.ts +791 -0
- package/src/tools/ast-edit.ts +492 -0
- package/src/tools/ast-grep.ts +453 -0
- package/src/tools/auto-generated-guard.ts +305 -0
- package/src/tools/bash-interactive.ts +383 -0
- package/src/tools/bash-interceptor.ts +67 -0
- package/src/tools/bash-normalize.ts +107 -0
- package/src/tools/bash-skill-urls.ts +246 -0
- package/src/tools/bash.ts +878 -0
- package/src/tools/browser-renderer.ts +129 -0
- package/src/tools/browser.ts +1366 -0
- package/src/tools/calculator.ts +543 -0
- package/src/tools/cancel-job.ts +100 -0
- package/src/tools/catalog-workflow-runner.ts +718 -0
- package/src/tools/checkpoint.ts +133 -0
- package/src/tools/context.ts +39 -0
- package/src/tools/debug.ts +1004 -0
- package/src/tools/display-image-renderer.ts +96 -0
- package/src/tools/display-image.ts +109 -0
- package/src/tools/exit-plan-mode.ts +101 -0
- package/src/tools/fetch.ts +1462 -0
- package/src/tools/find.ts +437 -0
- package/src/tools/fs-cache-invalidation.ts +33 -0
- package/src/tools/gemini-image.ts +1004 -0
- package/src/tools/grep.ts +705 -0
- package/src/tools/index.ts +442 -0
- package/src/tools/inspect-image-renderer.ts +101 -0
- package/src/tools/inspect-image.ts +176 -0
- package/src/tools/json-tree.ts +266 -0
- package/src/tools/jtd-to-json-schema.ts +199 -0
- package/src/tools/jtd-to-typescript.ts +136 -0
- package/src/tools/jtd-utils.ts +102 -0
- package/src/tools/list-limit.ts +40 -0
- package/src/tools/mermaid-renderer.ts +127 -0
- package/src/tools/notebook.ts +288 -0
- package/src/tools/output-meta.ts +588 -0
- package/src/tools/path-utils.ts +560 -0
- package/src/tools/plan-mode-guard.ts +41 -0
- package/src/tools/poll-tool.ts +177 -0
- package/src/tools/puppeteer/00_stealth_tampering.txt +63 -0
- package/src/tools/puppeteer/01_stealth_activity.txt +20 -0
- package/src/tools/puppeteer/02_stealth_hairline.txt +11 -0
- package/src/tools/puppeteer/03_stealth_botd.txt +384 -0
- package/src/tools/puppeteer/04_stealth_iframe.txt +81 -0
- package/src/tools/puppeteer/05_stealth_webgl.txt +75 -0
- package/src/tools/puppeteer/06_stealth_screen.txt +72 -0
- package/src/tools/puppeteer/07_stealth_fonts.txt +97 -0
- package/src/tools/puppeteer/08_stealth_audio.txt +51 -0
- package/src/tools/puppeteer/09_stealth_locale.txt +46 -0
- package/src/tools/puppeteer/10_stealth_plugins.txt +206 -0
- package/src/tools/puppeteer/11_stealth_hardware.txt +8 -0
- package/src/tools/puppeteer/12_stealth_codecs.txt +40 -0
- package/src/tools/puppeteer/13_stealth_worker.txt +74 -0
- package/src/tools/python.ts +1184 -0
- package/src/tools/read.ts +1591 -0
- package/src/tools/render-mermaid.ts +93 -0
- package/src/tools/render-utils.ts +677 -0
- package/src/tools/renderers.ts +82 -0
- package/src/tools/report-tool-issue.ts +80 -0
- package/src/tools/resolve.ts +196 -0
- package/src/tools/review.ts +238 -0
- package/src/tools/search-tool-bm25.ts +288 -0
- package/src/tools/sqlite-reader.ts +623 -0
- package/src/tools/ssh.ts +322 -0
- package/src/tools/submit-result.ts +229 -0
- package/src/tools/todo-render.ts +33 -0
- package/src/tools/todo-write.ts +440 -0
- package/src/tools/tool-errors.ts +62 -0
- package/src/tools/tool-result.ts +93 -0
- package/src/tools/tool-timeouts.ts +30 -0
- package/src/tools/vim.ts +981 -0
- package/src/tools/write.ts +671 -0
- package/src/tools/xcsh-api-renderer.ts +402 -0
- package/src/tools/xcsh-api.ts +887 -0
- package/src/tui/code-cell.ts +101 -0
- package/src/tui/file-list.ts +47 -0
- package/src/tui/index.ts +11 -0
- package/src/tui/output-block.ts +175 -0
- package/src/tui/status-line.ts +39 -0
- package/src/tui/tree-list.ts +84 -0
- package/src/tui/types.ts +15 -0
- package/src/tui/utils.ts +103 -0
- package/src/utils/changelog.ts +98 -0
- package/src/utils/clipboard.ts +80 -0
- package/src/utils/command-args.ts +76 -0
- package/src/utils/commit-message-generator.ts +137 -0
- package/src/utils/edit-mode.ts +50 -0
- package/src/utils/event-bus.ts +33 -0
- package/src/utils/external-editor.ts +65 -0
- package/src/utils/file-display-mode.ts +37 -0
- package/src/utils/file-mentions.ts +376 -0
- package/src/utils/fuzzy.ts +108 -0
- package/src/utils/git.ts +1495 -0
- package/src/utils/gitstatus.ts +140 -0
- package/src/utils/image-convert.ts +27 -0
- package/src/utils/image-loading.ts +98 -0
- package/src/utils/image-passthrough.ts +118 -0
- package/src/utils/image-resize.ts +272 -0
- package/src/utils/image-viewer.ts +17 -0
- package/src/utils/lang-from-path.ts +239 -0
- package/src/utils/markit.ts +81 -0
- package/src/utils/open.ts +20 -0
- package/src/utils/session-color.ts +55 -0
- package/src/utils/shell-snapshot.ts +188 -0
- package/src/utils/title-generator.ts +193 -0
- package/src/utils/tool-choice.ts +28 -0
- package/src/utils/tools-manager.ts +356 -0
- package/src/vim/buffer.ts +309 -0
- package/src/vim/commands.ts +382 -0
- package/src/vim/engine.ts +2426 -0
- package/src/vim/parser.ts +151 -0
- package/src/vim/render.ts +252 -0
- package/src/vim/types.ts +197 -0
- package/src/web/kagi.ts +174 -0
- package/src/web/parallel.ts +346 -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 +110 -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 +653 -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 +452 -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 +169 -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 +190 -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 +93 -0
- package/src/web/scrapers/types.ts +267 -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 +313 -0
- package/src/web/search/errors.ts +120 -0
- package/src/web/search/index.ts +346 -0
- package/src/web/search/params.ts +129 -0
- package/src/web/search/provider.ts +97 -0
- package/src/web/search/providers/anthropic.ts +339 -0
- package/src/web/search/providers/base.ts +35 -0
- package/src/web/search/providers/brave.ts +150 -0
- package/src/web/search/providers/codex.ts +402 -0
- package/src/web/search/providers/exa.ts +264 -0
- package/src/web/search/providers/firecrawl.ts +115 -0
- package/src/web/search/providers/gemini.ts +566 -0
- package/src/web/search/providers/jina.ts +99 -0
- package/src/web/search/providers/kagi.ts +70 -0
- package/src/web/search/providers/kimi.ts +157 -0
- package/src/web/search/providers/parallel.ts +63 -0
- package/src/web/search/providers/perplexity.ts +546 -0
- package/src/web/search/providers/synthetic.ts +113 -0
- package/src/web/search/providers/tavily.ts +162 -0
- package/src/web/search/providers/utils.ts +36 -0
- package/src/web/search/providers/zai.ts +311 -0
- package/src/web/search/render.ts +348 -0
- package/src/web/search/types.ts +438 -0
- package/src/web/search/utils.ts +17 -0
|
@@ -0,0 +1,512 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cli.errors.bunVersion": "エラー: Bun ランタイムは >= {minVersion} が必要です (現在 v{currentVersion})。Bun を更新してください: bun upgrade",
|
|
3
|
+
"cli.errors.bunErrata": "エラー: Bun ランタイムの既知の不具合が検出されました (v{version})。Bun を更新してください: bun upgrade",
|
|
4
|
+
"agents.errors.bothFlags": "--user または --project のいずれか一方を選択してください。両方は指定できません。",
|
|
5
|
+
"agents.status.bundledCount": "バンドル済みエージェント数: {total}",
|
|
6
|
+
"agents.status.targetDirectory": "ターゲットディレクトリ: {dir}",
|
|
7
|
+
"agents.warnings.skippedExisting": "既存のファイルをスキップしました: {count} 件 (上書きするには --force を使用してください)",
|
|
8
|
+
"config.errors.unknownCommand": "不明な config コマンドです: {action}",
|
|
9
|
+
"config.errors.invalidBoolean": "無効なブール値です: {value}。true/false、yes/no、on/off、または 1/0 を使用してください",
|
|
10
|
+
"config.errors.invalidNumber": "無効な数値です: {value}",
|
|
11
|
+
"config.errors.invalidEnumValue": "無効な値です: {value}。有効な値: {validValues}",
|
|
12
|
+
"config.errors.invalidArrayJson": "無効な配列 JSON です: {value}",
|
|
13
|
+
"config.errors.invalidRecordJson": "無効なレコード JSON です: {value}",
|
|
14
|
+
"config.help.listKeys": "利用可能なキーを確認するには '{appName} config list' を実行してください",
|
|
15
|
+
"config.errors.unknownSetting": "不明な設定です: {key}",
|
|
16
|
+
"config.status.valueSet": "{path} = {value} に設定しました",
|
|
17
|
+
"config.status.valueReset": "{path} を {value} にリセットしました",
|
|
18
|
+
"file.errors.notFound": "エラー: ファイルが見つかりません: {path}",
|
|
19
|
+
"file.warnings.tooLarge": "警告: ファイルの内容をスキップします (サイズが大きすぎます: {size}): {path}",
|
|
20
|
+
"file.errors.readFailed": "エラー: ファイル {path} を読み込めませんでした: {message}",
|
|
21
|
+
"grep.errors.patternRequired": "エラー: パターンは必須です",
|
|
22
|
+
"grep.results.totalMatches": "総一致数: {count}",
|
|
23
|
+
"grep.results.filesWithMatches": "一致があったファイル数: {count}",
|
|
24
|
+
"grep.results.filesSearched": "検索したファイル数: {count}",
|
|
25
|
+
"read.errors.fileNotFound": "エラー: ファイルが見つかりません: {path}",
|
|
26
|
+
"setup.errors.usage": "使用方法: {appName} setup <コンポーネント>",
|
|
27
|
+
"setup.python.errors.notFound": "Python が見つかりません",
|
|
28
|
+
"setup.python.help.installPython": "Python 3.8 以上をインストールし、PATH に追加されていることを確認してください",
|
|
29
|
+
"setup.python.status.ready": "Python の実行環境が整いました",
|
|
30
|
+
"setup.python.warnings.missingPackages": "不足しているパッケージ: {packages}",
|
|
31
|
+
"setup.python.errors.noPackageManager": "パッケージマネージャーが見つかりません",
|
|
32
|
+
"setup.python.help.installManagers": "uv (推奨) または pip をインストールしてください:",
|
|
33
|
+
"setup.python.errors.installationFailed": "インストールに失敗しました",
|
|
34
|
+
"setup.python.help.manualInstall": "手動でインストールしてみてください:",
|
|
35
|
+
"setup.python.errors.setupIncomplete": "セットアップが完了していません",
|
|
36
|
+
"setup.stt.status.ready": "音声認識の準備ができました",
|
|
37
|
+
"setup.stt.errors.pythonNotFound": "Python が見つかりません",
|
|
38
|
+
"setup.stt.status.installingWhisper": "openai-whisper をインストールしています...",
|
|
39
|
+
"setup.stt.errors.whisperFailed": "openai-whisper のインストールに失敗しました",
|
|
40
|
+
"setup.stt.help.manualWhisper": "手動でインストールしてみてください: pip install openai-whisper",
|
|
41
|
+
"setup.help.title": "setup - オプション機能の依存関係をインストールします",
|
|
42
|
+
"setup.help.pythonDescription": "Python コード実行のための Jupyter カーネル依存関係をインストールします",
|
|
43
|
+
"setup.help.sttDescription": "音声認識の依存関係をインストールします (openai-whisper、録音ツール)",
|
|
44
|
+
"setup.litellm.errors.envNotSet": "必要な環境変数が設定されていません:",
|
|
45
|
+
"setup.litellm.errors.baseUrlHint": "LITELLM_BASE_URL — LiteLLM プロキシの URL (例: https://your-proxy.example.com)",
|
|
46
|
+
"setup.litellm.errors.apiKeyHint": "LITELLM_API_KEY — LiteLLM プロキシの API キー",
|
|
47
|
+
"setup.litellm.help.setEnvVars": "シェルプロファイル (.zshrc、.bashrc) または .env ファイルに設定してください。",
|
|
48
|
+
"setup.litellm.status.generated": "LiteLLM 設定を生成しました",
|
|
49
|
+
"setup.litellm.errors.generationFailed": "LiteLLM 設定の生成に失敗しました",
|
|
50
|
+
"ssh.errors.hostRequired": "エラー: ホスト名が必要です",
|
|
51
|
+
"ssh.errors.hostFlagRequired": "エラー: --host は必須です",
|
|
52
|
+
"ssh.errors.invalidPort": "エラー: ポートは 1 から 65535 の整数である必要があります",
|
|
53
|
+
"ssh.status.hostAdded": "SSH ホスト \"{name}\" を {scope} の設定に追加しました",
|
|
54
|
+
"ssh.status.hostRemoved": "SSH ホスト \"{name}\" を {scope} の設定から削除しました",
|
|
55
|
+
"ssh.controller.unknownSubcommand": "不明なサブコマンドです: {subcommand}。使い方は /ssh help を入力してください。",
|
|
56
|
+
"ssh.add.usage": "使用方法: /ssh add <name> --host <host> [--user <user>] [--port <port>] [--key <keyPath>] [--desc <description>] [--compat] [--scope project|user]",
|
|
57
|
+
"ssh.add.missingHost": "--host の値が指定されていません。",
|
|
58
|
+
"ssh.add.missingUser": "--user の値が指定されていません。",
|
|
59
|
+
"ssh.add.missingPort": "--port の値が指定されていません。",
|
|
60
|
+
"ssh.add.invalidPort": "--port の値が無効です。1 から 65535 の整数を指定してください。",
|
|
61
|
+
"ssh.add.missingKey": "--key の値が指定されていません。",
|
|
62
|
+
"ssh.add.missingDesc": "--desc の値が指定されていません。",
|
|
63
|
+
"ssh.add.invalidScope": "--scope の値が無効です。project または user を使用してください。",
|
|
64
|
+
"ssh.add.unknownOption": "不明なオプションです: {option}",
|
|
65
|
+
"ssh.add.nameRequired": "ホスト名が必要です。使用方法: /ssh add <name> --host <host> ...",
|
|
66
|
+
"ssh.add.hostRequired": "--host は必須です。使用方法: /ssh add <name> --host <host> ...",
|
|
67
|
+
"ssh.add.failed": "ホストの追加に失敗しました: {message}",
|
|
68
|
+
"ssh.list.noneConfigured": "SSH ホストが設定されていません。",
|
|
69
|
+
"ssh.list.title": "設定済み SSH ホスト",
|
|
70
|
+
"ssh.list.userLevel": "ユーザーレベル",
|
|
71
|
+
"ssh.list.projectLevel": "プロジェクトレベル",
|
|
72
|
+
"ssh.list.discovered": "検出済み",
|
|
73
|
+
"ssh.list.readOnly": "読み取り専用",
|
|
74
|
+
"ssh.list.failed": "ホスト一覧の取得に失敗しました: {message}",
|
|
75
|
+
"ssh.remove.invalidScope": "--scope の値が無効です。project または user を使用してください。",
|
|
76
|
+
"ssh.remove.unknownOption": "不明なオプションです: {option}",
|
|
77
|
+
"ssh.remove.nameRequired": "ホスト名が必要です。使用方法: /ssh remove <name> [--scope project|user]",
|
|
78
|
+
"ssh.remove.notFound": "ホスト \"{name}\" が {scope} の設定に見つかりません。",
|
|
79
|
+
"ssh.remove.failed": "ホストの削除に失敗しました: {message}",
|
|
80
|
+
"mode.plan.status.enabled": "プランモードが有効です。プランファイル: {path}",
|
|
81
|
+
"mode.plan.status.paused": "プランモードを一時停止しました。",
|
|
82
|
+
"mode.plan.status.disabled": "プランモードが無効です。",
|
|
83
|
+
"mode.plan.errors.noEditor": "エディターが設定されていません。$VISUAL または $EDITOR 環境変数を設定してください。",
|
|
84
|
+
"mode.plan.errors.fileNotFound": "{path} にプランファイルが見つかりません",
|
|
85
|
+
"mode.plan.errors.editorOpenFailed": "外部エディターを開けませんでした: {message}",
|
|
86
|
+
"mode.plan.status.updated": "外部エディターでプランを更新しました。",
|
|
87
|
+
"mode.plan.errors.notActive": "プランモードはアクティブではありません。",
|
|
88
|
+
"mode.stt.warnings.disabled": "音声認識が無効です。設定で有効にしてください: stt.enabled",
|
|
89
|
+
"mode.subagent.status.noActive": "アクティブなサブエージェントセッションはありません",
|
|
90
|
+
"ui.status.sessionCompacted": "セッションを {times} 回圧縮しました",
|
|
91
|
+
"ui.status.messageQueued": "圧縮後に送信するメッセージをキューに追加しました",
|
|
92
|
+
"ui.errors.queuedMessageFailed": "キューに入れたメッセージの送信に失敗しました: {message}",
|
|
93
|
+
"shell.errors.ttyRequired": "エラー: シェルコンソールにはインタラクティブな TTY が必要です。",
|
|
94
|
+
"search.errors.queryRequired": "エラー: クエリは必須です",
|
|
95
|
+
"commands.settings.description": "設定メニューを開く",
|
|
96
|
+
"commands.plan.description": "プランモードの切り替え(実行前にエージェントが計画を立てます)",
|
|
97
|
+
"commands.plan.inlineHint": "[プロンプト]",
|
|
98
|
+
"commands.model.description": "モデルを選択する(選択 UI を開きます)",
|
|
99
|
+
"commands.fast.description": "ファストモードの切り替え(OpenAI サービスティアの優先度)",
|
|
100
|
+
"commands.fast.sub.on.description": "ファストモードを有効にする",
|
|
101
|
+
"commands.fast.sub.off.description": "ファストモードを無効にする",
|
|
102
|
+
"commands.fast.sub.status.description": "ファストモードの状態を表示する",
|
|
103
|
+
"commands.fast.enabled": "ファストモードが有効になりました。",
|
|
104
|
+
"commands.fast.disabled": "ファストモードが無効になりました。",
|
|
105
|
+
"commands.fast.statusOn": "ファストモードはオンです。",
|
|
106
|
+
"commands.fast.statusOff": "ファストモードはオフです。",
|
|
107
|
+
"commands.fast.usage": "使用方法: /fast [on|off|status]",
|
|
108
|
+
"commands.export.description": "セッションを HTML ファイルにエクスポートする",
|
|
109
|
+
"commands.export.inlineHint": "[パス]",
|
|
110
|
+
"commands.dump.description": "セッションの記録をクリップボードにコピーする",
|
|
111
|
+
"commands.share.description": "セッションを GitHub のシークレット gist として共有する",
|
|
112
|
+
"commands.browser.description": "ブラウザのヘッドレスモードと可視モードを切り替える",
|
|
113
|
+
"commands.browser.sub.headless.description": "ヘッドレスモードに切り替える",
|
|
114
|
+
"commands.browser.sub.visible.description": "可視モードに切り替える",
|
|
115
|
+
"commands.browser.disabled": "ブラウザツールは無効です(設定で有効にしてください)",
|
|
116
|
+
"commands.browser.usage": "使用方法: /browser [headless|visible]",
|
|
117
|
+
"commands.browser.modeHeadless": "ブラウザモード: ヘッドレス",
|
|
118
|
+
"commands.browser.modeVisible": "ブラウザモード: 可視",
|
|
119
|
+
"commands.browser.restartFailed": "ブラウザの再起動に失敗しました: {message}",
|
|
120
|
+
"commands.copy.description": "最後のエージェントメッセージをクリップボードにコピーする",
|
|
121
|
+
"commands.copy.sub.last.description": "最後のエージェントメッセージ全体をコピーする",
|
|
122
|
+
"commands.copy.sub.code.description": "最後のコードブロックをコピーする",
|
|
123
|
+
"commands.copy.sub.all.description": "最後のメッセージのすべてのコードブロックをコピーする",
|
|
124
|
+
"commands.copy.sub.cmd.description": "最後の bash/python コマンドをコピーする",
|
|
125
|
+
"commands.session.description": "セッション管理コマンド",
|
|
126
|
+
"commands.session.sub.info.description": "セッション情報と統計を表示する",
|
|
127
|
+
"commands.session.sub.delete.description": "現在のセッションを削除して選択画面に戻る",
|
|
128
|
+
"commands.jobs.description": "非同期バックグラウンドジョブの状態を表示する",
|
|
129
|
+
"commands.usage.description": "プロバイダーの使用状況と制限を表示する",
|
|
130
|
+
"commands.changelog.description": "変更履歴を表示する",
|
|
131
|
+
"commands.changelog.sub.full.description": "完全な変更履歴を表示する",
|
|
132
|
+
"commands.hotkeys.description": "すべてのキーボードショートカットを表示する",
|
|
133
|
+
"commands.tools.description": "エージェントに表示されている現在のツールを表示する",
|
|
134
|
+
"commands.extensions.description": "拡張機能コントロールセンターのダッシュボードを開く",
|
|
135
|
+
"commands.agents.description": "エージェントコントロールセンターのダッシュボードを開く",
|
|
136
|
+
"commands.branch.description": "以前のメッセージから新しいブランチを作成する",
|
|
137
|
+
"commands.fork.description": "以前のメッセージから新しいフォークを作成する",
|
|
138
|
+
"commands.tree.description": "セッションツリーをナビゲートする(ブランチの切り替え)",
|
|
139
|
+
"commands.login.description": "OAuth プロバイダーでログインする",
|
|
140
|
+
"commands.login.inlineHint": "[プロバイダー|リダイレクト URL]",
|
|
141
|
+
"commands.login.alreadyInProgressFor": "{provider} の OAuth ログインは既に進行中です。リダイレクト URL を /login <url> で貼り付けてください。",
|
|
142
|
+
"commands.login.alreadyInProgress": "OAuth ログインは既に進行中です。リダイレクト URL を /login <url> で貼り付けてください。",
|
|
143
|
+
"commands.login.callbackReceived": "OAuth コールバックを受信しました。ログインを完了しています…",
|
|
144
|
+
"commands.login.noCallbackWaiting": "手動コールバックを待機中の OAuth ログインはありません。",
|
|
145
|
+
"commands.logout.description": "OAuth プロバイダーからログアウトする",
|
|
146
|
+
"commands.mcp.description": "MCP サーバーを管理する(追加、一覧、削除、テスト)",
|
|
147
|
+
"commands.mcp.sub.add.description": "新しい MCP サーバーを追加する",
|
|
148
|
+
"commands.mcp.sub.list.description": "設定済みの MCP サーバーをすべて一覧表示する",
|
|
149
|
+
"commands.mcp.sub.remove.description": "MCP サーバーを削除する",
|
|
150
|
+
"commands.mcp.sub.test.description": "サーバーへの接続をテストする",
|
|
151
|
+
"commands.mcp.sub.reauth.description": "サーバーの OAuth を再認証する",
|
|
152
|
+
"commands.mcp.sub.unauth.description": "サーバーの OAuth 認証を削除する",
|
|
153
|
+
"commands.mcp.sub.enable.description": "MCP サーバーを有効にする",
|
|
154
|
+
"commands.mcp.sub.disable.description": "MCP サーバーを無効にする",
|
|
155
|
+
"commands.mcp.sub.smitherySearch.description": "Smithery レジストリを検索して MCP サーバーをデプロイする",
|
|
156
|
+
"commands.mcp.sub.smitheryLogin.description": "Smithery にログインして API キーをキャッシュする",
|
|
157
|
+
"commands.mcp.sub.smitheryLogout.description": "キャッシュされた Smithery API キーを削除する",
|
|
158
|
+
"commands.mcp.sub.reconnect.description": "特定の MCP サーバーに再接続する",
|
|
159
|
+
"commands.mcp.sub.reload.description": "MCP ランタイムツールを強制リロードする",
|
|
160
|
+
"commands.mcp.sub.resources.description": "接続済みサーバーの利用可能なリソースを一覧表示する",
|
|
161
|
+
"commands.mcp.sub.prompts.description": "接続済みサーバーの利用可能なプロンプトを一覧表示する",
|
|
162
|
+
"commands.mcp.sub.notifications.description": "通知機能とサブスクリプションを表示する",
|
|
163
|
+
"commands.mcp.sub.help.description": "ヘルプメッセージを表示する",
|
|
164
|
+
"commands.ssh.description": "SSH ホストを管理する(追加、一覧、削除)",
|
|
165
|
+
"commands.ssh.sub.add.description": "SSH ホストを追加する",
|
|
166
|
+
"commands.ssh.sub.list.description": "設定済みの SSH ホストをすべて一覧表示する",
|
|
167
|
+
"commands.ssh.sub.remove.description": "SSH ホストを削除する",
|
|
168
|
+
"commands.ssh.sub.help.description": "ヘルプメッセージを表示する",
|
|
169
|
+
"commands.new.description": "新しいセッションを開始する",
|
|
170
|
+
"commands.compact.description": "セッションコンテキストを手動で圧縮する",
|
|
171
|
+
"commands.compact.inlineHint": "[フォーカス指示]",
|
|
172
|
+
"commands.handoff.description": "セッションコンテキストを新しいセッションに引き継ぐ",
|
|
173
|
+
"commands.handoff.inlineHint": "[フォーカス指示]",
|
|
174
|
+
"commands.resume.description": "別のセッションを再開する",
|
|
175
|
+
"commands.btw.description": "現在のセッションコンテキストで一時的な補足質問をする",
|
|
176
|
+
"commands.btw.inlineHint": "<質問>",
|
|
177
|
+
"commands.background.description": "UI を切り離してバックグラウンドで実行を続ける",
|
|
178
|
+
"commands.debug.description": "デバッグツールセレクターを開く",
|
|
179
|
+
"commands.memory.description": "メモリのメンテナンスを確認・操作する",
|
|
180
|
+
"commands.memory.sub.view.description": "現在のメモリ注入ペイロードを表示する",
|
|
181
|
+
"commands.memory.sub.clear.description": "保存済みのメモリデータとアーティファクトを削除する",
|
|
182
|
+
"commands.memory.sub.reset.description": "clear のエイリアス",
|
|
183
|
+
"commands.memory.sub.enqueue.description": "メモリ統合メンテナンスをキューに追加する",
|
|
184
|
+
"commands.memory.sub.rebuild.description": "enqueue のエイリアス",
|
|
185
|
+
"commands.rename.description": "現在のセッションの名前を変更する",
|
|
186
|
+
"commands.rename.inlineHint": "<タイトル>",
|
|
187
|
+
"commands.rename.usage": "使用方法: /rename <title>",
|
|
188
|
+
"commands.move.description": "セッションを別の作業ディレクトリに移動する",
|
|
189
|
+
"commands.move.inlineHint": "<パス>",
|
|
190
|
+
"commands.move.usage": "使用方法: /move <path>",
|
|
191
|
+
"commands.exit.description": "アプリケーションを終了する",
|
|
192
|
+
"commands.plugin.description": "プラグインとマーケットプレイスソースを管理する",
|
|
193
|
+
"commands.plugin.sub.marketplace.description": "マーケットプレイスソースを管理する(追加、削除、更新、一覧)",
|
|
194
|
+
"commands.plugin.sub.install.description": "プラグインをインストールする",
|
|
195
|
+
"commands.plugin.sub.uninstall.description": "プラグインをアンインストールする",
|
|
196
|
+
"commands.plugin.sub.enable.description": "プラグインを有効にする",
|
|
197
|
+
"commands.plugin.sub.disable.description": "プラグインを無効にする",
|
|
198
|
+
"commands.plugin.sub.upgrade.description": "プラグインをアップグレードする",
|
|
199
|
+
"commands.plugin.sub.discover.description": "利用可能なプラグインを閲覧する",
|
|
200
|
+
"commands.plugin.sub.list.description": "インストール済みのプラグインをすべて一覧表示する",
|
|
201
|
+
"commands.plugin.sub.validate.description": "マーケットプレイスまたはプラグインマニフェストを検証する",
|
|
202
|
+
"commands.plugin.sub.setup.description": "推奨プラグインのガイド付きセットアップ",
|
|
203
|
+
"commands.plugin.sub.help.description": "使い方ガイドを表示する",
|
|
204
|
+
"commands.plugin.marketplace.addUsage": "使用方法: /plugin marketplace add <source>",
|
|
205
|
+
"commands.plugin.marketplace.added": "マーケットプレイスを追加しました: {name}",
|
|
206
|
+
"commands.plugin.marketplace.removeUsage": "使用方法: /plugin marketplace remove <name>",
|
|
207
|
+
"commands.plugin.marketplace.removed": "マーケットプレイスを削除しました: {name}",
|
|
208
|
+
"commands.plugin.marketplace.updated": "マーケットプレイスを更新しました: {name}",
|
|
209
|
+
"commands.plugin.marketplace.updatedAll": "{count} 件のマーケットプレイスを更新しました",
|
|
210
|
+
"commands.plugin.marketplace.noneConfiguredGetStarted": "マーケットプレイスが設定されていません。\n\n開始方法:\n /plugin marketplace add f5-sales-demo/marketplace",
|
|
211
|
+
"commands.plugin.marketplace.listHint": "プラグインを閲覧するには /plugin discover を使用してください",
|
|
212
|
+
"commands.plugin.marketplace.noneConfiguredTry": "マーケットプレイスが設定されていません。以下を試してください:\n /plugin marketplace add f5-sales-demo/marketplace",
|
|
213
|
+
"commands.plugin.marketplace.noPluginsAvailable": "設定済みのマーケットプレイスに利用可能なプラグインがありません",
|
|
214
|
+
"commands.plugin.installed": "{marketplace} から {name} をインストールしました",
|
|
215
|
+
"commands.plugin.uninstalled": "{pluginId} をアンインストールしました",
|
|
216
|
+
"commands.plugin.enabled": "{pluginId} を有効にしました",
|
|
217
|
+
"commands.plugin.disabled": "{pluginId} を無効にしました",
|
|
218
|
+
"commands.plugin.upgraded": "{pluginId} を {version} にアップグレードしました",
|
|
219
|
+
"commands.plugin.allUpToDate": "すべてのプラグインは最新です",
|
|
220
|
+
"commands.plugin.upgradedCount": "{count} 件のプラグインをアップグレードしました:",
|
|
221
|
+
"commands.plugin.npmPlugins": "npm プラグイン:",
|
|
222
|
+
"commands.plugin.marketplacePlugins": "マーケットプレイスプラグイン:",
|
|
223
|
+
"commands.plugin.noneInstalled": "プラグインがインストールされていません",
|
|
224
|
+
"commands.plugin.validate.marketplaceValid": "マーケットプレイス \"{name}\" は有効です ({count} 件のプラグイン)",
|
|
225
|
+
"commands.plugin.validate.pluginValid": "プラグイン \"{name}\" のマニフェストは有効です",
|
|
226
|
+
"commands.plugin.validate.notFound": "{path} に .xcsh-plugin/marketplace.json または .xcsh-plugin/plugin.json が見つかりません",
|
|
227
|
+
"commands.plugin.setup.noRecommended": "設定済みのマーケットプレイスに推奨プラグインが見つかりません",
|
|
228
|
+
"commands.plugin.setup.allInstalled": "推奨プラグインはすべてインストール済みです",
|
|
229
|
+
"commands.plugin.setup.title": "推奨プラグインのセットアップ:",
|
|
230
|
+
"commands.plugin.setup.installCount": "推奨プラグインの {installed}/{total} 件をインストールしました",
|
|
231
|
+
"commands.plugin.setup.skippedCount": "{count} 件スキップ — 上記の問題を修正して /plugin setup を再実行してください(冪等)",
|
|
232
|
+
"commands.plugin.setup.installFailed": "インストール失敗",
|
|
233
|
+
"commands.plugin.setup.installed": "インストール済み",
|
|
234
|
+
"commands.plugin.setup.notAuthenticated": "未認証",
|
|
235
|
+
"commands.plugin.setup.authenticatedAs": "{user} として認証済み",
|
|
236
|
+
"commands.plugin.setup.ready": "準備完了",
|
|
237
|
+
"commands.plugin.setup.pluginInstalled": "プラグインをインストールしました",
|
|
238
|
+
"commands.plugin.setup.pluginInstallFailed": "プラグインのインストールに失敗しました: {message}",
|
|
239
|
+
"commands.plugin.setup.notFoundInMarketplace": "どのマーケットプレイスにも見つかりません",
|
|
240
|
+
"commands.plugin.help": "プラグインコマンド:\n /plugin プラグインダッシュボードを開く\n /plugin marketplace add <source> マーケットプレイスを追加する (例: owner/repo)\n /plugin marketplace remove <name> マーケットプレイスを削除する\n /plugin marketplace update [name] カタログを再取得する\n /plugin marketplace list 設定済みのマーケットプレイスを一覧表示する\n /plugin discover [marketplace] 利用可能なプラグインを閲覧する\n /plugin install <name@marketplace> プラグインをインストールする\n /plugin uninstall <name@marketplace> プラグインをアンインストールする\n /plugin enable <name@marketplace> プラグインを有効にする\n /plugin disable <name@marketplace> プラグインを無効にする\n /plugin upgrade [name@marketplace] プラグインをアップグレードする\n /plugin list インストール済みプラグインを一覧表示する\n /plugin validate [path] マーケットプレイスまたはプラグインを検証する\n /plugin setup 推奨プラグインのガイド付きセットアップ\n\nクイックスタート:\n /plugin marketplace add f5-sales-demo/marketplace\n /plugin (プラグインダッシュボードを開きます)\n\nエイリアス: /marketplace, /plugins",
|
|
241
|
+
"commands.plugin.marketplace.noneConfiguredBrowse": "マーケットプレイスが設定されていません。\n\n開始方法:\n /plugin marketplace add f5-sales-demo/marketplace\n\n次に /plugin または /plugin discover でプラグインを閲覧してください",
|
|
242
|
+
"commands.plugin.marketplace.listHintAll": "プラグインを閲覧するには /plugin discover を、すべてのコマンドを見るには /plugin help を使用してください",
|
|
243
|
+
"commands.plugin.error": "プラグインエラー: {message}",
|
|
244
|
+
"commands.reloadPlugins.description": "すべてのプラグインをリロードする(スキル、コマンド、フック、ツール、エージェント、MCP)",
|
|
245
|
+
"commands.reloadPlugins.done": "プラグインをリロードしました。",
|
|
246
|
+
"commands.force.description": "次のターンで特定のツールを強制使用する",
|
|
247
|
+
"commands.force.inlineHint": "<ツール名> [プロンプト]",
|
|
248
|
+
"commands.force.usage": "使用方法: /force:<tool-name> [prompt]",
|
|
249
|
+
"commands.force.set": "次のターンで {toolName} を強制使用します。",
|
|
250
|
+
"commands.quit.description": "アプリケーションを終了する",
|
|
251
|
+
"commands.context.description": "F5 XC 認証コンテキストを管理する",
|
|
252
|
+
"commands.context.sub.list.description": "すべてのコンテキストを一覧表示する",
|
|
253
|
+
"commands.context.sub.activate.description": "指定したコンテキストに切り替える",
|
|
254
|
+
"commands.context.sub.validate.description": "アクティブにせずにコンテキストの認証情報を検証する",
|
|
255
|
+
"commands.context.sub.show.description": "コンテキストの詳細を表示する(マスク済み)",
|
|
256
|
+
"commands.context.sub.status.description": "現在の認証状態を表示する",
|
|
257
|
+
"commands.context.sub.create.description": "新しいコンテキストを作成する",
|
|
258
|
+
"commands.context.sub.delete.description": "コンテキストを削除する",
|
|
259
|
+
"commands.context.sub.rename.description": "コンテキストの名前を変更する",
|
|
260
|
+
"commands.context.sub.export.description": "コンテキスト(またはすべてのコンテキスト)を JSON としてエクスポートする",
|
|
261
|
+
"commands.context.sub.import.description": "ファイルパスまたはインライン JSON からコンテキストをインポートする",
|
|
262
|
+
"commands.context.sub.namespace.description": "アクティブなコンテキスト内で namespace を切り替える",
|
|
263
|
+
"commands.context.sub.env.description": "環境変数を管理する",
|
|
264
|
+
"commands.context.sub.set.description": "環境変数を設定する",
|
|
265
|
+
"commands.context.sub.unset.description": "環境変数を削除する",
|
|
266
|
+
"commands.context.sub.wizard.description": "ガイド付きのインタラクティブなコンテキストセットアップ",
|
|
267
|
+
"welcome.modelProvider": "モデルプロバイダー",
|
|
268
|
+
"welcome.plugins": "プラグイン",
|
|
269
|
+
"welcome.pluginSetupHint": "実行: /plugin setup",
|
|
270
|
+
"welcome.updateHint": "実行: xcsh update",
|
|
271
|
+
"welcome.newVersion": "新しいバージョン",
|
|
272
|
+
"welcome.connectionFailed": "— 接続に失敗しました",
|
|
273
|
+
"welcome.runLoginReconnect": "/login を実行して再接続してください",
|
|
274
|
+
"welcome.noModelProvider": "モデルプロバイダーが設定されていません",
|
|
275
|
+
"welcome.runLoginConnect": "/login を実行して接続してください",
|
|
276
|
+
"login.wizard.urlPrompt": "Model Provider URL",
|
|
277
|
+
"login.wizard.urlPlaceholder": "https://your-proxy.example.com",
|
|
278
|
+
"login.wizard.apiKeyPrompt": "API Key",
|
|
279
|
+
"login.wizard.apiKeyPlaceholder": "sk-...",
|
|
280
|
+
"login.wizard.connecting": "Connecting to {url}…",
|
|
281
|
+
"login.wizard.success": "Connected — {count} models available",
|
|
282
|
+
"login.wizard.configSaved": "Configuration saved. You're ready to go!",
|
|
283
|
+
"login.wizard.failed": "Connection failed — {error}",
|
|
284
|
+
"login.wizard.retryHint": "Press Escape to skip, or enter a new value:",
|
|
285
|
+
"plugins.tabs.installed": "インストール済み",
|
|
286
|
+
"plugins.tabs.recommended": "推奨",
|
|
287
|
+
"plugins.tabs.discover": "検索",
|
|
288
|
+
"plugins.tabs.updates": "更新",
|
|
289
|
+
"plugins.list.searchPlaceholder": "入力してフィルター",
|
|
290
|
+
"plugins.list.emptyDiscover": "利用可能なプラグインがありません。先にマーケットプレイスを追加してください。",
|
|
291
|
+
"plugins.list.emptyRecommended": "推奨プラグインはすべてインストール済みです。",
|
|
292
|
+
"plugins.list.emptyUpdates": "すべてのプラグインは最新です。",
|
|
293
|
+
"plugins.list.emptyInstalled": "プラグインがインストールされていません。",
|
|
294
|
+
"plugins.list.shadowed": "シャドウ",
|
|
295
|
+
"plugins.list.disabled": "無効",
|
|
296
|
+
"plugins.dashboard.title": "xcsh プラグインセンター",
|
|
297
|
+
"plugins.dashboard.helpRecommended": "↑/↓: ナビゲート Enter: インストール A: すべてインストール Tab: 次のタブ Ctrl+R: リロード Esc: 閉じる",
|
|
298
|
+
"plugins.dashboard.helpDiscover": "↑/↓: ナビゲート Enter: インストール Tab: 次のタブ Ctrl+R: リロード Esc: 閉じる",
|
|
299
|
+
"plugins.dashboard.helpUpdates": "↑/↓: ナビゲート Enter: アップグレード Tab: 次のタブ Ctrl+R: リロード Esc: 閉じる",
|
|
300
|
+
"plugins.dashboard.helpInstalled": "↑/↓: ナビゲート Space: 切り替え Enter: アンインストール U: アップグレード Tab: 次のタブ Ctrl+R: リロード Esc: 閉じる",
|
|
301
|
+
"plugins.dashboard.settingUp": "{name} をセットアップしています... ({current}/{total})",
|
|
302
|
+
"plugins.dashboard.installCount": "推奨プラグインの {installed}/{total} 件をインストールしました",
|
|
303
|
+
"plugins.dashboard.allRecommendedInstalled": "推奨プラグインはすべてインストール済みです",
|
|
304
|
+
"plugins.dashboard.failedCount": "{count} 件失敗",
|
|
305
|
+
"plugins.dashboard.authNeeded": "認証が必要です: {items}",
|
|
306
|
+
"plugins.dashboard.uninstalled": "{name} をアンインストールしました",
|
|
307
|
+
"plugins.dashboard.uninstallFailed": "アンインストールに失敗しました: {message}",
|
|
308
|
+
"plugins.dashboard.upgraded": "{name} をアップグレードしました",
|
|
309
|
+
"plugins.dashboard.upgradeFailed": "アップグレードに失敗しました: {message}",
|
|
310
|
+
"plugins.dashboard.upgrading": "{name} をアップグレードしています...",
|
|
311
|
+
"controller.export.warnings.useDump": "セッションをクリップボードにコピーするには /dump を使用してください。",
|
|
312
|
+
"controller.export.status.exported": "セッションをエクスポートしました: {path}",
|
|
313
|
+
"controller.export.errors.failed": "セッションのエクスポートに失敗しました: {message}",
|
|
314
|
+
"controller.dump.errors.noMessages": "ダンプするメッセージがまだありません。",
|
|
315
|
+
"controller.dump.status.copied": "セッションをクリップボードにコピーしました",
|
|
316
|
+
"controller.dump.errors.failed": "セッションのコピーに失敗しました: {message}",
|
|
317
|
+
"controller.debug.errors.noMessages": "ダンプするメッセージがまだありません。",
|
|
318
|
+
"controller.debug.status.written": "デバッグトランスクリプトを書き出しました:\n{path}",
|
|
319
|
+
"controller.debug.errors.failed": "デバッグトランスクリプトの書き出しに失敗しました: {message}",
|
|
320
|
+
"controller.copy.errors.unknownSub": "不明なサブコマンドです: {sub}。code、all、cmd、または last を使用してください。",
|
|
321
|
+
"controller.copy.errors.noMessages": "コピーするエージェントメッセージがまだありません。",
|
|
322
|
+
"controller.copy.status.lastMessage": "最後のエージェントメッセージをクリップボードにコピーしました",
|
|
323
|
+
"controller.copy.warnings.noCodeBlock": "最後のエージェントメッセージにコードブロックが見つかりません。",
|
|
324
|
+
"controller.copy.status.codeBlock": "最後のコードブロックをクリップボードにコピーしました",
|
|
325
|
+
"controller.copy.warnings.noCodeBlocks": "最後のエージェントメッセージにコードブロックが見つかりません。",
|
|
326
|
+
"controller.copy.status.codeBlocks": "{count} 件のコードブロックをクリップボードにコピーしました",
|
|
327
|
+
"controller.copy.status.bashCommand": "最後の bash コマンドをクリップボードにコピーしました",
|
|
328
|
+
"controller.copy.status.pythonCode": "最後の Python コードをクリップボードにコピーしました",
|
|
329
|
+
"controller.copy.warnings.noCommand": "会話に bash または Python のコマンドが見つかりません。",
|
|
330
|
+
"controller.session.title": "セッション情報",
|
|
331
|
+
"controller.session.file": "ファイル:",
|
|
332
|
+
"controller.session.inMemory": "インメモリ",
|
|
333
|
+
"controller.session.id": "ID:",
|
|
334
|
+
"controller.session.provider": "プロバイダー",
|
|
335
|
+
"controller.session.noModel": "モデルが選択されていません",
|
|
336
|
+
"controller.session.messages": "メッセージ",
|
|
337
|
+
"controller.session.user": "ユーザー:",
|
|
338
|
+
"controller.session.assistant": "アシスタント:",
|
|
339
|
+
"controller.session.toolCalls": "ツール呼び出し:",
|
|
340
|
+
"controller.session.toolResults": "ツール結果:",
|
|
341
|
+
"controller.session.total": "合計:",
|
|
342
|
+
"controller.session.tokens": "トークン",
|
|
343
|
+
"controller.session.input": "入力:",
|
|
344
|
+
"controller.session.output": "出力:",
|
|
345
|
+
"controller.session.cacheRead": "キャッシュ読み取り:",
|
|
346
|
+
"controller.session.cacheWrite": "キャッシュ書き込み:",
|
|
347
|
+
"controller.session.cost": "コスト",
|
|
348
|
+
"controller.session.premiumRequests": "プレミアムリクエスト:",
|
|
349
|
+
"controller.session.pythonGateway": "Python ゲートウェイ",
|
|
350
|
+
"controller.session.status": "ステータス:",
|
|
351
|
+
"controller.session.gatewayActive": "アクティブ (グローバル)",
|
|
352
|
+
"controller.session.gatewayInactive": "非アクティブ",
|
|
353
|
+
"controller.session.url": "URL:",
|
|
354
|
+
"controller.session.pid": "PID:",
|
|
355
|
+
"controller.session.python": "Python:",
|
|
356
|
+
"controller.session.venv": "Venv:",
|
|
357
|
+
"controller.session.uptime": "稼働時間:",
|
|
358
|
+
"controller.session.lspServers": "LSP サーバー",
|
|
359
|
+
"controller.session.mcpServers": "MCP サーバー",
|
|
360
|
+
"controller.session.noneConnected": "接続なし",
|
|
361
|
+
"controller.jobs.title": "バックグラウンドジョブ",
|
|
362
|
+
"controller.jobs.running": "実行中:",
|
|
363
|
+
"controller.jobs.noJobs": "非同期ジョブはまだありません。",
|
|
364
|
+
"controller.jobs.runningJobs": "実行中のジョブ",
|
|
365
|
+
"controller.jobs.recentJobs": "最近のジョブ",
|
|
366
|
+
"controller.jobs.unavailable": "このセッションでは非同期バックグラウンドジョブを利用できません。",
|
|
367
|
+
"controller.usage.notConfigured": "このセッションでは使用状況レポートが設定されていません。",
|
|
368
|
+
"controller.usage.fetchFailed": "使用状況データの取得に失敗しました: {message}",
|
|
369
|
+
"controller.usage.noData": "使用状況データがありません。",
|
|
370
|
+
"controller.changelog.noEntries": "変更履歴のエントリが見つかりません。",
|
|
371
|
+
"controller.changelog.fullTitle": "完全な変更履歴",
|
|
372
|
+
"controller.changelog.recentTitle": "最近の変更",
|
|
373
|
+
"controller.hotkeys.title": "キーボードショートカット",
|
|
374
|
+
"controller.tools.title": "利用可能なツール",
|
|
375
|
+
"controller.memory.title": "メモリ注入ペイロード",
|
|
376
|
+
"controller.memory.empty": "メモリペイロードは空です(メモリが無効か、メモリサマリーが見つかりません)。",
|
|
377
|
+
"controller.memory.cleared": "メモリデータを消去し、システムプロンプトを更新しました。",
|
|
378
|
+
"controller.memory.clearFailed": "メモリの消去に失敗しました: {message}",
|
|
379
|
+
"controller.memory.enqueued": "メモリ統合をキューに追加しました。",
|
|
380
|
+
"controller.memory.enqueueFailed": "メモリ統合のキュー追加に失敗しました: {message}",
|
|
381
|
+
"controller.memory.usage": "使用方法: /memory <view|clear|reset|enqueue|rebuild>",
|
|
382
|
+
"controller.newSession": "新しいセッションを開始しました",
|
|
383
|
+
"controller.fork.streaming": "フォークする前に、現在のレスポンスが完了するまで待つか中断してください。",
|
|
384
|
+
"controller.fork.failed": "フォークに失敗しました(セッションが保存されていないかキャンセルされました)",
|
|
385
|
+
"controller.fork.success": "セッションを {path} にフォークしました",
|
|
386
|
+
"controller.move.streaming": "移動する前に、現在のレスポンスが完了するまで待つか中断してください。",
|
|
387
|
+
"controller.move.usage": "使用方法: /move <path>",
|
|
388
|
+
"controller.move.notDirectory": "ディレクトリではありません: {path}",
|
|
389
|
+
"controller.move.notExists": "ディレクトリが存在しません: {path}",
|
|
390
|
+
"controller.move.success": "セッションを {path} に移動しました",
|
|
391
|
+
"controller.move.failed": "移動に失敗しました: {message}",
|
|
392
|
+
"controller.rename.empty": "セッション名を空にすることはできません。",
|
|
393
|
+
"controller.rename.success": "セッションの名前を \"{name}\" に変更しました。",
|
|
394
|
+
"controller.rename.failed": "名前の変更に失敗しました: {message}",
|
|
395
|
+
"controller.share.ghNotLoggedIn": "GitHub CLI がログインしていません。まず 'gh auth login' を実行してください。",
|
|
396
|
+
"controller.share.ghNotInstalled": "GitHub CLI (gh) がインストールされていません。https://cli.github.com/ からインストールしてください",
|
|
397
|
+
"controller.share.creatingGist": "gist を作成しています...",
|
|
398
|
+
"controller.share.sharing": "共有しています...",
|
|
399
|
+
"controller.share.cancelled": "共有がキャンセルされました",
|
|
400
|
+
"controller.share.sessionShared": "セッションを共有しました",
|
|
401
|
+
"controller.share.customFailed": "カスタム共有に失敗しました: {message}",
|
|
402
|
+
"controller.share.gistFailed": "gist の作成に失敗しました: {message}",
|
|
403
|
+
"controller.share.gistParseFailed": "gh の出力から gist ID の解析に失敗しました",
|
|
404
|
+
"controller.bash.failed": "Bash コマンドが失敗しました: {message}",
|
|
405
|
+
"hotkeys.navigation.title": "ナビゲーション",
|
|
406
|
+
"hotkeys.navigation.moveCursor": "カーソル移動 / 履歴の閲覧(空の場合は上キー)",
|
|
407
|
+
"hotkeys.navigation.moveByWord": "単語単位で移動",
|
|
408
|
+
"hotkeys.navigation.startOfLine": "行の先頭へ",
|
|
409
|
+
"hotkeys.navigation.endOfLine": "行の末尾へ",
|
|
410
|
+
"hotkeys.editing.title": "編集",
|
|
411
|
+
"hotkeys.editing.sendMessage": "メッセージを送信",
|
|
412
|
+
"hotkeys.editing.newLine": "改行",
|
|
413
|
+
"hotkeys.editing.deleteWordBackwards": "前の単語を削除",
|
|
414
|
+
"hotkeys.editing.deleteToStart": "行の先頭まで削除",
|
|
415
|
+
"hotkeys.editing.deleteToEnd": "行の末尾まで削除",
|
|
416
|
+
"hotkeys.editing.copyLine": "現在の行をコピー",
|
|
417
|
+
"hotkeys.editing.copyPrompt": "プロンプト全体をコピー",
|
|
418
|
+
"hotkeys.other.title": "その他",
|
|
419
|
+
"hotkeys.other.pathCompletion": "パス補完 / オートコンプリートを確定",
|
|
420
|
+
"hotkeys.other.cancelInterrupt": "オートコンプリートをキャンセル / 実行中の作業を中断",
|
|
421
|
+
"hotkeys.other.clearExit": "エディターをクリア(1回目) / 終了(2回目)",
|
|
422
|
+
"hotkeys.other.exit": "終了(エディターが空の場合)",
|
|
423
|
+
"hotkeys.other.suspend": "バックグラウンドに一時停止",
|
|
424
|
+
"hotkeys.other.cycleThinking": "思考レベルを切り替え",
|
|
425
|
+
"hotkeys.other.cycleModelsForward": "ロールモデルを切り替え(slow/default/smol)",
|
|
426
|
+
"hotkeys.other.cycleModelsBackward": "ロールモデルを切り替え(一時的)",
|
|
427
|
+
"hotkeys.other.selectModelTemp": "モデルを選択(一時的)",
|
|
428
|
+
"hotkeys.other.selectModel": "モデルを選択(ロール設定)",
|
|
429
|
+
"hotkeys.other.togglePlan": "プランモードの切り替え",
|
|
430
|
+
"hotkeys.other.searchHistory": "プロンプト履歴を検索",
|
|
431
|
+
"hotkeys.other.toggleToolExpand": "ツール出力の展開を切り替え",
|
|
432
|
+
"hotkeys.other.toggleThinking": "思考ブロックの表示を切り替え",
|
|
433
|
+
"hotkeys.other.externalEditor": "外部エディターでメッセージを編集",
|
|
434
|
+
"hotkeys.other.pasteImage": "クリップボードから画像を貼り付け",
|
|
435
|
+
"hotkeys.other.toggleStt": "音声認識の録音を切り替え",
|
|
436
|
+
"hotkeys.other.promptActions": "プロンプトアクションを開く",
|
|
437
|
+
"hotkeys.other.slashCommands": "スラッシュコマンド",
|
|
438
|
+
"hotkeys.other.runBash": "bash コマンドを実行",
|
|
439
|
+
"hotkeys.other.runBashExcluded": "bash コマンドを実行(コンテキストから除外)",
|
|
440
|
+
"hotkeys.other.runPython": "共有カーネルで Python を実行",
|
|
441
|
+
"hotkeys.other.runPythonExcluded": "Python を実行(コンテキストから除外)",
|
|
442
|
+
"tools.emptyState": "エージェントに表示されているツールはありません。",
|
|
443
|
+
"tools.noDescription": "説明が提供されていません。",
|
|
444
|
+
"tools.tableHeaderTool": "ツール",
|
|
445
|
+
"tools.tableHeaderDescription": "説明",
|
|
446
|
+
"context.list.noneFound": "F5 XC コンテキストが見つかりません。/context create を使用するか、セットアップのお手伝いをお申し付けください。",
|
|
447
|
+
"context.activate.usage": "使用方法: /context activate <name>。利用可能なコンテキストを確認するには `/context list` を実行してください。",
|
|
448
|
+
"context.activate.notFound": "コンテキスト '{name}' が見つかりません。/context list で利用可能なコンテキストを確認するか、/context create {name} <url> <token> で作成してください。",
|
|
449
|
+
"context.show.noActive": "アクティブなコンテキストがありません。`/context create <name>` で作成するか、コンテキストが存在する場合は `/context activate <name>` を実行してください。",
|
|
450
|
+
"context.show.notFound": "コンテキスト '{name}' が見つかりません。/context list で利用可能なコンテキストを確認してください。",
|
|
451
|
+
"context.validate.usage": "コンテキスト名が指定されていません。使用方法: /context validate <name>。アクティブなコンテキストの場合は /context status を使用してください。",
|
|
452
|
+
"context.status.notConfigured": "設定されていません。/context create を使用するか、セットアップのお手伝いをお申し付けください。",
|
|
453
|
+
"context.create.usage": "使用方法: /context create <name> <url> <token> [namespace]",
|
|
454
|
+
"context.create.invalidName": "コンテキスト名は英数字、ハイフン、アンダースコアのみで、最大 64 文字です。",
|
|
455
|
+
"context.create.invalidUrl": "API URL は有効な HTTPS URL である必要があります(例: https://tenant.console.ves.volterra.io)",
|
|
456
|
+
"context.rename.usage": "使用方法: /context rename <old> <new>",
|
|
457
|
+
"context.export.usage": "使用方法: /context export [name] [--include-token]",
|
|
458
|
+
"context.import.usage": "使用方法: /context import <path-or-json> [--overwrite]",
|
|
459
|
+
"context.import.invalidJson": "インポートソースが有効な JSON ではありません: {message}",
|
|
460
|
+
"context.import.fileNotFound": "インポートファイルが見つかりません: {path}",
|
|
461
|
+
"context.delete.usage": "使用方法: /context delete <name> --confirm",
|
|
462
|
+
"context.delete.cannotDeleteActive": "アクティブなコンテキストは削除できません。先に `/context activate <other>` で切り替えてください。",
|
|
463
|
+
"context.namespace.usage": "使用方法: /context namespace <name>\nコンテキストを変更せずにアクティブな namespace を切り替えます。デフォルトは 'default' です。",
|
|
464
|
+
"context.env.unknownAction": "不明な env アクションです: {action}。/context env set|unset|list を使用してください",
|
|
465
|
+
"context.env.noActive": "アクティブなコンテキストがありません。先に /context activate <name> を実行してください。",
|
|
466
|
+
"context.env.set.usage": "KEY=VALUE のペアが見つかりません。使用方法: /context set KEY=VALUE [KEY2=VALUE2 ...]",
|
|
467
|
+
"context.env.unset.usage": "変数名が見つかりません。使用方法: /context unset KEY [KEY2 ...]",
|
|
468
|
+
"mcp.errors.unknownSubcommand": "不明なサブコマンドです: {subcommand}。使い方は /mcp help を入力してください。",
|
|
469
|
+
"mcp.errors.invalidScope": "--scope の値が無効です。project または user を使用してください。",
|
|
470
|
+
"mcp.errors.unknownOption": "不明なオプションです: {option}",
|
|
471
|
+
"mcp.errors.missingUrl": "--url の値が指定されていません。",
|
|
472
|
+
"mcp.errors.invalidTransport": "--transport の値が無効です。http または sse を使用してください。",
|
|
473
|
+
"mcp.errors.missingToken": "--token の値が指定されていません。",
|
|
474
|
+
"mcp.errors.missingLimit": "--limit の値が指定されていません。",
|
|
475
|
+
"mcp.errors.invalidLimit": "--limit の値が無効です。1 から 100 の整数を使用してください。",
|
|
476
|
+
"mcp.errors.serverNotFound": "サーバー \"{name}\" が見つかりません。",
|
|
477
|
+
"mcp.errors.serverNotFoundInScope": "サーバー \"{name}\" が {scope} の設定に見つかりません。",
|
|
478
|
+
"mcp.errors.noManager": "MCP マネージャーが利用できません。",
|
|
479
|
+
"mcp.action.enable": "有効化",
|
|
480
|
+
"mcp.action.disable": "無効化",
|
|
481
|
+
"mcp.add.nameRequired": "クイック追加にはサーバー名が必要です。使用方法: /mcp add <name> ...",
|
|
482
|
+
"mcp.add.urlOrCommand": "--url または -- <command...> のいずれか一方を使用してください。両方は指定できません。",
|
|
483
|
+
"mcp.add.tokenRequiresUrl": "--token には --url(HTTP/SSE トランスポート)が必要です。",
|
|
484
|
+
"mcp.remove.usage": "サーバー名が必要です。使用方法: /mcp remove <name> [--scope project|user]",
|
|
485
|
+
"mcp.remove.failed": "サーバーの削除に失敗しました: {message}",
|
|
486
|
+
"mcp.test.usage": "サーバー名が必要です。使用方法: /mcp test <name>",
|
|
487
|
+
"mcp.test.disabled": "サーバー \"{name}\" は無効です。先に /mcp enable {name} を実行してください。",
|
|
488
|
+
"mcp.test.cancelled": "\"{name}\" の MCP テストがキャンセルされました",
|
|
489
|
+
"mcp.test.failed": "\"{name}\" への接続に失敗しました: {message}",
|
|
490
|
+
"mcp.enable.usage": "サーバー名が必要です。使用方法: /mcp enable <name>",
|
|
491
|
+
"mcp.disable.usage": "サーバー名が必要です。使用方法: /mcp disable <name>",
|
|
492
|
+
"mcp.setEnabled.failed": "サーバーの{action}に失敗しました: {message}",
|
|
493
|
+
"mcp.unauth.usage": "サーバー名が必要です。使用方法: /mcp unauth <name>",
|
|
494
|
+
"mcp.unauth.failed": "認証の消去に失敗しました: {message}",
|
|
495
|
+
"mcp.reauth.usage": "サーバー名が必要です。使用方法: /mcp reauth <name>",
|
|
496
|
+
"mcp.reauth.disabled": "サーバー \"{name}\" は無効です。先に /mcp enable {name} を実行してください。",
|
|
497
|
+
"mcp.reauth.failed": "サーバーの再認証に失敗しました: {message}",
|
|
498
|
+
"mcp.reload.failed": "MCP のリロードに失敗しました: {message}",
|
|
499
|
+
"mcp.reconnect.usage": "サーバー名が必要です。使用方法: /mcp reconnect <name>",
|
|
500
|
+
"mcp.reconnect.failed": "\"{name}\" への再接続に失敗しました。サーバーの状態とログを確認してください。",
|
|
501
|
+
"mcp.reconnect.failedWithError": "\"{name}\" への再接続に失敗しました: {message}",
|
|
502
|
+
"mcp.smithery.searchUsage": "キーワードが必要です。使用方法: /mcp smithery-search <keyword> [--scope project|user] [--limit <1-100>] [--semantic]",
|
|
503
|
+
"mcp.smithery.keyEmpty": "Smithery API キーは空にできません。",
|
|
504
|
+
"mcp.smithery.keySaved": "Smithery API キーを保存しました。",
|
|
505
|
+
"mcp.smithery.validationFailed": "Smithery API キーの検証に失敗しました: {message}",
|
|
506
|
+
"mcp.smithery.loginCancelled": "Smithery ログインがキャンセルされました。",
|
|
507
|
+
"mcp.smithery.keyRemoved": "Smithery API キーを削除しました。",
|
|
508
|
+
"mcp.smithery.noKeyFound": "キャッシュされた Smithery API キーが見つかりません。",
|
|
509
|
+
"mcp.smithery.deployCancelled": "MCP デプロイがキャンセルされました。",
|
|
510
|
+
"mcp.smithery.selectionCancelled": "MCP Smithery の選択がキャンセルされました。",
|
|
511
|
+
"mcp.smithery.searchFailed": "Smithery の検索に失敗しました: {message}"
|
|
512
|
+
}
|