@tulex-cli/tulex-code 0.1.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/README.md +54 -0
- package/dist/.last_build +0 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +98 -0
- package/dist/index.js.map +1 -0
- package/dist/package.json +121 -0
- package/dist/src/acp-integration/acpAgent.d.ts +59 -0
- package/dist/src/acp-integration/acpAgent.js +3646 -0
- package/dist/src/acp-integration/acpAgent.js.map +1 -0
- package/dist/src/acp-integration/acpAgent.test.d.ts +6 -0
- package/dist/src/acp-integration/acpAgent.test.js +3690 -0
- package/dist/src/acp-integration/acpAgent.test.js.map +1 -0
- package/dist/src/acp-integration/acpAgent.worktree.test.d.ts +16 -0
- package/dist/src/acp-integration/acpAgent.worktree.test.js +354 -0
- package/dist/src/acp-integration/acpAgent.worktree.test.js.map +1 -0
- package/dist/src/acp-integration/authMethods.d.ts +9 -0
- package/dist/src/acp-integration/authMethods.js +28 -0
- package/dist/src/acp-integration/authMethods.js.map +1 -0
- package/dist/src/acp-integration/authMethods.test.d.ts +6 -0
- package/dist/src/acp-integration/authMethods.test.js +23 -0
- package/dist/src/acp-integration/authMethods.test.js.map +1 -0
- package/dist/src/acp-integration/authPreflight.test.d.ts +6 -0
- package/dist/src/acp-integration/authPreflight.test.js +54 -0
- package/dist/src/acp-integration/authPreflight.test.js.map +1 -0
- package/dist/src/acp-integration/errorCodes.d.ts +15 -0
- package/dist/src/acp-integration/errorCodes.js +22 -0
- package/dist/src/acp-integration/errorCodes.js.map +1 -0
- package/dist/src/acp-integration/runtimeOutputDirContext.d.ts +2 -0
- package/dist/src/acp-integration/runtimeOutputDirContext.js +5 -0
- package/dist/src/acp-integration/runtimeOutputDirContext.js.map +1 -0
- package/dist/src/acp-integration/runtimeOutputDirContext.test.d.ts +1 -0
- package/dist/src/acp-integration/runtimeOutputDirContext.test.js +29 -0
- package/dist/src/acp-integration/runtimeOutputDirContext.test.js.map +1 -0
- package/dist/src/acp-integration/service/filesystem.d.ts +17 -0
- package/dist/src/acp-integration/service/filesystem.js +73 -0
- package/dist/src/acp-integration/service/filesystem.js.map +1 -0
- package/dist/src/acp-integration/service/filesystem.test.d.ts +6 -0
- package/dist/src/acp-integration/service/filesystem.test.js +85 -0
- package/dist/src/acp-integration/service/filesystem.test.js.map +1 -0
- package/dist/src/acp-integration/session/HistoryReplayer.d.ts +63 -0
- package/dist/src/acp-integration/session/HistoryReplayer.js +222 -0
- package/dist/src/acp-integration/session/HistoryReplayer.js.map +1 -0
- package/dist/src/acp-integration/session/HistoryReplayer.test.d.ts +6 -0
- package/dist/src/acp-integration/session/HistoryReplayer.test.js +405 -0
- package/dist/src/acp-integration/session/HistoryReplayer.test.js.map +1 -0
- package/dist/src/acp-integration/session/Session.d.ts +150 -0
- package/dist/src/acp-integration/session/Session.js +2381 -0
- package/dist/src/acp-integration/session/Session.js.map +1 -0
- package/dist/src/acp-integration/session/Session.test.d.ts +6 -0
- package/dist/src/acp-integration/session/Session.test.js +3845 -0
- package/dist/src/acp-integration/session/Session.test.js.map +1 -0
- package/dist/src/acp-integration/session/Session.worktree.test.d.ts +18 -0
- package/dist/src/acp-integration/session/Session.worktree.test.js +195 -0
- package/dist/src/acp-integration/session/Session.worktree.test.js.map +1 -0
- package/dist/src/acp-integration/session/SubAgentTracker.d.ts +58 -0
- package/dist/src/acp-integration/session/SubAgentTracker.js +208 -0
- package/dist/src/acp-integration/session/SubAgentTracker.js.map +1 -0
- package/dist/src/acp-integration/session/SubAgentTracker.test.d.ts +6 -0
- package/dist/src/acp-integration/session/SubAgentTracker.test.js +612 -0
- package/dist/src/acp-integration/session/SubAgentTracker.test.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/BaseEmitter.d.ts +34 -0
- package/dist/src/acp-integration/session/emitters/BaseEmitter.js +53 -0
- package/dist/src/acp-integration/session/emitters/BaseEmitter.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.d.ts +61 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.js +124 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.test.d.ts +6 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.test.js +202 -0
- package/dist/src/acp-integration/session/emitters/MessageEmitter.test.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.d.ts +39 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.js +83 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.test.d.ts +6 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.test.js +176 -0
- package/dist/src/acp-integration/session/emitters/PlanEmitter.test.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.d.ts +82 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.js +284 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.d.ts +6 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.js +607 -0
- package/dist/src/acp-integration/session/emitters/ToolCallEmitter.test.js.map +1 -0
- package/dist/src/acp-integration/session/emitters/index.d.ts +9 -0
- package/dist/src/acp-integration/session/emitters/index.js +10 -0
- package/dist/src/acp-integration/session/emitters/index.js.map +1 -0
- package/dist/src/acp-integration/session/index.d.ts +24 -0
- package/dist/src/acp-integration/session/index.js +16 -0
- package/dist/src/acp-integration/session/index.js.map +1 -0
- package/dist/src/acp-integration/session/permissionUtils.d.ts +9 -0
- package/dist/src/acp-integration/session/permissionUtils.js +165 -0
- package/dist/src/acp-integration/session/permissionUtils.js.map +1 -0
- package/dist/src/acp-integration/session/permissionUtils.test.d.ts +6 -0
- package/dist/src/acp-integration/session/permissionUtils.test.js +83 -0
- package/dist/src/acp-integration/session/permissionUtils.test.js.map +1 -0
- package/dist/src/acp-integration/session/rewrite/LlmRewriter.d.ts +26 -0
- package/dist/src/acp-integration/session/rewrite/LlmRewriter.js +131 -0
- package/dist/src/acp-integration/session/rewrite/LlmRewriter.js.map +1 -0
- package/dist/src/acp-integration/session/rewrite/LlmRewriter.test.d.ts +6 -0
- package/dist/src/acp-integration/session/rewrite/LlmRewriter.test.js +188 -0
- package/dist/src/acp-integration/session/rewrite/LlmRewriter.test.js.map +1 -0
- package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.d.ts +42 -0
- package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.js +159 -0
- package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.js.map +1 -0
- package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.test.d.ts +6 -0
- package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.test.js +255 -0
- package/dist/src/acp-integration/session/rewrite/MessageRewriteMiddleware.test.js.map +1 -0
- package/dist/src/acp-integration/session/rewrite/README.md +35 -0
- package/dist/src/acp-integration/session/rewrite/TurnBuffer.d.ts +25 -0
- package/dist/src/acp-integration/session/rewrite/TurnBuffer.js +53 -0
- package/dist/src/acp-integration/session/rewrite/TurnBuffer.js.map +1 -0
- package/dist/src/acp-integration/session/rewrite/TurnBuffer.test.d.ts +6 -0
- package/dist/src/acp-integration/session/rewrite/TurnBuffer.test.js +95 -0
- package/dist/src/acp-integration/session/rewrite/TurnBuffer.test.js.map +1 -0
- package/dist/src/acp-integration/session/rewrite/config.d.ts +13 -0
- package/dist/src/acp-integration/session/rewrite/config.js +19 -0
- package/dist/src/acp-integration/session/rewrite/config.js.map +1 -0
- package/dist/src/acp-integration/session/rewrite/config.test.d.ts +6 -0
- package/dist/src/acp-integration/session/rewrite/config.test.js +72 -0
- package/dist/src/acp-integration/session/rewrite/config.test.js.map +1 -0
- package/dist/src/acp-integration/session/rewrite/index.d.ts +8 -0
- package/dist/src/acp-integration/session/rewrite/index.js +8 -0
- package/dist/src/acp-integration/session/rewrite/index.js.map +1 -0
- package/dist/src/acp-integration/session/rewrite/types.d.ts +36 -0
- package/dist/src/acp-integration/session/rewrite/types.js +7 -0
- package/dist/src/acp-integration/session/rewrite/types.js.map +1 -0
- package/dist/src/acp-integration/session/types.d.ts +93 -0
- package/dist/src/acp-integration/session/types.js +7 -0
- package/dist/src/acp-integration/session/types.js.map +1 -0
- package/dist/src/commands/auth.d.ts +9 -0
- package/dist/src/commands/auth.js +55 -0
- package/dist/src/commands/auth.js.map +1 -0
- package/dist/src/commands/auth.test.d.ts +6 -0
- package/dist/src/commands/auth.test.js +84 -0
- package/dist/src/commands/auth.test.js.map +1 -0
- package/dist/src/commands/channel/channel-registry.d.ts +4 -0
- package/dist/src/commands/channel/channel-registry.js +33 -0
- package/dist/src/commands/channel/channel-registry.js.map +1 -0
- package/dist/src/commands/channel/config-utils.d.ts +4 -0
- package/dist/src/commands/channel/config-utils.js +66 -0
- package/dist/src/commands/channel/config-utils.js.map +1 -0
- package/dist/src/commands/channel/config-utils.test.d.ts +1 -0
- package/dist/src/commands/channel/config-utils.test.js +142 -0
- package/dist/src/commands/channel/config-utils.test.js.map +1 -0
- package/dist/src/commands/channel/configure.d.ts +4 -0
- package/dist/src/commands/channel/configure.js +65 -0
- package/dist/src/commands/channel/configure.js.map +1 -0
- package/dist/src/commands/channel/pairing.d.ts +8 -0
- package/dist/src/commands/channel/pairing.js +49 -0
- package/dist/src/commands/channel/pairing.js.map +1 -0
- package/dist/src/commands/channel/pidfile.d.ts +25 -0
- package/dist/src/commands/channel/pidfile.js +104 -0
- package/dist/src/commands/channel/pidfile.js.map +1 -0
- package/dist/src/commands/channel/pidfile.test.d.ts +1 -0
- package/dist/src/commands/channel/pidfile.test.js +143 -0
- package/dist/src/commands/channel/pidfile.test.js.map +1 -0
- package/dist/src/commands/channel/start.d.ts +16 -0
- package/dist/src/commands/channel/start.js +352 -0
- package/dist/src/commands/channel/start.js.map +1 -0
- package/dist/src/commands/channel/start.test.d.ts +1 -0
- package/dist/src/commands/channel/start.test.js +156 -0
- package/dist/src/commands/channel/start.test.js.map +1 -0
- package/dist/src/commands/channel/status.d.ts +2 -0
- package/dist/src/commands/channel/status.js +58 -0
- package/dist/src/commands/channel/status.js.map +1 -0
- package/dist/src/commands/channel/stop.d.ts +2 -0
- package/dist/src/commands/channel/stop.js +34 -0
- package/dist/src/commands/channel/stop.js.map +1 -0
- package/dist/src/commands/channel.d.ts +2 -0
- package/dist/src/commands/channel.js +29 -0
- package/dist/src/commands/channel.js.map +1 -0
- package/dist/src/commands/extensions/consent.d.ts +47 -0
- package/dist/src/commands/extensions/consent.js +182 -0
- package/dist/src/commands/extensions/consent.js.map +1 -0
- package/dist/src/commands/extensions/consent.test.d.ts +6 -0
- package/dist/src/commands/extensions/consent.test.js +277 -0
- package/dist/src/commands/extensions/consent.test.js.map +1 -0
- package/dist/src/commands/extensions/disable.d.ts +13 -0
- package/dist/src/commands/extensions/disable.js +65 -0
- package/dist/src/commands/extensions/disable.js.map +1 -0
- package/dist/src/commands/extensions/disable.test.d.ts +6 -0
- package/dist/src/commands/extensions/disable.test.js +101 -0
- package/dist/src/commands/extensions/disable.test.js.map +1 -0
- package/dist/src/commands/extensions/enable.d.ts +13 -0
- package/dist/src/commands/extensions/enable.js +70 -0
- package/dist/src/commands/extensions/enable.js.map +1 -0
- package/dist/src/commands/extensions/enable.test.d.ts +6 -0
- package/dist/src/commands/extensions/enable.test.js +93 -0
- package/dist/src/commands/extensions/enable.test.js.map +1 -0
- package/dist/src/commands/extensions/examples/agent/agents/diary.md +86 -0
- package/dist/src/commands/extensions/examples/agent/qwen-extension.json +5 -0
- package/dist/src/commands/extensions/examples/commands/commands/fs/grep-code.md +3 -0
- package/dist/src/commands/extensions/examples/commands/qwen-extension.json +5 -0
- package/dist/src/commands/extensions/examples/context/QWEN.md +8 -0
- package/dist/src/commands/extensions/examples/context/qwen-extension.json +5 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.ts +60 -0
- package/dist/src/commands/extensions/examples/mcp-server/package.json +18 -0
- package/dist/src/commands/extensions/examples/mcp-server/qwen-extension.json +12 -0
- package/dist/src/commands/extensions/examples/mcp-server/tsconfig.json +13 -0
- package/dist/src/commands/extensions/examples/skills/qwen-extension.json +5 -0
- package/dist/src/commands/extensions/examples/skills/skills/synonyms/SKILL.md +48 -0
- package/dist/src/commands/extensions/install.d.ts +17 -0
- package/dist/src/commands/extensions/install.js +105 -0
- package/dist/src/commands/extensions/install.js.map +1 -0
- package/dist/src/commands/extensions/install.test.d.ts +6 -0
- package/dist/src/commands/extensions/install.test.js +164 -0
- package/dist/src/commands/extensions/install.test.js.map +1 -0
- package/dist/src/commands/extensions/link.d.ts +12 -0
- package/dist/src/commands/extensions/link.js +48 -0
- package/dist/src/commands/extensions/link.js.map +1 -0
- package/dist/src/commands/extensions/link.test.d.ts +6 -0
- package/dist/src/commands/extensions/link.test.js +74 -0
- package/dist/src/commands/extensions/link.test.js.map +1 -0
- package/dist/src/commands/extensions/list.d.ts +8 -0
- package/dist/src/commands/extensions/list.js +35 -0
- package/dist/src/commands/extensions/list.js.map +1 -0
- package/dist/src/commands/extensions/list.test.d.ts +6 -0
- package/dist/src/commands/extensions/list.test.js +76 -0
- package/dist/src/commands/extensions/list.test.js.map +1 -0
- package/dist/src/commands/extensions/new.d.ts +7 -0
- package/dist/src/commands/extensions/new.js +95 -0
- package/dist/src/commands/extensions/new.js.map +1 -0
- package/dist/src/commands/extensions/new.test.d.ts +6 -0
- package/dist/src/commands/extensions/new.test.js +59 -0
- package/dist/src/commands/extensions/new.test.js.map +1 -0
- package/dist/src/commands/extensions/settings.d.ts +7 -0
- package/dist/src/commands/extensions/settings.js +115 -0
- package/dist/src/commands/extensions/settings.js.map +1 -0
- package/dist/src/commands/extensions/settings.test.d.ts +6 -0
- package/dist/src/commands/extensions/settings.test.js +251 -0
- package/dist/src/commands/extensions/settings.test.js.map +1 -0
- package/dist/src/commands/extensions/uninstall.d.ts +12 -0
- package/dist/src/commands/extensions/uninstall.js +50 -0
- package/dist/src/commands/extensions/uninstall.js.map +1 -0
- package/dist/src/commands/extensions/uninstall.test.d.ts +6 -0
- package/dist/src/commands/extensions/uninstall.test.js +18 -0
- package/dist/src/commands/extensions/uninstall.test.js.map +1 -0
- package/dist/src/commands/extensions/update.d.ts +13 -0
- package/dist/src/commands/extensions/update.js +102 -0
- package/dist/src/commands/extensions/update.js.map +1 -0
- package/dist/src/commands/extensions/update.test.d.ts +6 -0
- package/dist/src/commands/extensions/update.test.js +185 -0
- package/dist/src/commands/extensions/update.test.js.map +1 -0
- package/dist/src/commands/extensions/utils.d.ts +8 -0
- package/dist/src/commands/extensions/utils.js +79 -0
- package/dist/src/commands/extensions/utils.js.map +1 -0
- package/dist/src/commands/extensions/utils.test.d.ts +6 -0
- package/dist/src/commands/extensions/utils.test.js +147 -0
- package/dist/src/commands/extensions/utils.test.js.map +1 -0
- package/dist/src/commands/extensions.d.ts +7 -0
- package/dist/src/commands/extensions.js +35 -0
- package/dist/src/commands/extensions.js.map +1 -0
- package/dist/src/commands/extensions.test.d.ts +6 -0
- package/dist/src/commands/extensions.test.js +72 -0
- package/dist/src/commands/extensions.test.js.map +1 -0
- package/dist/src/commands/hooks.d.ts +7 -0
- package/dist/src/commands/hooks.js +20 -0
- package/dist/src/commands/hooks.js.map +1 -0
- package/dist/src/commands/mcp/add.d.ts +7 -0
- package/dist/src/commands/mcp/add.js +247 -0
- package/dist/src/commands/mcp/add.js.map +1 -0
- package/dist/src/commands/mcp/list.d.ts +8 -0
- package/dist/src/commands/mcp/list.js +118 -0
- package/dist/src/commands/mcp/list.js.map +1 -0
- package/dist/src/commands/mcp/reconnect.d.ts +7 -0
- package/dist/src/commands/mcp/reconnect.js +154 -0
- package/dist/src/commands/mcp/reconnect.js.map +1 -0
- package/dist/src/commands/mcp/remove.d.ts +7 -0
- package/dist/src/commands/mcp/remove.js +54 -0
- package/dist/src/commands/mcp/remove.js.map +1 -0
- package/dist/src/commands/mcp.d.ts +7 -0
- package/dist/src/commands/mcp.js +25 -0
- package/dist/src/commands/mcp.js.map +1 -0
- package/dist/src/commands/review/cleanup.d.ts +7 -0
- package/dist/src/commands/review/cleanup.js +81 -0
- package/dist/src/commands/review/cleanup.js.map +1 -0
- package/dist/src/commands/review/deterministic.d.ts +7 -0
- package/dist/src/commands/review/deterministic.js +474 -0
- package/dist/src/commands/review/deterministic.js.map +1 -0
- package/dist/src/commands/review/fetch-pr.d.ts +7 -0
- package/dist/src/commands/review/fetch-pr.js +124 -0
- package/dist/src/commands/review/fetch-pr.js.map +1 -0
- package/dist/src/commands/review/lib/gh.d.ts +34 -0
- package/dist/src/commands/review/lib/gh.js +64 -0
- package/dist/src/commands/review/lib/gh.js.map +1 -0
- package/dist/src/commands/review/lib/git.d.ts +18 -0
- package/dist/src/commands/review/lib/git.js +41 -0
- package/dist/src/commands/review/lib/git.js.map +1 -0
- package/dist/src/commands/review/lib/paths.d.ts +23 -0
- package/dist/src/commands/review/lib/paths.js +37 -0
- package/dist/src/commands/review/lib/paths.js.map +1 -0
- package/dist/src/commands/review/load-rules.d.ts +7 -0
- package/dist/src/commands/review/load-rules.js +112 -0
- package/dist/src/commands/review/load-rules.js.map +1 -0
- package/dist/src/commands/review/pr-context.d.ts +7 -0
- package/dist/src/commands/review/pr-context.js +214 -0
- package/dist/src/commands/review/pr-context.js.map +1 -0
- package/dist/src/commands/review/presubmit.d.ts +7 -0
- package/dist/src/commands/review/presubmit.js +190 -0
- package/dist/src/commands/review/presubmit.js.map +1 -0
- package/dist/src/commands/review.d.ts +7 -0
- package/dist/src/commands/review.js +28 -0
- package/dist/src/commands/review.js.map +1 -0
- package/dist/src/commands/serve.d.ts +21 -0
- package/dist/src/commands/serve.js +214 -0
- package/dist/src/commands/serve.js.map +1 -0
- package/dist/src/commands/sp.d.ts +7 -0
- package/dist/src/commands/sp.js +62 -0
- package/dist/src/commands/sp.js.map +1 -0
- package/dist/src/config/auth.d.ts +10 -0
- package/dist/src/config/auth.js +183 -0
- package/dist/src/config/auth.js.map +1 -0
- package/dist/src/config/auth.test.d.ts +6 -0
- package/dist/src/config/auth.test.js +292 -0
- package/dist/src/config/auth.test.js.map +1 -0
- package/dist/src/config/config.d.ts +144 -0
- package/dist/src/config/config.js +1618 -0
- package/dist/src/config/config.js.map +1 -0
- package/dist/src/config/jsonSchemaArg.test.d.ts +6 -0
- package/dist/src/config/jsonSchemaArg.test.js +305 -0
- package/dist/src/config/jsonSchemaArg.test.js.map +1 -0
- package/dist/src/config/keyBindings.d.ts +89 -0
- package/dist/src/config/keyBindings.js +188 -0
- package/dist/src/config/keyBindings.js.map +1 -0
- package/dist/src/config/keyBindings.test.d.ts +6 -0
- package/dist/src/config/keyBindings.test.js +51 -0
- package/dist/src/config/keyBindings.test.js.map +1 -0
- package/dist/src/config/loadedSettingsAdapter.d.ts +15 -0
- package/dist/src/config/loadedSettingsAdapter.js +80 -0
- package/dist/src/config/loadedSettingsAdapter.js.map +1 -0
- package/dist/src/config/loadedSettingsAdapter.test.d.ts +6 -0
- package/dist/src/config/loadedSettingsAdapter.test.js +127 -0
- package/dist/src/config/loadedSettingsAdapter.test.js.map +1 -0
- package/dist/src/config/migration/index.d.ts +59 -0
- package/dist/src/config/migration/index.js +94 -0
- package/dist/src/config/migration/index.js.map +1 -0
- package/dist/src/config/migration/index.test.d.ts +6 -0
- package/dist/src/config/migration/index.test.js +295 -0
- package/dist/src/config/migration/index.test.js.map +1 -0
- package/dist/src/config/migration/scheduler.d.ts +51 -0
- package/dist/src/config/migration/scheduler.js +95 -0
- package/dist/src/config/migration/scheduler.js.map +1 -0
- package/dist/src/config/migration/scheduler.test.d.ts +6 -0
- package/dist/src/config/migration/scheduler.test.js +129 -0
- package/dist/src/config/migration/scheduler.test.js.map +1 -0
- package/dist/src/config/migration/types.d.ts +53 -0
- package/dist/src/config/migration/types.js +7 -0
- package/dist/src/config/migration/types.js.map +1 -0
- package/dist/src/config/migration/versions/v1-to-v2-shared.d.ts +27 -0
- package/dist/src/config/migration/versions/v1-to-v2-shared.js +174 -0
- package/dist/src/config/migration/versions/v1-to-v2-shared.js.map +1 -0
- package/dist/src/config/migration/versions/v1-to-v2.d.ts +81 -0
- package/dist/src/config/migration/versions/v1-to-v2.js +222 -0
- package/dist/src/config/migration/versions/v1-to-v2.js.map +1 -0
- package/dist/src/config/migration/versions/v1-to-v2.test.d.ts +6 -0
- package/dist/src/config/migration/versions/v1-to-v2.test.js +189 -0
- package/dist/src/config/migration/versions/v1-to-v2.test.js.map +1 -0
- package/dist/src/config/migration/versions/v2-to-v3.d.ts +61 -0
- package/dist/src/config/migration/versions/v2-to-v3.js +185 -0
- package/dist/src/config/migration/versions/v2-to-v3.js.map +1 -0
- package/dist/src/config/migration/versions/v2-to-v3.test.d.ts +6 -0
- package/dist/src/config/migration/versions/v2-to-v3.test.js +337 -0
- package/dist/src/config/migration/versions/v2-to-v3.test.js.map +1 -0
- package/dist/src/config/migration/versions/v3-to-v4.d.ts +34 -0
- package/dist/src/config/migration/versions/v3-to-v4.js +126 -0
- package/dist/src/config/migration/versions/v3-to-v4.js.map +1 -0
- package/dist/src/config/migration/versions/v3-to-v4.test.d.ts +6 -0
- package/dist/src/config/migration/versions/v3-to-v4.test.js +164 -0
- package/dist/src/config/migration/versions/v3-to-v4.test.js.map +1 -0
- package/dist/src/config/modelProvidersScope.d.ts +20 -0
- package/dist/src/config/modelProvidersScope.js +39 -0
- package/dist/src/config/modelProvidersScope.js.map +1 -0
- package/dist/src/config/modelProvidersScope.test.d.ts +6 -0
- package/dist/src/config/modelProvidersScope.test.js +66 -0
- package/dist/src/config/modelProvidersScope.test.js.map +1 -0
- package/dist/src/config/path-freshness.test.d.ts +6 -0
- package/dist/src/config/path-freshness.test.js +52 -0
- package/dist/src/config/path-freshness.test.js.map +1 -0
- package/dist/src/config/sandboxConfig.d.ts +13 -0
- package/dist/src/config/sandboxConfig.js +74 -0
- package/dist/src/config/sandboxConfig.js.map +1 -0
- package/dist/src/config/settings.d.ts +119 -0
- package/dist/src/config/settings.js +1015 -0
- package/dist/src/config/settings.js.map +1 -0
- package/dist/src/config/settingsSchema.d.ts +2207 -0
- package/dist/src/config/settingsSchema.js +2246 -0
- package/dist/src/config/settingsSchema.js.map +1 -0
- package/dist/src/config/settingsSchema.test.d.ts +6 -0
- package/dist/src/config/settingsSchema.test.js +232 -0
- package/dist/src/config/settingsSchema.test.js.map +1 -0
- package/dist/src/config/trustedFolders.d.ts +54 -0
- package/dist/src/config/trustedFolders.js +176 -0
- package/dist/src/config/trustedFolders.js.map +1 -0
- package/dist/src/config/trustedFolders.test.d.ts +6 -0
- package/dist/src/config/trustedFolders.test.js +354 -0
- package/dist/src/config/trustedFolders.test.js.map +1 -0
- package/dist/src/core/auth.d.ts +13 -0
- package/dist/src/core/auth.js +34 -0
- package/dist/src/core/auth.js.map +1 -0
- package/dist/src/core/auth.test.d.ts +6 -0
- package/dist/src/core/auth.test.js +47 -0
- package/dist/src/core/auth.test.js.map +1 -0
- package/dist/src/core/initializer.d.ts +21 -0
- package/dist/src/core/initializer.js +42 -0
- package/dist/src/core/initializer.js.map +1 -0
- package/dist/src/core/initializer.test.d.ts +6 -0
- package/dist/src/core/initializer.test.js +123 -0
- package/dist/src/core/initializer.test.js.map +1 -0
- package/dist/src/core/theme.d.ts +12 -0
- package/dist/src/core/theme.js +25 -0
- package/dist/src/core/theme.js.map +1 -0
- package/dist/src/core/theme.test.d.ts +6 -0
- package/dist/src/core/theme.test.js +57 -0
- package/dist/src/core/theme.test.js.map +1 -0
- package/dist/src/dualOutput/DualOutputBridge.d.ts +84 -0
- package/dist/src/dualOutput/DualOutputBridge.js +293 -0
- package/dist/src/dualOutput/DualOutputBridge.js.map +1 -0
- package/dist/src/dualOutput/DualOutputBridge.test.d.ts +6 -0
- package/dist/src/dualOutput/DualOutputBridge.test.js +157 -0
- package/dist/src/dualOutput/DualOutputBridge.test.js.map +1 -0
- package/dist/src/dualOutput/DualOutputContext.d.ts +19 -0
- package/dist/src/dualOutput/DualOutputContext.js +22 -0
- package/dist/src/dualOutput/DualOutputContext.js.map +1 -0
- package/dist/src/dualOutput/index.d.ts +7 -0
- package/dist/src/dualOutput/index.js +8 -0
- package/dist/src/dualOutput/index.js.map +1 -0
- package/dist/src/export/index.d.ts +6 -0
- package/dist/src/export/index.js +7 -0
- package/dist/src/export/index.js.map +1 -0
- package/dist/src/gemini.d.ts +13 -0
- package/dist/src/gemini.js +908 -0
- package/dist/src/gemini.js.map +1 -0
- package/dist/src/gemini.test.d.ts +6 -0
- package/dist/src/gemini.test.js +975 -0
- package/dist/src/gemini.test.js.map +1 -0
- package/dist/src/generated/git-commit.d.ts +7 -0
- package/dist/src/generated/git-commit.js +10 -0
- package/dist/src/generated/git-commit.js.map +1 -0
- package/dist/src/i18n/index.d.ts +27 -0
- package/dist/src/i18n/index.js +213 -0
- package/dist/src/i18n/index.js.map +1 -0
- package/dist/src/i18n/index.test.d.ts +6 -0
- package/dist/src/i18n/index.test.js +103 -0
- package/dist/src/i18n/index.test.js.map +1 -0
- package/dist/src/i18n/languages.d.ts +43 -0
- package/dist/src/i18n/languages.js +138 -0
- package/dist/src/i18n/languages.js.map +1 -0
- package/dist/src/i18n/locales/ca.js +3951 -0
- package/dist/src/i18n/locales/de.js +2018 -0
- package/dist/src/i18n/locales/en.js +2161 -0
- package/dist/src/i18n/locales/fr.js +2013 -0
- package/dist/src/i18n/locales/ja.js +1780 -0
- package/dist/src/i18n/locales/pt.js +2005 -0
- package/dist/src/i18n/locales/ru.js +1993 -0
- package/dist/src/i18n/locales/zh-TW.js +1729 -0
- package/dist/src/i18n/locales/zh.js +1929 -0
- package/dist/src/i18n/mustTranslateKeys.d.ts +12 -0
- package/dist/src/i18n/mustTranslateKeys.js +111 -0
- package/dist/src/i18n/mustTranslateKeys.js.map +1 -0
- package/dist/src/i18n/mustTranslateKeys.test.d.ts +6 -0
- package/dist/src/i18n/mustTranslateKeys.test.js +103 -0
- package/dist/src/i18n/mustTranslateKeys.test.js.map +1 -0
- package/dist/src/i18n/translationDict.d.ts +9 -0
- package/dist/src/i18n/translationDict.js +17 -0
- package/dist/src/i18n/translationDict.js.map +1 -0
- package/dist/src/nonInteractive/control/ControlContext.d.ts +71 -0
- package/dist/src/nonInteractive/control/ControlContext.js +36 -0
- package/dist/src/nonInteractive/control/ControlContext.js.map +1 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.d.ts +116 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.js +290 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.js.map +1 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.test.d.ts +6 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.test.js +614 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.test.js.map +1 -0
- package/dist/src/nonInteractive/control/ControlService.d.ts +79 -0
- package/dist/src/nonInteractive/control/ControlService.js +139 -0
- package/dist/src/nonInteractive/control/ControlService.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/baseController.d.ts +53 -0
- package/dist/src/nonInteractive/control/controllers/baseController.js +136 -0
- package/dist/src/nonInteractive/control/controllers/baseController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/hookController.d.ts +25 -0
- package/dist/src/nonInteractive/control/controllers/hookController.js +40 -0
- package/dist/src/nonInteractive/control/controllers/hookController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.d.ts +57 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.js +361 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.test.d.ts +6 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.test.js +140 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.test.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/sdkMcpController.d.ts +54 -0
- package/dist/src/nonInteractive/control/controllers/sdkMcpController.js +80 -0
- package/dist/src/nonInteractive/control/controllers/sdkMcpController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/systemController.d.ts +67 -0
- package/dist/src/nonInteractive/control/controllers/systemController.js +326 -0
- package/dist/src/nonInteractive/control/controllers/systemController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/systemController.test.d.ts +6 -0
- package/dist/src/nonInteractive/control/controllers/systemController.test.js +121 -0
- package/dist/src/nonInteractive/control/controllers/systemController.test.js.map +1 -0
- package/dist/src/nonInteractive/control/types/serviceAPIs.d.ts +105 -0
- package/dist/src/nonInteractive/control/types/serviceAPIs.js +7 -0
- package/dist/src/nonInteractive/control/types/serviceAPIs.js.map +1 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.d.ts +505 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js +1041 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js.map +1 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js +1304 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js.map +1 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.d.ts +29 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.js +64 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.js.map +1 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.test.js +684 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.test.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.d.ts +16 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.js +54 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.test.js +178 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.test.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.d.ts +84 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.dualOutput.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.dualOutput.test.js +118 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.dualOutput.test.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.js +227 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js +1046 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js.map +1 -0
- package/dist/src/nonInteractive/io/index.d.ts +6 -0
- package/dist/src/nonInteractive/io/index.js +7 -0
- package/dist/src/nonInteractive/io/index.js.map +1 -0
- package/dist/src/nonInteractive/session.d.ts +8 -0
- package/dist/src/nonInteractive/session.js +664 -0
- package/dist/src/nonInteractive/session.js.map +1 -0
- package/dist/src/nonInteractive/session.test.d.ts +6 -0
- package/dist/src/nonInteractive/session.test.js +680 -0
- package/dist/src/nonInteractive/session.test.js.map +1 -0
- package/dist/src/nonInteractive/types.d.ts +415 -0
- package/dist/src/nonInteractive/types.js +77 -0
- package/dist/src/nonInteractive/types.js.map +1 -0
- package/dist/src/nonInteractiveCli.d.ts +33 -0
- package/dist/src/nonInteractiveCli.js +1058 -0
- package/dist/src/nonInteractiveCli.js.map +1 -0
- package/dist/src/nonInteractiveCliCommands.d.ts +59 -0
- package/dist/src/nonInteractiveCliCommands.js +326 -0
- package/dist/src/nonInteractiveCliCommands.js.map +1 -0
- package/dist/src/nonInteractiveCliCommands.test.d.ts +6 -0
- package/dist/src/nonInteractiveCliCommands.test.js +484 -0
- package/dist/src/nonInteractiveCliCommands.test.js.map +1 -0
- package/dist/src/patches/is-in-ci.d.ts +7 -0
- package/dist/src/patches/is-in-ci.js +15 -0
- package/dist/src/patches/is-in-ci.js.map +1 -0
- package/dist/src/remoteInput/RemoteInputContext.d.ts +8 -0
- package/dist/src/remoteInput/RemoteInputContext.js +9 -0
- package/dist/src/remoteInput/RemoteInputContext.js.map +1 -0
- package/dist/src/remoteInput/RemoteInputWatcher.d.ts +83 -0
- package/dist/src/remoteInput/RemoteInputWatcher.js +201 -0
- package/dist/src/remoteInput/RemoteInputWatcher.js.map +1 -0
- package/dist/src/remoteInput/RemoteInputWatcher.test.d.ts +6 -0
- package/dist/src/remoteInput/RemoteInputWatcher.test.js +100 -0
- package/dist/src/remoteInput/RemoteInputWatcher.test.js.map +1 -0
- package/dist/src/remoteInput/index.d.ts +7 -0
- package/dist/src/remoteInput/index.js +8 -0
- package/dist/src/remoteInput/index.js.map +1 -0
- package/dist/src/serve/auth/deviceFlow.d.ts +595 -0
- package/dist/src/serve/auth/deviceFlow.js +1243 -0
- package/dist/src/serve/auth/deviceFlow.js.map +1 -0
- package/dist/src/serve/auth/deviceFlow.test.d.ts +6 -0
- package/dist/src/serve/auth/deviceFlow.test.js +1314 -0
- package/dist/src/serve/auth/deviceFlow.test.js.map +1 -0
- package/dist/src/serve/auth/qwenDeviceFlowProvider.d.ts +30 -0
- package/dist/src/serve/auth/qwenDeviceFlowProvider.js +331 -0
- package/dist/src/serve/auth/qwenDeviceFlowProvider.js.map +1 -0
- package/dist/src/serve/auth/qwenDeviceFlowProvider.test.d.ts +6 -0
- package/dist/src/serve/auth/qwenDeviceFlowProvider.test.js +301 -0
- package/dist/src/serve/auth/qwenDeviceFlowProvider.test.js.map +1 -0
- package/dist/src/serve/auth.d.ts +101 -0
- package/dist/src/serve/auth.js +216 -0
- package/dist/src/serve/auth.js.map +1 -0
- package/dist/src/serve/capabilities.d.ts +196 -0
- package/dist/src/serve/capabilities.js +227 -0
- package/dist/src/serve/capabilities.js.map +1 -0
- package/dist/src/serve/daemonStatusProvider.d.ts +14 -0
- package/dist/src/serve/daemonStatusProvider.js +252 -0
- package/dist/src/serve/daemonStatusProvider.js.map +1 -0
- package/dist/src/serve/debugMode.d.ts +27 -0
- package/dist/src/serve/debugMode.js +33 -0
- package/dist/src/serve/debugMode.js.map +1 -0
- package/dist/src/serve/demo.d.ts +11 -0
- package/dist/src/serve/demo.js +640 -0
- package/dist/src/serve/demo.js.map +1 -0
- package/dist/src/serve/envSnapshot.d.ts +28 -0
- package/dist/src/serve/envSnapshot.js +199 -0
- package/dist/src/serve/envSnapshot.js.map +1 -0
- package/dist/src/serve/envSnapshot.test.d.ts +6 -0
- package/dist/src/serve/envSnapshot.test.js +181 -0
- package/dist/src/serve/envSnapshot.test.js.map +1 -0
- package/dist/src/serve/eventBus.d.ts +6 -0
- package/dist/src/serve/eventBus.js +15 -0
- package/dist/src/serve/eventBus.js.map +1 -0
- package/dist/src/serve/fs/audit.d.ts +144 -0
- package/dist/src/serve/fs/audit.js +193 -0
- package/dist/src/serve/fs/audit.js.map +1 -0
- package/dist/src/serve/fs/audit.test.d.ts +6 -0
- package/dist/src/serve/fs/audit.test.js +246 -0
- package/dist/src/serve/fs/audit.test.js.map +1 -0
- package/dist/src/serve/fs/contract.test.d.ts +6 -0
- package/dist/src/serve/fs/contract.test.js +211 -0
- package/dist/src/serve/fs/contract.test.js.map +1 -0
- package/dist/src/serve/fs/errors.d.ts +87 -0
- package/dist/src/serve/fs/errors.js +128 -0
- package/dist/src/serve/fs/errors.js.map +1 -0
- package/dist/src/serve/fs/errors.test.d.ts +6 -0
- package/dist/src/serve/fs/errors.test.js +152 -0
- package/dist/src/serve/fs/errors.test.js.map +1 -0
- package/dist/src/serve/fs/index.d.ts +10 -0
- package/dist/src/serve/fs/index.js +11 -0
- package/dist/src/serve/fs/index.js.map +1 -0
- package/dist/src/serve/fs/paths.d.ts +103 -0
- package/dist/src/serve/fs/paths.js +433 -0
- package/dist/src/serve/fs/paths.js.map +1 -0
- package/dist/src/serve/fs/paths.test.d.ts +6 -0
- package/dist/src/serve/fs/paths.test.js +309 -0
- package/dist/src/serve/fs/paths.test.js.map +1 -0
- package/dist/src/serve/fs/policy.d.ts +142 -0
- package/dist/src/serve/fs/policy.js +189 -0
- package/dist/src/serve/fs/policy.js.map +1 -0
- package/dist/src/serve/fs/policy.test.d.ts +6 -0
- package/dist/src/serve/fs/policy.test.js +193 -0
- package/dist/src/serve/fs/policy.test.js.map +1 -0
- package/dist/src/serve/fs/workspaceFileSystem.d.ts +157 -0
- package/dist/src/serve/fs/workspaceFileSystem.js +1377 -0
- package/dist/src/serve/fs/workspaceFileSystem.js.map +1 -0
- package/dist/src/serve/fs/workspaceFileSystem.test.d.ts +6 -0
- package/dist/src/serve/fs/workspaceFileSystem.test.js +880 -0
- package/dist/src/serve/fs/workspaceFileSystem.test.js.map +1 -0
- package/dist/src/serve/httpAcpBridge.d.ts +80 -0
- package/dist/src/serve/httpAcpBridge.js +3559 -0
- package/dist/src/serve/httpAcpBridge.js.map +1 -0
- package/dist/src/serve/httpAcpBridge.test.d.ts +6 -0
- package/dist/src/serve/httpAcpBridge.test.js +4987 -0
- package/dist/src/serve/httpAcpBridge.test.js.map +1 -0
- package/dist/src/serve/inMemoryChannel.d.ts +6 -0
- package/dist/src/serve/inMemoryChannel.js +14 -0
- package/dist/src/serve/inMemoryChannel.js.map +1 -0
- package/dist/src/serve/index.d.ts +15 -0
- package/dist/src/serve/index.js +16 -0
- package/dist/src/serve/index.js.map +1 -0
- package/dist/src/serve/loopbackBinds.d.ts +18 -0
- package/dist/src/serve/loopbackBinds.js +33 -0
- package/dist/src/serve/loopbackBinds.js.map +1 -0
- package/dist/src/serve/routes/workspaceFileRead.d.ts +90 -0
- package/dist/src/serve/routes/workspaceFileRead.js +458 -0
- package/dist/src/serve/routes/workspaceFileRead.js.map +1 -0
- package/dist/src/serve/routes/workspaceFileRead.test.d.ts +6 -0
- package/dist/src/serve/routes/workspaceFileRead.test.js +453 -0
- package/dist/src/serve/routes/workspaceFileRead.test.js.map +1 -0
- package/dist/src/serve/routes/workspaceFileWrite.d.ts +17 -0
- package/dist/src/serve/routes/workspaceFileWrite.js +224 -0
- package/dist/src/serve/routes/workspaceFileWrite.js.map +1 -0
- package/dist/src/serve/routes/workspaceFileWrite.test.d.ts +6 -0
- package/dist/src/serve/routes/workspaceFileWrite.test.js +223 -0
- package/dist/src/serve/routes/workspaceFileWrite.test.js.map +1 -0
- package/dist/src/serve/runQwenServe.d.ts +67 -0
- package/dist/src/serve/runQwenServe.js +616 -0
- package/dist/src/serve/runQwenServe.js.map +1 -0
- package/dist/src/serve/server.d.ts +125 -0
- package/dist/src/serve/server.js +2297 -0
- package/dist/src/serve/server.js.map +1 -0
- package/dist/src/serve/status.d.ts +6 -0
- package/dist/src/serve/status.js +13 -0
- package/dist/src/serve/status.js.map +1 -0
- package/dist/src/serve/types.d.ts +175 -0
- package/dist/src/serve/types.js +10 -0
- package/dist/src/serve/types.js.map +1 -0
- package/dist/src/serve/workspaceAgents.d.ts +47 -0
- package/dist/src/serve/workspaceAgents.js +1171 -0
- package/dist/src/serve/workspaceAgents.js.map +1 -0
- package/dist/src/serve/workspaceAgents.test.d.ts +6 -0
- package/dist/src/serve/workspaceAgents.test.js +823 -0
- package/dist/src/serve/workspaceAgents.test.js.map +1 -0
- package/dist/src/serve/workspaceMemory.d.ts +60 -0
- package/dist/src/serve/workspaceMemory.js +323 -0
- package/dist/src/serve/workspaceMemory.js.map +1 -0
- package/dist/src/serve/workspaceMemory.test.d.ts +6 -0
- package/dist/src/serve/workspaceMemory.test.js +418 -0
- package/dist/src/serve/workspaceMemory.test.js.map +1 -0
- package/dist/src/services/BuiltinCommandLoader.d.ts +24 -0
- package/dist/src/services/BuiltinCommandLoader.js +159 -0
- package/dist/src/services/BuiltinCommandLoader.js.map +1 -0
- package/dist/src/services/BuiltinCommandLoader.test.d.ts +6 -0
- package/dist/src/services/BuiltinCommandLoader.test.js +234 -0
- package/dist/src/services/BuiltinCommandLoader.test.js.map +1 -0
- package/dist/src/services/BundledSkillLoader.d.ts +17 -0
- package/dist/src/services/BundledSkillLoader.js +97 -0
- package/dist/src/services/BundledSkillLoader.js.map +1 -0
- package/dist/src/services/BundledSkillLoader.test.d.ts +6 -0
- package/dist/src/services/BundledSkillLoader.test.js +301 -0
- package/dist/src/services/BundledSkillLoader.test.js.map +1 -0
- package/dist/src/services/CommandService.d.ts +69 -0
- package/dist/src/services/CommandService.js +128 -0
- package/dist/src/services/CommandService.js.map +1 -0
- package/dist/src/services/CommandService.test.d.ts +6 -0
- package/dist/src/services/CommandService.test.js +263 -0
- package/dist/src/services/CommandService.test.js.map +1 -0
- package/dist/src/services/FileCommandLoader-extension.test.d.ts +6 -0
- package/dist/src/services/FileCommandLoader-extension.test.js +279 -0
- package/dist/src/services/FileCommandLoader-extension.test.js.map +1 -0
- package/dist/src/services/FileCommandLoader-markdown.test.d.ts +6 -0
- package/dist/src/services/FileCommandLoader-markdown.test.js +111 -0
- package/dist/src/services/FileCommandLoader-markdown.test.js.map +1 -0
- package/dist/src/services/FileCommandLoader.d.ts +64 -0
- package/dist/src/services/FileCommandLoader.js +259 -0
- package/dist/src/services/FileCommandLoader.js.map +1 -0
- package/dist/src/services/McpPromptLoader.d.ts +35 -0
- package/dist/src/services/McpPromptLoader.js +261 -0
- package/dist/src/services/McpPromptLoader.js.map +1 -0
- package/dist/src/services/McpPromptLoader.test.d.ts +6 -0
- package/dist/src/services/McpPromptLoader.test.js +341 -0
- package/dist/src/services/McpPromptLoader.test.js.map +1 -0
- package/dist/src/services/SkillCommandLoader.d.ts +23 -0
- package/dist/src/services/SkillCommandLoader.js +110 -0
- package/dist/src/services/SkillCommandLoader.js.map +1 -0
- package/dist/src/services/SkillCommandLoader.test.d.ts +6 -0
- package/dist/src/services/SkillCommandLoader.test.js +307 -0
- package/dist/src/services/SkillCommandLoader.test.js.map +1 -0
- package/dist/src/services/command-factory.d.ts +25 -0
- package/dist/src/services/command-factory.js +122 -0
- package/dist/src/services/command-factory.js.map +1 -0
- package/dist/src/services/command-factory.test.d.ts +6 -0
- package/dist/src/services/command-factory.test.js +31 -0
- package/dist/src/services/command-factory.test.js.map +1 -0
- package/dist/src/services/command-migration-tool.d.ts +39 -0
- package/dist/src/services/command-migration-tool.js +135 -0
- package/dist/src/services/command-migration-tool.js.map +1 -0
- package/dist/src/services/command-migration-tool.test.d.ts +6 -0
- package/dist/src/services/command-migration-tool.test.js +175 -0
- package/dist/src/services/command-migration-tool.test.js.map +1 -0
- package/dist/src/services/commandMetadata.d.ts +21 -0
- package/dist/src/services/commandMetadata.js +106 -0
- package/dist/src/services/commandMetadata.js.map +1 -0
- package/dist/src/services/commandMetadata.test.d.ts +6 -0
- package/dist/src/services/commandMetadata.test.js +216 -0
- package/dist/src/services/commandMetadata.test.js.map +1 -0
- package/dist/src/services/commandUtils.d.ts +36 -0
- package/dist/src/services/commandUtils.js +57 -0
- package/dist/src/services/commandUtils.js.map +1 -0
- package/dist/src/services/commandUtils.test.d.ts +6 -0
- package/dist/src/services/commandUtils.test.js +159 -0
- package/dist/src/services/commandUtils.test.js.map +1 -0
- package/dist/src/services/insight/generators/DataProcessor.d.ts +23 -0
- package/dist/src/services/insight/generators/DataProcessor.js +1001 -0
- package/dist/src/services/insight/generators/DataProcessor.js.map +1 -0
- package/dist/src/services/insight/generators/DataProcessor.test.d.ts +6 -0
- package/dist/src/services/insight/generators/DataProcessor.test.js +1210 -0
- package/dist/src/services/insight/generators/DataProcessor.test.js.map +1 -0
- package/dist/src/services/insight/generators/StaticInsightGenerator.d.ts +16 -0
- package/dist/src/services/insight/generators/StaticInsightGenerator.js +63 -0
- package/dist/src/services/insight/generators/StaticInsightGenerator.js.map +1 -0
- package/dist/src/services/insight/generators/StaticInsightGenerator.test.d.ts +6 -0
- package/dist/src/services/insight/generators/StaticInsightGenerator.test.js +60 -0
- package/dist/src/services/insight/generators/StaticInsightGenerator.test.js.map +1 -0
- package/dist/src/services/insight/generators/TemplateRenderer.d.ts +9 -0
- package/dist/src/services/insight/generators/TemplateRenderer.js +49 -0
- package/dist/src/services/insight/generators/TemplateRenderer.js.map +1 -0
- package/dist/src/services/insight/types/QualitativeInsightTypes.d.ts +74 -0
- package/dist/src/services/insight/types/QualitativeInsightTypes.js +2 -0
- package/dist/src/services/insight/types/QualitativeInsightTypes.js.map +1 -0
- package/dist/src/services/insight/types/StaticInsightTypes.d.ts +59 -0
- package/dist/src/services/insight/types/StaticInsightTypes.js +7 -0
- package/dist/src/services/insight/types/StaticInsightTypes.js.map +1 -0
- package/dist/src/services/markdown-command-parser.d.ts +52 -0
- package/dist/src/services/markdown-command-parser.js +60 -0
- package/dist/src/services/markdown-command-parser.js.map +1 -0
- package/dist/src/services/markdown-command-parser.test.d.ts +6 -0
- package/dist/src/services/markdown-command-parser.test.js +146 -0
- package/dist/src/services/markdown-command-parser.test.js.map +1 -0
- package/dist/src/services/notificationService.d.ts +19 -0
- package/dist/src/services/notificationService.js +64 -0
- package/dist/src/services/notificationService.js.map +1 -0
- package/dist/src/services/notificationService.test.d.ts +6 -0
- package/dist/src/services/notificationService.test.js +114 -0
- package/dist/src/services/notificationService.test.js.map +1 -0
- package/dist/src/services/prompt-processors/argumentProcessor.d.ts +16 -0
- package/dist/src/services/prompt-processors/argumentProcessor.js +21 -0
- package/dist/src/services/prompt-processors/argumentProcessor.js.map +1 -0
- package/dist/src/services/prompt-processors/atFileProcessor.d.ts +12 -0
- package/dist/src/services/prompt-processors/atFileProcessor.js +63 -0
- package/dist/src/services/prompt-processors/atFileProcessor.js.map +1 -0
- package/dist/src/services/prompt-processors/atFileProcessor.test.d.ts +6 -0
- package/dist/src/services/prompt-processors/atFileProcessor.test.js +174 -0
- package/dist/src/services/prompt-processors/atFileProcessor.test.js.map +1 -0
- package/dist/src/services/prompt-processors/injectionParser.d.ts +29 -0
- package/dist/src/services/prompt-processors/injectionParser.js +60 -0
- package/dist/src/services/prompt-processors/injectionParser.js.map +1 -0
- package/dist/src/services/prompt-processors/injectionParser.test.d.ts +6 -0
- package/dist/src/services/prompt-processors/injectionParser.test.js +189 -0
- package/dist/src/services/prompt-processors/injectionParser.test.js.map +1 -0
- package/dist/src/services/prompt-processors/shellProcessor.d.ts +27 -0
- package/dist/src/services/prompt-processors/shellProcessor.js +146 -0
- package/dist/src/services/prompt-processors/shellProcessor.js.map +1 -0
- package/dist/src/services/prompt-processors/types.d.ts +45 -0
- package/dist/src/services/prompt-processors/types.js +20 -0
- package/dist/src/services/prompt-processors/types.js.map +1 -0
- package/dist/src/services/test-commands/example.md +5 -0
- package/dist/src/services/tips/index.d.ts +10 -0
- package/dist/src/services/tips/index.js +21 -0
- package/dist/src/services/tips/index.js.map +1 -0
- package/dist/src/services/tips/tipHistory.d.ts +49 -0
- package/dist/src/services/tips/tipHistory.js +138 -0
- package/dist/src/services/tips/tipHistory.js.map +1 -0
- package/dist/src/services/tips/tipHistory.test.d.ts +6 -0
- package/dist/src/services/tips/tipHistory.test.js +102 -0
- package/dist/src/services/tips/tipHistory.test.js.map +1 -0
- package/dist/src/services/tips/tipRegistry.d.ts +32 -0
- package/dist/src/services/tips/tipRegistry.js +148 -0
- package/dist/src/services/tips/tipRegistry.js.map +1 -0
- package/dist/src/services/tips/tipRegistry.test.d.ts +6 -0
- package/dist/src/services/tips/tipRegistry.test.js +65 -0
- package/dist/src/services/tips/tipRegistry.test.js.map +1 -0
- package/dist/src/services/tips/tipScheduler.d.ts +21 -0
- package/dist/src/services/tips/tipScheduler.js +38 -0
- package/dist/src/services/tips/tipScheduler.js.map +1 -0
- package/dist/src/services/tips/tipScheduler.test.d.ts +6 -0
- package/dist/src/services/tips/tipScheduler.test.js +126 -0
- package/dist/src/services/tips/tipScheduler.test.js.map +1 -0
- package/dist/src/services/types.d.ts +22 -0
- package/dist/src/services/types.js +7 -0
- package/dist/src/services/types.js.map +1 -0
- package/dist/src/startup/worktreeStartup.d.ts +112 -0
- package/dist/src/startup/worktreeStartup.js +350 -0
- package/dist/src/startup/worktreeStartup.js.map +1 -0
- package/dist/src/startup/worktreeStartup.test.d.ts +6 -0
- package/dist/src/startup/worktreeStartup.test.js +332 -0
- package/dist/src/startup/worktreeStartup.test.js.map +1 -0
- package/dist/src/test-utils/customMatchers.d.ts +14 -0
- package/dist/src/test-utils/customMatchers.js +40 -0
- package/dist/src/test-utils/customMatchers.js.map +1 -0
- package/dist/src/test-utils/mockCommandContext.d.ts +18 -0
- package/dist/src/test-utils/mockCommandContext.js +107 -0
- package/dist/src/test-utils/mockCommandContext.js.map +1 -0
- package/dist/src/test-utils/mockCommandContext.test.d.ts +6 -0
- package/dist/src/test-utils/mockCommandContext.test.js +51 -0
- package/dist/src/test-utils/mockCommandContext.test.js.map +1 -0
- package/dist/src/test-utils/render.d.ts +14 -0
- package/dist/src/test-utils/render.js +15 -0
- package/dist/src/test-utils/render.js.map +1 -0
- package/dist/src/ui/App.d.ts +6 -0
- package/dist/src/ui/App.js +65 -0
- package/dist/src/ui/App.js.map +1 -0
- package/dist/src/ui/AppContainer.d.ts +24 -0
- package/dist/src/ui/AppContainer.js +2853 -0
- package/dist/src/ui/AppContainer.js.map +1 -0
- package/dist/src/ui/AppContainer.test.d.ts +6 -0
- package/dist/src/ui/AppContainer.test.js +2368 -0
- package/dist/src/ui/AppContainer.test.js.map +1 -0
- package/dist/src/ui/CommandFormatMigrationNudge.d.ts +14 -0
- package/dist/src/ui/CommandFormatMigrationNudge.js +44 -0
- package/dist/src/ui/CommandFormatMigrationNudge.js.map +1 -0
- package/dist/src/ui/FeedbackDialog.d.ts +9 -0
- package/dist/src/ui/FeedbackDialog.js +44 -0
- package/dist/src/ui/FeedbackDialog.js.map +1 -0
- package/dist/src/ui/IdeIntegrationNudge.d.ts +16 -0
- package/dist/src/ui/IdeIntegrationNudge.js +53 -0
- package/dist/src/ui/IdeIntegrationNudge.js.map +1 -0
- package/dist/src/ui/auth/AuthDialog.d.ts +7 -0
- package/dist/src/ui/auth/AuthDialog.js +214 -0
- package/dist/src/ui/auth/AuthDialog.js.map +1 -0
- package/dist/src/ui/auth/AuthDialog.test.d.ts +6 -0
- package/dist/src/ui/auth/AuthDialog.test.js +1029 -0
- package/dist/src/ui/auth/AuthDialog.test.js.map +1 -0
- package/dist/src/ui/auth/AuthInProgress.d.ts +11 -0
- package/dist/src/ui/auth/AuthInProgress.js +24 -0
- package/dist/src/ui/auth/AuthInProgress.js.map +1 -0
- package/dist/src/ui/auth/ProviderSetupSteps.d.ts +11 -0
- package/dist/src/ui/auth/ProviderSetupSteps.js +320 -0
- package/dist/src/ui/auth/ProviderSetupSteps.js.map +1 -0
- package/dist/src/ui/auth/ProviderSetupSteps.test.d.ts +6 -0
- package/dist/src/ui/auth/ProviderSetupSteps.test.js +322 -0
- package/dist/src/ui/auth/ProviderSetupSteps.test.js.map +1 -0
- package/dist/src/ui/auth/useAuth.d.ts +76 -0
- package/dist/src/ui/auth/useAuth.js +192 -0
- package/dist/src/ui/auth/useAuth.js.map +1 -0
- package/dist/src/ui/auth/useAuth.test.d.ts +6 -0
- package/dist/src/ui/auth/useAuth.test.js +267 -0
- package/dist/src/ui/auth/useAuth.test.js.map +1 -0
- package/dist/src/ui/auth/useProviderSetupFlow.d.ts +54 -0
- package/dist/src/ui/auth/useProviderSetupFlow.js +380 -0
- package/dist/src/ui/auth/useProviderSetupFlow.js.map +1 -0
- package/dist/src/ui/colors.d.ts +7 -0
- package/dist/src/ui/colors.js +60 -0
- package/dist/src/ui/colors.js.map +1 -0
- package/dist/src/ui/commands/aboutCommand.d.ts +7 -0
- package/dist/src/ui/commands/aboutCommand.js +69 -0
- package/dist/src/ui/commands/aboutCommand.js.map +1 -0
- package/dist/src/ui/commands/agentsCommand.d.ts +7 -0
- package/dist/src/ui/commands/agentsCommand.js +42 -0
- package/dist/src/ui/commands/agentsCommand.js.map +1 -0
- package/dist/src/ui/commands/approvalModeCommand.d.ts +7 -0
- package/dist/src/ui/commands/approvalModeCommand.js +89 -0
- package/dist/src/ui/commands/approvalModeCommand.js.map +1 -0
- package/dist/src/ui/commands/approvalModeCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/approvalModeCommand.test.js +112 -0
- package/dist/src/ui/commands/approvalModeCommand.test.js.map +1 -0
- package/dist/src/ui/commands/arenaCommand.agentComplete.test.d.ts +6 -0
- package/dist/src/ui/commands/arenaCommand.agentComplete.test.js +118 -0
- package/dist/src/ui/commands/arenaCommand.agentComplete.test.js.map +1 -0
- package/dist/src/ui/commands/arenaCommand.d.ts +7 -0
- package/dist/src/ui/commands/arenaCommand.js +519 -0
- package/dist/src/ui/commands/arenaCommand.js.map +1 -0
- package/dist/src/ui/commands/arenaCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/arenaCommand.test.js +352 -0
- package/dist/src/ui/commands/arenaCommand.test.js.map +1 -0
- package/dist/src/ui/commands/authCommand.d.ts +7 -0
- package/dist/src/ui/commands/authCommand.js +31 -0
- package/dist/src/ui/commands/authCommand.js.map +1 -0
- package/dist/src/ui/commands/branchCommand.d.ts +7 -0
- package/dist/src/ui/commands/branchCommand.js +49 -0
- package/dist/src/ui/commands/branchCommand.js.map +1 -0
- package/dist/src/ui/commands/branchCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/branchCommand.test.js +57 -0
- package/dist/src/ui/commands/branchCommand.test.js.map +1 -0
- package/dist/src/ui/commands/btwCommand.d.ts +7 -0
- package/dist/src/ui/commands/btwCommand.js +164 -0
- package/dist/src/ui/commands/btwCommand.js.map +1 -0
- package/dist/src/ui/commands/btwCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/btwCommand.test.js +338 -0
- package/dist/src/ui/commands/btwCommand.test.js.map +1 -0
- package/dist/src/ui/commands/bugCommand.d.ts +7 -0
- package/dist/src/ui/commands/bugCommand.js +54 -0
- package/dist/src/ui/commands/bugCommand.js.map +1 -0
- package/dist/src/ui/commands/clearCommand.d.ts +7 -0
- package/dist/src/ui/commands/clearCommand.js +122 -0
- package/dist/src/ui/commands/clearCommand.js.map +1 -0
- package/dist/src/ui/commands/compressCommand.d.ts +7 -0
- package/dist/src/ui/commands/compressCommand.js +178 -0
- package/dist/src/ui/commands/compressCommand.js.map +1 -0
- package/dist/src/ui/commands/contextCommand.d.ts +14 -0
- package/dist/src/ui/commands/contextCommand.js +443 -0
- package/dist/src/ui/commands/contextCommand.js.map +1 -0
- package/dist/src/ui/commands/contextCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/contextCommand.test.js +184 -0
- package/dist/src/ui/commands/contextCommand.test.js.map +1 -0
- package/dist/src/ui/commands/copyCommand.d.ts +7 -0
- package/dist/src/ui/commands/copyCommand.js +374 -0
- package/dist/src/ui/commands/copyCommand.js.map +1 -0
- package/dist/src/ui/commands/deleteCommand.d.ts +7 -0
- package/dist/src/ui/commands/deleteCommand.js +19 -0
- package/dist/src/ui/commands/deleteCommand.js.map +1 -0
- package/dist/src/ui/commands/deleteCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/deleteCommand.test.js +27 -0
- package/dist/src/ui/commands/deleteCommand.test.js.map +1 -0
- package/dist/src/ui/commands/diffCommand.d.ts +42 -0
- package/dist/src/ui/commands/diffCommand.js +206 -0
- package/dist/src/ui/commands/diffCommand.js.map +1 -0
- package/dist/src/ui/commands/diffCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/diffCommand.test.js +482 -0
- package/dist/src/ui/commands/diffCommand.test.js.map +1 -0
- package/dist/src/ui/commands/directoryCommand.d.ts +13 -0
- package/dist/src/ui/commands/directoryCommand.js +252 -0
- package/dist/src/ui/commands/directoryCommand.js.map +1 -0
- package/dist/src/ui/commands/docsCommand.d.ts +7 -0
- package/dist/src/ui/commands/docsCommand.js +49 -0
- package/dist/src/ui/commands/docsCommand.js.map +1 -0
- package/dist/src/ui/commands/doctorCommand.d.ts +7 -0
- package/dist/src/ui/commands/doctorCommand.js +530 -0
- package/dist/src/ui/commands/doctorCommand.js.map +1 -0
- package/dist/src/ui/commands/doctorCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/doctorCommand.test.js +804 -0
- package/dist/src/ui/commands/doctorCommand.test.js.map +1 -0
- package/dist/src/ui/commands/dreamCommand.d.ts +7 -0
- package/dist/src/ui/commands/dreamCommand.js +42 -0
- package/dist/src/ui/commands/dreamCommand.js.map +1 -0
- package/dist/src/ui/commands/dreamCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/dreamCommand.test.js +39 -0
- package/dist/src/ui/commands/dreamCommand.test.js.map +1 -0
- package/dist/src/ui/commands/editorCommand.d.ts +7 -0
- package/dist/src/ui/commands/editorCommand.js +20 -0
- package/dist/src/ui/commands/editorCommand.js.map +1 -0
- package/dist/src/ui/commands/exportCommand.d.ts +10 -0
- package/dist/src/ui/commands/exportCommand.js +373 -0
- package/dist/src/ui/commands/exportCommand.js.map +1 -0
- package/dist/src/ui/commands/exportCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/exportCommand.test.js +905 -0
- package/dist/src/ui/commands/exportCommand.test.js.map +1 -0
- package/dist/src/ui/commands/extensionsCommand.d.ts +10 -0
- package/dist/src/ui/commands/extensionsCommand.js +185 -0
- package/dist/src/ui/commands/extensionsCommand.js.map +1 -0
- package/dist/src/ui/commands/forgetCommand.d.ts +7 -0
- package/dist/src/ui/commands/forgetCommand.js +45 -0
- package/dist/src/ui/commands/forgetCommand.js.map +1 -0
- package/dist/src/ui/commands/forkCommand.d.ts +7 -0
- package/dist/src/ui/commands/forkCommand.js +163 -0
- package/dist/src/ui/commands/forkCommand.js.map +1 -0
- package/dist/src/ui/commands/forkCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/forkCommand.test.js +229 -0
- package/dist/src/ui/commands/forkCommand.test.js.map +1 -0
- package/dist/src/ui/commands/goalCommand.d.ts +7 -0
- package/dist/src/ui/commands/goalCommand.js +181 -0
- package/dist/src/ui/commands/goalCommand.js.map +1 -0
- package/dist/src/ui/commands/goalCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/goalCommand.test.js +328 -0
- package/dist/src/ui/commands/goalCommand.test.js.map +1 -0
- package/dist/src/ui/commands/helpCommand.d.ts +7 -0
- package/dist/src/ui/commands/helpCommand.js +21 -0
- package/dist/src/ui/commands/helpCommand.js.map +1 -0
- package/dist/src/ui/commands/hooksCommand.d.ts +7 -0
- package/dist/src/ui/commands/hooksCommand.js +153 -0
- package/dist/src/ui/commands/hooksCommand.js.map +1 -0
- package/dist/src/ui/commands/hooksCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/hooksCommand.test.js +189 -0
- package/dist/src/ui/commands/hooksCommand.test.js.map +1 -0
- package/dist/src/ui/commands/ideCommand.d.ts +7 -0
- package/dist/src/ui/commands/ideCommand.js +256 -0
- package/dist/src/ui/commands/ideCommand.js.map +1 -0
- package/dist/src/ui/commands/initCommand.d.ts +7 -0
- package/dist/src/ui/commands/initCommand.js +119 -0
- package/dist/src/ui/commands/initCommand.js.map +1 -0
- package/dist/src/ui/commands/insightCommand.d.ts +7 -0
- package/dist/src/ui/commands/insightCommand.js +195 -0
- package/dist/src/ui/commands/insightCommand.js.map +1 -0
- package/dist/src/ui/commands/insightCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/insightCommand.test.js +173 -0
- package/dist/src/ui/commands/insightCommand.test.js.map +1 -0
- package/dist/src/ui/commands/languageCommand.d.ts +7 -0
- package/dist/src/ui/commands/languageCommand.js +291 -0
- package/dist/src/ui/commands/languageCommand.js.map +1 -0
- package/dist/src/ui/commands/languageCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/languageCommand.test.js +664 -0
- package/dist/src/ui/commands/languageCommand.test.js.map +1 -0
- package/dist/src/ui/commands/lspCommand.d.ts +7 -0
- package/dist/src/ui/commands/lspCommand.js +62 -0
- package/dist/src/ui/commands/lspCommand.js.map +1 -0
- package/dist/src/ui/commands/lspCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/lspCommand.test.js +175 -0
- package/dist/src/ui/commands/lspCommand.test.js.map +1 -0
- package/dist/src/ui/commands/mcpCommand.d.ts +7 -0
- package/dist/src/ui/commands/mcpCommand.js +21 -0
- package/dist/src/ui/commands/mcpCommand.js.map +1 -0
- package/dist/src/ui/commands/memoryCommand.d.ts +7 -0
- package/dist/src/ui/commands/memoryCommand.js +21 -0
- package/dist/src/ui/commands/memoryCommand.js.map +1 -0
- package/dist/src/ui/commands/modelCommand.d.ts +7 -0
- package/dist/src/ui/commands/modelCommand.js +226 -0
- package/dist/src/ui/commands/modelCommand.js.map +1 -0
- package/dist/src/ui/commands/modelCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/modelCommand.test.js +503 -0
- package/dist/src/ui/commands/modelCommand.test.js.map +1 -0
- package/dist/src/ui/commands/permissionsCommand.d.ts +7 -0
- package/dist/src/ui/commands/permissionsCommand.js +20 -0
- package/dist/src/ui/commands/permissionsCommand.js.map +1 -0
- package/dist/src/ui/commands/permissionsCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/permissionsCommand.test.js +30 -0
- package/dist/src/ui/commands/permissionsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/planCommand.d.ts +7 -0
- package/dist/src/ui/commands/planCommand.js +88 -0
- package/dist/src/ui/commands/planCommand.js.map +1 -0
- package/dist/src/ui/commands/planCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/planCommand.test.js +113 -0
- package/dist/src/ui/commands/planCommand.test.js.map +1 -0
- package/dist/src/ui/commands/quitCommand.d.ts +7 -0
- package/dist/src/ui/commands/quitCommand.js +38 -0
- package/dist/src/ui/commands/quitCommand.js.map +1 -0
- package/dist/src/ui/commands/recapCommand.d.ts +7 -0
- package/dist/src/ui/commands/recapCommand.js +56 -0
- package/dist/src/ui/commands/recapCommand.js.map +1 -0
- package/dist/src/ui/commands/rememberCommand.d.ts +7 -0
- package/dist/src/ui/commands/rememberCommand.js +54 -0
- package/dist/src/ui/commands/rememberCommand.js.map +1 -0
- package/dist/src/ui/commands/renameCommand.d.ts +7 -0
- package/dist/src/ui/commands/renameCommand.js +208 -0
- package/dist/src/ui/commands/renameCommand.js.map +1 -0
- package/dist/src/ui/commands/renameCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/renameCommand.test.js +414 -0
- package/dist/src/ui/commands/renameCommand.test.js.map +1 -0
- package/dist/src/ui/commands/restoreCommand.d.ts +8 -0
- package/dist/src/ui/commands/restoreCommand.js +159 -0
- package/dist/src/ui/commands/restoreCommand.js.map +1 -0
- package/dist/src/ui/commands/resumeCommand.d.ts +7 -0
- package/dist/src/ui/commands/resumeCommand.js +65 -0
- package/dist/src/ui/commands/resumeCommand.js.map +1 -0
- package/dist/src/ui/commands/resumeCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/resumeCommand.test.js +135 -0
- package/dist/src/ui/commands/resumeCommand.test.js.map +1 -0
- package/dist/src/ui/commands/rewindCommand.d.ts +7 -0
- package/dist/src/ui/commands/rewindCommand.js +20 -0
- package/dist/src/ui/commands/rewindCommand.js.map +1 -0
- package/dist/src/ui/commands/settingsCommand.d.ts +7 -0
- package/dist/src/ui/commands/settingsCommand.js +20 -0
- package/dist/src/ui/commands/settingsCommand.js.map +1 -0
- package/dist/src/ui/commands/setupGithubCommand.d.ts +9 -0
- package/dist/src/ui/commands/setupGithubCommand.js +165 -0
- package/dist/src/ui/commands/setupGithubCommand.js.map +1 -0
- package/dist/src/ui/commands/setupGithubCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/setupGithubCommand.test.js +164 -0
- package/dist/src/ui/commands/setupGithubCommand.test.js.map +1 -0
- package/dist/src/ui/commands/skillsCommand.d.ts +7 -0
- package/dist/src/ui/commands/skillsCommand.js +63 -0
- package/dist/src/ui/commands/skillsCommand.js.map +1 -0
- package/dist/src/ui/commands/skillsCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/skillsCommand.test.js +136 -0
- package/dist/src/ui/commands/skillsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/statsCommand.d.ts +7 -0
- package/dist/src/ui/commands/statsCommand.js +130 -0
- package/dist/src/ui/commands/statsCommand.js.map +1 -0
- package/dist/src/ui/commands/statuslineCommand.d.ts +7 -0
- package/dist/src/ui/commands/statuslineCommand.js +33 -0
- package/dist/src/ui/commands/statuslineCommand.js.map +1 -0
- package/dist/src/ui/commands/statuslineCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/statuslineCommand.test.js +54 -0
- package/dist/src/ui/commands/statuslineCommand.test.js.map +1 -0
- package/dist/src/ui/commands/summaryCommand.d.ts +7 -0
- package/dist/src/ui/commands/summaryCommand.js +261 -0
- package/dist/src/ui/commands/summaryCommand.js.map +1 -0
- package/dist/src/ui/commands/tasksCommand.d.ts +7 -0
- package/dist/src/ui/commands/tasksCommand.js +222 -0
- package/dist/src/ui/commands/tasksCommand.js.map +1 -0
- package/dist/src/ui/commands/tasksCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/tasksCommand.test.js +365 -0
- package/dist/src/ui/commands/tasksCommand.test.js.map +1 -0
- package/dist/src/ui/commands/terminalSetupCommand.d.ts +13 -0
- package/dist/src/ui/commands/terminalSetupCommand.js +48 -0
- package/dist/src/ui/commands/terminalSetupCommand.js.map +1 -0
- package/dist/src/ui/commands/themeCommand.d.ts +7 -0
- package/dist/src/ui/commands/themeCommand.js +20 -0
- package/dist/src/ui/commands/themeCommand.js.map +1 -0
- package/dist/src/ui/commands/toolsCommand.d.ts +7 -0
- package/dist/src/ui/commands/toolsCommand.js +45 -0
- package/dist/src/ui/commands/toolsCommand.js.map +1 -0
- package/dist/src/ui/commands/trustCommand.d.ts +7 -0
- package/dist/src/ui/commands/trustCommand.js +20 -0
- package/dist/src/ui/commands/trustCommand.js.map +1 -0
- package/dist/src/ui/commands/trustCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/trustCommand.test.js +30 -0
- package/dist/src/ui/commands/trustCommand.test.js.map +1 -0
- package/dist/src/ui/commands/types.d.ts +298 -0
- package/dist/src/ui/commands/types.js +13 -0
- package/dist/src/ui/commands/types.js.map +1 -0
- package/dist/src/ui/commands/vimCommand.d.ts +7 -0
- package/dist/src/ui/commands/vimCommand.js +27 -0
- package/dist/src/ui/commands/vimCommand.js.map +1 -0
- package/dist/src/ui/components/AboutBox.d.ts +12 -0
- package/dist/src/ui/components/AboutBox.js +10 -0
- package/dist/src/ui/components/AboutBox.js.map +1 -0
- package/dist/src/ui/components/AnsiOutput.d.ts +20 -0
- package/dist/src/ui/components/AnsiOutput.js +27 -0
- package/dist/src/ui/components/AnsiOutput.js.map +1 -0
- package/dist/src/ui/components/AnsiOutput.test.d.ts +6 -0
- package/dist/src/ui/components/AnsiOutput.test.js +134 -0
- package/dist/src/ui/components/AnsiOutput.test.js.map +1 -0
- package/dist/src/ui/components/ApiKeyInput.d.ts +22 -0
- package/dist/src/ui/components/ApiKeyInput.js +35 -0
- package/dist/src/ui/components/ApiKeyInput.js.map +1 -0
- package/dist/src/ui/components/AppHeader.d.ts +10 -0
- package/dist/src/ui/components/AppHeader.js +49 -0
- package/dist/src/ui/components/AppHeader.js.map +1 -0
- package/dist/src/ui/components/AppHeader.test.d.ts +6 -0
- package/dist/src/ui/components/AppHeader.test.js +109 -0
- package/dist/src/ui/components/AppHeader.test.js.map +1 -0
- package/dist/src/ui/components/ApprovalModeDialog.d.ts +21 -0
- package/dist/src/ui/components/ApprovalModeDialog.js +109 -0
- package/dist/src/ui/components/ApprovalModeDialog.js.map +1 -0
- package/dist/src/ui/components/ApprovalModeDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ApprovalModeDialog.test.js +63 -0
- package/dist/src/ui/components/ApprovalModeDialog.test.js.map +1 -0
- package/dist/src/ui/components/AsciiArt.d.ts +1 -0
- package/dist/src/ui/components/AsciiArt.js +54 -0
- package/dist/src/ui/components/AsciiArt.js.map +1 -0
- package/dist/src/ui/components/AutoAcceptIndicator.d.ts +12 -0
- package/dist/src/ui/components/AutoAcceptIndicator.js +37 -0
- package/dist/src/ui/components/AutoAcceptIndicator.js.map +1 -0
- package/dist/src/ui/components/BaseTextInput.d.ts +74 -0
- package/dist/src/ui/components/BaseTextInput.js +144 -0
- package/dist/src/ui/components/BaseTextInput.js.map +1 -0
- package/dist/src/ui/components/BaseTextInput.test.d.ts +6 -0
- package/dist/src/ui/components/BaseTextInput.test.js +78 -0
- package/dist/src/ui/components/BaseTextInput.test.js.map +1 -0
- package/dist/src/ui/components/Composer.d.ts +6 -0
- package/dist/src/ui/components/Composer.js +92 -0
- package/dist/src/ui/components/Composer.js.map +1 -0
- package/dist/src/ui/components/Composer.test.d.ts +6 -0
- package/dist/src/ui/components/Composer.test.js +344 -0
- package/dist/src/ui/components/Composer.test.js.map +1 -0
- package/dist/src/ui/components/ConsentPrompt.d.ts +14 -0
- package/dist/src/ui/components/ConsentPrompt.js +35 -0
- package/dist/src/ui/components/ConsentPrompt.js.map +1 -0
- package/dist/src/ui/components/ConsentPrompt.test.d.ts +6 -0
- package/dist/src/ui/components/ConsentPrompt.test.js +110 -0
- package/dist/src/ui/components/ConsentPrompt.test.js.map +1 -0
- package/dist/src/ui/components/ContextSummaryDisplay.d.ts +20 -0
- package/dist/src/ui/components/ContextSummaryDisplay.js +90 -0
- package/dist/src/ui/components/ContextSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/ContextUsageDisplay.d.ts +10 -0
- package/dist/src/ui/components/ContextUsageDisplay.js +33 -0
- package/dist/src/ui/components/ContextUsageDisplay.js.map +1 -0
- package/dist/src/ui/components/DebugModeNotification.d.ts +9 -0
- package/dist/src/ui/components/DebugModeNotification.js +23 -0
- package/dist/src/ui/components/DebugModeNotification.js.map +1 -0
- package/dist/src/ui/components/DebugProfiler.d.ts +6 -0
- package/dist/src/ui/components/DebugProfiler.js +27 -0
- package/dist/src/ui/components/DebugProfiler.js.map +1 -0
- package/dist/src/ui/components/DialogManager.d.ts +12 -0
- package/dist/src/ui/components/DialogManager.js +247 -0
- package/dist/src/ui/components/DialogManager.js.map +1 -0
- package/dist/src/ui/components/DiffDialog.d.ts +15 -0
- package/dist/src/ui/components/DiffDialog.js +412 -0
- package/dist/src/ui/components/DiffDialog.js.map +1 -0
- package/dist/src/ui/components/EditorSettingsDialog.d.ts +16 -0
- package/dist/src/ui/components/EditorSettingsDialog.js +76 -0
- package/dist/src/ui/components/EditorSettingsDialog.js.map +1 -0
- package/dist/src/ui/components/ExitWarning.d.ts +7 -0
- package/dist/src/ui/components/ExitWarning.js +9 -0
- package/dist/src/ui/components/ExitWarning.js.map +1 -0
- package/dist/src/ui/components/ExternalAuthProgress.d.ts +14 -0
- package/dist/src/ui/components/ExternalAuthProgress.js +14 -0
- package/dist/src/ui/components/ExternalAuthProgress.js.map +1 -0
- package/dist/src/ui/components/ExternalAuthProgress.test.d.ts +6 -0
- package/dist/src/ui/components/ExternalAuthProgress.test.js +20 -0
- package/dist/src/ui/components/ExternalAuthProgress.test.js.map +1 -0
- package/dist/src/ui/components/FolderTrustDialog.d.ts +17 -0
- package/dist/src/ui/components/FolderTrustDialog.js +58 -0
- package/dist/src/ui/components/FolderTrustDialog.js.map +1 -0
- package/dist/src/ui/components/FolderTrustDialog.test.d.ts +6 -0
- package/dist/src/ui/components/FolderTrustDialog.test.js +88 -0
- package/dist/src/ui/components/FolderTrustDialog.test.js.map +1 -0
- package/dist/src/ui/components/Footer.d.ts +7 -0
- package/dist/src/ui/components/Footer.js +104 -0
- package/dist/src/ui/components/Footer.js.map +1 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.d.ts +22 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.js +47 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.js.map +1 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.test.d.ts +6 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.test.js +29 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.test.js.map +1 -0
- package/dist/src/ui/components/GoalPill.d.ts +25 -0
- package/dist/src/ui/components/GoalPill.js +77 -0
- package/dist/src/ui/components/GoalPill.js.map +1 -0
- package/dist/src/ui/components/GoalPill.test.d.ts +6 -0
- package/dist/src/ui/components/GoalPill.test.js +56 -0
- package/dist/src/ui/components/GoalPill.test.js.map +1 -0
- package/dist/src/ui/components/Header.d.ts +62 -0
- package/dist/src/ui/components/Header.js +155 -0
- package/dist/src/ui/components/Header.js.map +1 -0
- package/dist/src/ui/components/Header.test.d.ts +6 -0
- package/dist/src/ui/components/Header.test.js +142 -0
- package/dist/src/ui/components/Header.test.js.map +1 -0
- package/dist/src/ui/components/Help.d.ts +18 -0
- package/dist/src/ui/components/Help.js +236 -0
- package/dist/src/ui/components/Help.js.map +1 -0
- package/dist/src/ui/components/Help.test.d.ts +6 -0
- package/dist/src/ui/components/Help.test.js +243 -0
- package/dist/src/ui/components/Help.test.js.map +1 -0
- package/dist/src/ui/components/HistoryItemDisplay.d.ts +39 -0
- package/dist/src/ui/components/HistoryItemDisplay.js +51 -0
- package/dist/src/ui/components/HistoryItemDisplay.js.map +1 -0
- package/dist/src/ui/components/HistoryItemDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/HistoryItemDisplay.test.js +197 -0
- package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.d.ts +11 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.js +34 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.js.map +1 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.test.d.ts +6 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.test.js +53 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.test.js.map +1 -0
- package/dist/src/ui/components/InputPrompt.d.ts +63 -0
- package/dist/src/ui/components/InputPrompt.js +1220 -0
- package/dist/src/ui/components/InputPrompt.js.map +1 -0
- package/dist/src/ui/components/KeyboardShortcuts.d.ts +7 -0
- package/dist/src/ui/components/KeyboardShortcuts.js +78 -0
- package/dist/src/ui/components/KeyboardShortcuts.js.map +1 -0
- package/dist/src/ui/components/LoadingIndicator.d.ts +31 -0
- package/dist/src/ui/components/LoadingIndicator.js +46 -0
- package/dist/src/ui/components/LoadingIndicator.js.map +1 -0
- package/dist/src/ui/components/LoadingIndicator.test.d.ts +6 -0
- package/dist/src/ui/components/LoadingIndicator.test.js +246 -0
- package/dist/src/ui/components/LoadingIndicator.test.js.map +1 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.d.ts +13 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.js +37 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.js.map +1 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.test.d.ts +6 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.test.js +28 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.test.js.map +1 -0
- package/dist/src/ui/components/MainContent.d.ts +6 -0
- package/dist/src/ui/components/MainContent.js +437 -0
- package/dist/src/ui/components/MainContent.js.map +1 -0
- package/dist/src/ui/components/MainContent.test.d.ts +6 -0
- package/dist/src/ui/components/MainContent.test.js +621 -0
- package/dist/src/ui/components/MainContent.test.js.map +1 -0
- package/dist/src/ui/components/MemoryDialog.d.ts +10 -0
- package/dist/src/ui/components/MemoryDialog.js +288 -0
- package/dist/src/ui/components/MemoryDialog.js.map +1 -0
- package/dist/src/ui/components/MemoryDialog.test.d.ts +6 -0
- package/dist/src/ui/components/MemoryDialog.test.js +165 -0
- package/dist/src/ui/components/MemoryDialog.test.js.map +1 -0
- package/dist/src/ui/components/MemoryUsageDisplay.d.ts +7 -0
- package/dist/src/ui/components/MemoryUsageDisplay.js +24 -0
- package/dist/src/ui/components/MemoryUsageDisplay.js.map +1 -0
- package/dist/src/ui/components/ModelDialog.d.ts +12 -0
- package/dist/src/ui/components/ModelDialog.js +390 -0
- package/dist/src/ui/components/ModelDialog.js.map +1 -0
- package/dist/src/ui/components/ModelDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ModelDialog.test.js +489 -0
- package/dist/src/ui/components/ModelDialog.test.js.map +1 -0
- package/dist/src/ui/components/ModelStatsDisplay.d.ts +11 -0
- package/dist/src/ui/components/ModelStatsDisplay.js +61 -0
- package/dist/src/ui/components/ModelStatsDisplay.js.map +1 -0
- package/dist/src/ui/components/Notifications.d.ts +6 -0
- package/dist/src/ui/components/Notifications.js +20 -0
- package/dist/src/ui/components/Notifications.js.map +1 -0
- package/dist/src/ui/components/PermissionsDialog.d.ts +11 -0
- package/dist/src/ui/components/PermissionsDialog.js +547 -0
- package/dist/src/ui/components/PermissionsDialog.js.map +1 -0
- package/dist/src/ui/components/PlanSummaryDisplay.d.ts +14 -0
- package/dist/src/ui/components/PlanSummaryDisplay.js +10 -0
- package/dist/src/ui/components/PlanSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/PluginChoicePrompt.d.ts +18 -0
- package/dist/src/ui/components/PluginChoicePrompt.js +96 -0
- package/dist/src/ui/components/PluginChoicePrompt.js.map +1 -0
- package/dist/src/ui/components/PluginChoicePrompt.test.d.ts +6 -0
- package/dist/src/ui/components/PluginChoicePrompt.test.js +136 -0
- package/dist/src/ui/components/PluginChoicePrompt.test.js.map +1 -0
- package/dist/src/ui/components/PrepareLabel.d.ts +15 -0
- package/dist/src/ui/components/PrepareLabel.js +72 -0
- package/dist/src/ui/components/PrepareLabel.js.map +1 -0
- package/dist/src/ui/components/PrepareLabel.test.d.ts +6 -0
- package/dist/src/ui/components/PrepareLabel.test.js +71 -0
- package/dist/src/ui/components/PrepareLabel.test.js.map +1 -0
- package/dist/src/ui/components/ProviderUpdatePrompt.d.ts +12 -0
- package/dist/src/ui/components/ProviderUpdatePrompt.js +49 -0
- package/dist/src/ui/components/ProviderUpdatePrompt.js.map +1 -0
- package/dist/src/ui/components/QueuedMessageDisplay.d.ts +9 -0
- package/dist/src/ui/components/QueuedMessageDisplay.js +35 -0
- package/dist/src/ui/components/QueuedMessageDisplay.js.map +1 -0
- package/dist/src/ui/components/QueuedMessageDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/QueuedMessageDisplay.test.js +76 -0
- package/dist/src/ui/components/QueuedMessageDisplay.test.js.map +1 -0
- package/dist/src/ui/components/QuittingDisplay.d.ts +6 -0
- package/dist/src/ui/components/QuittingDisplay.js +21 -0
- package/dist/src/ui/components/QuittingDisplay.js.map +1 -0
- package/dist/src/ui/components/QwenOAuthProgress.d.ts +16 -0
- package/dist/src/ui/components/QwenOAuthProgress.js +65 -0
- package/dist/src/ui/components/QwenOAuthProgress.js.map +1 -0
- package/dist/src/ui/components/QwenOAuthProgress.test.d.ts +6 -0
- package/dist/src/ui/components/QwenOAuthProgress.test.js +287 -0
- package/dist/src/ui/components/QwenOAuthProgress.test.js.map +1 -0
- package/dist/src/ui/components/RewindSelector.d.ts +22 -0
- package/dist/src/ui/components/RewindSelector.js +264 -0
- package/dist/src/ui/components/RewindSelector.js.map +1 -0
- package/dist/src/ui/components/RewindSelector.test.d.ts +6 -0
- package/dist/src/ui/components/RewindSelector.test.js +146 -0
- package/dist/src/ui/components/RewindSelector.test.js.map +1 -0
- package/dist/src/ui/components/SessionPicker.d.ts +55 -0
- package/dist/src/ui/components/SessionPicker.js +142 -0
- package/dist/src/ui/components/SessionPicker.js.map +1 -0
- package/dist/src/ui/components/SessionPreview.d.ts +20 -0
- package/dist/src/ui/components/SessionPreview.js +97 -0
- package/dist/src/ui/components/SessionPreview.js.map +1 -0
- package/dist/src/ui/components/SessionPreview.test.d.ts +1 -0
- package/dist/src/ui/components/SessionPreview.test.js +124 -0
- package/dist/src/ui/components/SessionPreview.test.js.map +1 -0
- package/dist/src/ui/components/SessionSummaryDisplay.d.ts +12 -0
- package/dist/src/ui/components/SessionSummaryDisplay.js +17 -0
- package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/SettingInputPrompt.d.ts +15 -0
- package/dist/src/ui/components/SettingInputPrompt.js +63 -0
- package/dist/src/ui/components/SettingInputPrompt.js.map +1 -0
- package/dist/src/ui/components/SettingInputPrompt.test.d.ts +6 -0
- package/dist/src/ui/components/SettingInputPrompt.test.js +60 -0
- package/dist/src/ui/components/SettingInputPrompt.test.js.map +1 -0
- package/dist/src/ui/components/SettingsCorruptedDialog.d.ts +14 -0
- package/dist/src/ui/components/SettingsCorruptedDialog.js +44 -0
- package/dist/src/ui/components/SettingsCorruptedDialog.js.map +1 -0
- package/dist/src/ui/components/SettingsCorruptedDialog.test.d.ts +6 -0
- package/dist/src/ui/components/SettingsCorruptedDialog.test.js +162 -0
- package/dist/src/ui/components/SettingsCorruptedDialog.test.js.map +1 -0
- package/dist/src/ui/components/SettingsDialog.d.ts +18 -0
- package/dist/src/ui/components/SettingsDialog.js +658 -0
- package/dist/src/ui/components/SettingsDialog.js.map +1 -0
- package/dist/src/ui/components/SettingsDialog.test.d.ts +6 -0
- package/dist/src/ui/components/SettingsDialog.test.js +1127 -0
- package/dist/src/ui/components/SettingsDialog.test.js.map +1 -0
- package/dist/src/ui/components/ShellConfirmationDialog.d.ts +17 -0
- package/dist/src/ui/components/ShellConfirmationDialog.js +75 -0
- package/dist/src/ui/components/ShellConfirmationDialog.js.map +1 -0
- package/dist/src/ui/components/ShellConfirmationDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ShellConfirmationDialog.test.js +167 -0
- package/dist/src/ui/components/ShellConfirmationDialog.test.js.map +1 -0
- package/dist/src/ui/components/ShellInputPrompt.d.ts +11 -0
- package/dist/src/ui/components/ShellInputPrompt.js +42 -0
- package/dist/src/ui/components/ShellInputPrompt.js.map +1 -0
- package/dist/src/ui/components/ShellModeIndicator.d.ts +7 -0
- package/dist/src/ui/components/ShellModeIndicator.js +5 -0
- package/dist/src/ui/components/ShellModeIndicator.js.map +1 -0
- package/dist/src/ui/components/ShowMoreLines.d.ts +10 -0
- package/dist/src/ui/components/ShowMoreLines.js +24 -0
- package/dist/src/ui/components/ShowMoreLines.js.map +1 -0
- package/dist/src/ui/components/StandaloneSessionPicker.d.ts +11 -0
- package/dist/src/ui/components/StandaloneSessionPicker.js +105 -0
- package/dist/src/ui/components/StandaloneSessionPicker.js.map +1 -0
- package/dist/src/ui/components/StandaloneSessionPicker.test.d.ts +6 -0
- package/dist/src/ui/components/StandaloneSessionPicker.test.js +667 -0
- package/dist/src/ui/components/StandaloneSessionPicker.test.js.map +1 -0
- package/dist/src/ui/components/StatsActivityTab.d.ts +14 -0
- package/dist/src/ui/components/StatsActivityTab.js +85 -0
- package/dist/src/ui/components/StatsActivityTab.js.map +1 -0
- package/dist/src/ui/components/StatsDialog.d.ts +12 -0
- package/dist/src/ui/components/StatsDialog.js +104 -0
- package/dist/src/ui/components/StatsDialog.js.map +1 -0
- package/dist/src/ui/components/StatsDisplay.d.ts +13 -0
- package/dist/src/ui/components/StatsDisplay.js +52 -0
- package/dist/src/ui/components/StatsDisplay.js.map +1 -0
- package/dist/src/ui/components/StatsEfficiencyTab.d.ts +11 -0
- package/dist/src/ui/components/StatsEfficiencyTab.js +99 -0
- package/dist/src/ui/components/StatsEfficiencyTab.js.map +1 -0
- package/dist/src/ui/components/StatsHeatmapView.d.ts +12 -0
- package/dist/src/ui/components/StatsHeatmapView.js +40 -0
- package/dist/src/ui/components/StatsHeatmapView.js.map +1 -0
- package/dist/src/ui/components/StatsSessionTab.d.ts +7 -0
- package/dist/src/ui/components/StatsSessionTab.js +40 -0
- package/dist/src/ui/components/StatsSessionTab.js.map +1 -0
- package/dist/src/ui/components/StatusLineDialog.d.ts +22 -0
- package/dist/src/ui/components/StatusLineDialog.js +140 -0
- package/dist/src/ui/components/StatusLineDialog.js.map +1 -0
- package/dist/src/ui/components/StatusLineDialog.test.d.ts +6 -0
- package/dist/src/ui/components/StatusLineDialog.test.js +180 -0
- package/dist/src/ui/components/StatusLineDialog.test.js.map +1 -0
- package/dist/src/ui/components/StickyTodoList.d.ts +14 -0
- package/dist/src/ui/components/StickyTodoList.js +45 -0
- package/dist/src/ui/components/StickyTodoList.js.map +1 -0
- package/dist/src/ui/components/StickyTodoList.test.d.ts +6 -0
- package/dist/src/ui/components/StickyTodoList.test.js +128 -0
- package/dist/src/ui/components/StickyTodoList.test.js.map +1 -0
- package/dist/src/ui/components/SuggestionsDisplay.d.ts +47 -0
- package/dist/src/ui/components/SuggestionsDisplay.js +43 -0
- package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -0
- package/dist/src/ui/components/SuggestionsDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/SuggestionsDisplay.test.js +39 -0
- package/dist/src/ui/components/SuggestionsDisplay.test.js.map +1 -0
- package/dist/src/ui/components/ThemeDialog.d.ts +20 -0
- package/dist/src/ui/components/ThemeDialog.js +137 -0
- package/dist/src/ui/components/ThemeDialog.js.map +1 -0
- package/dist/src/ui/components/ThemeDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ThemeDialog.test.js +75 -0
- package/dist/src/ui/components/ThemeDialog.test.js.map +1 -0
- package/dist/src/ui/components/ThinkingDots.d.ts +11 -0
- package/dist/src/ui/components/ThinkingDots.js +47 -0
- package/dist/src/ui/components/ThinkingDots.js.map +1 -0
- package/dist/src/ui/components/ThinkingIndicator.d.ts +7 -0
- package/dist/src/ui/components/ThinkingIndicator.js +13 -0
- package/dist/src/ui/components/ThinkingIndicator.js.map +1 -0
- package/dist/src/ui/components/Tips.d.ts +6 -0
- package/dist/src/ui/components/Tips.js +37 -0
- package/dist/src/ui/components/Tips.js.map +1 -0
- package/dist/src/ui/components/Tips.test.d.ts +6 -0
- package/dist/src/ui/components/Tips.test.js +145 -0
- package/dist/src/ui/components/Tips.test.js.map +1 -0
- package/dist/src/ui/components/TodoDisplay.d.ts +16 -0
- package/dist/src/ui/components/TodoDisplay.js +27 -0
- package/dist/src/ui/components/TodoDisplay.js.map +1 -0
- package/dist/src/ui/components/TodoDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/TodoDisplay.test.js +77 -0
- package/dist/src/ui/components/TodoDisplay.test.js.map +1 -0
- package/dist/src/ui/components/ToolStatsDisplay.d.ts +11 -0
- package/dist/src/ui/components/ToolStatsDisplay.js +42 -0
- package/dist/src/ui/components/ToolStatsDisplay.js.map +1 -0
- package/dist/src/ui/components/TrustDialog.d.ts +13 -0
- package/dist/src/ui/components/TrustDialog.js +48 -0
- package/dist/src/ui/components/TrustDialog.js.map +1 -0
- package/dist/src/ui/components/TrustDialog.test.d.ts +6 -0
- package/dist/src/ui/components/TrustDialog.test.js +154 -0
- package/dist/src/ui/components/TrustDialog.test.js.map +1 -0
- package/dist/src/ui/components/UpdateNotification.d.ts +10 -0
- package/dist/src/ui/components/UpdateNotification.js +10 -0
- package/dist/src/ui/components/UpdateNotification.js.map +1 -0
- package/dist/src/ui/components/WelcomeBackDialog.d.ts +13 -0
- package/dist/src/ui/components/WelcomeBackDialog.js +43 -0
- package/dist/src/ui/components/WelcomeBackDialog.js.map +1 -0
- package/dist/src/ui/components/WorktreeExitDialog.d.ts +26 -0
- package/dist/src/ui/components/WorktreeExitDialog.js +134 -0
- package/dist/src/ui/components/WorktreeExitDialog.js.map +1 -0
- package/dist/src/ui/components/WorktreeExitDialog.test.d.ts +6 -0
- package/dist/src/ui/components/WorktreeExitDialog.test.js +41 -0
- package/dist/src/ui/components/WorktreeExitDialog.test.js.map +1 -0
- package/dist/src/ui/components/agent-view/AgentChatContent.d.ts +27 -0
- package/dist/src/ui/components/agent-view/AgentChatContent.js +150 -0
- package/dist/src/ui/components/agent-view/AgentChatContent.js.map +1 -0
- package/dist/src/ui/components/agent-view/AgentChatView.d.ts +10 -0
- package/dist/src/ui/components/agent-view/AgentChatView.js +24 -0
- package/dist/src/ui/components/agent-view/AgentChatView.js.map +1 -0
- package/dist/src/ui/components/agent-view/AgentComposer.d.ts +10 -0
- package/dist/src/ui/components/agent-view/AgentComposer.js +183 -0
- package/dist/src/ui/components/agent-view/AgentComposer.js.map +1 -0
- package/dist/src/ui/components/agent-view/AgentFooter.d.ts +20 -0
- package/dist/src/ui/components/agent-view/AgentFooter.js +15 -0
- package/dist/src/ui/components/agent-view/AgentFooter.js.map +1 -0
- package/dist/src/ui/components/agent-view/AgentHeader.d.ts +19 -0
- package/dist/src/ui/components/agent-view/AgentHeader.js +13 -0
- package/dist/src/ui/components/agent-view/AgentHeader.js.map +1 -0
- package/dist/src/ui/components/agent-view/AgentTabBar.d.ts +6 -0
- package/dist/src/ui/components/agent-view/AgentTabBar.js +110 -0
- package/dist/src/ui/components/agent-view/AgentTabBar.js.map +1 -0
- package/dist/src/ui/components/agent-view/AgentTabBar.test.d.ts +6 -0
- package/dist/src/ui/components/agent-view/AgentTabBar.test.js +90 -0
- package/dist/src/ui/components/agent-view/AgentTabBar.test.js.map +1 -0
- package/dist/src/ui/components/agent-view/agentHistoryAdapter.d.ts +31 -0
- package/dist/src/ui/components/agent-view/agentHistoryAdapter.js +148 -0
- package/dist/src/ui/components/agent-view/agentHistoryAdapter.js.map +1 -0
- package/dist/src/ui/components/agent-view/agentHistoryAdapter.test.d.ts +6 -0
- package/dist/src/ui/components/agent-view/agentHistoryAdapter.test.js +318 -0
- package/dist/src/ui/components/agent-view/agentHistoryAdapter.test.js.map +1 -0
- package/dist/src/ui/components/agent-view/index.d.ts +11 -0
- package/dist/src/ui/components/agent-view/index.js +12 -0
- package/dist/src/ui/components/agent-view/index.js.map +1 -0
- package/dist/src/ui/components/approvalModeVisuals.d.ts +11 -0
- package/dist/src/ui/components/approvalModeVisuals.js +37 -0
- package/dist/src/ui/components/approvalModeVisuals.js.map +1 -0
- package/dist/src/ui/components/approvalModeVisuals.test.d.ts +6 -0
- package/dist/src/ui/components/approvalModeVisuals.test.js +32 -0
- package/dist/src/ui/components/approvalModeVisuals.test.js.map +1 -0
- package/dist/src/ui/components/arena/ArenaCards.d.ts +21 -0
- package/dist/src/ui/components/arena/ArenaCards.js +99 -0
- package/dist/src/ui/components/arena/ArenaCards.js.map +1 -0
- package/dist/src/ui/components/arena/ArenaCards.test.d.ts +6 -0
- package/dist/src/ui/components/arena/ArenaCards.test.js +128 -0
- package/dist/src/ui/components/arena/ArenaCards.test.js.map +1 -0
- package/dist/src/ui/components/arena/ArenaSelectDialog.d.ts +16 -0
- package/dist/src/ui/components/arena/ArenaSelectDialog.js +213 -0
- package/dist/src/ui/components/arena/ArenaSelectDialog.js.map +1 -0
- package/dist/src/ui/components/arena/ArenaSelectDialog.test.d.ts +6 -0
- package/dist/src/ui/components/arena/ArenaSelectDialog.test.js +149 -0
- package/dist/src/ui/components/arena/ArenaSelectDialog.test.js.map +1 -0
- package/dist/src/ui/components/arena/ArenaStartDialog.d.ts +12 -0
- package/dist/src/ui/components/arena/ArenaStartDialog.js +49 -0
- package/dist/src/ui/components/arena/ArenaStartDialog.js.map +1 -0
- package/dist/src/ui/components/arena/ArenaStatusDialog.d.ts +14 -0
- package/dist/src/ui/components/arena/ArenaStatusDialog.js +111 -0
- package/dist/src/ui/components/arena/ArenaStatusDialog.js.map +1 -0
- package/dist/src/ui/components/arena/ArenaStopDialog.d.ts +15 -0
- package/dist/src/ui/components/arena/ArenaStopDialog.js +113 -0
- package/dist/src/ui/components/arena/ArenaStopDialog.js.map +1 -0
- package/dist/src/ui/components/background-view/BackgroundTasksDialog.d.ts +17 -0
- package/dist/src/ui/components/background-view/BackgroundTasksDialog.js +614 -0
- package/dist/src/ui/components/background-view/BackgroundTasksDialog.js.map +1 -0
- package/dist/src/ui/components/background-view/BackgroundTasksDialog.test.d.ts +6 -0
- package/dist/src/ui/components/background-view/BackgroundTasksDialog.test.js +606 -0
- package/dist/src/ui/components/background-view/BackgroundTasksDialog.test.js.map +1 -0
- package/dist/src/ui/components/background-view/BackgroundTasksPill.d.ts +14 -0
- package/dist/src/ui/components/background-view/BackgroundTasksPill.js +94 -0
- package/dist/src/ui/components/background-view/BackgroundTasksPill.js.map +1 -0
- package/dist/src/ui/components/background-view/BackgroundTasksPill.test.d.ts +6 -0
- package/dist/src/ui/components/background-view/BackgroundTasksPill.test.js +158 -0
- package/dist/src/ui/components/background-view/BackgroundTasksPill.test.js.map +1 -0
- package/dist/src/ui/components/background-view/LiveAgentPanel.d.ts +43 -0
- package/dist/src/ui/components/background-view/LiveAgentPanel.js +361 -0
- package/dist/src/ui/components/background-view/LiveAgentPanel.js.map +1 -0
- package/dist/src/ui/components/background-view/LiveAgentPanel.test.d.ts +6 -0
- package/dist/src/ui/components/background-view/LiveAgentPanel.test.js +595 -0
- package/dist/src/ui/components/background-view/LiveAgentPanel.test.js.map +1 -0
- package/dist/src/ui/components/extensions/ExtensionsManagerDialog.d.ts +12 -0
- package/dist/src/ui/components/extensions/ExtensionsManagerDialog.js +337 -0
- package/dist/src/ui/components/extensions/ExtensionsManagerDialog.js.map +1 -0
- package/dist/src/ui/components/extensions/ExtensionsManagerDialog.test.d.ts +6 -0
- package/dist/src/ui/components/extensions/ExtensionsManagerDialog.test.js +90 -0
- package/dist/src/ui/components/extensions/ExtensionsManagerDialog.test.js.map +1 -0
- package/dist/src/ui/components/extensions/index.d.ts +8 -0
- package/dist/src/ui/components/extensions/index.js +8 -0
- package/dist/src/ui/components/extensions/index.js.map +1 -0
- package/dist/src/ui/components/extensions/steps/ActionSelectionStep.d.ts +15 -0
- package/dist/src/ui/components/extensions/steps/ActionSelectionStep.js +75 -0
- package/dist/src/ui/components/extensions/steps/ActionSelectionStep.js.map +1 -0
- package/dist/src/ui/components/extensions/steps/ActionSelectionStep.test.d.ts +6 -0
- package/dist/src/ui/components/extensions/steps/ActionSelectionStep.test.js +56 -0
- package/dist/src/ui/components/extensions/steps/ActionSelectionStep.test.js.map +1 -0
- package/dist/src/ui/components/extensions/steps/ExtensionDetailStep.d.ts +11 -0
- package/dist/src/ui/components/extensions/steps/ExtensionDetailStep.js +23 -0
- package/dist/src/ui/components/extensions/steps/ExtensionDetailStep.js.map +1 -0
- package/dist/src/ui/components/extensions/steps/ExtensionListStep.d.ts +13 -0
- package/dist/src/ui/components/extensions/steps/ExtensionListStep.js +105 -0
- package/dist/src/ui/components/extensions/steps/ExtensionListStep.js.map +1 -0
- package/dist/src/ui/components/extensions/steps/ExtensionListStep.test.d.ts +6 -0
- package/dist/src/ui/components/extensions/steps/ExtensionListStep.test.js +74 -0
- package/dist/src/ui/components/extensions/steps/ExtensionListStep.test.js.map +1 -0
- package/dist/src/ui/components/extensions/steps/ScopeSelectStep.d.ts +13 -0
- package/dist/src/ui/components/extensions/steps/ScopeSelectStep.js +40 -0
- package/dist/src/ui/components/extensions/steps/ScopeSelectStep.js.map +1 -0
- package/dist/src/ui/components/extensions/steps/UninstallConfirmStep.d.ts +13 -0
- package/dist/src/ui/components/extensions/steps/UninstallConfirmStep.js +38 -0
- package/dist/src/ui/components/extensions/steps/UninstallConfirmStep.js.map +1 -0
- package/dist/src/ui/components/extensions/steps/index.d.ts +10 -0
- package/dist/src/ui/components/extensions/steps/index.js +11 -0
- package/dist/src/ui/components/extensions/steps/index.js.map +1 -0
- package/dist/src/ui/components/extensions/types.d.ts +73 -0
- package/dist/src/ui/components/extensions/types.js +18 -0
- package/dist/src/ui/components/extensions/types.js.map +1 -0
- package/dist/src/ui/components/hooks/HandlerListBody.d.ts +12 -0
- package/dist/src/ui/components/hooks/HandlerListBody.js +54 -0
- package/dist/src/ui/components/hooks/HandlerListBody.js.map +1 -0
- package/dist/src/ui/components/hooks/HandlerListBody.test.d.ts +6 -0
- package/dist/src/ui/components/hooks/HandlerListBody.test.js +175 -0
- package/dist/src/ui/components/hooks/HandlerListBody.test.js.map +1 -0
- package/dist/src/ui/components/hooks/HookConfigDetailStep.d.ts +12 -0
- package/dist/src/ui/components/hooks/HookConfigDetailStep.js +48 -0
- package/dist/src/ui/components/hooks/HookConfigDetailStep.js.map +1 -0
- package/dist/src/ui/components/hooks/HookConfigDetailStep.test.d.ts +6 -0
- package/dist/src/ui/components/hooks/HookConfigDetailStep.test.js +236 -0
- package/dist/src/ui/components/hooks/HookConfigDetailStep.test.js.map +1 -0
- package/dist/src/ui/components/hooks/HookDetailStep.d.ts +12 -0
- package/dist/src/ui/components/hooks/HookDetailStep.js +11 -0
- package/dist/src/ui/components/hooks/HookDetailStep.js.map +1 -0
- package/dist/src/ui/components/hooks/HookDetailStep.test.d.ts +6 -0
- package/dist/src/ui/components/hooks/HookDetailStep.test.js +241 -0
- package/dist/src/ui/components/hooks/HookDetailStep.test.js.map +1 -0
- package/dist/src/ui/components/hooks/HookEventHandlerListStep.d.ts +12 -0
- package/dist/src/ui/components/hooks/HookEventHandlerListStep.js +18 -0
- package/dist/src/ui/components/hooks/HookEventHandlerListStep.js.map +1 -0
- package/dist/src/ui/components/hooks/HookEventHeader.d.ts +13 -0
- package/dist/src/ui/components/hooks/HookEventHeader.js +23 -0
- package/dist/src/ui/components/hooks/HookEventHeader.js.map +1 -0
- package/dist/src/ui/components/hooks/HookEventMatcherListStep.d.ts +12 -0
- package/dist/src/ui/components/hooks/HookEventMatcherListStep.js +28 -0
- package/dist/src/ui/components/hooks/HookEventMatcherListStep.js.map +1 -0
- package/dist/src/ui/components/hooks/HookMatcherDetailStep.d.ts +13 -0
- package/dist/src/ui/components/hooks/HookMatcherDetailStep.js +16 -0
- package/dist/src/ui/components/hooks/HookMatcherDetailStep.js.map +1 -0
- package/dist/src/ui/components/hooks/HookMatcherDetailStep.test.d.ts +6 -0
- package/dist/src/ui/components/hooks/HookMatcherDetailStep.test.js +154 -0
- package/dist/src/ui/components/hooks/HookMatcherDetailStep.test.js.map +1 -0
- package/dist/src/ui/components/hooks/HooksDisabledStep.d.ts +10 -0
- package/dist/src/ui/components/hooks/HooksDisabledStep.js +23 -0
- package/dist/src/ui/components/hooks/HooksDisabledStep.js.map +1 -0
- package/dist/src/ui/components/hooks/HooksDisabledStep.test.d.ts +6 -0
- package/dist/src/ui/components/hooks/HooksDisabledStep.test.js +86 -0
- package/dist/src/ui/components/hooks/HooksDisabledStep.test.js.map +1 -0
- package/dist/src/ui/components/hooks/HooksListStep.d.ts +12 -0
- package/dist/src/ui/components/hooks/HooksListStep.js +32 -0
- package/dist/src/ui/components/hooks/HooksListStep.js.map +1 -0
- package/dist/src/ui/components/hooks/HooksListStep.test.d.ts +6 -0
- package/dist/src/ui/components/hooks/HooksListStep.test.js +144 -0
- package/dist/src/ui/components/hooks/HooksListStep.test.js.map +1 -0
- package/dist/src/ui/components/hooks/HooksManagementDialog.d.ts +7 -0
- package/dist/src/ui/components/hooks/HooksManagementDialog.js +418 -0
- package/dist/src/ui/components/hooks/HooksManagementDialog.js.map +1 -0
- package/dist/src/ui/components/hooks/HooksManagementDialog.test.d.ts +6 -0
- package/dist/src/ui/components/hooks/HooksManagementDialog.test.js +305 -0
- package/dist/src/ui/components/hooks/HooksManagementDialog.test.js.map +1 -0
- package/dist/src/ui/components/hooks/constants.d.ts +26 -0
- package/dist/src/ui/components/hooks/constants.js +227 -0
- package/dist/src/ui/components/hooks/constants.js.map +1 -0
- package/dist/src/ui/components/hooks/constants.test.d.ts +6 -0
- package/dist/src/ui/components/hooks/constants.test.js +317 -0
- package/dist/src/ui/components/hooks/constants.test.js.map +1 -0
- package/dist/src/ui/components/hooks/index.d.ts +12 -0
- package/dist/src/ui/components/hooks/index.js +13 -0
- package/dist/src/ui/components/hooks/index.js.map +1 -0
- package/dist/src/ui/components/hooks/matcherGrouping.d.ts +9 -0
- package/dist/src/ui/components/hooks/matcherGrouping.js +35 -0
- package/dist/src/ui/components/hooks/matcherGrouping.js.map +1 -0
- package/dist/src/ui/components/hooks/matcherGrouping.test.d.ts +6 -0
- package/dist/src/ui/components/hooks/matcherGrouping.test.js +183 -0
- package/dist/src/ui/components/hooks/matcherGrouping.test.js.map +1 -0
- package/dist/src/ui/components/hooks/sourceLabels.d.ts +13 -0
- package/dist/src/ui/components/hooks/sourceLabels.js +35 -0
- package/dist/src/ui/components/hooks/sourceLabels.js.map +1 -0
- package/dist/src/ui/components/hooks/sourceLabels.test.d.ts +6 -0
- package/dist/src/ui/components/hooks/sourceLabels.test.js +81 -0
- package/dist/src/ui/components/hooks/sourceLabels.test.js.map +1 -0
- package/dist/src/ui/components/hooks/types.d.ts +42 -0
- package/dist/src/ui/components/hooks/types.js +13 -0
- package/dist/src/ui/components/hooks/types.js.map +1 -0
- package/dist/src/ui/components/mcp/MCPHealthPill.d.ts +24 -0
- package/dist/src/ui/components/mcp/MCPHealthPill.js +33 -0
- package/dist/src/ui/components/mcp/MCPHealthPill.js.map +1 -0
- package/dist/src/ui/components/mcp/MCPHealthPill.test.d.ts +6 -0
- package/dist/src/ui/components/mcp/MCPHealthPill.test.js +42 -0
- package/dist/src/ui/components/mcp/MCPHealthPill.test.js.map +1 -0
- package/dist/src/ui/components/mcp/MCPManagementDialog.d.ts +7 -0
- package/dist/src/ui/components/mcp/MCPManagementDialog.js +472 -0
- package/dist/src/ui/components/mcp/MCPManagementDialog.js.map +1 -0
- package/dist/src/ui/components/mcp/constants.d.ts +29 -0
- package/dist/src/ui/components/mcp/constants.js +34 -0
- package/dist/src/ui/components/mcp/constants.js.map +1 -0
- package/dist/src/ui/components/mcp/index.d.ts +12 -0
- package/dist/src/ui/components/mcp/index.js +15 -0
- package/dist/src/ui/components/mcp/index.js.map +1 -0
- package/dist/src/ui/components/mcp/steps/AuthenticateStep.d.ts +7 -0
- package/dist/src/ui/components/mcp/steps/AuthenticateStep.js +187 -0
- package/dist/src/ui/components/mcp/steps/AuthenticateStep.js.map +1 -0
- package/dist/src/ui/components/mcp/steps/DisableScopeSelectStep.d.ts +7 -0
- package/dist/src/ui/components/mcp/steps/DisableScopeSelectStep.js +44 -0
- package/dist/src/ui/components/mcp/steps/DisableScopeSelectStep.js.map +1 -0
- package/dist/src/ui/components/mcp/steps/ServerDetailStep.d.ts +7 -0
- package/dist/src/ui/components/mcp/steps/ServerDetailStep.js +108 -0
- package/dist/src/ui/components/mcp/steps/ServerDetailStep.js.map +1 -0
- package/dist/src/ui/components/mcp/steps/ServerListStep.d.ts +7 -0
- package/dist/src/ui/components/mcp/steps/ServerListStep.js +74 -0
- package/dist/src/ui/components/mcp/steps/ServerListStep.js.map +1 -0
- package/dist/src/ui/components/mcp/steps/ServerListStep.test.d.ts +6 -0
- package/dist/src/ui/components/mcp/steps/ServerListStep.test.js +60 -0
- package/dist/src/ui/components/mcp/steps/ServerListStep.test.js.map +1 -0
- package/dist/src/ui/components/mcp/steps/ToolDetailStep.d.ts +7 -0
- package/dist/src/ui/components/mcp/steps/ToolDetailStep.js +49 -0
- package/dist/src/ui/components/mcp/steps/ToolDetailStep.js.map +1 -0
- package/dist/src/ui/components/mcp/steps/ToolListStep.d.ts +7 -0
- package/dist/src/ui/components/mcp/steps/ToolListStep.js +80 -0
- package/dist/src/ui/components/mcp/steps/ToolListStep.js.map +1 -0
- package/dist/src/ui/components/mcp/steps/ToolListStep.test.d.ts +6 -0
- package/dist/src/ui/components/mcp/steps/ToolListStep.test.js +55 -0
- package/dist/src/ui/components/mcp/steps/ToolListStep.test.js.map +1 -0
- package/dist/src/ui/components/mcp/types.d.ts +177 -0
- package/dist/src/ui/components/mcp/types.js +17 -0
- package/dist/src/ui/components/mcp/types.js.map +1 -0
- package/dist/src/ui/components/mcp/utils.d.ts +40 -0
- package/dist/src/ui/components/mcp/utils.js +126 -0
- package/dist/src/ui/components/mcp/utils.js.map +1 -0
- package/dist/src/ui/components/mcp/utils.test.d.ts +6 -0
- package/dist/src/ui/components/mcp/utils.test.js +130 -0
- package/dist/src/ui/components/mcp/utils.test.js.map +1 -0
- package/dist/src/ui/components/messages/AskUserQuestionDialog.d.ts +14 -0
- package/dist/src/ui/components/messages/AskUserQuestionDialog.js +291 -0
- package/dist/src/ui/components/messages/AskUserQuestionDialog.js.map +1 -0
- package/dist/src/ui/components/messages/AskUserQuestionDialog.test.d.ts +6 -0
- package/dist/src/ui/components/messages/AskUserQuestionDialog.test.js +281 -0
- package/dist/src/ui/components/messages/AskUserQuestionDialog.test.js.map +1 -0
- package/dist/src/ui/components/messages/BtwMessage.d.ts +14 -0
- package/dist/src/ui/components/messages/BtwMessage.js +30 -0
- package/dist/src/ui/components/messages/BtwMessage.js.map +1 -0
- package/dist/src/ui/components/messages/BtwMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/BtwMessage.test.js +60 -0
- package/dist/src/ui/components/messages/BtwMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/CompactToolGroupDisplay.d.ts +20 -0
- package/dist/src/ui/components/messages/CompactToolGroupDisplay.js +80 -0
- package/dist/src/ui/components/messages/CompactToolGroupDisplay.js.map +1 -0
- package/dist/src/ui/components/messages/CompactToolGroupDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/messages/CompactToolGroupDisplay.test.js +139 -0
- package/dist/src/ui/components/messages/CompactToolGroupDisplay.test.js.map +1 -0
- package/dist/src/ui/components/messages/CompressionMessage.d.ts +10 -0
- package/dist/src/ui/components/messages/CompressionMessage.js +50 -0
- package/dist/src/ui/components/messages/CompressionMessage.js.map +1 -0
- package/dist/src/ui/components/messages/CompressionMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/CompressionMessage.test.js +160 -0
- package/dist/src/ui/components/messages/CompressionMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ConversationMessages.d.ts +46 -0
- package/dist/src/ui/components/messages/ConversationMessages.js +32 -0
- package/dist/src/ui/components/messages/ConversationMessages.js.map +1 -0
- package/dist/src/ui/components/messages/DiffRenderer.d.ts +19 -0
- package/dist/src/ui/components/messages/DiffRenderer.js +219 -0
- package/dist/src/ui/components/messages/DiffRenderer.js.map +1 -0
- package/dist/src/ui/components/messages/DiffRenderer.test.d.ts +6 -0
- package/dist/src/ui/components/messages/DiffRenderer.test.js +296 -0
- package/dist/src/ui/components/messages/DiffRenderer.test.js.map +1 -0
- package/dist/src/ui/components/messages/DiffStatsDisplay.d.ts +18 -0
- package/dist/src/ui/components/messages/DiffStatsDisplay.js +50 -0
- package/dist/src/ui/components/messages/DiffStatsDisplay.js.map +1 -0
- package/dist/src/ui/components/messages/DiffStatsDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/messages/DiffStatsDisplay.test.js +165 -0
- package/dist/src/ui/components/messages/DiffStatsDisplay.test.js.map +1 -0
- package/dist/src/ui/components/messages/GoalStatusMessage.d.ts +16 -0
- package/dist/src/ui/components/messages/GoalStatusMessage.js +76 -0
- package/dist/src/ui/components/messages/GoalStatusMessage.js.map +1 -0
- package/dist/src/ui/components/messages/GoalStatusMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/GoalStatusMessage.test.js +32 -0
- package/dist/src/ui/components/messages/GoalStatusMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.d.ts +33 -0
- package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.js +196 -0
- package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.js.map +1 -0
- package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.test.js +219 -0
- package/dist/src/ui/components/messages/InlineParallelAgentsDisplay.test.js.map +1 -0
- package/dist/src/ui/components/messages/InsightProgressMessage.d.ts +12 -0
- package/dist/src/ui/components/messages/InsightProgressMessage.js +20 -0
- package/dist/src/ui/components/messages/InsightProgressMessage.js.map +1 -0
- package/dist/src/ui/components/messages/MemorySavedMessage.d.ts +18 -0
- package/dist/src/ui/components/messages/MemorySavedMessage.js +15 -0
- package/dist/src/ui/components/messages/MemorySavedMessage.js.map +1 -0
- package/dist/src/ui/components/messages/StatusMessages.d.ts +33 -0
- package/dist/src/ui/components/messages/StatusMessages.js +28 -0
- package/dist/src/ui/components/messages/StatusMessages.js.map +1 -0
- package/dist/src/ui/components/messages/StatusMessages.test.d.ts +6 -0
- package/dist/src/ui/components/messages/StatusMessages.test.js +21 -0
- package/dist/src/ui/components/messages/StatusMessages.test.js.map +1 -0
- package/dist/src/ui/components/messages/SummaryMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/SummaryMessage.js +38 -0
- package/dist/src/ui/components/messages/SummaryMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.d.ts +16 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js +352 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js +312 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.d.ts +58 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.js +278 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js +619 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolMessage.d.ts +39 -0
- package/dist/src/ui/components/messages/ToolMessage.js +400 -0
- package/dist/src/ui/components/messages/ToolMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolMessage.test.js +575 -0
- package/dist/src/ui/components/messages/ToolMessage.test.js.map +1 -0
- package/dist/src/ui/components/shared/BaseSelectionList.d.ts +40 -0
- package/dist/src/ui/components/shared/BaseSelectionList.js +75 -0
- package/dist/src/ui/components/shared/BaseSelectionList.js.map +1 -0
- package/dist/src/ui/components/shared/BaseSelectionList.test.d.ts +6 -0
- package/dist/src/ui/components/shared/BaseSelectionList.test.js +376 -0
- package/dist/src/ui/components/shared/BaseSelectionList.test.js.map +1 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.d.ts +37 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js +13 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js.map +1 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.d.ts +6 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.js +79 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.js.map +1 -0
- package/dist/src/ui/components/shared/EnumSelector.d.ts +18 -0
- package/dist/src/ui/components/shared/EnumSelector.js +44 -0
- package/dist/src/ui/components/shared/EnumSelector.js.map +1 -0
- package/dist/src/ui/components/shared/EnumSelector.test.d.ts +6 -0
- package/dist/src/ui/components/shared/EnumSelector.test.js +70 -0
- package/dist/src/ui/components/shared/EnumSelector.test.js.map +1 -0
- package/dist/src/ui/components/shared/MaxSizedBox.d.ts +61 -0
- package/dist/src/ui/components/shared/MaxSizedBox.js +453 -0
- package/dist/src/ui/components/shared/MaxSizedBox.js.map +1 -0
- package/dist/src/ui/components/shared/MaxSizedBox.test.d.ts +6 -0
- package/dist/src/ui/components/shared/MaxSizedBox.test.js +154 -0
- package/dist/src/ui/components/shared/MaxSizedBox.test.js.map +1 -0
- package/dist/src/ui/components/shared/MultiSelect.d.ts +30 -0
- package/dist/src/ui/components/shared/MultiSelect.js +94 -0
- package/dist/src/ui/components/shared/MultiSelect.js.map +1 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +45 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.js +21 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.js.map +1 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.test.d.ts +6 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.test.js +134 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.test.js.map +1 -0
- package/dist/src/ui/components/shared/ScopeSelector.d.ts +19 -0
- package/dist/src/ui/components/shared/ScopeSelector.js +16 -0
- package/dist/src/ui/components/shared/ScopeSelector.js.map +1 -0
- package/dist/src/ui/components/shared/ScrollableList.d.ts +19 -0
- package/dist/src/ui/components/shared/ScrollableList.js +97 -0
- package/dist/src/ui/components/shared/ScrollableList.js.map +1 -0
- package/dist/src/ui/components/shared/ScrollableList.test.d.ts +6 -0
- package/dist/src/ui/components/shared/ScrollableList.test.js +158 -0
- package/dist/src/ui/components/shared/ScrollableList.test.js.map +1 -0
- package/dist/src/ui/components/shared/StaticRender.d.ts +25 -0
- package/dist/src/ui/components/shared/StaticRender.js +25 -0
- package/dist/src/ui/components/shared/StaticRender.js.map +1 -0
- package/dist/src/ui/components/shared/TextInput.d.ts +25 -0
- package/dist/src/ui/components/shared/TextInput.js +163 -0
- package/dist/src/ui/components/shared/TextInput.js.map +1 -0
- package/dist/src/ui/components/shared/TextInput.test.d.ts +6 -0
- package/dist/src/ui/components/shared/TextInput.test.js +91 -0
- package/dist/src/ui/components/shared/TextInput.test.js.map +1 -0
- package/dist/src/ui/components/shared/ToolElapsedTime.d.ts +30 -0
- package/dist/src/ui/components/shared/ToolElapsedTime.js +43 -0
- package/dist/src/ui/components/shared/ToolElapsedTime.js.map +1 -0
- package/dist/src/ui/components/shared/ToolElapsedTime.test.d.ts +6 -0
- package/dist/src/ui/components/shared/ToolElapsedTime.test.js +63 -0
- package/dist/src/ui/components/shared/ToolElapsedTime.test.js.map +1 -0
- package/dist/src/ui/components/shared/ToolStatusIndicator.d.ts +14 -0
- package/dist/src/ui/components/shared/ToolStatusIndicator.js +13 -0
- package/dist/src/ui/components/shared/ToolStatusIndicator.js.map +1 -0
- package/dist/src/ui/components/shared/VirtualizedList.d.ts +49 -0
- package/dist/src/ui/components/shared/VirtualizedList.js +529 -0
- package/dist/src/ui/components/shared/VirtualizedList.js.map +1 -0
- package/dist/src/ui/components/shared/VirtualizedList.test.d.ts +6 -0
- package/dist/src/ui/components/shared/VirtualizedList.test.js +371 -0
- package/dist/src/ui/components/shared/VirtualizedList.test.js.map +1 -0
- package/dist/src/ui/components/shared/text-buffer-external-editor.test.d.ts +6 -0
- package/dist/src/ui/components/shared/text-buffer-external-editor.test.js +657 -0
- package/dist/src/ui/components/shared/text-buffer-external-editor.test.js.map +1 -0
- package/dist/src/ui/components/shared/text-buffer.d.ts +503 -0
- package/dist/src/ui/components/shared/text-buffer.js +2181 -0
- package/dist/src/ui/components/shared/text-buffer.js.map +1 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.d.ts +74 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.js +612 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.js.map +1 -0
- package/dist/src/ui/components/skills/SkillsManagerDialog.d.ts +44 -0
- package/dist/src/ui/components/skills/SkillsManagerDialog.js +423 -0
- package/dist/src/ui/components/skills/SkillsManagerDialog.js.map +1 -0
- package/dist/src/ui/components/stats-helpers.d.ts +30 -0
- package/dist/src/ui/components/stats-helpers.js +79 -0
- package/dist/src/ui/components/stats-helpers.js.map +1 -0
- package/dist/src/ui/components/subagents/constants.d.ts +23 -0
- package/dist/src/ui/components/subagents/constants.js +67 -0
- package/dist/src/ui/components/subagents/constants.js.map +1 -0
- package/dist/src/ui/components/subagents/create/AgentCreationWizard.d.ts +15 -0
- package/dist/src/ui/components/subagents/create/AgentCreationWizard.js +173 -0
- package/dist/src/ui/components/subagents/create/AgentCreationWizard.js.map +1 -0
- package/dist/src/ui/components/subagents/create/ColorSelector.d.ts +15 -0
- package/dist/src/ui/components/subagents/create/ColorSelector.js +43 -0
- package/dist/src/ui/components/subagents/create/ColorSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/create/CreationSummary.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/CreationSummary.js +176 -0
- package/dist/src/ui/components/subagents/create/CreationSummary.js.map +1 -0
- package/dist/src/ui/components/subagents/create/DescriptionInput.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/DescriptionInput.js +107 -0
- package/dist/src/ui/components/subagents/create/DescriptionInput.js.map +1 -0
- package/dist/src/ui/components/subagents/create/GenerationMethodSelector.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/GenerationMethodSelector.js +39 -0
- package/dist/src/ui/components/subagents/create/GenerationMethodSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/create/LocationSelector.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/LocationSelector.js +39 -0
- package/dist/src/ui/components/subagents/create/LocationSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/create/TextEntryStep.d.ts +26 -0
- package/dist/src/ui/components/subagents/create/TextEntryStep.js +28 -0
- package/dist/src/ui/components/subagents/create/TextEntryStep.js.map +1 -0
- package/dist/src/ui/components/subagents/create/ToolSelector.d.ts +16 -0
- package/dist/src/ui/components/subagents/create/ToolSelector.js +145 -0
- package/dist/src/ui/components/subagents/create/ToolSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/index.d.ts +7 -0
- package/dist/src/ui/components/subagents/index.js +13 -0
- package/dist/src/ui/components/subagents/index.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/ActionSelectionStep.d.ts +13 -0
- package/dist/src/ui/components/subagents/manage/ActionSelectionStep.js +73 -0
- package/dist/src/ui/components/subagents/manage/ActionSelectionStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentDeleteStep.d.ts +13 -0
- package/dist/src/ui/components/subagents/manage/AgentDeleteStep.js +38 -0
- package/dist/src/ui/components/subagents/manage/AgentDeleteStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentEditStep.d.ts +15 -0
- package/dist/src/ui/components/subagents/manage/AgentEditStep.js +76 -0
- package/dist/src/ui/components/subagents/manage/AgentEditStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.d.ts +12 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js +342 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.test.d.ts +6 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.test.js +56 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.test.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentViewerStep.d.ts +11 -0
- package/dist/src/ui/components/subagents/manage/AgentViewerStep.js +20 -0
- package/dist/src/ui/components/subagents/manage/AgentViewerStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.d.ts +15 -0
- package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.js +214 -0
- package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.js.map +1 -0
- package/dist/src/ui/components/subagents/reducers.d.ts +14 -0
- package/dist/src/ui/components/subagents/reducers.js +162 -0
- package/dist/src/ui/components/subagents/reducers.js.map +1 -0
- package/dist/src/ui/components/subagents/types.d.ts +137 -0
- package/dist/src/ui/components/subagents/types.js +15 -0
- package/dist/src/ui/components/subagents/types.js.map +1 -0
- package/dist/src/ui/components/subagents/utils.d.ts +15 -0
- package/dist/src/ui/components/subagents/utils.js +79 -0
- package/dist/src/ui/components/subagents/utils.js.map +1 -0
- package/dist/src/ui/components/views/ContextUsage.d.ts +23 -0
- package/dist/src/ui/components/views/ContextUsage.js +130 -0
- package/dist/src/ui/components/views/ContextUsage.js.map +1 -0
- package/dist/src/ui/components/views/ContextUsage.test.d.ts +6 -0
- package/dist/src/ui/components/views/ContextUsage.test.js +76 -0
- package/dist/src/ui/components/views/ContextUsage.test.js.map +1 -0
- package/dist/src/ui/components/views/DoctorReport.d.ts +18 -0
- package/dist/src/ui/components/views/DoctorReport.js +45 -0
- package/dist/src/ui/components/views/DoctorReport.js.map +1 -0
- package/dist/src/ui/components/views/ExtensionsList.d.ts +6 -0
- package/dist/src/ui/components/views/ExtensionsList.js +49 -0
- package/dist/src/ui/components/views/ExtensionsList.js.map +1 -0
- package/dist/src/ui/components/views/ExtensionsList.test.d.ts +6 -0
- package/dist/src/ui/components/views/ExtensionsList.test.js +88 -0
- package/dist/src/ui/components/views/ExtensionsList.test.js.map +1 -0
- package/dist/src/ui/components/views/McpStatus.d.ts +27 -0
- package/dist/src/ui/components/views/McpStatus.js +90 -0
- package/dist/src/ui/components/views/McpStatus.js.map +1 -0
- package/dist/src/ui/components/views/McpStatus.test.d.ts +6 -0
- package/dist/src/ui/components/views/McpStatus.test.js +117 -0
- package/dist/src/ui/components/views/McpStatus.test.js.map +1 -0
- package/dist/src/ui/components/views/SkillsList.d.ts +12 -0
- package/dist/src/ui/components/views/SkillsList.js +7 -0
- package/dist/src/ui/components/views/SkillsList.js.map +1 -0
- package/dist/src/ui/components/views/ToolsList.d.ts +14 -0
- package/dist/src/ui/components/views/ToolsList.js +8 -0
- package/dist/src/ui/components/views/ToolsList.js.map +1 -0
- package/dist/src/ui/components/views/ToolsList.test.d.ts +6 -0
- package/dist/src/ui/components/views/ToolsList.test.js +45 -0
- package/dist/src/ui/components/views/ToolsList.test.js.map +1 -0
- package/dist/src/ui/constants.d.ts +18 -0
- package/dist/src/ui/constants.js +23 -0
- package/dist/src/ui/constants.js.map +1 -0
- package/dist/src/ui/contexts/AgentViewContext.d.ts +49 -0
- package/dist/src/ui/contexts/AgentViewContext.js +187 -0
- package/dist/src/ui/contexts/AgentViewContext.js.map +1 -0
- package/dist/src/ui/contexts/AppContext.d.ts +11 -0
- package/dist/src/ui/contexts/AppContext.js +15 -0
- package/dist/src/ui/contexts/AppContext.js.map +1 -0
- package/dist/src/ui/contexts/BackgroundTaskViewContext.d.ts +60 -0
- package/dist/src/ui/contexts/BackgroundTaskViewContext.js +238 -0
- package/dist/src/ui/contexts/BackgroundTaskViewContext.js.map +1 -0
- package/dist/src/ui/contexts/CompactModeContext.d.ts +13 -0
- package/dist/src/ui/contexts/CompactModeContext.js +13 -0
- package/dist/src/ui/contexts/CompactModeContext.js.map +1 -0
- package/dist/src/ui/contexts/ConfigContext.d.ts +9 -0
- package/dist/src/ui/contexts/ConfigContext.js +16 -0
- package/dist/src/ui/contexts/ConfigContext.js.map +1 -0
- package/dist/src/ui/contexts/KeypressContext.d.ts +40 -0
- package/dist/src/ui/contexts/KeypressContext.js +959 -0
- package/dist/src/ui/contexts/KeypressContext.js.map +1 -0
- package/dist/src/ui/contexts/KeypressContext.test.d.ts +6 -0
- package/dist/src/ui/contexts/KeypressContext.test.js +1360 -0
- package/dist/src/ui/contexts/KeypressContext.test.js.map +1 -0
- package/dist/src/ui/contexts/OverflowContext.d.ts +19 -0
- package/dist/src/ui/contexts/OverflowContext.js +38 -0
- package/dist/src/ui/contexts/OverflowContext.js.map +1 -0
- package/dist/src/ui/contexts/RenderModeContext.d.ts +14 -0
- package/dist/src/ui/contexts/RenderModeContext.js +15 -0
- package/dist/src/ui/contexts/RenderModeContext.js.map +1 -0
- package/dist/src/ui/contexts/SessionContext.d.ts +47 -0
- package/dist/src/ui/contexts/SessionContext.js +180 -0
- package/dist/src/ui/contexts/SessionContext.js.map +1 -0
- package/dist/src/ui/contexts/SettingsContext.d.ts +9 -0
- package/dist/src/ui/contexts/SettingsContext.js +15 -0
- package/dist/src/ui/contexts/SettingsContext.js.map +1 -0
- package/dist/src/ui/contexts/ShellFocusContext.d.ts +7 -0
- package/dist/src/ui/contexts/ShellFocusContext.js +9 -0
- package/dist/src/ui/contexts/ShellFocusContext.js.map +1 -0
- package/dist/src/ui/contexts/StreamingContext.d.ts +9 -0
- package/dist/src/ui/contexts/StreamingContext.js +15 -0
- package/dist/src/ui/contexts/StreamingContext.js.map +1 -0
- package/dist/src/ui/contexts/TerminalOutputContext.d.ts +12 -0
- package/dist/src/ui/contexts/TerminalOutputContext.js +11 -0
- package/dist/src/ui/contexts/TerminalOutputContext.js.map +1 -0
- package/dist/src/ui/contexts/UIActionsContext.d.ts +91 -0
- package/dist/src/ui/contexts/UIActionsContext.js +22 -0
- package/dist/src/ui/contexts/UIActionsContext.js.map +1 -0
- package/dist/src/ui/contexts/UIStateContext.d.ts +158 -0
- package/dist/src/ui/contexts/UIStateContext.js +20 -0
- package/dist/src/ui/contexts/UIStateContext.js.map +1 -0
- package/dist/src/ui/contexts/VimModeContext.d.ts +31 -0
- package/dist/src/ui/contexts/VimModeContext.js +60 -0
- package/dist/src/ui/contexts/VimModeContext.js.map +1 -0
- package/dist/src/ui/contexts/VimModeContext.test.d.ts +11 -0
- package/dist/src/ui/contexts/VimModeContext.test.js +99 -0
- package/dist/src/ui/contexts/VimModeContext.test.js.map +1 -0
- package/dist/src/ui/daemon/DaemonTuiAdapter.d.ts +101 -0
- package/dist/src/ui/daemon/DaemonTuiAdapter.js +695 -0
- package/dist/src/ui/daemon/DaemonTuiAdapter.js.map +1 -0
- package/dist/src/ui/daemon/DaemonTuiAdapter.test.d.ts +6 -0
- package/dist/src/ui/daemon/DaemonTuiAdapter.test.js +784 -0
- package/dist/src/ui/daemon/DaemonTuiAdapter.test.js.map +1 -0
- package/dist/src/ui/editors/editorSettingsManager.d.ts +19 -0
- package/dist/src/ui/editors/editorSettingsManager.js +48 -0
- package/dist/src/ui/editors/editorSettingsManager.js.map +1 -0
- package/dist/src/ui/hooks/atCommandProcessor.d.ts +33 -0
- package/dist/src/ui/hooks/atCommandProcessor.js +344 -0
- package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -0
- package/dist/src/ui/hooks/atCommandProcessor.test.d.ts +6 -0
- package/dist/src/ui/hooks/atCommandProcessor.test.js +871 -0
- package/dist/src/ui/hooks/atCommandProcessor.test.js.map +1 -0
- package/dist/src/ui/hooks/keyToAnsi.d.ts +15 -0
- package/dist/src/ui/hooks/keyToAnsi.js +67 -0
- package/dist/src/ui/hooks/keyToAnsi.js.map +1 -0
- package/dist/src/ui/hooks/shellCommandProcessor.d.ts +18 -0
- package/dist/src/ui/hooks/shellCommandProcessor.js +287 -0
- package/dist/src/ui/hooks/shellCommandProcessor.js.map +1 -0
- package/dist/src/ui/hooks/shellCommandProcessor.test.d.ts +6 -0
- package/dist/src/ui/hooks/shellCommandProcessor.test.js +509 -0
- package/dist/src/ui/hooks/shellCommandProcessor.test.js.map +1 -0
- package/dist/src/ui/hooks/slashCommandProcessor.d.ts +71 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js +837 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -0
- package/dist/src/ui/hooks/useAgentStreamingState.d.ts +29 -0
- package/dist/src/ui/hooks/useAgentStreamingState.js +109 -0
- package/dist/src/ui/hooks/useAgentStreamingState.js.map +1 -0
- package/dist/src/ui/hooks/useAgentsManagerDialog.d.ts +11 -0
- package/dist/src/ui/hooks/useAgentsManagerDialog.js +21 -0
- package/dist/src/ui/hooks/useAgentsManagerDialog.js.map +1 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.d.ts +37 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.js +44 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.js.map +1 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.test.js +74 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.test.js.map +1 -0
- package/dist/src/ui/hooks/useAnimationFrame.d.ts +25 -0
- package/dist/src/ui/hooks/useAnimationFrame.js +86 -0
- package/dist/src/ui/hooks/useAnimationFrame.js.map +1 -0
- package/dist/src/ui/hooks/useApprovalModeCommand.d.ts +14 -0
- package/dist/src/ui/hooks/useApprovalModeCommand.js +33 -0
- package/dist/src/ui/hooks/useApprovalModeCommand.js.map +1 -0
- package/dist/src/ui/hooks/useArenaCommand.d.ts +13 -0
- package/dist/src/ui/hooks/useArenaCommand.js +21 -0
- package/dist/src/ui/hooks/useArenaCommand.js.map +1 -0
- package/dist/src/ui/hooks/useArenaInProcess.d.ts +14 -0
- package/dist/src/ui/hooks/useArenaInProcess.js +136 -0
- package/dist/src/ui/hooks/useArenaInProcess.js.map +1 -0
- package/dist/src/ui/hooks/useAtCompletion.d.ts +23 -0
- package/dist/src/ui/hooks/useAtCompletion.js +184 -0
- package/dist/src/ui/hooks/useAtCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useAttentionNotifications.d.ts +22 -0
- package/dist/src/ui/hooks/useAttentionNotifications.js +89 -0
- package/dist/src/ui/hooks/useAttentionNotifications.js.map +1 -0
- package/dist/src/ui/hooks/useAttentionNotifications.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAttentionNotifications.test.js +222 -0
- package/dist/src/ui/hooks/useAttentionNotifications.test.js.map +1 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.d.ts +32 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.js +124 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.js.map +1 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js +379 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js.map +1 -0
- package/dist/src/ui/hooks/useAwaySummary.d.ts +35 -0
- package/dist/src/ui/hooks/useAwaySummary.js +141 -0
- package/dist/src/ui/hooks/useAwaySummary.js.map +1 -0
- package/dist/src/ui/hooks/useAwaySummary.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAwaySummary.test.js +103 -0
- package/dist/src/ui/hooks/useAwaySummary.test.js.map +1 -0
- package/dist/src/ui/hooks/useBackgroundTaskView.d.ts +69 -0
- package/dist/src/ui/hooks/useBackgroundTaskView.js +217 -0
- package/dist/src/ui/hooks/useBackgroundTaskView.js.map +1 -0
- package/dist/src/ui/hooks/useBackgroundTaskView.test.d.ts +6 -0
- package/dist/src/ui/hooks/useBackgroundTaskView.test.js +455 -0
- package/dist/src/ui/hooks/useBackgroundTaskView.test.js.map +1 -0
- package/dist/src/ui/hooks/useBatchedScroll.d.ts +14 -0
- package/dist/src/ui/hooks/useBatchedScroll.js +25 -0
- package/dist/src/ui/hooks/useBatchedScroll.js.map +1 -0
- package/dist/src/ui/hooks/useBatchedScroll.test.d.ts +6 -0
- package/dist/src/ui/hooks/useBatchedScroll.test.js +42 -0
- package/dist/src/ui/hooks/useBatchedScroll.test.js.map +1 -0
- package/dist/src/ui/hooks/useBracketedPaste.d.ts +12 -0
- package/dist/src/ui/hooks/useBracketedPaste.js +32 -0
- package/dist/src/ui/hooks/useBracketedPaste.js.map +1 -0
- package/dist/src/ui/hooks/useBranchCommand.d.ts +33 -0
- package/dist/src/ui/hooks/useBranchCommand.js +230 -0
- package/dist/src/ui/hooks/useBranchCommand.js.map +1 -0
- package/dist/src/ui/hooks/useBranchCommand.test.d.ts +6 -0
- package/dist/src/ui/hooks/useBranchCommand.test.js +386 -0
- package/dist/src/ui/hooks/useBranchCommand.test.js.map +1 -0
- package/dist/src/ui/hooks/useCommandCompletion.d.ts +37 -0
- package/dist/src/ui/hooks/useCommandCompletion.js +227 -0
- package/dist/src/ui/hooks/useCommandCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useCommandMigration.d.ts +16 -0
- package/dist/src/ui/hooks/useCommandMigration.js +40 -0
- package/dist/src/ui/hooks/useCommandMigration.js.map +1 -0
- package/dist/src/ui/hooks/useCompletion.d.ts +24 -0
- package/dist/src/ui/hooks/useCompletion.js +88 -0
- package/dist/src/ui/hooks/useCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useConfigInitMessage.d.ts +6 -0
- package/dist/src/ui/hooks/useConfigInitMessage.js +45 -0
- package/dist/src/ui/hooks/useConfigInitMessage.js.map +1 -0
- package/dist/src/ui/hooks/useConfigInitMessage.test.d.ts +6 -0
- package/dist/src/ui/hooks/useConfigInitMessage.test.js +80 -0
- package/dist/src/ui/hooks/useConfigInitMessage.test.js.map +1 -0
- package/dist/src/ui/hooks/useContextualTips.d.ts +19 -0
- package/dist/src/ui/hooks/useContextualTips.js +65 -0
- package/dist/src/ui/hooks/useContextualTips.js.map +1 -0
- package/dist/src/ui/hooks/useDeleteCommand.d.ts +19 -0
- package/dist/src/ui/hooks/useDeleteCommand.js +167 -0
- package/dist/src/ui/hooks/useDeleteCommand.js.map +1 -0
- package/dist/src/ui/hooks/useDeleteCommand.test.d.ts +6 -0
- package/dist/src/ui/hooks/useDeleteCommand.test.js +391 -0
- package/dist/src/ui/hooks/useDeleteCommand.test.js.map +1 -0
- package/dist/src/ui/hooks/useDialogClose.d.ts +48 -0
- package/dist/src/ui/hooks/useDialogClose.js +102 -0
- package/dist/src/ui/hooks/useDialogClose.js.map +1 -0
- package/dist/src/ui/hooks/useDiffData.d.ts +32 -0
- package/dist/src/ui/hooks/useDiffData.js +72 -0
- package/dist/src/ui/hooks/useDiffData.js.map +1 -0
- package/dist/src/ui/hooks/useDoublePress.d.ts +18 -0
- package/dist/src/ui/hooks/useDoublePress.js +47 -0
- package/dist/src/ui/hooks/useDoublePress.js.map +1 -0
- package/dist/src/ui/hooks/useEditorSettings.d.ts +16 -0
- package/dist/src/ui/hooks/useEditorSettings.js +43 -0
- package/dist/src/ui/hooks/useEditorSettings.js.map +1 -0
- package/dist/src/ui/hooks/useEditorSettings.test.d.ts +6 -0
- package/dist/src/ui/hooks/useEditorSettings.test.js +164 -0
- package/dist/src/ui/hooks/useEditorSettings.test.js.map +1 -0
- package/dist/src/ui/hooks/useExportCompletion.d.ts +70 -0
- package/dist/src/ui/hooks/useExportCompletion.js +208 -0
- package/dist/src/ui/hooks/useExportCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useExportCompletion.test.d.ts +6 -0
- package/dist/src/ui/hooks/useExportCompletion.test.js +190 -0
- package/dist/src/ui/hooks/useExportCompletion.test.js.map +1 -0
- package/dist/src/ui/hooks/useExtensionUpdates.d.ts +71 -0
- package/dist/src/ui/hooks/useExtensionUpdates.js +229 -0
- package/dist/src/ui/hooks/useExtensionUpdates.js.map +1 -0
- package/dist/src/ui/hooks/useExtensionUpdates.test.d.ts +6 -0
- package/dist/src/ui/hooks/useExtensionUpdates.test.js +455 -0
- package/dist/src/ui/hooks/useExtensionUpdates.test.js.map +1 -0
- package/dist/src/ui/hooks/useExtensionsManagerDialog.d.ts +12 -0
- package/dist/src/ui/hooks/useExtensionsManagerDialog.js +21 -0
- package/dist/src/ui/hooks/useExtensionsManagerDialog.js.map +1 -0
- package/dist/src/ui/hooks/useFeedbackDialog.d.ts +18 -0
- package/dist/src/ui/hooks/useFeedbackDialog.js +130 -0
- package/dist/src/ui/hooks/useFeedbackDialog.js.map +1 -0
- package/dist/src/ui/hooks/useFocus.d.ts +10 -0
- package/dist/src/ui/hooks/useFocus.js +51 -0
- package/dist/src/ui/hooks/useFocus.js.map +1 -0
- package/dist/src/ui/hooks/useFolderTrust.d.ts +13 -0
- package/dist/src/ui/hooks/useFolderTrust.js +60 -0
- package/dist/src/ui/hooks/useFolderTrust.js.map +1 -0
- package/dist/src/ui/hooks/useFollowupSuggestions.d.ts +53 -0
- package/dist/src/ui/hooks/useFollowupSuggestions.js +89 -0
- package/dist/src/ui/hooks/useFollowupSuggestions.js.map +1 -0
- package/dist/src/ui/hooks/useGeminiStream.d.ts +76 -0
- package/dist/src/ui/hooks/useGeminiStream.js +1899 -0
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -0
- package/dist/src/ui/hooks/useGitBranchName.d.ts +6 -0
- package/dist/src/ui/hooks/useGitBranchName.js +61 -0
- package/dist/src/ui/hooks/useGitBranchName.js.map +1 -0
- package/dist/src/ui/hooks/useGitBranchName.test.d.ts +6 -0
- package/dist/src/ui/hooks/useGitBranchName.test.js +192 -0
- package/dist/src/ui/hooks/useGitBranchName.test.js.map +1 -0
- package/dist/src/ui/hooks/useHistoryManager.d.ts +24 -0
- package/dist/src/ui/hooks/useHistoryManager.js +183 -0
- package/dist/src/ui/hooks/useHistoryManager.js.map +1 -0
- package/dist/src/ui/hooks/useHistoryManager.test.d.ts +6 -0
- package/dist/src/ui/hooks/useHistoryManager.test.js +495 -0
- package/dist/src/ui/hooks/useHistoryManager.test.js.map +1 -0
- package/dist/src/ui/hooks/useHooksDialog.d.ts +11 -0
- package/dist/src/ui/hooks/useHooksDialog.js +21 -0
- package/dist/src/ui/hooks/useHooksDialog.js.map +1 -0
- package/dist/src/ui/hooks/useIdeTrustListener.d.ts +16 -0
- package/dist/src/ui/hooks/useIdeTrustListener.js +65 -0
- package/dist/src/ui/hooks/useIdeTrustListener.js.map +1 -0
- package/dist/src/ui/hooks/useIdeTrustListener.test.d.ts +6 -0
- package/dist/src/ui/hooks/useIdeTrustListener.test.js +183 -0
- package/dist/src/ui/hooks/useIdeTrustListener.test.js.map +1 -0
- package/dist/src/ui/hooks/useInitializationAuthError.d.ts +22 -0
- package/dist/src/ui/hooks/useInitializationAuthError.js +40 -0
- package/dist/src/ui/hooks/useInitializationAuthError.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistory.d.ts +20 -0
- package/dist/src/ui/hooks/useInputHistory.js +85 -0
- package/dist/src/ui/hooks/useInputHistory.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistory.test.d.ts +6 -0
- package/dist/src/ui/hooks/useInputHistory.test.js +207 -0
- package/dist/src/ui/hooks/useInputHistory.test.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistoryStore.d.ts +19 -0
- package/dist/src/ui/hooks/useInputHistoryStore.js +83 -0
- package/dist/src/ui/hooks/useInputHistoryStore.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.d.ts +6 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.js +231 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.js.map +1 -0
- package/dist/src/ui/hooks/useKeypress.d.ts +17 -0
- package/dist/src/ui/hooks/useKeypress.js +27 -0
- package/dist/src/ui/hooks/useKeypress.js.map +1 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.d.ts +15 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js +20 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js.map +1 -0
- package/dist/src/ui/hooks/useLaunchEditor.d.ts +5 -0
- package/dist/src/ui/hooks/useLaunchEditor.js +75 -0
- package/dist/src/ui/hooks/useLaunchEditor.js.map +1 -0
- package/dist/src/ui/hooks/useLoadingIndicator.d.ts +11 -0
- package/dist/src/ui/hooks/useLoadingIndicator.js +50 -0
- package/dist/src/ui/hooks/useLoadingIndicator.js.map +1 -0
- package/dist/src/ui/hooks/useLoadingIndicator.test.d.ts +6 -0
- package/dist/src/ui/hooks/useLoadingIndicator.test.js +172 -0
- package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -0
- package/dist/src/ui/hooks/useLogger.d.ts +11 -0
- package/dist/src/ui/hooks/useLogger.js +32 -0
- package/dist/src/ui/hooks/useLogger.js.map +1 -0
- package/dist/src/ui/hooks/useMCPHealth.d.ts +16 -0
- package/dist/src/ui/hooks/useMCPHealth.js +56 -0
- package/dist/src/ui/hooks/useMCPHealth.js.map +1 -0
- package/dist/src/ui/hooks/useMcpDialog.d.ts +11 -0
- package/dist/src/ui/hooks/useMcpDialog.js +21 -0
- package/dist/src/ui/hooks/useMcpDialog.js.map +1 -0
- package/dist/src/ui/hooks/useMemoryDialog.d.ts +11 -0
- package/dist/src/ui/hooks/useMemoryDialog.js +21 -0
- package/dist/src/ui/hooks/useMemoryDialog.js.map +1 -0
- package/dist/src/ui/hooks/useMemoryMonitor.d.ts +17 -0
- package/dist/src/ui/hooks/useMemoryMonitor.js +83 -0
- package/dist/src/ui/hooks/useMemoryMonitor.js.map +1 -0
- package/dist/src/ui/hooks/useMemoryMonitor.test.d.ts +6 -0
- package/dist/src/ui/hooks/useMemoryMonitor.test.js +153 -0
- package/dist/src/ui/hooks/useMemoryMonitor.test.js.map +1 -0
- package/dist/src/ui/hooks/useMessageQueue.d.ts +18 -0
- package/dist/src/ui/hooks/useMessageQueue.js +67 -0
- package/dist/src/ui/hooks/useMessageQueue.js.map +1 -0
- package/dist/src/ui/hooks/useMessageQueue.test.d.ts +6 -0
- package/dist/src/ui/hooks/useMessageQueue.test.js +219 -0
- package/dist/src/ui/hooks/useMessageQueue.test.js.map +1 -0
- package/dist/src/ui/hooks/useModelCommand.d.ts +15 -0
- package/dist/src/ui/hooks/useModelCommand.js +25 -0
- package/dist/src/ui/hooks/useModelCommand.js.map +1 -0
- package/dist/src/ui/hooks/useModelCommand.test.d.ts +6 -0
- package/dist/src/ui/hooks/useModelCommand.test.js +35 -0
- package/dist/src/ui/hooks/useModelCommand.test.js.map +1 -0
- package/dist/src/ui/hooks/useMouseEvents.d.ts +44 -0
- package/dist/src/ui/hooks/useMouseEvents.js +85 -0
- package/dist/src/ui/hooks/useMouseEvents.js.map +1 -0
- package/dist/src/ui/hooks/usePhraseCycler.d.ts +14 -0
- package/dist/src/ui/hooks/usePhraseCycler.js +70 -0
- package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -0
- package/dist/src/ui/hooks/usePreferredEditor.d.ts +7 -0
- package/dist/src/ui/hooks/usePreferredEditor.js +25 -0
- package/dist/src/ui/hooks/usePreferredEditor.js.map +1 -0
- package/dist/src/ui/hooks/useProviderUpdates.d.ts +33 -0
- package/dist/src/ui/hooks/useProviderUpdates.js +215 -0
- package/dist/src/ui/hooks/useProviderUpdates.js.map +1 -0
- package/dist/src/ui/hooks/useProviderUpdates.test.d.ts +6 -0
- package/dist/src/ui/hooks/useProviderUpdates.test.js +293 -0
- package/dist/src/ui/hooks/useProviderUpdates.test.js.map +1 -0
- package/dist/src/ui/hooks/useQwenAuth.d.ts +20 -0
- package/dist/src/ui/hooks/useQwenAuth.js +74 -0
- package/dist/src/ui/hooks/useQwenAuth.js.map +1 -0
- package/dist/src/ui/hooks/useQwenAuth.test.d.ts +6 -0
- package/dist/src/ui/hooks/useQwenAuth.test.js +266 -0
- package/dist/src/ui/hooks/useQwenAuth.test.js.map +1 -0
- package/dist/src/ui/hooks/useReactToolScheduler.d.ts +33 -0
- package/dist/src/ui/hooks/useReactToolScheduler.js +236 -0
- package/dist/src/ui/hooks/useReactToolScheduler.js.map +1 -0
- package/dist/src/ui/hooks/useRefreshMemoryCommand.d.ts +6 -0
- package/dist/src/ui/hooks/useRefreshMemoryCommand.js +7 -0
- package/dist/src/ui/hooks/useRefreshMemoryCommand.js.map +1 -0
- package/dist/src/ui/hooks/useResumeCommand.d.ts +31 -0
- package/dist/src/ui/hooks/useResumeCommand.js +114 -0
- package/dist/src/ui/hooks/useResumeCommand.js.map +1 -0
- package/dist/src/ui/hooks/useResumeCommand.test.d.ts +6 -0
- package/dist/src/ui/hooks/useResumeCommand.test.js +349 -0
- package/dist/src/ui/hooks/useResumeCommand.test.js.map +1 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.d.ts +19 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.js +103 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.test.d.ts +6 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.test.js +163 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.test.js.map +1 -0
- package/dist/src/ui/hooks/useSelectionList.d.ts +41 -0
- package/dist/src/ui/hooks/useSelectionList.js +276 -0
- package/dist/src/ui/hooks/useSelectionList.js.map +1 -0
- package/dist/src/ui/hooks/useSelectionList.test.d.ts +6 -0
- package/dist/src/ui/hooks/useSelectionList.test.js +782 -0
- package/dist/src/ui/hooks/useSelectionList.test.js.map +1 -0
- package/dist/src/ui/hooks/useSessionPicker.d.ts +95 -0
- package/dist/src/ui/hooks/useSessionPicker.js +383 -0
- package/dist/src/ui/hooks/useSessionPicker.js.map +1 -0
- package/dist/src/ui/hooks/useSessionPicker.test.d.ts +6 -0
- package/dist/src/ui/hooks/useSessionPicker.test.js +94 -0
- package/dist/src/ui/hooks/useSessionPicker.test.js.map +1 -0
- package/dist/src/ui/hooks/useSessionSearchInput.d.ts +69 -0
- package/dist/src/ui/hooks/useSessionSearchInput.js +124 -0
- package/dist/src/ui/hooks/useSessionSearchInput.js.map +1 -0
- package/dist/src/ui/hooks/useSessionSearchInput.test.d.ts +6 -0
- package/dist/src/ui/hooks/useSessionSearchInput.test.js +342 -0
- package/dist/src/ui/hooks/useSessionSearchInput.test.js.map +1 -0
- package/dist/src/ui/hooks/useSettingsCommand.d.ts +10 -0
- package/dist/src/ui/hooks/useSettingsCommand.js +21 -0
- package/dist/src/ui/hooks/useSettingsCommand.js.map +1 -0
- package/dist/src/ui/hooks/useShellHistory.d.ts +14 -0
- package/dist/src/ui/hooks/useShellHistory.js +112 -0
- package/dist/src/ui/hooks/useShellHistory.js.map +1 -0
- package/dist/src/ui/hooks/useShellHistory.test.d.ts +6 -0
- package/dist/src/ui/hooks/useShellHistory.test.js +193 -0
- package/dist/src/ui/hooks/useShellHistory.test.js.map +1 -0
- package/dist/src/ui/hooks/useShowMemoryCommand.d.ts +9 -0
- package/dist/src/ui/hooks/useShowMemoryCommand.js +55 -0
- package/dist/src/ui/hooks/useShowMemoryCommand.js.map +1 -0
- package/dist/src/ui/hooks/useSkillsManagerDialog.d.ts +11 -0
- package/dist/src/ui/hooks/useSkillsManagerDialog.js +21 -0
- package/dist/src/ui/hooks/useSkillsManagerDialog.js.map +1 -0
- package/dist/src/ui/hooks/useSlashCompletion.d.ts +27 -0
- package/dist/src/ui/hooks/useSlashCompletion.integration.test.d.ts +6 -0
- package/dist/src/ui/hooks/useSlashCompletion.integration.test.js +84 -0
- package/dist/src/ui/hooks/useSlashCompletion.integration.test.js.map +1 -0
- package/dist/src/ui/hooks/useSlashCompletion.js +490 -0
- package/dist/src/ui/hooks/useSlashCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useSlashCompletion.test.d.ts +9 -0
- package/dist/src/ui/hooks/useSlashCompletion.test.js +805 -0
- package/dist/src/ui/hooks/useSlashCompletion.test.js.map +1 -0
- package/dist/src/ui/hooks/useStateAndRef.d.ts +7 -0
- package/dist/src/ui/hooks/useStateAndRef.js +26 -0
- package/dist/src/ui/hooks/useStateAndRef.js.map +1 -0
- package/dist/src/ui/hooks/useStatsDialog.d.ts +11 -0
- package/dist/src/ui/hooks/useStatsDialog.js +13 -0
- package/dist/src/ui/hooks/useStatsDialog.js.map +1 -0
- package/dist/src/ui/hooks/useStatusLine.d.ts +84 -0
- package/dist/src/ui/hooks/useStatusLine.js +528 -0
- package/dist/src/ui/hooks/useStatusLine.js.map +1 -0
- package/dist/src/ui/hooks/useStatusLine.test.d.ts +6 -0
- package/dist/src/ui/hooks/useStatusLine.test.js +1039 -0
- package/dist/src/ui/hooks/useStatusLine.test.js.map +1 -0
- package/dist/src/ui/hooks/useSubagentCreateDialog.d.ts +10 -0
- package/dist/src/ui/hooks/useSubagentCreateDialog.js +21 -0
- package/dist/src/ui/hooks/useSubagentCreateDialog.js.map +1 -0
- package/dist/src/ui/hooks/useTerminalNotification.d.ts +32 -0
- package/dist/src/ui/hooks/useTerminalNotification.js +45 -0
- package/dist/src/ui/hooks/useTerminalNotification.js.map +1 -0
- package/dist/src/ui/hooks/useTerminalNotification.test.d.ts +6 -0
- package/dist/src/ui/hooks/useTerminalNotification.test.js +69 -0
- package/dist/src/ui/hooks/useTerminalNotification.test.js.map +1 -0
- package/dist/src/ui/hooks/useTerminalProgress.d.ts +12 -0
- package/dist/src/ui/hooks/useTerminalProgress.js +76 -0
- package/dist/src/ui/hooks/useTerminalProgress.js.map +1 -0
- package/dist/src/ui/hooks/useTerminalSize.d.ts +13 -0
- package/dist/src/ui/hooks/useTerminalSize.js +30 -0
- package/dist/src/ui/hooks/useTerminalSize.js.map +1 -0
- package/dist/src/ui/hooks/useThemeCommand.d.ts +15 -0
- package/dist/src/ui/hooks/useThemeCommand.js +85 -0
- package/dist/src/ui/hooks/useThemeCommand.js.map +1 -0
- package/dist/src/ui/hooks/useThemeCommand.test.d.ts +6 -0
- package/dist/src/ui/hooks/useThemeCommand.test.js +42 -0
- package/dist/src/ui/hooks/useThemeCommand.test.js.map +1 -0
- package/dist/src/ui/hooks/useTimer.d.ts +12 -0
- package/dist/src/ui/hooks/useTimer.js +58 -0
- package/dist/src/ui/hooks/useTimer.js.map +1 -0
- package/dist/src/ui/hooks/useTimer.test.d.ts +6 -0
- package/dist/src/ui/hooks/useTimer.test.js +90 -0
- package/dist/src/ui/hooks/useTimer.test.js.map +1 -0
- package/dist/src/ui/hooks/useTomlMigration.d.ts +1 -0
- package/dist/src/ui/hooks/useTomlMigration.js +2 -0
- package/dist/src/ui/hooks/useTomlMigration.js.map +1 -0
- package/dist/src/ui/hooks/useToolScheduler.test.d.ts +6 -0
- package/dist/src/ui/hooks/useToolScheduler.test.js +624 -0
- package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -0
- package/dist/src/ui/hooks/useTrustModify.d.ts +17 -0
- package/dist/src/ui/hooks/useTrustModify.js +78 -0
- package/dist/src/ui/hooks/useTrustModify.js.map +1 -0
- package/dist/src/ui/hooks/useTrustModify.test.d.ts +6 -0
- package/dist/src/ui/hooks/useTrustModify.test.js +182 -0
- package/dist/src/ui/hooks/useTrustModify.test.js.map +1 -0
- package/dist/src/ui/hooks/useTurnDiffs.d.ts +34 -0
- package/dist/src/ui/hooks/useTurnDiffs.js +130 -0
- package/dist/src/ui/hooks/useTurnDiffs.js.map +1 -0
- package/dist/src/ui/hooks/useTurnDiffs.test.d.ts +6 -0
- package/dist/src/ui/hooks/useTurnDiffs.test.js +164 -0
- package/dist/src/ui/hooks/useTurnDiffs.test.js.map +1 -0
- package/dist/src/ui/hooks/useWelcomeBack.d.ts +23 -0
- package/dist/src/ui/hooks/useWelcomeBack.js +99 -0
- package/dist/src/ui/hooks/useWelcomeBack.js.map +1 -0
- package/dist/src/ui/hooks/useWelcomeBack.test.d.ts +6 -0
- package/dist/src/ui/hooks/useWelcomeBack.test.js +94 -0
- package/dist/src/ui/hooks/useWelcomeBack.test.js.map +1 -0
- package/dist/src/ui/hooks/useWorktreeSession.d.ts +26 -0
- package/dist/src/ui/hooks/useWorktreeSession.js +92 -0
- package/dist/src/ui/hooks/useWorktreeSession.js.map +1 -0
- package/dist/src/ui/hooks/useWorktreeSession.test.d.ts +6 -0
- package/dist/src/ui/hooks/useWorktreeSession.test.js +84 -0
- package/dist/src/ui/hooks/useWorktreeSession.test.js.map +1 -0
- package/dist/src/ui/hooks/vim.d.ts +13 -0
- package/dist/src/ui/hooks/vim.js +1637 -0
- package/dist/src/ui/hooks/vim.js.map +1 -0
- package/dist/src/ui/hooks/vim.test.d.ts +6 -0
- package/dist/src/ui/hooks/vim.test.js +1975 -0
- package/dist/src/ui/hooks/vim.test.js.map +1 -0
- package/dist/src/ui/keyMatchers.d.ts +27 -0
- package/dist/src/ui/keyMatchers.js +71 -0
- package/dist/src/ui/keyMatchers.js.map +1 -0
- package/dist/src/ui/keyMatchers.test.d.ts +6 -0
- package/dist/src/ui/keyMatchers.test.js +421 -0
- package/dist/src/ui/keyMatchers.test.js.map +1 -0
- package/dist/src/ui/layouts/DefaultAppLayout.d.ts +7 -0
- package/dist/src/ui/layouts/DefaultAppLayout.js +49 -0
- package/dist/src/ui/layouts/DefaultAppLayout.js.map +1 -0
- package/dist/src/ui/layouts/DefaultAppLayout.test.d.ts +6 -0
- package/dist/src/ui/layouts/DefaultAppLayout.test.js +185 -0
- package/dist/src/ui/layouts/DefaultAppLayout.test.js.map +1 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.d.ts +7 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.js +27 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.js.map +1 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.test.d.ts +6 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.test.js +135 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.test.js.map +1 -0
- package/dist/src/ui/models/availableModels.d.ts +30 -0
- package/dist/src/ui/models/availableModels.js +103 -0
- package/dist/src/ui/models/availableModels.js.map +1 -0
- package/dist/src/ui/models/availableModels.test.d.ts +6 -0
- package/dist/src/ui/models/availableModels.test.js +142 -0
- package/dist/src/ui/models/availableModels.test.js.map +1 -0
- package/dist/src/ui/noninteractive/nonInteractiveUi.d.ts +12 -0
- package/dist/src/ui/noninteractive/nonInteractiveUi.js +33 -0
- package/dist/src/ui/noninteractive/nonInteractiveUi.js.map +1 -0
- package/dist/src/ui/semantic-colors.d.ts +7 -0
- package/dist/src/ui/semantic-colors.js +24 -0
- package/dist/src/ui/semantic-colors.js.map +1 -0
- package/dist/src/ui/state/extensions.d.ts +43 -0
- package/dist/src/ui/state/extensions.js +63 -0
- package/dist/src/ui/state/extensions.js.map +1 -0
- package/dist/src/ui/statusLinePresets.d.ts +79 -0
- package/dist/src/ui/statusLinePresets.js +310 -0
- package/dist/src/ui/statusLinePresets.js.map +1 -0
- package/dist/src/ui/statusLinePresets.test.d.ts +6 -0
- package/dist/src/ui/statusLinePresets.test.js +221 -0
- package/dist/src/ui/statusLinePresets.test.js.map +1 -0
- package/dist/src/ui/textConstants.d.ts +9 -0
- package/dist/src/ui/textConstants.js +10 -0
- package/dist/src/ui/textConstants.js.map +1 -0
- package/dist/src/ui/themes/ansi-light.d.ts +7 -0
- package/dist/src/ui/themes/ansi-light.js +144 -0
- package/dist/src/ui/themes/ansi-light.js.map +1 -0
- package/dist/src/ui/themes/ansi.d.ts +7 -0
- package/dist/src/ui/themes/ansi.js +154 -0
- package/dist/src/ui/themes/ansi.js.map +1 -0
- package/dist/src/ui/themes/atom-one-dark.d.ts +7 -0
- package/dist/src/ui/themes/atom-one-dark.js +140 -0
- package/dist/src/ui/themes/atom-one-dark.js.map +1 -0
- package/dist/src/ui/themes/ayu-light.d.ts +7 -0
- package/dist/src/ui/themes/ayu-light.js +132 -0
- package/dist/src/ui/themes/ayu-light.js.map +1 -0
- package/dist/src/ui/themes/ayu.d.ts +7 -0
- package/dist/src/ui/themes/ayu.js +106 -0
- package/dist/src/ui/themes/ayu.js.map +1 -0
- package/dist/src/ui/themes/color-utils.d.ts +21 -0
- package/dist/src/ui/themes/color-utils.js +223 -0
- package/dist/src/ui/themes/color-utils.js.map +1 -0
- package/dist/src/ui/themes/color-utils.test.d.ts +6 -0
- package/dist/src/ui/themes/color-utils.test.js +197 -0
- package/dist/src/ui/themes/color-utils.test.js.map +1 -0
- package/dist/src/ui/themes/default-light.d.ts +7 -0
- package/dist/src/ui/themes/default-light.js +100 -0
- package/dist/src/ui/themes/default-light.js.map +1 -0
- package/dist/src/ui/themes/default.d.ts +7 -0
- package/dist/src/ui/themes/default.js +143 -0
- package/dist/src/ui/themes/default.js.map +1 -0
- package/dist/src/ui/themes/detect-terminal-theme.d.ts +75 -0
- package/dist/src/ui/themes/detect-terminal-theme.js +228 -0
- package/dist/src/ui/themes/detect-terminal-theme.js.map +1 -0
- package/dist/src/ui/themes/detect-terminal-theme.test.d.ts +6 -0
- package/dist/src/ui/themes/detect-terminal-theme.test.js +269 -0
- package/dist/src/ui/themes/detect-terminal-theme.test.js.map +1 -0
- package/dist/src/ui/themes/dracula.d.ts +7 -0
- package/dist/src/ui/themes/dracula.js +117 -0
- package/dist/src/ui/themes/dracula.js.map +1 -0
- package/dist/src/ui/themes/github-dark.d.ts +7 -0
- package/dist/src/ui/themes/github-dark.js +140 -0
- package/dist/src/ui/themes/github-dark.js.map +1 -0
- package/dist/src/ui/themes/github-light.d.ts +7 -0
- package/dist/src/ui/themes/github-light.js +142 -0
- package/dist/src/ui/themes/github-light.js.map +1 -0
- package/dist/src/ui/themes/googlecode.d.ts +7 -0
- package/dist/src/ui/themes/googlecode.js +139 -0
- package/dist/src/ui/themes/googlecode.js.map +1 -0
- package/dist/src/ui/themes/no-color.d.ts +7 -0
- package/dist/src/ui/themes/no-color.js +120 -0
- package/dist/src/ui/themes/no-color.js.map +1 -0
- package/dist/src/ui/themes/qwen-dark.d.ts +7 -0
- package/dist/src/ui/themes/qwen-dark.js +107 -0
- package/dist/src/ui/themes/qwen-dark.js.map +1 -0
- package/dist/src/ui/themes/qwen-light.d.ts +7 -0
- package/dist/src/ui/themes/qwen-light.js +133 -0
- package/dist/src/ui/themes/qwen-light.js.map +1 -0
- package/dist/src/ui/themes/semantic-tokens.d.ts +40 -0
- package/dist/src/ui/themes/semantic-tokens.js +103 -0
- package/dist/src/ui/themes/semantic-tokens.js.map +1 -0
- package/dist/src/ui/themes/shades-of-purple.d.ts +11 -0
- package/dist/src/ui/themes/shades-of-purple.js +306 -0
- package/dist/src/ui/themes/shades-of-purple.js.map +1 -0
- package/dist/src/ui/themes/theme-manager.d.ts +91 -0
- package/dist/src/ui/themes/theme-manager.js +311 -0
- package/dist/src/ui/themes/theme-manager.js.map +1 -0
- package/dist/src/ui/themes/theme-manager.test.d.ts +6 -0
- package/dist/src/ui/themes/theme-manager.test.js +188 -0
- package/dist/src/ui/themes/theme-manager.test.js.map +1 -0
- package/dist/src/ui/themes/theme.d.ts +137 -0
- package/dist/src/ui/themes/theme.js +393 -0
- package/dist/src/ui/themes/theme.js.map +1 -0
- package/dist/src/ui/themes/xcode.d.ts +7 -0
- package/dist/src/ui/themes/xcode.js +147 -0
- package/dist/src/ui/themes/xcode.js.map +1 -0
- package/dist/src/ui/types.d.ts +620 -0
- package/dist/src/ui/types.js +77 -0
- package/dist/src/ui/types.js.map +1 -0
- package/dist/src/ui/utils/CodeColorizer.d.ts +18 -0
- package/dist/src/ui/utils/CodeColorizer.js +155 -0
- package/dist/src/ui/utils/CodeColorizer.js.map +1 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +18 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.js +173 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +1 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.test.d.ts +6 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.test.js +303 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.test.js.map +1 -0
- package/dist/src/ui/utils/MarkdownDisplay.d.ts +25 -0
- package/dist/src/ui/utils/MarkdownDisplay.js +420 -0
- package/dist/src/ui/utils/MarkdownDisplay.js.map +1 -0
- package/dist/src/ui/utils/MarkdownDisplay.test.d.ts +6 -0
- package/dist/src/ui/utils/MarkdownDisplay.test.js +702 -0
- package/dist/src/ui/utils/MarkdownDisplay.test.js.map +1 -0
- package/dist/src/ui/utils/MermaidDiagram.d.ts +15 -0
- package/dist/src/ui/utils/MermaidDiagram.js +88 -0
- package/dist/src/ui/utils/MermaidDiagram.js.map +1 -0
- package/dist/src/ui/utils/MermaidDiagram.test.d.ts +6 -0
- package/dist/src/ui/utils/MermaidDiagram.test.js +90 -0
- package/dist/src/ui/utils/MermaidDiagram.test.js.map +1 -0
- package/dist/src/ui/utils/TableRenderer.d.ts +30 -0
- package/dist/src/ui/utils/TableRenderer.js +563 -0
- package/dist/src/ui/utils/TableRenderer.js.map +1 -0
- package/dist/src/ui/utils/TableRenderer.test.d.ts +6 -0
- package/dist/src/ui/utils/TableRenderer.test.js +568 -0
- package/dist/src/ui/utils/TableRenderer.test.js.map +1 -0
- package/dist/src/ui/utils/approvalModeDisplay.d.ts +8 -0
- package/dist/src/ui/utils/approvalModeDisplay.js +34 -0
- package/dist/src/ui/utils/approvalModeDisplay.js.map +1 -0
- package/dist/src/ui/utils/approvalModeDisplay.test.d.ts +6 -0
- package/dist/src/ui/utils/approvalModeDisplay.test.js +35 -0
- package/dist/src/ui/utils/approvalModeDisplay.test.js.map +1 -0
- package/dist/src/ui/utils/asciiCharts.d.ts +44 -0
- package/dist/src/ui/utils/asciiCharts.js +307 -0
- package/dist/src/ui/utils/asciiCharts.js.map +1 -0
- package/dist/src/ui/utils/asciiCharts.test.d.ts +6 -0
- package/dist/src/ui/utils/asciiCharts.test.js +208 -0
- package/dist/src/ui/utils/asciiCharts.test.js.map +1 -0
- package/dist/src/ui/utils/backgroundWorkUtils.d.ts +8 -0
- package/dist/src/ui/utils/backgroundWorkUtils.js +16 -0
- package/dist/src/ui/utils/backgroundWorkUtils.js.map +1 -0
- package/dist/src/ui/utils/backgroundWorkUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/backgroundWorkUtils.test.js +85 -0
- package/dist/src/ui/utils/backgroundWorkUtils.test.js.map +1 -0
- package/dist/src/ui/utils/clipboardUtils.d.ts +28 -0
- package/dist/src/ui/utils/clipboardUtils.js +522 -0
- package/dist/src/ui/utils/clipboardUtils.js.map +1 -0
- package/dist/src/ui/utils/clipboardUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/clipboardUtils.test.js +465 -0
- package/dist/src/ui/utils/clipboardUtils.test.js.map +1 -0
- package/dist/src/ui/utils/commandUtils.d.ts +112 -0
- package/dist/src/ui/utils/commandUtils.js +285 -0
- package/dist/src/ui/utils/commandUtils.js.map +1 -0
- package/dist/src/ui/utils/commandUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/commandUtils.test.js +560 -0
- package/dist/src/ui/utils/commandUtils.test.js.map +1 -0
- package/dist/src/ui/utils/computeStats.d.ts +10 -0
- package/dist/src/ui/utils/computeStats.js +57 -0
- package/dist/src/ui/utils/computeStats.js.map +1 -0
- package/dist/src/ui/utils/customBanner.d.ts +35 -0
- package/dist/src/ui/utils/customBanner.js +361 -0
- package/dist/src/ui/utils/customBanner.js.map +1 -0
- package/dist/src/ui/utils/customBanner.test.d.ts +6 -0
- package/dist/src/ui/utils/customBanner.test.js +439 -0
- package/dist/src/ui/utils/customBanner.test.js.map +1 -0
- package/dist/src/ui/utils/displayUtils.d.ts +25 -0
- package/dist/src/ui/utils/displayUtils.js +46 -0
- package/dist/src/ui/utils/displayUtils.js.map +1 -0
- package/dist/src/ui/utils/displayUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/displayUtils.test.js +61 -0
- package/dist/src/ui/utils/displayUtils.test.js.map +1 -0
- package/dist/src/ui/utils/export/collect.d.ts +16 -0
- package/dist/src/ui/utils/export/collect.js +509 -0
- package/dist/src/ui/utils/export/collect.js.map +1 -0
- package/dist/src/ui/utils/export/collect.test.d.ts +6 -0
- package/dist/src/ui/utils/export/collect.test.js +80 -0
- package/dist/src/ui/utils/export/collect.test.js.map +1 -0
- package/dist/src/ui/utils/export/formatters/html.d.ts +23 -0
- package/dist/src/ui/utils/export/formatters/html.js +65 -0
- package/dist/src/ui/utils/export/formatters/html.js.map +1 -0
- package/dist/src/ui/utils/export/formatters/json.d.ts +11 -0
- package/dist/src/ui/utils/export/formatters/json.js +13 -0
- package/dist/src/ui/utils/export/formatters/json.js.map +1 -0
- package/dist/src/ui/utils/export/formatters/jsonl.d.ts +11 -0
- package/dist/src/ui/utils/export/formatters/jsonl.js +69 -0
- package/dist/src/ui/utils/export/formatters/jsonl.js.map +1 -0
- package/dist/src/ui/utils/export/formatters/markdown.d.ts +10 -0
- package/dist/src/ui/utils/export/formatters/markdown.js +254 -0
- package/dist/src/ui/utils/export/formatters/markdown.js.map +1 -0
- package/dist/src/ui/utils/export/index.d.ts +13 -0
- package/dist/src/ui/utils/export/index.js +13 -0
- package/dist/src/ui/utils/export/index.js.map +1 -0
- package/dist/src/ui/utils/export/normalize.d.ts +12 -0
- package/dist/src/ui/utils/export/normalize.js +279 -0
- package/dist/src/ui/utils/export/normalize.js.map +1 -0
- package/dist/src/ui/utils/export/normalize.test.d.ts +6 -0
- package/dist/src/ui/utils/export/normalize.test.js +62 -0
- package/dist/src/ui/utils/export/normalize.test.js.map +1 -0
- package/dist/src/ui/utils/export/types.d.ts +93 -0
- package/dist/src/ui/utils/export/types.js +7 -0
- package/dist/src/ui/utils/export/types.js.map +1 -0
- package/dist/src/ui/utils/export/utils.d.ts +9 -0
- package/dist/src/ui/utils/export/utils.js +13 -0
- package/dist/src/ui/utils/export/utils.js.map +1 -0
- package/dist/src/ui/utils/formatters.d.ts +28 -0
- package/dist/src/ui/utils/formatters.js +100 -0
- package/dist/src/ui/utils/formatters.js.map +1 -0
- package/dist/src/ui/utils/formatters.test.d.ts +6 -0
- package/dist/src/ui/utils/formatters.test.js +141 -0
- package/dist/src/ui/utils/formatters.test.js.map +1 -0
- package/dist/src/ui/utils/gradientUtils.d.ts +6 -0
- package/dist/src/ui/utils/gradientUtils.js +11 -0
- package/dist/src/ui/utils/gradientUtils.js.map +1 -0
- package/dist/src/ui/utils/highlight.d.ts +12 -0
- package/dist/src/ui/utils/highlight.js +90 -0
- package/dist/src/ui/utils/highlight.js.map +1 -0
- package/dist/src/ui/utils/highlight.test.d.ts +6 -0
- package/dist/src/ui/utils/highlight.test.js +173 -0
- package/dist/src/ui/utils/highlight.test.js.map +1 -0
- package/dist/src/ui/utils/historyMapping.d.ts +44 -0
- package/dist/src/ui/utils/historyMapping.js +110 -0
- package/dist/src/ui/utils/historyMapping.js.map +1 -0
- package/dist/src/ui/utils/historyMapping.test.d.ts +6 -0
- package/dist/src/ui/utils/historyMapping.test.js +376 -0
- package/dist/src/ui/utils/historyMapping.test.js.map +1 -0
- package/dist/src/ui/utils/historyUtils.d.ts +34 -0
- package/dist/src/ui/utils/historyUtils.js +117 -0
- package/dist/src/ui/utils/historyUtils.js.map +1 -0
- package/dist/src/ui/utils/historyUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/historyUtils.test.js +107 -0
- package/dist/src/ui/utils/historyUtils.test.js.map +1 -0
- package/dist/src/ui/utils/isNarrowWidth.d.ts +6 -0
- package/dist/src/ui/utils/isNarrowWidth.js +9 -0
- package/dist/src/ui/utils/isNarrowWidth.js.map +1 -0
- package/dist/src/ui/utils/kittyProtocolDetector.d.ts +19 -0
- package/dist/src/ui/utils/kittyProtocolDetector.js +115 -0
- package/dist/src/ui/utils/kittyProtocolDetector.js.map +1 -0
- package/dist/src/ui/utils/latexRenderer.d.ts +6 -0
- package/dist/src/ui/utils/latexRenderer.js +187 -0
- package/dist/src/ui/utils/latexRenderer.js.map +1 -0
- package/dist/src/ui/utils/latexRenderer.test.d.ts +6 -0
- package/dist/src/ui/utils/latexRenderer.test.js +27 -0
- package/dist/src/ui/utils/latexRenderer.test.js.map +1 -0
- package/dist/src/ui/utils/layoutUtils.d.ts +32 -0
- package/dist/src/ui/utils/layoutUtils.js +46 -0
- package/dist/src/ui/utils/layoutUtils.js.map +1 -0
- package/dist/src/ui/utils/layoutUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/layoutUtils.test.js +30 -0
- package/dist/src/ui/utils/layoutUtils.test.js.map +1 -0
- package/dist/src/ui/utils/lowlightLoader.d.ts +43 -0
- package/dist/src/ui/utils/lowlightLoader.js +88 -0
- package/dist/src/ui/utils/lowlightLoader.js.map +1 -0
- package/dist/src/ui/utils/lowlightLoader.test.d.ts +6 -0
- package/dist/src/ui/utils/lowlightLoader.test.js +120 -0
- package/dist/src/ui/utils/lowlightLoader.test.js.map +1 -0
- package/dist/src/ui/utils/markdownUtilities.d.ts +6 -0
- package/dist/src/ui/utils/markdownUtilities.js +110 -0
- package/dist/src/ui/utils/markdownUtilities.js.map +1 -0
- package/dist/src/ui/utils/markdownUtilities.test.d.ts +6 -0
- package/dist/src/ui/utils/markdownUtilities.test.js +42 -0
- package/dist/src/ui/utils/markdownUtilities.test.js.map +1 -0
- package/dist/src/ui/utils/mergeCompactToolGroups.d.ts +62 -0
- package/dist/src/ui/utils/mergeCompactToolGroups.js +212 -0
- package/dist/src/ui/utils/mergeCompactToolGroups.js.map +1 -0
- package/dist/src/ui/utils/mergeCompactToolGroups.test.d.ts +6 -0
- package/dist/src/ui/utils/mergeCompactToolGroups.test.js +473 -0
- package/dist/src/ui/utils/mergeCompactToolGroups.test.js.map +1 -0
- package/dist/src/ui/utils/mermaidImageRenderer.d.ts +54 -0
- package/dist/src/ui/utils/mermaidImageRenderer.js +955 -0
- package/dist/src/ui/utils/mermaidImageRenderer.js.map +1 -0
- package/dist/src/ui/utils/mermaidImageRenderer.test.d.ts +6 -0
- package/dist/src/ui/utils/mermaidImageRenderer.test.js +528 -0
- package/dist/src/ui/utils/mermaidImageRenderer.test.js.map +1 -0
- package/dist/src/ui/utils/mermaidVisualRenderer.d.ts +12 -0
- package/dist/src/ui/utils/mermaidVisualRenderer.js +1097 -0
- package/dist/src/ui/utils/mermaidVisualRenderer.js.map +1 -0
- package/dist/src/ui/utils/mermaidVisualRenderer.test.d.ts +6 -0
- package/dist/src/ui/utils/mermaidVisualRenderer.test.js +69 -0
- package/dist/src/ui/utils/mermaidVisualRenderer.test.js.map +1 -0
- package/dist/src/ui/utils/modelsBySource.d.ts +47 -0
- package/dist/src/ui/utils/modelsBySource.js +89 -0
- package/dist/src/ui/utils/modelsBySource.js.map +1 -0
- package/dist/src/ui/utils/modelsBySource.test.d.ts +6 -0
- package/dist/src/ui/utils/modelsBySource.test.js +111 -0
- package/dist/src/ui/utils/modelsBySource.test.js.map +1 -0
- package/dist/src/ui/utils/mouse.d.ts +39 -0
- package/dist/src/ui/utils/mouse.js +169 -0
- package/dist/src/ui/utils/mouse.js.map +1 -0
- package/dist/src/ui/utils/mouse.test.d.ts +6 -0
- package/dist/src/ui/utils/mouse.test.js +117 -0
- package/dist/src/ui/utils/mouse.test.js.map +1 -0
- package/dist/src/ui/utils/osc8.d.ts +124 -0
- package/dist/src/ui/utils/osc8.js +463 -0
- package/dist/src/ui/utils/osc8.js.map +1 -0
- package/dist/src/ui/utils/osc8.test.d.ts +6 -0
- package/dist/src/ui/utils/osc8.test.js +494 -0
- package/dist/src/ui/utils/osc8.test.js.map +1 -0
- package/dist/src/ui/utils/platformConstants.d.ts +75 -0
- package/dist/src/ui/utils/platformConstants.js +78 -0
- package/dist/src/ui/utils/platformConstants.js.map +1 -0
- package/dist/src/ui/utils/restoreGoal.d.ts +47 -0
- package/dist/src/ui/utils/restoreGoal.js +124 -0
- package/dist/src/ui/utils/restoreGoal.js.map +1 -0
- package/dist/src/ui/utils/restoreGoal.test.d.ts +6 -0
- package/dist/src/ui/utils/restoreGoal.test.js +220 -0
- package/dist/src/ui/utils/restoreGoal.test.js.map +1 -0
- package/dist/src/ui/utils/resumeHistoryUtils.d.ts +22 -0
- package/dist/src/ui/utils/resumeHistoryUtils.js +410 -0
- package/dist/src/ui/utils/resumeHistoryUtils.js.map +1 -0
- package/dist/src/ui/utils/resumeHistoryUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/resumeHistoryUtils.test.js +378 -0
- package/dist/src/ui/utils/resumeHistoryUtils.test.js.map +1 -0
- package/dist/src/ui/utils/sessionPickerUtils.d.ts +35 -0
- package/dist/src/ui/utils/sessionPickerUtils.js +69 -0
- package/dist/src/ui/utils/sessionPickerUtils.js.map +1 -0
- package/dist/src/ui/utils/sessionPickerUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/sessionPickerUtils.test.js +79 -0
- package/dist/src/ui/utils/sessionPickerUtils.test.js.map +1 -0
- package/dist/src/ui/utils/statsDataService.d.ts +49 -0
- package/dist/src/ui/utils/statsDataService.js +221 -0
- package/dist/src/ui/utils/statsDataService.js.map +1 -0
- package/dist/src/ui/utils/statsDataService.test.d.ts +6 -0
- package/dist/src/ui/utils/statsDataService.test.js +406 -0
- package/dist/src/ui/utils/statsDataService.test.js.map +1 -0
- package/dist/src/ui/utils/synchronizedOutput.d.ts +16 -0
- package/dist/src/ui/utils/synchronizedOutput.js +88 -0
- package/dist/src/ui/utils/synchronizedOutput.js.map +1 -0
- package/dist/src/ui/utils/synchronizedOutput.test.d.ts +6 -0
- package/dist/src/ui/utils/synchronizedOutput.test.js +154 -0
- package/dist/src/ui/utils/synchronizedOutput.test.js.map +1 -0
- package/dist/src/ui/utils/terminalRedrawOptimizer.d.ts +21 -0
- package/dist/src/ui/utils/terminalRedrawOptimizer.js +108 -0
- package/dist/src/ui/utils/terminalRedrawOptimizer.js.map +1 -0
- package/dist/src/ui/utils/terminalRedrawOptimizer.test.d.ts +6 -0
- package/dist/src/ui/utils/terminalRedrawOptimizer.test.js +85 -0
- package/dist/src/ui/utils/terminalRedrawOptimizer.test.js.map +1 -0
- package/dist/src/ui/utils/terminalSetup.d.ts +30 -0
- package/dist/src/ui/utils/terminalSetup.js +310 -0
- package/dist/src/ui/utils/terminalSetup.js.map +1 -0
- package/dist/src/ui/utils/textUtils.d.ts +86 -0
- package/dist/src/ui/utils/textUtils.js +360 -0
- package/dist/src/ui/utils/textUtils.js.map +1 -0
- package/dist/src/ui/utils/textUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/textUtils.test.js +269 -0
- package/dist/src/ui/utils/textUtils.test.js.map +1 -0
- package/dist/src/ui/utils/todoSnapshot.d.ts +13 -0
- package/dist/src/ui/utils/todoSnapshot.js +133 -0
- package/dist/src/ui/utils/todoSnapshot.js.map +1 -0
- package/dist/src/ui/utils/todoSnapshot.test.d.ts +6 -0
- package/dist/src/ui/utils/todoSnapshot.test.js +281 -0
- package/dist/src/ui/utils/todoSnapshot.test.js.map +1 -0
- package/dist/src/ui/utils/updateCheck.d.ts +12 -0
- package/dist/src/ui/utils/updateCheck.js +80 -0
- package/dist/src/ui/utils/updateCheck.js.map +1 -0
- package/dist/src/ui/utils/updateCheck.test.d.ts +6 -0
- package/dist/src/ui/utils/updateCheck.test.js +145 -0
- package/dist/src/ui/utils/updateCheck.test.js.map +1 -0
- package/dist/src/utils/acpModelUtils.d.ts +39 -0
- package/dist/src/utils/acpModelUtils.js +61 -0
- package/dist/src/utils/acpModelUtils.js.map +1 -0
- package/dist/src/utils/acpModelUtils.test.d.ts +6 -0
- package/dist/src/utils/acpModelUtils.test.js +31 -0
- package/dist/src/utils/acpModelUtils.test.js.map +1 -0
- package/dist/src/utils/apiPreconnect.d.ts +22 -0
- package/dist/src/utils/apiPreconnect.js +188 -0
- package/dist/src/utils/apiPreconnect.js.map +1 -0
- package/dist/src/utils/apiPreconnect.test.d.ts +6 -0
- package/dist/src/utils/apiPreconnect.test.js +252 -0
- package/dist/src/utils/apiPreconnect.test.js.map +1 -0
- package/dist/src/utils/checks.d.ts +19 -0
- package/dist/src/utils/checks.js +24 -0
- package/dist/src/utils/checks.js.map +1 -0
- package/dist/src/utils/cleanup.d.ts +23 -0
- package/dist/src/utils/cleanup.js +96 -0
- package/dist/src/utils/cleanup.js.map +1 -0
- package/dist/src/utils/commands.d.ts +20 -0
- package/dist/src/utils/commands.js +53 -0
- package/dist/src/utils/commands.js.map +1 -0
- package/dist/src/utils/commands.test.d.ts +6 -0
- package/dist/src/utils/commands.test.js +115 -0
- package/dist/src/utils/commands.test.js.map +1 -0
- package/dist/src/utils/commentJson.d.ts +25 -0
- package/dist/src/utils/commentJson.js +113 -0
- package/dist/src/utils/commentJson.js.map +1 -0
- package/dist/src/utils/commentJson.test.d.ts +6 -0
- package/dist/src/utils/commentJson.test.js +385 -0
- package/dist/src/utils/commentJson.test.js.map +1 -0
- package/dist/src/utils/costCalculator.d.ts +14 -0
- package/dist/src/utils/costCalculator.js +19 -0
- package/dist/src/utils/costCalculator.js.map +1 -0
- package/dist/src/utils/costCalculator.test.d.ts +6 -0
- package/dist/src/utils/costCalculator.test.js +177 -0
- package/dist/src/utils/costCalculator.test.js.map +1 -0
- package/dist/src/utils/cpuProfiler.d.ts +63 -0
- package/dist/src/utils/cpuProfiler.js +341 -0
- package/dist/src/utils/cpuProfiler.js.map +1 -0
- package/dist/src/utils/cpuProfiler.test.d.ts +6 -0
- package/dist/src/utils/cpuProfiler.test.js +293 -0
- package/dist/src/utils/cpuProfiler.test.js.map +1 -0
- package/dist/src/utils/deepMerge.d.ts +9 -0
- package/dist/src/utils/deepMerge.js +58 -0
- package/dist/src/utils/deepMerge.js.map +1 -0
- package/dist/src/utils/deepMerge.test.d.ts +6 -0
- package/dist/src/utils/deepMerge.test.js +143 -0
- package/dist/src/utils/deepMerge.test.js.map +1 -0
- package/dist/src/utils/dialogScopeUtils.d.ts +28 -0
- package/dist/src/utils/dialogScopeUtils.js +51 -0
- package/dist/src/utils/dialogScopeUtils.js.map +1 -0
- package/dist/src/utils/doctorChecks.d.ts +11 -0
- package/dist/src/utils/doctorChecks.js +351 -0
- package/dist/src/utils/doctorChecks.js.map +1 -0
- package/dist/src/utils/doctorChecks.test.d.ts +6 -0
- package/dist/src/utils/doctorChecks.test.js +280 -0
- package/dist/src/utils/doctorChecks.test.js.map +1 -0
- package/dist/src/utils/earlyInputCapture.d.ts +33 -0
- package/dist/src/utils/earlyInputCapture.js +311 -0
- package/dist/src/utils/earlyInputCapture.js.map +1 -0
- package/dist/src/utils/earlyInputCapture.test.d.ts +6 -0
- package/dist/src/utils/earlyInputCapture.test.js +274 -0
- package/dist/src/utils/earlyInputCapture.test.js.map +1 -0
- package/dist/src/utils/envVarResolver.d.ts +39 -0
- package/dist/src/utils/envVarResolver.js +100 -0
- package/dist/src/utils/envVarResolver.js.map +1 -0
- package/dist/src/utils/envVarResolver.test.d.ts +6 -0
- package/dist/src/utils/envVarResolver.test.js +221 -0
- package/dist/src/utils/envVarResolver.test.js.map +1 -0
- package/dist/src/utils/errors.d.ts +76 -0
- package/dist/src/utils/errors.js +237 -0
- package/dist/src/utils/errors.js.map +1 -0
- package/dist/src/utils/errors.test.d.ts +6 -0
- package/dist/src/utils/errors.test.js +536 -0
- package/dist/src/utils/errors.test.js.map +1 -0
- package/dist/src/utils/events.d.ts +13 -0
- package/dist/src/utils/events.js +15 -0
- package/dist/src/utils/events.js.map +1 -0
- package/dist/src/utils/gitUtils.d.ts +30 -0
- package/dist/src/utils/gitUtils.js +108 -0
- package/dist/src/utils/gitUtils.js.map +1 -0
- package/dist/src/utils/gitUtils.test.d.ts +6 -0
- package/dist/src/utils/gitUtils.test.js +172 -0
- package/dist/src/utils/gitUtils.test.js.map +1 -0
- package/dist/src/utils/handleAutoUpdate.d.ts +16 -0
- package/dist/src/utils/handleAutoUpdate.js +144 -0
- package/dist/src/utils/handleAutoUpdate.js.map +1 -0
- package/dist/src/utils/headlessSafetyWarnings.d.ts +21 -0
- package/dist/src/utils/headlessSafetyWarnings.js +45 -0
- package/dist/src/utils/headlessSafetyWarnings.js.map +1 -0
- package/dist/src/utils/headlessSafetyWarnings.test.d.ts +6 -0
- package/dist/src/utils/headlessSafetyWarnings.test.js +66 -0
- package/dist/src/utils/headlessSafetyWarnings.test.js.map +1 -0
- package/dist/src/utils/housekeeping/cleanup.d.ts +15 -0
- package/dist/src/utils/housekeeping/cleanup.js +69 -0
- package/dist/src/utils/housekeeping/cleanup.js.map +1 -0
- package/dist/src/utils/housekeeping/cleanup.test.d.ts +6 -0
- package/dist/src/utils/housekeeping/cleanup.test.js +166 -0
- package/dist/src/utils/housekeeping/cleanup.test.js.map +1 -0
- package/dist/src/utils/housekeeping/lastInteractionAt.d.ts +9 -0
- package/dist/src/utils/housekeeping/lastInteractionAt.js +22 -0
- package/dist/src/utils/housekeeping/lastInteractionAt.js.map +1 -0
- package/dist/src/utils/housekeeping/scheduler.d.ts +17 -0
- package/dist/src/utils/housekeeping/scheduler.js +130 -0
- package/dist/src/utils/housekeeping/scheduler.js.map +1 -0
- package/dist/src/utils/housekeeping/scheduler.test.d.ts +6 -0
- package/dist/src/utils/housekeeping/scheduler.test.js +190 -0
- package/dist/src/utils/housekeeping/scheduler.test.js.map +1 -0
- package/dist/src/utils/housekeeping/throttledOnce.d.ts +13 -0
- package/dist/src/utils/housekeeping/throttledOnce.js +110 -0
- package/dist/src/utils/housekeeping/throttledOnce.js.map +1 -0
- package/dist/src/utils/housekeeping/throttledOnce.test.d.ts +6 -0
- package/dist/src/utils/housekeeping/throttledOnce.test.js +94 -0
- package/dist/src/utils/housekeeping/throttledOnce.test.js.map +1 -0
- package/dist/src/utils/installationInfo.d.ts +26 -0
- package/dist/src/utils/installationInfo.js +266 -0
- package/dist/src/utils/installationInfo.js.map +1 -0
- package/dist/src/utils/installationInfo.test.d.ts +6 -0
- package/dist/src/utils/installationInfo.test.js +466 -0
- package/dist/src/utils/installationInfo.test.js.map +1 -0
- package/dist/src/utils/languageUtils.d.ts +40 -0
- package/dist/src/utils/languageUtils.js +163 -0
- package/dist/src/utils/languageUtils.js.map +1 -0
- package/dist/src/utils/languageUtils.test.d.ts +6 -0
- package/dist/src/utils/languageUtils.test.js +341 -0
- package/dist/src/utils/languageUtils.test.js.map +1 -0
- package/dist/src/utils/math.d.ts +13 -0
- package/dist/src/utils/math.js +14 -0
- package/dist/src/utils/math.js.map +1 -0
- package/dist/src/utils/memoryDiagnostics.d.ts +65 -0
- package/dist/src/utils/memoryDiagnostics.js +365 -0
- package/dist/src/utils/memoryDiagnostics.js.map +1 -0
- package/dist/src/utils/memoryDiagnostics.test.d.ts +6 -0
- package/dist/src/utils/memoryDiagnostics.test.js +641 -0
- package/dist/src/utils/memoryDiagnostics.test.js.map +1 -0
- package/dist/src/utils/modelConfigUtils.d.ts +55 -0
- package/dist/src/utils/modelConfigUtils.js +186 -0
- package/dist/src/utils/modelConfigUtils.js.map +1 -0
- package/dist/src/utils/modelConfigUtils.test.d.ts +6 -0
- package/dist/src/utils/modelConfigUtils.test.js +1247 -0
- package/dist/src/utils/modelConfigUtils.test.js.map +1 -0
- package/dist/src/utils/nonInteractiveHelpers.d.ts +101 -0
- package/dist/src/utils/nonInteractiveHelpers.js +479 -0
- package/dist/src/utils/nonInteractiveHelpers.js.map +1 -0
- package/dist/src/utils/nonInteractiveHelpers.test.d.ts +6 -0
- package/dist/src/utils/nonInteractiveHelpers.test.js +1038 -0
- package/dist/src/utils/nonInteractiveHelpers.test.js.map +1 -0
- package/dist/src/utils/osc.d.ts +91 -0
- package/dist/src/utils/osc.js +162 -0
- package/dist/src/utils/osc.js.map +1 -0
- package/dist/src/utils/osc.test.d.ts +6 -0
- package/dist/src/utils/osc.test.js +217 -0
- package/dist/src/utils/osc.test.js.map +1 -0
- package/dist/src/utils/package.d.ts +12 -0
- package/dist/src/utils/package.js +24 -0
- package/dist/src/utils/package.js.map +1 -0
- package/dist/src/utils/processUtils.d.ts +13 -0
- package/dist/src/utils/processUtils.js +18 -0
- package/dist/src/utils/processUtils.js.map +1 -0
- package/dist/src/utils/processUtils.test.d.ts +6 -0
- package/dist/src/utils/processUtils.test.js +20 -0
- package/dist/src/utils/processUtils.test.js.map +1 -0
- package/dist/src/utils/readStdin.d.ts +6 -0
- package/dist/src/utils/readStdin.js +60 -0
- package/dist/src/utils/readStdin.js.map +1 -0
- package/dist/src/utils/readStdin.test.d.ts +6 -0
- package/dist/src/utils/readStdin.test.js +88 -0
- package/dist/src/utils/readStdin.test.js.map +1 -0
- package/dist/src/utils/relaunch.d.ts +9 -0
- package/dist/src/utils/relaunch.js +68 -0
- package/dist/src/utils/relaunch.js.map +1 -0
- package/dist/src/utils/relaunch.test.d.ts +6 -0
- package/dist/src/utils/relaunch.test.js +291 -0
- package/dist/src/utils/relaunch.test.js.map +1 -0
- package/dist/src/utils/resolvePath.d.ts +6 -0
- package/dist/src/utils/resolvePath.js +21 -0
- package/dist/src/utils/resolvePath.js.map +1 -0
- package/dist/src/utils/runBudget.d.ts +116 -0
- package/dist/src/utils/runBudget.js +235 -0
- package/dist/src/utils/runBudget.js.map +1 -0
- package/dist/src/utils/runBudget.test.d.ts +6 -0
- package/dist/src/utils/runBudget.test.js +187 -0
- package/dist/src/utils/runBudget.test.js.map +1 -0
- package/dist/src/utils/sandbox-macos-permissive-closed.sb +33 -0
- package/dist/src/utils/sandbox-macos-permissive-open.sb +28 -0
- package/dist/src/utils/sandbox-macos-permissive-proxied.sb +38 -0
- package/dist/src/utils/sandbox-macos-restrictive-closed.sb +94 -0
- package/dist/src/utils/sandbox-macos-restrictive-open.sb +97 -0
- package/dist/src/utils/sandbox-macos-restrictive-proxied.sb +99 -0
- package/dist/src/utils/sandbox.d.ts +7 -0
- package/dist/src/utils/sandbox.js +788 -0
- package/dist/src/utils/sandbox.js.map +1 -0
- package/dist/src/utils/sessionPaths.d.ts +19 -0
- package/dist/src/utils/sessionPaths.js +141 -0
- package/dist/src/utils/sessionPaths.js.map +1 -0
- package/dist/src/utils/sessionPaths.test.d.ts +6 -0
- package/dist/src/utils/sessionPaths.test.js +249 -0
- package/dist/src/utils/sessionPaths.test.js.map +1 -0
- package/dist/src/utils/settingsUtils.d.ts +167 -0
- package/dist/src/utils/settingsUtils.js +532 -0
- package/dist/src/utils/settingsUtils.js.map +1 -0
- package/dist/src/utils/settingsUtils.test.d.ts +6 -0
- package/dist/src/utils/settingsUtils.test.js +849 -0
- package/dist/src/utils/settingsUtils.test.js.map +1 -0
- package/dist/src/utils/spawnWrapper.d.ts +7 -0
- package/dist/src/utils/spawnWrapper.js +8 -0
- package/dist/src/utils/spawnWrapper.js.map +1 -0
- package/dist/src/utils/standalone-update-verify.d.ts +12 -0
- package/dist/src/utils/standalone-update-verify.js +43 -0
- package/dist/src/utils/standalone-update-verify.js.map +1 -0
- package/dist/src/utils/standalone-update-verify.test.d.ts +6 -0
- package/dist/src/utils/standalone-update-verify.test.js +27 -0
- package/dist/src/utils/standalone-update-verify.test.js.map +1 -0
- package/dist/src/utils/standalone-update.d.ts +27 -0
- package/dist/src/utils/standalone-update.js +714 -0
- package/dist/src/utils/standalone-update.js.map +1 -0
- package/dist/src/utils/standalone-update.test.d.ts +6 -0
- package/dist/src/utils/standalone-update.test.js +301 -0
- package/dist/src/utils/standalone-update.test.js.map +1 -0
- package/dist/src/utils/startupProfiler.d.ts +90 -0
- package/dist/src/utils/startupProfiler.js +267 -0
- package/dist/src/utils/startupProfiler.js.map +1 -0
- package/dist/src/utils/startupProfiler.test.d.ts +1 -0
- package/dist/src/utils/startupProfiler.test.js +293 -0
- package/dist/src/utils/startupProfiler.test.js.map +1 -0
- package/dist/src/utils/startupWarnings.d.ts +6 -0
- package/dist/src/utils/startupWarnings.js +40 -0
- package/dist/src/utils/startupWarnings.js.map +1 -0
- package/dist/src/utils/stdioHelpers.d.ts +31 -0
- package/dist/src/utils/stdioHelpers.js +38 -0
- package/dist/src/utils/stdioHelpers.js.map +1 -0
- package/dist/src/utils/systemInfo.d.ts +78 -0
- package/dist/src/utils/systemInfo.js +208 -0
- package/dist/src/utils/systemInfo.js.map +1 -0
- package/dist/src/utils/systemInfo.test.d.ts +6 -0
- package/dist/src/utils/systemInfo.test.js +380 -0
- package/dist/src/utils/systemInfo.test.js.map +1 -0
- package/dist/src/utils/systemInfoFields.d.ts +18 -0
- package/dist/src/utils/systemInfoFields.js +102 -0
- package/dist/src/utils/systemInfoFields.js.map +1 -0
- package/dist/src/utils/systemInfoFields.test.d.ts +6 -0
- package/dist/src/utils/systemInfoFields.test.js +74 -0
- package/dist/src/utils/systemInfoFields.test.js.map +1 -0
- package/dist/src/utils/terminalSequence.d.ts +21 -0
- package/dist/src/utils/terminalSequence.js +124 -0
- package/dist/src/utils/terminalSequence.js.map +1 -0
- package/dist/src/utils/terminalSequence.test.d.ts +6 -0
- package/dist/src/utils/terminalSequence.test.js +132 -0
- package/dist/src/utils/terminalSequence.test.js.map +1 -0
- package/dist/src/utils/truncatedDiffPreview.d.ts +6 -0
- package/dist/src/utils/truncatedDiffPreview.js +18 -0
- package/dist/src/utils/truncatedDiffPreview.js.map +1 -0
- package/dist/src/utils/updateEventEmitter.d.ts +11 -0
- package/dist/src/utils/updateEventEmitter.js +12 -0
- package/dist/src/utils/updateEventEmitter.js.map +1 -0
- package/dist/src/utils/userPromptExpansionHook.d.ts +9 -0
- package/dist/src/utils/userPromptExpansionHook.js +30 -0
- package/dist/src/utils/userPromptExpansionHook.js.map +1 -0
- package/dist/src/utils/userPromptExpansionHook.test.d.ts +6 -0
- package/dist/src/utils/userPromptExpansionHook.test.js +69 -0
- package/dist/src/utils/userPromptExpansionHook.test.js.map +1 -0
- package/dist/src/utils/userStartupWarnings.d.ts +12 -0
- package/dist/src/utils/userStartupWarnings.js +74 -0
- package/dist/src/utils/userStartupWarnings.js.map +1 -0
- package/dist/src/utils/userStartupWarnings.test.d.ts +6 -0
- package/dist/src/utils/userStartupWarnings.test.js +88 -0
- package/dist/src/utils/userStartupWarnings.test.js.map +1 -0
- package/dist/src/utils/version.d.ts +6 -0
- package/dist/src/utils/version.js +11 -0
- package/dist/src/utils/version.js.map +1 -0
- package/dist/src/utils/warningHandler.d.ts +29 -0
- package/dist/src/utils/warningHandler.js +100 -0
- package/dist/src/utils/warningHandler.js.map +1 -0
- package/dist/src/utils/warningHandler.test.d.ts +6 -0
- package/dist/src/utils/warningHandler.test.js +185 -0
- package/dist/src/utils/warningHandler.test.js.map +1 -0
- package/dist/src/utils/windowTitle.d.ts +12 -0
- package/dist/src/utils/windowTitle.js +19 -0
- package/dist/src/utils/windowTitle.js.map +1 -0
- package/dist/src/utils/windowTitle.test.d.ts +6 -0
- package/dist/src/utils/windowTitle.test.js +49 -0
- package/dist/src/utils/windowTitle.test.js.map +1 -0
- package/dist/src/utils/writeWithBackup.d.ts +49 -0
- package/dist/src/utils/writeWithBackup.js +136 -0
- package/dist/src/utils/writeWithBackup.js.map +1 -0
- package/dist/src/utils/writeWithBackup.test.d.ts +6 -0
- package/dist/src/utils/writeWithBackup.test.js +177 -0
- package/dist/src/utils/writeWithBackup.test.js.map +1 -0
- package/dist/src/validateNonInterActiveAuth.d.ts +8 -0
- package/dist/src/validateNonInterActiveAuth.js +66 -0
- package/dist/src/validateNonInterActiveAuth.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +121 -0
|
@@ -0,0 +1,2018 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2025 Qwen
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// German translations for Qwen Code CLI
|
|
8
|
+
// Deutsche Übersetzungen für Qwen Code CLI
|
|
9
|
+
|
|
10
|
+
export default {
|
|
11
|
+
// ============================================================================
|
|
12
|
+
// Help / UI Components
|
|
13
|
+
// ============================================================================
|
|
14
|
+
// Attachment hints
|
|
15
|
+
'↑ to manage attachments': '↑ Anhänge verwalten',
|
|
16
|
+
'← → select, Delete to remove, ↓ to exit':
|
|
17
|
+
'← → auswählen, Delete zum Löschen, ↓ beenden',
|
|
18
|
+
'Attachments: ': 'Anhänge: ',
|
|
19
|
+
'Basics:': 'Grundlagen:',
|
|
20
|
+
'Add context': 'Kontext hinzufügen',
|
|
21
|
+
'Use {{symbol}} to specify files for context (e.g., {{example}}) to target specific files or folders.':
|
|
22
|
+
'Verwenden Sie {{symbol}}, um Dateien als Kontext anzugeben (z.B. {{example}}), um bestimmte Dateien oder Ordner auszuwählen.',
|
|
23
|
+
'@': '@',
|
|
24
|
+
'@src/myFile.ts': '@src/myFile.ts',
|
|
25
|
+
'Shell mode': 'Shell-Modus',
|
|
26
|
+
'YOLO mode': 'YOLO-Modus',
|
|
27
|
+
'Auto mode': 'Auto-Modus',
|
|
28
|
+
'plan mode': 'Planungsmodus',
|
|
29
|
+
'auto-accept edits': 'Änderungen automatisch akzeptieren',
|
|
30
|
+
'Accepting edits': 'Änderungen werden akzeptiert',
|
|
31
|
+
'(shift + tab to cycle)': '(Shift + Tab zum Wechseln)',
|
|
32
|
+
'(tab to cycle)': '(Tab zum Wechseln)',
|
|
33
|
+
'Execute shell commands via {{symbol}} (e.g., {{example1}}) or use natural language (e.g., {{example2}}).':
|
|
34
|
+
'Shell-Befehle über {{symbol}} ausführen (z.B. {{example1}}) oder natürliche Sprache verwenden (z.B. {{example2}}).',
|
|
35
|
+
'!': '!',
|
|
36
|
+
'!npm run start': '!npm run start',
|
|
37
|
+
'start server': 'Server starten',
|
|
38
|
+
'Commands:': 'Befehle:',
|
|
39
|
+
'shell command': 'Shell-Befehl',
|
|
40
|
+
'Model Context Protocol command (from external servers)':
|
|
41
|
+
'Model Context Protocol Befehl (von externen Servern)',
|
|
42
|
+
'Keyboard Shortcuts:': 'Tastenkürzel:',
|
|
43
|
+
'Jump through words in the input': 'Wörter in der Eingabe überspringen',
|
|
44
|
+
'Close dialogs, cancel requests, or quit application':
|
|
45
|
+
'Dialoge schließen, Anfragen abbrechen oder Anwendung beenden',
|
|
46
|
+
'New line': 'Neue Zeile',
|
|
47
|
+
'New line (Alt+Enter works for certain linux distros)':
|
|
48
|
+
'Neue Zeile (Alt+Enter funktioniert bei bestimmten Linux-Distributionen)',
|
|
49
|
+
'Clear the screen': 'Bildschirm löschen',
|
|
50
|
+
'Open input in external editor': 'Eingabe in externem Editor öffnen',
|
|
51
|
+
'Send message': 'Nachricht senden',
|
|
52
|
+
'Initializing...': 'Initialisierung...',
|
|
53
|
+
'Connecting to MCP servers... ({{connected}}/{{total}})':
|
|
54
|
+
'Verbindung zu MCP servers wird hergestellt... ({{connected}}/{{total}})',
|
|
55
|
+
'Type your message or @path/to/file':
|
|
56
|
+
'Nachricht eingeben oder @Pfad/zur/Datei',
|
|
57
|
+
"Press 'i' for INSERT mode and 'Esc' for NORMAL mode.":
|
|
58
|
+
"Drücken Sie 'i' für den EINFÜGE-Modus und 'Esc' für den NORMAL-Modus.",
|
|
59
|
+
'Cancel operation / Clear input (double press)':
|
|
60
|
+
'Vorgang abbrechen / Eingabe löschen (doppelt drücken)',
|
|
61
|
+
'Cycle approval modes': 'Genehmigungsmodi durchschalten',
|
|
62
|
+
'Cycle through your prompt history': 'Eingabeverlauf durchblättern',
|
|
63
|
+
'For a full list of shortcuts, see {{docPath}}':
|
|
64
|
+
'Eine vollständige Liste der Tastenkürzel finden Sie unter {{docPath}}',
|
|
65
|
+
'docs/keyboard-shortcuts.md': 'docs/keyboard-shortcuts.md',
|
|
66
|
+
'for help on Tulex Code': 'für Hilfe zu Qwen Code',
|
|
67
|
+
'show version info': 'Versionsinformationen anzeigen',
|
|
68
|
+
'submit a bug report': 'Fehlerbericht einreichen',
|
|
69
|
+
Status: 'Status',
|
|
70
|
+
|
|
71
|
+
// ============================================================================
|
|
72
|
+
// System Information Fields
|
|
73
|
+
// ============================================================================
|
|
74
|
+
'Tulex Code': 'Tulex Code',
|
|
75
|
+
Runtime: 'Laufzeit',
|
|
76
|
+
OS: 'Betriebssystem',
|
|
77
|
+
Auth: 'Authentifizierung',
|
|
78
|
+
Model: 'Modell',
|
|
79
|
+
'Fast Model': 'Schnelles Modell',
|
|
80
|
+
Sandbox: 'Sandbox',
|
|
81
|
+
'Session ID': 'Sitzungs-ID',
|
|
82
|
+
'Base URL': 'Base URL',
|
|
83
|
+
Proxy: 'Proxy',
|
|
84
|
+
'Memory Usage': 'Speichernutzung',
|
|
85
|
+
'IDE Client': 'IDE-Client',
|
|
86
|
+
|
|
87
|
+
// ============================================================================
|
|
88
|
+
// Commands - General
|
|
89
|
+
// ============================================================================
|
|
90
|
+
'Analyzes the project and creates a tailored QWEN.md file.':
|
|
91
|
+
'Analysiert das Projekt und erstellt eine maßgeschneiderte QWEN.md-Datei.',
|
|
92
|
+
'List available Tulex Code tools. Usage: /tools [desc]':
|
|
93
|
+
'Verfügbare Tulex Code Werkzeuge auflisten. Verwendung: /tools [desc]',
|
|
94
|
+
'Open the skills panel (browse, search, toggle, pick).':
|
|
95
|
+
'Skills-Panel öffnen (durchsuchen, suchen, ein/aus, auswählen).',
|
|
96
|
+
'Manage Skills': 'Skills verwalten',
|
|
97
|
+
'Skills configuration saved.': 'Skills-Konfiguration gespeichert.',
|
|
98
|
+
'Skills configuration saved, but refresh failed: {{error}}. Restart to ensure the new state is applied.':
|
|
99
|
+
'Skills-Konfiguration gespeichert, aber Aktualisierung fehlgeschlagen: {{error}}. Bitte neu starten, um den neuen Zustand zu übernehmen.',
|
|
100
|
+
'Workspace is untrusted; workspace settings are ignored by the merged config. Run /trust first to persist skills changes here, or edit ~/.qwen/settings.json directly to manage skills at user scope.':
|
|
101
|
+
'Arbeitsbereich ist nicht vertrauenswürdig; Arbeitsbereichseinstellungen werden in der zusammengeführten Konfiguration ignoriert. Führe zuerst /trust aus oder bearbeite ~/.qwen/settings.json direkt, um Skills auf Benutzerebene zu verwalten.',
|
|
102
|
+
'SkillManager not available.': 'SkillManager nicht verfügbar.',
|
|
103
|
+
'Loading skills…': 'Skills werden geladen…',
|
|
104
|
+
'Failed to load skills: {{error}}':
|
|
105
|
+
'Skills konnten nicht geladen werden: {{error}}',
|
|
106
|
+
'Failed to save skills configuration: {{error}}':
|
|
107
|
+
'Speichern der Skill-Konfiguration fehlgeschlagen: {{error}}',
|
|
108
|
+
'All available skills are disabled. Edit ~/.qwen/settings.json or .qwen/settings.json (skills.disabled) to re-enable.':
|
|
109
|
+
'Alle verfügbaren Skills sind deaktiviert. Bearbeite ~/.qwen/settings.json oder .qwen/settings.json (skills.disabled), um sie wieder zu aktivieren.',
|
|
110
|
+
'Press esc to close.': 'Esc drücken, um zu schließen.',
|
|
111
|
+
'{{count}} skills · ': '{{count}} Skills · ',
|
|
112
|
+
'{{matched}} / {{total}} skills · ': '{{matched}} / {{total}} Skills · ',
|
|
113
|
+
'Space toggle · Enter pick (fill input) · Esc save & exit · workspace scope':
|
|
114
|
+
'Leertaste umschalten · Enter auswählen (in Eingabe) · Esc speichern & beenden · Arbeitsbereich',
|
|
115
|
+
'Search:': 'Suche:',
|
|
116
|
+
'type to filter…': 'Tippen zum Filtern…',
|
|
117
|
+
'No skills are currently available.': 'Derzeit sind keine Skills verfügbar.',
|
|
118
|
+
'All available skills are locked at a higher scope (see below).':
|
|
119
|
+
'Alle verfügbaren Skills sind in einer höheren Ebene gesperrt (siehe unten).',
|
|
120
|
+
'No skills match the search.': 'Keine Skills passen zur Suche.',
|
|
121
|
+
'Locked by higher-scope settings (cannot toggle here):':
|
|
122
|
+
'Gesperrt durch Einstellungen einer höheren Ebene (kann hier nicht umgeschaltet werden):',
|
|
123
|
+
'higher scope': 'höhere Ebene',
|
|
124
|
+
' {{name}} {{description}} [locked: {{scope}}]':
|
|
125
|
+
' {{name}} {{description}} [gesperrt: {{scope}}]',
|
|
126
|
+
'↑/↓ navigate · backspace edits search':
|
|
127
|
+
'↑/↓ navigieren · Rücktaste bearbeitet Suche',
|
|
128
|
+
Bundled: 'Mitgeliefert',
|
|
129
|
+
'Available Tulex Code CLI tools:': 'Verfügbare Tulex Code CLI-Werkzeuge:',
|
|
130
|
+
'No tools available': 'Keine Werkzeuge verfügbar',
|
|
131
|
+
'View or change the approval mode for tool usage':
|
|
132
|
+
'Genehmigungsmodus für Werkzeugnutzung anzeigen oder ändern',
|
|
133
|
+
'View or change the language setting':
|
|
134
|
+
'Spracheinstellung anzeigen oder ändern',
|
|
135
|
+
'List background tasks (text dump — interactive dialog opens via the footer pill)':
|
|
136
|
+
'Hintergrundaufgaben auflisten (Textausgabe; der interaktive Dialog lässt sich über die Schaltfläche in der Fußzeile öffnen)',
|
|
137
|
+
'Delete a previous session': 'Eine frühere Sitzung löschen',
|
|
138
|
+
'Run installation and environment diagnostics':
|
|
139
|
+
'Installations- und Umgebungsdiagnosen ausführen',
|
|
140
|
+
'Browse dynamic model catalogs and choose which models stay enabled locally':
|
|
141
|
+
'Dynamische Modellkataloge durchsuchen und auswählen, welche Modelle lokal aktiviert bleiben',
|
|
142
|
+
'Generate a one-line session recap now':
|
|
143
|
+
'Jetzt eine einzeilige Sitzungszusammenfassung erstellen',
|
|
144
|
+
'Rename the current conversation. --auto lets the fast model pick a title.':
|
|
145
|
+
'Die aktuelle Unterhaltung umbenennen. Mit --auto lässt du das schnelle Modell einen Titel wählen.',
|
|
146
|
+
'Rewind conversation to a previous turn':
|
|
147
|
+
'Die Unterhaltung auf einen früheren Gesprächsschritt zurücksetzen',
|
|
148
|
+
'Rewind Conversation': 'Unterhaltung zurückspulen',
|
|
149
|
+
'No user turns to rewind to.': 'Keine Benutzerrunden zum Zurückspulen.',
|
|
150
|
+
'Rewind to: ': 'Zurückspulen zu: ',
|
|
151
|
+
'Restore code and conversation': 'Code und Unterhaltung wiederherstellen',
|
|
152
|
+
'Restore conversation only': 'Nur Unterhaltung wiederherstellen',
|
|
153
|
+
'Restore code only': 'Nur Code wiederherstellen',
|
|
154
|
+
'Never mind': 'Egal',
|
|
155
|
+
'Computing file changes...': 'Dateiänderungen werden berechnet...',
|
|
156
|
+
'Restoring...': 'Wiederherstellung läuft...',
|
|
157
|
+
'Restored {{count}} file(s).': '{{count}} Datei(en) wiederhergestellt.',
|
|
158
|
+
'Failed to restore files: {{error}}':
|
|
159
|
+
'Fehler beim Wiederherstellen der Dateien: {{error}}',
|
|
160
|
+
'Rewind failed: {{error}}': 'Zurückspulen fehlgeschlagen: {{error}}',
|
|
161
|
+
'Cannot rewind conversation: no active model client.':
|
|
162
|
+
'Konversation kann nicht zurückgespult werden: kein aktiver Modell-Client.',
|
|
163
|
+
'Code restored, but conversation could not be rewound (no active client).':
|
|
164
|
+
'Code wiederhergestellt, aber Konversation konnte nicht zurückgespult werden (kein aktiver Client).',
|
|
165
|
+
'Conversation rewound. Edit your prompt and press Enter to continue.':
|
|
166
|
+
'Konversation zurückgespult. Bearbeite deinen Prompt und drücke Enter, um fortzufahren.',
|
|
167
|
+
'Rewinding does not affect files edited manually or via shell commands.':
|
|
168
|
+
'Das Zurückspulen wirkt sich nicht auf Dateien aus, die manuell oder per Shell-Befehl geändert wurden.',
|
|
169
|
+
'Cannot rewind to a turn that was compressed. Try a more recent turn.':
|
|
170
|
+
'Zu einem komprimierten Turn kann nicht zurückgespult werden. Bitte einen aktuelleren Turn versuchen.',
|
|
171
|
+
'File restore is unavailable for this turn (no captured file changes, or this turn predates the current session).':
|
|
172
|
+
'Datei-Wiederherstellung ist für diesen Turn nicht verfügbar (keine erfassten Dateiänderungen, oder dieser Turn liegt vor der aktuellen Sitzung).',
|
|
173
|
+
'(+{{insertions}} -{{deletions}} in {{count}} file)':
|
|
174
|
+
'(+{{insertions}} -{{deletions}} in {{count}} Datei)',
|
|
175
|
+
'(+{{insertions}} -{{deletions}} in {{count}} files)':
|
|
176
|
+
'(+{{insertions}} -{{deletions}} in {{count}} Dateien)',
|
|
177
|
+
'Failed to restore {{count}} file(s): {{files}}':
|
|
178
|
+
'{{count}} Datei(en) konnten nicht wiederhergestellt werden: {{files}}',
|
|
179
|
+
'Cannot restore files: this turn was created before file checkpointing was enabled.':
|
|
180
|
+
'Dateien können nicht wiederhergestellt werden: Dieser Turn wurde erstellt, bevor Datei-Checkpointing aktiviert war.',
|
|
181
|
+
'No files needed to be restored.':
|
|
182
|
+
'Keine Dateien mussten wiederhergestellt werden.',
|
|
183
|
+
'↑↓ to navigate · Enter to select · Esc to go back':
|
|
184
|
+
'↑↓ navigieren · Enter auswählen · Esc zurück',
|
|
185
|
+
'↑↓ to navigate · Enter to select · Esc to cancel':
|
|
186
|
+
'↑↓ navigieren · Enter auswählen · Esc abbrechen',
|
|
187
|
+
'Enter/Y to confirm · Esc/N to go back': 'Enter/Y bestätigen · Esc/N zurück',
|
|
188
|
+
'change the theme': 'Design ändern',
|
|
189
|
+
'Select Theme': 'Design auswählen',
|
|
190
|
+
Preview: 'Vorschau',
|
|
191
|
+
'(Use Enter to select, Tab to configure scope)':
|
|
192
|
+
'(Enter zum Auswählen, Tab zum Konfigurieren des Bereichs)',
|
|
193
|
+
'(Use Enter to apply scope, Tab to go back)':
|
|
194
|
+
'(Enter zum Anwenden des Bereichs, Tab zum Zurückgehen)',
|
|
195
|
+
'Theme configuration unavailable due to NO_COLOR env variable.':
|
|
196
|
+
'Design-Konfiguration aufgrund der NO_COLOR-Umgebungsvariable nicht verfügbar.',
|
|
197
|
+
'Theme "{{themeName}}" not found.': 'Design "{{themeName}}" nicht gefunden.',
|
|
198
|
+
'Theme "{{themeName}}" not found in selected scope.':
|
|
199
|
+
'Design "{{themeName}}" im ausgewählten Bereich nicht gefunden.',
|
|
200
|
+
'Clear conversation history and free up context':
|
|
201
|
+
'Gesprächsverlauf löschen und Kontext freigeben',
|
|
202
|
+
'Compresses the context by replacing it with a summary.':
|
|
203
|
+
'Komprimiert den Kontext durch Ersetzen mit einer Zusammenfassung.',
|
|
204
|
+
'open full Tulex Code documentation in your browser':
|
|
205
|
+
'Vollständige Qwen Code Dokumentation im Browser öffnen',
|
|
206
|
+
'Configuration not available.': 'Konfiguration nicht verfügbar.',
|
|
207
|
+
'Connect an LLM provider': 'LLM-Anbieter verbinden',
|
|
208
|
+
'Copy the last AI response to clipboard (/copy N for Nth-latest)':
|
|
209
|
+
'Letzte KI-Antwort in die Zwischenablage kopieren (/copy N für die N-letzte)',
|
|
210
|
+
|
|
211
|
+
// ============================================================================
|
|
212
|
+
// Commands - Agents
|
|
213
|
+
// ============================================================================
|
|
214
|
+
'Manage subagents for specialized task delegation.':
|
|
215
|
+
'Unteragenten für spezialisierte Aufgabendelegation verwalten.',
|
|
216
|
+
'Manage existing subagents (view, edit, delete).':
|
|
217
|
+
'Bestehende Unteragenten verwalten (anzeigen, bearbeiten, löschen).',
|
|
218
|
+
'Create a new subagent with guided setup.':
|
|
219
|
+
'Neuen Unteragenten mit geführter Einrichtung erstellen.',
|
|
220
|
+
|
|
221
|
+
// ============================================================================
|
|
222
|
+
// Agents - Management Dialog
|
|
223
|
+
// ============================================================================
|
|
224
|
+
Agents: 'Agenten',
|
|
225
|
+
'Choose Action': 'Aktion wählen',
|
|
226
|
+
'Edit {{name}}': '{{name}} bearbeiten',
|
|
227
|
+
'Edit Tools: {{name}}': 'Werkzeuge bearbeiten: {{name}}',
|
|
228
|
+
'Edit Color: {{name}}': 'Farbe bearbeiten: {{name}}',
|
|
229
|
+
'Delete {{name}}': '{{name}} löschen',
|
|
230
|
+
'Unknown Step': 'Unbekannter Schritt',
|
|
231
|
+
'Esc to close': 'Esc zum Schließen',
|
|
232
|
+
'Enter to select, ↑↓ to navigate, Esc to close':
|
|
233
|
+
'Enter zum Auswählen, ↑↓ zum Navigieren, Esc zum Schließen',
|
|
234
|
+
'Esc to go back': 'Esc zum Zurückgehen',
|
|
235
|
+
'Enter to confirm, Esc to cancel': 'Enter zum Bestätigen, Esc zum Abbrechen',
|
|
236
|
+
'Enter to select, ↑↓ to navigate, Esc to go back':
|
|
237
|
+
'Enter zum Auswählen, ↑↓ zum Navigieren, Esc zum Zurückgehen',
|
|
238
|
+
'Enter to submit, Esc to go back': 'Enter zum Absenden, Esc zum Zurückgehen',
|
|
239
|
+
'Invalid step: {{step}}': 'Ungültiger Schritt: {{step}}',
|
|
240
|
+
'No subagents found.': 'Keine Unteragenten gefunden.',
|
|
241
|
+
"Use '/agents create' to create your first subagent.":
|
|
242
|
+
"Verwenden Sie '/agents create', um Ihren ersten Unteragenten zu erstellen.",
|
|
243
|
+
'(built-in)': '(integriert)',
|
|
244
|
+
'(overridden by project level agent)': '(überschrieben durch Projektagent)',
|
|
245
|
+
'Project Level ({{path}})': 'Projektebene ({{path}})',
|
|
246
|
+
'User Level ({{path}})': 'Benutzerebene ({{path}})',
|
|
247
|
+
'Built-in Agents': 'Integrierte Agenten',
|
|
248
|
+
'Extension Agents': 'Erweiterungs-Agenten',
|
|
249
|
+
'Using: {{count}} agents': 'Verwendet: {{count}} Agenten',
|
|
250
|
+
'View Agent': 'Agent anzeigen',
|
|
251
|
+
'Edit Agent': 'Agent bearbeiten',
|
|
252
|
+
'Delete Agent': 'Agent löschen',
|
|
253
|
+
Back: 'Zurück',
|
|
254
|
+
'No agent selected': 'Kein Agent ausgewählt',
|
|
255
|
+
'File Path: ': 'Dateipfad: ',
|
|
256
|
+
'Tools: ': 'Werkzeuge: ',
|
|
257
|
+
'Color: ': 'Farbe: ',
|
|
258
|
+
'Description:': 'Beschreibung:',
|
|
259
|
+
'System Prompt:': 'System-Prompt:',
|
|
260
|
+
'Open in editor': 'Im Editor öffnen',
|
|
261
|
+
'Edit tools': 'Werkzeuge bearbeiten',
|
|
262
|
+
'Edit color': 'Farbe bearbeiten',
|
|
263
|
+
'❌ Error:': '❌ Fehler:',
|
|
264
|
+
'Are you sure you want to delete agent "{{name}}"?':
|
|
265
|
+
'Sind Sie sicher, dass Sie den Agenten "{{name}}" löschen möchten?',
|
|
266
|
+
// ============================================================================
|
|
267
|
+
// Agents - Creation Wizard
|
|
268
|
+
// ============================================================================
|
|
269
|
+
'Project Level (.qwen/agents/)': 'Projektebene (.qwen/agents/)',
|
|
270
|
+
'User Level (~/.qwen/agents/)': 'Benutzerebene (~/.qwen/agents/)',
|
|
271
|
+
'✅ Subagent Created Successfully!': '✅ Unteragent erfolgreich erstellt!',
|
|
272
|
+
'Subagent "{{name}}" has been saved to {{level}} level.':
|
|
273
|
+
'Unteragent "{{name}}" wurde auf {{level}}-Ebene gespeichert.',
|
|
274
|
+
'Name: ': 'Name: ',
|
|
275
|
+
'Location: ': 'Speicherort: ',
|
|
276
|
+
'❌ Error saving subagent:': '❌ Fehler beim Speichern des Unteragenten:',
|
|
277
|
+
'Warnings:': 'Warnungen:',
|
|
278
|
+
'Name "{{name}}" already exists at {{level}} level - will overwrite existing subagent':
|
|
279
|
+
'Name "{{name}}" existiert bereits auf {{level}}-Ebene - bestehender Unteragent wird überschrieben',
|
|
280
|
+
'Name "{{name}}" exists at user level - project level will take precedence':
|
|
281
|
+
'Name "{{name}}" existiert auf Benutzerebene - Projektebene hat Vorrang',
|
|
282
|
+
'Name "{{name}}" exists at project level - existing subagent will take precedence':
|
|
283
|
+
'Name "{{name}}" existiert auf Projektebene - bestehender Unteragent hat Vorrang',
|
|
284
|
+
'Description is over {{length}} characters':
|
|
285
|
+
'Beschreibung ist über {{length}} Zeichen',
|
|
286
|
+
'System prompt is over {{length}} characters':
|
|
287
|
+
'System-Prompt ist über {{length}} Zeichen',
|
|
288
|
+
// Agents - Creation Wizard Steps
|
|
289
|
+
'Step {{n}}: Choose Location': 'Schritt {{n}}: Speicherort wählen',
|
|
290
|
+
'Step {{n}}: Choose Generation Method':
|
|
291
|
+
'Schritt {{n}}: Generierungsmethode wählen',
|
|
292
|
+
'Generate with Tulex Code (Recommended)':
|
|
293
|
+
'Mit Tulex Code generieren (Empfohlen)',
|
|
294
|
+
'Manual Creation': 'Manuelle Erstellung',
|
|
295
|
+
'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)':
|
|
296
|
+
'Beschreiben Sie, was dieser Unteragent tun soll und wann er verwendet werden soll. (Ausführliche Beschreibung für beste Ergebnisse)',
|
|
297
|
+
'e.g., Expert code reviewer that reviews code based on best practices...':
|
|
298
|
+
'z.B. Experte für Code-Reviews, der Code nach Best Practices überprüft...',
|
|
299
|
+
'Generating subagent configuration...':
|
|
300
|
+
'Unteragent-Konfiguration wird generiert...',
|
|
301
|
+
'Failed to generate subagent: {{error}}':
|
|
302
|
+
'Fehler beim Generieren des Unteragenten: {{error}}',
|
|
303
|
+
'Step {{n}}: Describe Your Subagent': 'Schritt {{n}}: Unteragent beschreiben',
|
|
304
|
+
'Step {{n}}: Enter Subagent Name': 'Schritt {{n}}: Unteragent-Name eingeben',
|
|
305
|
+
'Step {{n}}: Enter System Prompt': 'Schritt {{n}}: System-Prompt eingeben',
|
|
306
|
+
'Step {{n}}: Enter Description': 'Schritt {{n}}: Beschreibung eingeben',
|
|
307
|
+
// Agents - Tool Selection
|
|
308
|
+
'Step {{n}}: Select Tools': 'Schritt {{n}}: Werkzeuge auswählen',
|
|
309
|
+
'All Tools (Default)': 'Alle Werkzeuge (Standard)',
|
|
310
|
+
'All Tools': 'Alle Werkzeuge',
|
|
311
|
+
'Read-only Tools': 'Nur-Lese-Werkzeuge',
|
|
312
|
+
'Read & Edit Tools': 'Lese- und Bearbeitungswerkzeuge',
|
|
313
|
+
'Read & Edit & Execution Tools':
|
|
314
|
+
'Lese-, Bearbeitungs- und Ausführungswerkzeuge',
|
|
315
|
+
'All tools selected, including MCP tools':
|
|
316
|
+
'Alle Tools ausgewählt, einschließlich MCP tools',
|
|
317
|
+
'Selected tools:': 'Ausgewählte Werkzeuge:',
|
|
318
|
+
'Read-only tools:': 'Nur-Lese-Werkzeuge:',
|
|
319
|
+
'Edit tools:': 'Bearbeitungswerkzeuge:',
|
|
320
|
+
'Execution tools:': 'Ausführungswerkzeuge:',
|
|
321
|
+
'Step {{n}}: Choose Background Color':
|
|
322
|
+
'Schritt {{n}}: Hintergrundfarbe wählen',
|
|
323
|
+
'Step {{n}}: Confirm and Save': 'Schritt {{n}}: Bestätigen und Speichern',
|
|
324
|
+
// Agents - Navigation & Instructions
|
|
325
|
+
'Esc to cancel': 'Esc zum Abbrechen',
|
|
326
|
+
'Press Enter to save, e to save and edit, Esc to go back':
|
|
327
|
+
'Enter zum Speichern, e zum Speichern und Bearbeiten, Esc zum Zurückgehen',
|
|
328
|
+
'Press Enter to continue, {{navigation}}Esc to {{action}}':
|
|
329
|
+
'Enter zum Fortfahren, {{navigation}}Esc zum {{action}}',
|
|
330
|
+
cancel: 'Abbrechen',
|
|
331
|
+
'go back': 'Zurückgehen',
|
|
332
|
+
'↑↓ to navigate, ': '↑↓ zum Navigieren, ',
|
|
333
|
+
'Enter a clear, unique name for this subagent.':
|
|
334
|
+
'Geben Sie einen eindeutigen Namen für diesen Unteragenten ein.',
|
|
335
|
+
'e.g., Code Reviewer': 'z.B. Code-Reviewer',
|
|
336
|
+
'Name cannot be empty.': 'Name darf nicht leer sein.',
|
|
337
|
+
"Write the system prompt that defines this subagent's behavior. Be comprehensive for best results.":
|
|
338
|
+
'Schreiben Sie den System-Prompt, der das Verhalten dieses Unteragenten definiert. Ausführlich für beste Ergebnisse.',
|
|
339
|
+
'e.g., You are an expert code reviewer...':
|
|
340
|
+
'z.B. Sie sind ein Experte für Code-Reviews...',
|
|
341
|
+
'System prompt cannot be empty.': 'System-Prompt darf nicht leer sein.',
|
|
342
|
+
'Describe when and how this subagent should be used.':
|
|
343
|
+
'Beschreiben Sie, wann und wie dieser Unteragent verwendet werden soll.',
|
|
344
|
+
'e.g., Reviews code for best practices and potential bugs.':
|
|
345
|
+
'z.B. Überprüft Code auf Best Practices und mögliche Fehler.',
|
|
346
|
+
'Description cannot be empty.': 'Beschreibung darf nicht leer sein.',
|
|
347
|
+
'Failed to launch editor: {{error}}':
|
|
348
|
+
'Fehler beim Starten des Editors: {{error}}',
|
|
349
|
+
'Failed to save and edit subagent: {{error}}':
|
|
350
|
+
'Fehler beim Speichern und Bearbeiten des Unteragenten: {{error}}',
|
|
351
|
+
|
|
352
|
+
// ============================================================================
|
|
353
|
+
// Commands - General (continued)
|
|
354
|
+
// ============================================================================
|
|
355
|
+
'View and edit Qwen Code settings':
|
|
356
|
+
'Qwen Code Einstellungen anzeigen und bearbeiten',
|
|
357
|
+
Settings: 'Einstellungen',
|
|
358
|
+
'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.':
|
|
359
|
+
'Um Änderungen zu sehen, muss Qwen Code neu gestartet werden. Drücken Sie r, um jetzt zu beenden und Änderungen anzuwenden.',
|
|
360
|
+
// ============================================================================
|
|
361
|
+
// Settings Labels
|
|
362
|
+
// ============================================================================
|
|
363
|
+
'Vim Mode': 'Vim-Modus',
|
|
364
|
+
'Attribution: commit': 'Attribution: Commit',
|
|
365
|
+
'Terminal Bell Notification': 'Terminal-Signalton',
|
|
366
|
+
'Enable Usage Statistics': 'Nutzungsstatistiken aktivieren',
|
|
367
|
+
Theme: 'Farbschema',
|
|
368
|
+
'Preferred Editor': 'Bevorzugter Editor',
|
|
369
|
+
'Auto-connect to IDE': 'Automatische Verbindung zur IDE',
|
|
370
|
+
'Debug Keystroke Logging': 'Debug-Protokollierung von Tastatureingaben',
|
|
371
|
+
'Language: UI': 'Sprache: Benutzeroberfläche',
|
|
372
|
+
'Language: Model': 'Sprache: Modell',
|
|
373
|
+
'Output Format': 'Ausgabeformat',
|
|
374
|
+
'Hide Window Title': 'Fenstertitel ausblenden',
|
|
375
|
+
'Show Status in Title': 'Status im Titel anzeigen',
|
|
376
|
+
'Hide Tips': 'Tipps ausblenden',
|
|
377
|
+
'Show Line Numbers in Code': 'Zeilennummern im Code anzeigen',
|
|
378
|
+
'Show Citations': 'Quellenangaben anzeigen',
|
|
379
|
+
'Custom Witty Phrases': 'Benutzerdefinierte Witzige Sprüche',
|
|
380
|
+
'Show Welcome Back Dialog': 'Willkommen-zurück-Dialog anzeigen',
|
|
381
|
+
'Enable User Feedback': 'Benutzerfeedback aktivieren',
|
|
382
|
+
'How is Qwen doing this session? (optional)':
|
|
383
|
+
'Wie macht sich Tulex in dieser Sitzung? (optional)',
|
|
384
|
+
Bad: 'Schlecht',
|
|
385
|
+
Fine: 'In Ordnung',
|
|
386
|
+
Good: 'Gut',
|
|
387
|
+
Dismiss: 'Ignorieren',
|
|
388
|
+
'Screen Reader Mode': 'Bildschirmleser-Modus',
|
|
389
|
+
'Max Session Turns': 'Maximale Sitzungsrunden',
|
|
390
|
+
'Skip Next Speaker Check': 'Nächste-Sprecher-Prüfung überspringen',
|
|
391
|
+
'Skip Loop Detection': 'Schleifenerkennung überspringen',
|
|
392
|
+
'Skip Startup Context': 'Startkontext überspringen',
|
|
393
|
+
'Enable OpenAI Logging': 'OpenAI-Protokollierung aktivieren',
|
|
394
|
+
'OpenAI Logging Directory': 'OpenAI-Protokollierungsverzeichnis',
|
|
395
|
+
Timeout: 'Zeitlimit',
|
|
396
|
+
'Max Retries': 'Maximale Wiederholungen',
|
|
397
|
+
'Load Memory From Include Directories':
|
|
398
|
+
'Speicher aus Include-Verzeichnissen laden',
|
|
399
|
+
'Respect .gitignore': '.gitignore beachten',
|
|
400
|
+
'Respect .qwenignore': '.qwenignore beachten',
|
|
401
|
+
'Enable Recursive File Search': 'Rekursive Dateisuche aktivieren',
|
|
402
|
+
'Interactive Shell (PTY)': 'Interaktive Shell (PTY)',
|
|
403
|
+
'Show Color': 'Farbe anzeigen',
|
|
404
|
+
'Auto Accept': 'Automatisch akzeptieren',
|
|
405
|
+
'Use Ripgrep': 'Ripgrep verwenden',
|
|
406
|
+
'Use Builtin Ripgrep': 'Integriertes Ripgrep verwenden',
|
|
407
|
+
'Tool Output Truncation Threshold':
|
|
408
|
+
'Schwellenwert für Werkzeugausgabe-Kürzung',
|
|
409
|
+
'Tool Output Truncation Lines': 'Zeilen für Werkzeugausgabe-Kürzung',
|
|
410
|
+
'Folder Trust': 'Ordnervertrauen',
|
|
411
|
+
'Tool Schema Compliance': 'Tool Schema-Konformität',
|
|
412
|
+
// Settings enum options
|
|
413
|
+
'Auto (detect from system)': 'Automatisch (vom System erkennen)',
|
|
414
|
+
'Auto (detect terminal theme)': 'Automatisch (Terminal-Theme erkennen)',
|
|
415
|
+
Auto: 'Automatisch',
|
|
416
|
+
Text: 'Text',
|
|
417
|
+
JSON: 'JSON',
|
|
418
|
+
Plan: 'Plan',
|
|
419
|
+
'Ask permissions': 'Berechtigung anfragen',
|
|
420
|
+
'Auto Edit': 'Automatisch bearbeiten',
|
|
421
|
+
YOLO: 'YOLO',
|
|
422
|
+
'toggle vim mode on/off': 'Vim-Modus ein-/ausschalten',
|
|
423
|
+
'check session stats. Usage: /stats [model|tools]':
|
|
424
|
+
'Sitzungsstatistiken prüfen. Verwendung: /stats [model|tools]',
|
|
425
|
+
'Show model-specific usage statistics.':
|
|
426
|
+
'Modellspezifische Nutzungsstatistiken anzeigen.',
|
|
427
|
+
'Show tool-specific usage statistics.':
|
|
428
|
+
'Werkzeugspezifische Nutzungsstatistiken anzeigen.',
|
|
429
|
+
'exit the cli': 'CLI beenden',
|
|
430
|
+
'Manage workspace directories': 'Arbeitsbereichsverzeichnisse verwalten',
|
|
431
|
+
'Add directories to the workspace. Use comma to separate multiple paths':
|
|
432
|
+
'Verzeichnisse zum Arbeitsbereich hinzufügen. Komma zum Trennen mehrerer Pfade verwenden',
|
|
433
|
+
'Show all directories in the workspace':
|
|
434
|
+
'Alle Verzeichnisse im Arbeitsbereich anzeigen',
|
|
435
|
+
'set external editor preference': 'Externen Editor festlegen',
|
|
436
|
+
'Select Editor': 'Editor auswählen',
|
|
437
|
+
'Editor Preference': 'Editor-Einstellung',
|
|
438
|
+
'These editors are currently supported. Please note that some editors cannot be used in sandbox mode.':
|
|
439
|
+
'Diese Editoren werden derzeit unterstützt. Bitte beachten Sie, dass einige Editoren nicht im Sandbox-Modus verwendet werden können.',
|
|
440
|
+
'Your preferred editor is:': 'Ihr bevorzugter Editor ist:',
|
|
441
|
+
'Manage extensions': 'Erweiterungen verwalten',
|
|
442
|
+
'Manage installed extensions': 'Installierte Erweiterungen verwalten',
|
|
443
|
+
'Disable an extension': 'Erweiterung deaktivieren',
|
|
444
|
+
'Enable an extension': 'Erweiterung aktivieren',
|
|
445
|
+
'Install an extension from a git repo or local path':
|
|
446
|
+
'Erweiterung aus Git-Repository oder lokalem Pfad installieren',
|
|
447
|
+
'Uninstall an extension': 'Erweiterung deinstallieren',
|
|
448
|
+
'No extensions installed.': 'Keine Erweiterungen installiert.',
|
|
449
|
+
'Extension "{{name}}" not found.': 'Erweiterung "{{name}}" nicht gefunden.',
|
|
450
|
+
'No extensions to update.': 'Keine Erweiterungen zum Aktualisieren.',
|
|
451
|
+
'Usage: /extensions install <source>':
|
|
452
|
+
'Verwendung: /extensions install <Quelle>',
|
|
453
|
+
'Installing extension from "{{source}}"...':
|
|
454
|
+
'Installiere Erweiterung von "{{source}}"...',
|
|
455
|
+
'Extension "{{name}}" installed successfully.':
|
|
456
|
+
'Erweiterung "{{name}}" erfolgreich installiert.',
|
|
457
|
+
'Failed to install extension from "{{source}}": {{error}}':
|
|
458
|
+
'Fehler beim Installieren der Erweiterung von "{{source}}": {{error}}',
|
|
459
|
+
'Do you want to continue? [Y/n]: ': 'Möchten Sie fortfahren? [Y/n]: ',
|
|
460
|
+
'Do you want to continue?': 'Möchten Sie fortfahren?',
|
|
461
|
+
'Installing extension "{{name}}".':
|
|
462
|
+
'Erweiterung "{{name}}" wird installiert.',
|
|
463
|
+
'**Extensions may introduce unexpected behavior. Ensure you have investigated the extension source and trust the author.**':
|
|
464
|
+
'**Erweiterungen können unerwartetes Verhalten verursachen. Stellen Sie sicher, dass Sie die Erweiterungsquelle untersucht haben und dem Autor vertrauen.**',
|
|
465
|
+
'This extension will run the following MCP servers:':
|
|
466
|
+
'Diese Erweiterung wird folgende MCP servers ausführen:',
|
|
467
|
+
local: 'lokal',
|
|
468
|
+
'This extension will add the following commands: {{commands}}.':
|
|
469
|
+
'Diese Erweiterung wird folgende Befehle hinzufügen: {{commands}}.',
|
|
470
|
+
'This extension will append info to your QWEN.md context using {{fileName}}':
|
|
471
|
+
'Diese Erweiterung wird Informationen zu Ihrem QWEN.md-Kontext mit {{fileName}} hinzufügen',
|
|
472
|
+
'This extension will install the following skills:':
|
|
473
|
+
'Diese Erweiterung wird folgende Fähigkeiten installieren:',
|
|
474
|
+
'This extension will install the following subagents:':
|
|
475
|
+
'Diese Erweiterung wird folgende Unteragenten installieren:',
|
|
476
|
+
'Installation cancelled for "{{name}}".':
|
|
477
|
+
'Installation von "{{name}}" abgebrochen.',
|
|
478
|
+
'You are installing an extension from {{originSource}}. Some features may not work perfectly with Qwen Code.':
|
|
479
|
+
'Sie installieren eine Erweiterung von {{originSource}}. Einige Funktionen funktionieren möglicherweise nicht perfekt mit Qwen Code.',
|
|
480
|
+
'--ref and --auto-update are not applicable for marketplace extensions.':
|
|
481
|
+
'--ref und --auto-update sind nicht anwendbar für Marketplace-Erweiterungen.',
|
|
482
|
+
'Extension "{{name}}" installed successfully and enabled.':
|
|
483
|
+
'Erweiterung "{{name}}" erfolgreich installiert und aktiviert.',
|
|
484
|
+
'The github URL, local path, or marketplace source (marketplace-url:plugin-name) of the extension to install.':
|
|
485
|
+
'Die GitHub-URL, der lokale Pfad oder die Marketplace-Quelle (marketplace-url:plugin-name) der zu installierenden Erweiterung.',
|
|
486
|
+
'The git ref to install from.': 'Die Git-Referenz für die Installation.',
|
|
487
|
+
'Enable auto-update for this extension.':
|
|
488
|
+
'Automatisches Update für diese Erweiterung aktivieren.',
|
|
489
|
+
'Enable pre-release versions for this extension.':
|
|
490
|
+
'Pre-Release-Versionen für diese Erweiterung aktivieren.',
|
|
491
|
+
'Acknowledge the security risks of installing an extension and skip the confirmation prompt.':
|
|
492
|
+
'Sicherheitsrisiken der Erweiterungsinstallation bestätigen und Bestätigungsaufforderung überspringen.',
|
|
493
|
+
'The source argument must be provided.':
|
|
494
|
+
'Das Quellargument muss angegeben werden.',
|
|
495
|
+
'Extension "{{name}}" successfully uninstalled.':
|
|
496
|
+
'Erweiterung "{{name}}" erfolgreich deinstalliert.',
|
|
497
|
+
'Uninstalls an extension.': 'Deinstalliert eine Erweiterung.',
|
|
498
|
+
'The name or source path of the extension to uninstall.':
|
|
499
|
+
'Der Name oder Quellpfad der zu deinstallierenden Erweiterung.',
|
|
500
|
+
'Please include the name of the extension to uninstall as a positional argument.':
|
|
501
|
+
'Bitte geben Sie den Namen der zu deinstallierenden Erweiterung als Positionsargument an.',
|
|
502
|
+
'Enables an extension.': 'Aktiviert eine Erweiterung.',
|
|
503
|
+
'The name of the extension to enable.':
|
|
504
|
+
'Der Name der zu aktivierenden Erweiterung.',
|
|
505
|
+
'The scope to enable the extenison in. If not set, will be enabled in all scopes.':
|
|
506
|
+
'Der Bereich, in dem die Erweiterung aktiviert werden soll. Wenn nicht gesetzt, wird sie in allen Bereichen aktiviert.',
|
|
507
|
+
'Extension "{{name}}" successfully enabled for scope "{{scope}}".':
|
|
508
|
+
'Erweiterung "{{name}}" erfolgreich für Bereich "{{scope}}" aktiviert.',
|
|
509
|
+
'Extension "{{name}}" successfully enabled in all scopes.':
|
|
510
|
+
'Erweiterung "{{name}}" erfolgreich in allen Bereichen aktiviert.',
|
|
511
|
+
'Invalid scope: {{scope}}. Please use one of {{scopes}}.':
|
|
512
|
+
'Ungültiger Bereich: {{scope}}. Bitte verwenden Sie einen von {{scopes}}.',
|
|
513
|
+
'Disables an extension.': 'Deaktiviert eine Erweiterung.',
|
|
514
|
+
'The name of the extension to disable.':
|
|
515
|
+
'Der Name der zu deaktivierenden Erweiterung.',
|
|
516
|
+
'The scope to disable the extenison in.':
|
|
517
|
+
'Der Bereich, in dem die Erweiterung deaktiviert werden soll.',
|
|
518
|
+
'Extension "{{name}}" successfully disabled for scope "{{scope}}".':
|
|
519
|
+
'Erweiterung "{{name}}" erfolgreich für Bereich "{{scope}}" deaktiviert.',
|
|
520
|
+
'Extension "{{name}}" successfully updated: {{oldVersion}} → {{newVersion}}.':
|
|
521
|
+
'Erweiterung "{{name}}" erfolgreich aktualisiert: {{oldVersion}} → {{newVersion}}.',
|
|
522
|
+
'Unable to install extension "{{name}}" due to missing install metadata':
|
|
523
|
+
'Erweiterung "{{name}}" kann aufgrund fehlender Installationsmetadaten nicht installiert werden',
|
|
524
|
+
'Extension "{{name}}" is already up to date.':
|
|
525
|
+
'Erweiterung "{{name}}" ist bereits aktuell.',
|
|
526
|
+
'Updates all extensions or a named extension to the latest version.':
|
|
527
|
+
'Aktualisiert alle Erweiterungen oder eine benannte Erweiterung auf die neueste Version.',
|
|
528
|
+
'The name of the extension to update.':
|
|
529
|
+
'Der Name der zu aktualisierenden Erweiterung.',
|
|
530
|
+
'Update all extensions.': 'Alle Erweiterungen aktualisieren.',
|
|
531
|
+
'Either an extension name or --all must be provided':
|
|
532
|
+
'Entweder ein Erweiterungsname oder --all muss angegeben werden',
|
|
533
|
+
'Lists installed extensions.': 'Listet installierte Erweiterungen auf.',
|
|
534
|
+
'Path:': 'Pfad:',
|
|
535
|
+
'Source:': 'Quelle:',
|
|
536
|
+
'Type:': 'Typ:',
|
|
537
|
+
'Release tag:': 'Release-Tag:',
|
|
538
|
+
'Enabled (User):': 'Aktiviert (Benutzer):',
|
|
539
|
+
'Enabled (Workspace):': 'Aktiviert (Arbeitsbereich):',
|
|
540
|
+
'Context files:': 'Kontextdateien:',
|
|
541
|
+
'MCP servers:': 'MCP servers:',
|
|
542
|
+
'Link extension failed to install.':
|
|
543
|
+
'Verknüpfte Erweiterung konnte nicht installiert werden.',
|
|
544
|
+
'Extension "{{name}}" linked successfully and enabled.':
|
|
545
|
+
'Erweiterung "{{name}}" erfolgreich verknüpft und aktiviert.',
|
|
546
|
+
'Links an extension from a local path. Updates made to the local path will always be reflected.':
|
|
547
|
+
'Verknüpft eine Erweiterung von einem lokalen Pfad. Änderungen am lokalen Pfad werden immer widergespiegelt.',
|
|
548
|
+
'The name of the extension to link.':
|
|
549
|
+
'Der Name der zu verknüpfenden Erweiterung.',
|
|
550
|
+
'Set a specific setting for an extension.':
|
|
551
|
+
'Legt eine bestimmte Einstellung für eine Erweiterung fest.',
|
|
552
|
+
'Name of the extension to configure.':
|
|
553
|
+
'Name der zu konfigurierenden Erweiterung.',
|
|
554
|
+
'The setting to configure (name or env var).':
|
|
555
|
+
'Die zu konfigurierende Einstellung (Name oder Umgebungsvariable).',
|
|
556
|
+
'The scope to set the setting in.':
|
|
557
|
+
'Der Bereich, in dem die Einstellung gesetzt werden soll.',
|
|
558
|
+
'List all settings for an extension.':
|
|
559
|
+
'Listet alle Einstellungen einer Erweiterung auf.',
|
|
560
|
+
'Name of the extension.': 'Name der Erweiterung.',
|
|
561
|
+
'Extension "{{name}}" has no settings to configure.':
|
|
562
|
+
'Erweiterung "{{name}}" hat keine zu konfigurierenden Einstellungen.',
|
|
563
|
+
'Settings for "{{name}}":': 'Einstellungen für "{{name}}":',
|
|
564
|
+
'(workspace)': '(Arbeitsbereich)',
|
|
565
|
+
'(user)': '(Benutzer)',
|
|
566
|
+
'[not set]': '[nicht gesetzt]',
|
|
567
|
+
'[value stored in keychain]': '[Wert in Schlüsselbund gespeichert]',
|
|
568
|
+
'Manage extension settings.': 'Erweiterungseinstellungen verwalten.',
|
|
569
|
+
'You need to specify a command (set or list).':
|
|
570
|
+
'Sie müssen einen Befehl angeben (set oder list).',
|
|
571
|
+
// ============================================================================
|
|
572
|
+
// Plugin Choice / Marketplace
|
|
573
|
+
// ============================================================================
|
|
574
|
+
'No plugins available in this marketplace.':
|
|
575
|
+
'In diesem Marktplatz sind keine Plugins verfügbar.',
|
|
576
|
+
'Select a plugin to install from marketplace "{{name}}":':
|
|
577
|
+
'Wählen Sie ein Plugin zur Installation aus Marktplatz "{{name}}":',
|
|
578
|
+
'Plugin selection cancelled.': 'Plugin-Auswahl abgebrochen.',
|
|
579
|
+
'Select a plugin from "{{name}}"': 'Plugin aus "{{name}}" auswählen',
|
|
580
|
+
'Use ↑↓ or j/k to navigate, Enter to select, Escape to cancel':
|
|
581
|
+
'Verwenden Sie ↑↓ oder j/k zum Navigieren, Enter zum Auswählen, Escape zum Abbrechen',
|
|
582
|
+
'{{count}} more above': '{{count}} weitere oben',
|
|
583
|
+
'{{count}} more below': '{{count}} weitere unten',
|
|
584
|
+
'manage IDE integration': 'IDE-Integration verwalten',
|
|
585
|
+
'check status of IDE integration': 'Status der IDE-Integration prüfen',
|
|
586
|
+
'install required IDE companion for {{ideName}}':
|
|
587
|
+
'Erforderlichen IDE-Begleiter für {{ideName}} installieren',
|
|
588
|
+
'enable IDE integration': 'IDE-Integration aktivieren',
|
|
589
|
+
'disable IDE integration': 'IDE-Integration deaktivieren',
|
|
590
|
+
'IDE integration is not supported in your current environment. To use this feature, run Qwen Code in one of these supported IDEs: VS Code or VS Code forks.':
|
|
591
|
+
'IDE-Integration wird in Ihrer aktuellen Umgebung nicht unterstützt. Um diese Funktion zu nutzen, führen Sie Qwen Code in einer dieser unterstützten IDEs aus: VS Code oder VS Code-Forks.',
|
|
592
|
+
'Set up GitHub Actions': 'GitHub Actions einrichten',
|
|
593
|
+
'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)':
|
|
594
|
+
'Terminal-Tastenbelegungen für mehrzeilige Eingabe konfigurieren (VS Code, Cursor, Windsurf, Trae)',
|
|
595
|
+
'Please restart your terminal for the changes to take effect.':
|
|
596
|
+
'Bitte starten Sie Ihr Terminal neu, damit die Änderungen wirksam werden.',
|
|
597
|
+
'Failed to configure terminal: {{error}}':
|
|
598
|
+
'Fehler beim Konfigurieren des Terminals: {{error}}',
|
|
599
|
+
'Could not determine {{terminalName}} config path on Windows: APPDATA environment variable is not set.':
|
|
600
|
+
'Konnte {{terminalName}}-Konfigurationspfad unter Windows nicht ermitteln: APPDATA-Umgebungsvariable ist nicht gesetzt.',
|
|
601
|
+
'{{terminalName}} keybindings.json exists but is not a valid JSON array. Please fix the file manually or delete it to allow automatic configuration.':
|
|
602
|
+
'{{terminalName}} keybindings.json existiert, ist aber kein gültiges JSON-Array. Bitte korrigieren Sie die Datei manuell oder löschen Sie sie, um automatische Konfiguration zu ermöglichen.',
|
|
603
|
+
'File: {{file}}': 'Datei: {{file}}',
|
|
604
|
+
'Failed to parse {{terminalName}} keybindings.json. The file contains invalid JSON. Please fix the file manually or delete it to allow automatic configuration.':
|
|
605
|
+
'Fehler beim Parsen von {{terminalName}} keybindings.json. Die Datei enthält ungültiges JSON. Bitte korrigieren Sie die Datei manuell oder löschen Sie sie, um automatische Konfiguration zu ermöglichen.',
|
|
606
|
+
'Error: {{error}}': 'Fehler: {{error}}',
|
|
607
|
+
'Shift+Enter binding already exists':
|
|
608
|
+
'Shift+Enter-Belegung existiert bereits',
|
|
609
|
+
'Ctrl+Enter binding already exists': 'Ctrl+Enter-Belegung existiert bereits',
|
|
610
|
+
'Existing keybindings detected. Will not modify to avoid conflicts.':
|
|
611
|
+
'Bestehende Tastenbelegungen erkannt. Keine Änderungen, um Konflikte zu vermeiden.',
|
|
612
|
+
'Please check and modify manually if needed: {{file}}':
|
|
613
|
+
'Bitte prüfen und bei Bedarf manuell ändern: {{file}}',
|
|
614
|
+
'Added Shift+Enter and Ctrl+Enter keybindings to {{terminalName}}.':
|
|
615
|
+
'Shift+Enter und Ctrl+Enter Tastenbelegungen zu {{terminalName}} hinzugefügt.',
|
|
616
|
+
'Modified: {{file}}': 'Geändert: {{file}}',
|
|
617
|
+
'{{terminalName}} keybindings already configured.':
|
|
618
|
+
'{{terminalName}}-Tastenbelegungen bereits konfiguriert.',
|
|
619
|
+
'Failed to configure {{terminalName}}.':
|
|
620
|
+
'Fehler beim Konfigurieren von {{terminalName}}.',
|
|
621
|
+
'Your terminal is already configured for an optimal experience with multiline input (Shift+Enter and Ctrl+Enter).':
|
|
622
|
+
'Ihr Terminal ist bereits für optimale Erfahrung mit mehrzeiliger Eingabe konfiguriert (Shift+Enter und Ctrl+Enter).',
|
|
623
|
+
// ============================================================================
|
|
624
|
+
// Commands - Hooks
|
|
625
|
+
// ============================================================================
|
|
626
|
+
'Manage Tulex Code hooks': 'Tulex Code-Hooks verwalten',
|
|
627
|
+
'List all configured hooks': 'Alle konfigurierten Hooks auflisten',
|
|
628
|
+
// Hooks - Dialog
|
|
629
|
+
Hooks: 'Hooks',
|
|
630
|
+
'Loading hooks...': 'Hooks werden geladen...',
|
|
631
|
+
'Error loading hooks:': 'Fehler beim Laden der Hooks:',
|
|
632
|
+
'Press Escape to close': 'Escape zum Schließen drücken',
|
|
633
|
+
'Press Escape, Ctrl+C, or Ctrl+D to cancel':
|
|
634
|
+
'Escape, Ctrl+C oder Ctrl+D zum Abbrechen',
|
|
635
|
+
'Press Space, Enter, or Escape to dismiss':
|
|
636
|
+
'Space, Enter oder Escape zum Schließen',
|
|
637
|
+
'No hook selected': 'Kein Hook ausgewählt',
|
|
638
|
+
// Hooks - List Step
|
|
639
|
+
'No hook events found.': 'Keine Hook-Ereignisse gefunden.',
|
|
640
|
+
'{{count}} hook configured': '{{count}} Hook konfiguriert',
|
|
641
|
+
'{{count}} hooks configured': '{{count}} Hooks konfiguriert',
|
|
642
|
+
'This menu is read-only. To add or modify hooks, edit settings.json directly or ask Tulex Code.':
|
|
643
|
+
'Dieses Menü ist schreibgeschützt. Um Hooks hinzuzufügen oder zu ändern, bearbeiten Sie settings.json direkt oder fragen Sie Qwen Code.',
|
|
644
|
+
'Enter to select · Esc to cancel': 'Enter zum Auswählen · Esc zum Abbrechen',
|
|
645
|
+
// Hooks - Detail Step
|
|
646
|
+
'Exit codes:': 'Exit-Codes:',
|
|
647
|
+
'Configured hooks:': 'Konfigurierte Hooks:',
|
|
648
|
+
'No hooks configured for this event.':
|
|
649
|
+
'Für dieses Ereignis sind keine Hooks konfiguriert.',
|
|
650
|
+
'To add hooks, edit settings.json directly or ask Qwen.':
|
|
651
|
+
'Um Hooks hinzuzufügen, bearbeiten Sie settings.json direkt oder fragen Sie Qwen.',
|
|
652
|
+
'Enter to select · Esc to go back': 'Enter zum Auswählen · Esc zum Zurück',
|
|
653
|
+
// Hooks - Config Detail Step
|
|
654
|
+
'Hook details': 'Hook-Details',
|
|
655
|
+
'Event:': 'Ereignis:',
|
|
656
|
+
'Extension:': 'Erweiterung:',
|
|
657
|
+
'Desc:': 'Beschreibung:',
|
|
658
|
+
'No hook config selected': 'Keine Hook-Konfiguration ausgewählt',
|
|
659
|
+
'To modify or remove this hook, edit settings.json directly or ask Qwen to help.':
|
|
660
|
+
'Um diesen Hook zu ändern oder zu entfernen, bearbeiten Sie settings.json direkt oder fragen Sie Qwen.',
|
|
661
|
+
// Hooks - Disabled Step
|
|
662
|
+
'Hook Configuration - Disabled': 'Hook-Konfiguration - Deaktiviert',
|
|
663
|
+
'All hooks are currently disabled. You have {{count}} that are not running.':
|
|
664
|
+
'Alle Hooks sind derzeit deaktiviert. Sie haben {{count}} die nicht ausgeführt werden.',
|
|
665
|
+
'{{count}} configured hook': '{{count}} konfigurierter Hook',
|
|
666
|
+
'{{count}} configured hooks': '{{count}} konfigurierte Hooks',
|
|
667
|
+
'When hooks are disabled:': 'Wenn Hooks deaktiviert sind:',
|
|
668
|
+
'No hook commands will execute': 'Keine Hook-Befehle werden ausgeführt',
|
|
669
|
+
'StatusLine will not be displayed': 'StatusLine wird nicht angezeigt',
|
|
670
|
+
'Tool operations will proceed without hook validation':
|
|
671
|
+
'Tool-Operationen werden ohne Hook-Validierung fortgesetzt',
|
|
672
|
+
'To re-enable hooks, remove "disableAllHooks" from settings.json or ask Qwen Code.':
|
|
673
|
+
'Um Hooks wieder zu aktivieren, entfernen Sie "disableAllHooks" aus settings.json oder fragen Sie Qwen Code.',
|
|
674
|
+
// Hooks - Source
|
|
675
|
+
Project: 'Projekt',
|
|
676
|
+
User: 'Benutzer',
|
|
677
|
+
Skill: 'Skill',
|
|
678
|
+
System: 'System',
|
|
679
|
+
Extension: 'Erweiterung',
|
|
680
|
+
'Local Settings': 'Lokale Einstellungen',
|
|
681
|
+
'User Settings': 'Benutzereinstellungen',
|
|
682
|
+
'System Settings': 'Systemeinstellungen',
|
|
683
|
+
Extensions: 'Erweiterungen',
|
|
684
|
+
'Session (temporary)': 'Sitzung (temporär)',
|
|
685
|
+
// Hooks - Event Descriptions (short)
|
|
686
|
+
'Before tool execution': 'Vor der Tool-Ausführung',
|
|
687
|
+
'After tool execution': 'Nach der Tool-Ausführung',
|
|
688
|
+
'After tool execution fails': 'Wenn die Tool-Ausführung fehlschlägt',
|
|
689
|
+
'When notifications are sent': 'Wenn Benachrichtigungen gesendet werden',
|
|
690
|
+
'When the user submits a prompt': 'Wenn der Benutzer einen Prompt absendet',
|
|
691
|
+
'When a slash command expands into a prompt':
|
|
692
|
+
'Wenn ein Slash-Befehl zu einem Prompt erweitert wird',
|
|
693
|
+
'When a new session is started': 'Wenn eine neue Sitzung gestartet wird',
|
|
694
|
+
'Right before Qwen Code concludes its response':
|
|
695
|
+
'Direkt bevor Qwen Code seine Antwort abschließt',
|
|
696
|
+
'When a subagent (Agent tool call) is started':
|
|
697
|
+
'Wenn ein Subagent (Agent-Tool-Aufruf) gestartet wird',
|
|
698
|
+
'Right before a subagent concludes its response':
|
|
699
|
+
'Direkt bevor ein Subagent seine Antwort abschließt',
|
|
700
|
+
'Before conversation compaction': 'Vor der Gesprächskomprimierung',
|
|
701
|
+
'When a session is ending': 'Wenn eine Sitzung endet',
|
|
702
|
+
'When a permission dialog is displayed':
|
|
703
|
+
'Wenn ein Berechtigungsdialog angezeigt wird',
|
|
704
|
+
'When a new todo item is created':
|
|
705
|
+
'Wenn ein neues Todo-Element erstellt wird',
|
|
706
|
+
'When a todo item is marked as completed':
|
|
707
|
+
'Wenn ein Todo-Element als erledigt markiert wird',
|
|
708
|
+
// Hooks - Event Descriptions (detailed)
|
|
709
|
+
'Input to command is JSON of tool call arguments.':
|
|
710
|
+
'Die Eingabe an den Befehl ist JSON der Tool-Aufruf-Argumente.',
|
|
711
|
+
'Input to command is JSON with fields "inputs" (tool call arguments) and "response" (tool call response).':
|
|
712
|
+
'Die Eingabe an den Befehl ist JSON mit den Feldern "inputs" (Tool-Aufruf-Argumente) und "response" (Tool-Aufruf-Antwort).',
|
|
713
|
+
'Input to command is JSON with tool_name, tool_input, tool_use_id, error, error_type, is_interrupt, and is_timeout.':
|
|
714
|
+
'Die Eingabe an den Befehl ist JSON mit tool_name, tool_input, tool_use_id, error, error_type, is_interrupt und is_timeout.',
|
|
715
|
+
'Input to command is JSON with notification message and type.':
|
|
716
|
+
'Die Eingabe an den Befehl ist JSON mit Benachrichtigungsnachricht und -typ.',
|
|
717
|
+
'Input to command is JSON with original user prompt text.':
|
|
718
|
+
'Die Eingabe an den Befehl ist JSON mit dem ursprünglichen Benutzer-Prompt-Text.',
|
|
719
|
+
'Input to command is JSON with command_name, command_args, and expanded prompt text.':
|
|
720
|
+
'Die Eingabe an den Befehl ist JSON mit command_name, command_args und erweitertem Prompt-Text.',
|
|
721
|
+
'Input to command is JSON with session start source.':
|
|
722
|
+
'Die Eingabe an den Befehl ist JSON mit der Sitzungsstart-Quelle.',
|
|
723
|
+
'Input to command is JSON with session end reason.':
|
|
724
|
+
'Die Eingabe an den Befehl ist JSON mit dem Sitzungsende-Grund.',
|
|
725
|
+
'Input to command is JSON with agent_id and agent_type.':
|
|
726
|
+
'Die Eingabe an den Befehl ist JSON mit agent_id und agent_type.',
|
|
727
|
+
'Input to command is JSON with agent_id, agent_type, and agent_transcript_path.':
|
|
728
|
+
'Die Eingabe an den Befehl ist JSON mit agent_id, agent_type und agent_transcript_path.',
|
|
729
|
+
'Input to command is JSON with compaction details.':
|
|
730
|
+
'Die Eingabe an den Befehl ist JSON mit Komprimierungsdetails.',
|
|
731
|
+
'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.':
|
|
732
|
+
'Die Eingabe an den Befehl ist JSON mit tool_name, tool_input und tool_use_id. Ausgabe ist JSON mit hookSpecificOutput, das die Entscheidung zum Zulassen oder Ablehnen enthält.',
|
|
733
|
+
'Input to command is JSON with todo_id, todo_content, todo_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
734
|
+
'Die Eingabe an den Befehl ist JSON mit todo_id, todo_content, todo_status, all_todos und phase. In validation ist die Ausgabe JSON mit decision (allow/block/deny) und reason. In postWrite wird block/deny ignoriert.',
|
|
735
|
+
'Input to command is JSON with todo_id, todo_content, previous_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
736
|
+
'Die Eingabe an den Befehl ist JSON mit todo_id, todo_content, previous_status, all_todos und phase. In validation ist die Ausgabe JSON mit decision (allow/block/deny) und reason. In postWrite wird block/deny ignoriert.',
|
|
737
|
+
// Hooks - Exit Code Descriptions
|
|
738
|
+
'stdout/stderr not shown': 'stdout/stderr nicht angezeigt',
|
|
739
|
+
'show stderr to model and continue conversation':
|
|
740
|
+
'stderr dem Modell anzeigen und Konversation fortsetzen',
|
|
741
|
+
'show stderr to user only': 'stderr nur dem Benutzer anzeigen',
|
|
742
|
+
'stdout shown in transcript mode (ctrl+o)':
|
|
743
|
+
'stdout im Transkriptmodus angezeigt (ctrl+o)',
|
|
744
|
+
'show stderr to model immediately': 'stderr sofort dem Modell anzeigen',
|
|
745
|
+
'show stderr to user only but continue with tool call':
|
|
746
|
+
'stderr nur dem Benutzer anzeigen, aber mit Tool-Aufruf fortfahren',
|
|
747
|
+
'block processing, erase original prompt, and show stderr to user only':
|
|
748
|
+
'Verarbeitung blockieren, ursprünglichen Prompt löschen und stderr nur dem Benutzer anzeigen',
|
|
749
|
+
'block expanded prompt submission and show stderr to user only':
|
|
750
|
+
'Einreichen des erweiterten Prompts blockieren und stderr nur dem Benutzer anzeigen',
|
|
751
|
+
'stdout shown to Tulex': 'stdout dem Tulex anzeigen',
|
|
752
|
+
'show stderr to user only (blocking errors ignored)':
|
|
753
|
+
'stderr nur dem Benutzer anzeigen (Blockierungsfehler ignoriert)',
|
|
754
|
+
'command completes successfully': 'Befehl erfolgreich abgeschlossen',
|
|
755
|
+
'stdout shown to subagent': 'stdout dem Subagenten anzeigen',
|
|
756
|
+
'show stderr to subagent and continue having it run':
|
|
757
|
+
'stderr dem Subagenten anzeigen und ihn weiterlaufen lassen',
|
|
758
|
+
'stdout appended as custom compact instructions':
|
|
759
|
+
'stdout als benutzerdefinierte Komprimierungsanweisungen angehängt',
|
|
760
|
+
'block compaction': 'Komprimierung blockieren',
|
|
761
|
+
'show stderr to user only but continue with compaction':
|
|
762
|
+
'stderr nur dem Benutzer anzeigen, aber mit Komprimierung fortfahren',
|
|
763
|
+
'use hook decision if provided':
|
|
764
|
+
'Hook-Entscheidung verwenden, falls bereitgestellt',
|
|
765
|
+
'allow todo creation': 'Todo-Erstellung zulassen',
|
|
766
|
+
'block todo creation and show reason to model':
|
|
767
|
+
'Todo-Erstellung blockieren und Grund dem Modell anzeigen',
|
|
768
|
+
'allow todo completion': 'Todo-Abschluss zulassen',
|
|
769
|
+
'block todo completion and show reason to model':
|
|
770
|
+
'Todo-Abschluss blockieren und Grund dem Modell anzeigen',
|
|
771
|
+
// Hooks - Messages
|
|
772
|
+
'Config not loaded.': 'Konfiguration nicht geladen.',
|
|
773
|
+
'Hooks are not enabled. Enable hooks in settings to use this feature.':
|
|
774
|
+
'Hooks sind nicht aktiviert. Aktivieren Sie Hooks in den Einstellungen, um diese Funktion zu nutzen.',
|
|
775
|
+
// ============================================================================
|
|
776
|
+
// Commands - Session Export
|
|
777
|
+
// ============================================================================
|
|
778
|
+
'Export current session message history to a file':
|
|
779
|
+
'Den Nachrichtenverlauf der aktuellen Sitzung in eine Datei exportieren',
|
|
780
|
+
'Export session to HTML format': 'Sitzung in das HTML-Format exportieren',
|
|
781
|
+
'Export session to JSON format': 'Sitzung in das JSON-Format exportieren',
|
|
782
|
+
'Export session to JSONL format (one message per line)':
|
|
783
|
+
'Sitzung in das JSONL-Format exportieren (eine Nachricht pro Zeile)',
|
|
784
|
+
'Export session to markdown format':
|
|
785
|
+
'Sitzung in das Markdown-Format exportieren',
|
|
786
|
+
|
|
787
|
+
// ============================================================================
|
|
788
|
+
// Commands - Insights
|
|
789
|
+
// ============================================================================
|
|
790
|
+
'generate personalized programming insights from your chat history':
|
|
791
|
+
'Personalisierte Programmier-Einblicke aus Ihrem Chatverlauf generieren',
|
|
792
|
+
|
|
793
|
+
// ============================================================================
|
|
794
|
+
// Commands - Session History
|
|
795
|
+
// ============================================================================
|
|
796
|
+
'Resume a previous session': 'Eine vorherige Sitzung fortsetzen',
|
|
797
|
+
'Fork the current conversation into a new session':
|
|
798
|
+
'Die aktuelle Unterhaltung in eine neue Sitzung verzweigen',
|
|
799
|
+
'Spawn a background agent that inherits the full conversation':
|
|
800
|
+
'Einen Hintergrund-Agenten starten, der die gesamte Unterhaltung übernimmt',
|
|
801
|
+
'Please provide a directive. Usage: /fork <directive>':
|
|
802
|
+
'Bitte geben Sie eine Anweisung an. Verwendung: /fork <Anweisung>',
|
|
803
|
+
'Cannot fork while a response or tool call is in progress. Wait for it to finish or resolve the pending tool call.':
|
|
804
|
+
'Während eine Antwort oder ein Tool-Aufruf läuft, kann kein Hintergrund-Fork erstellt werden. Warten Sie, bis der Vorgang abgeschlossen ist, oder bearbeiten Sie den ausstehenden Tool-Aufruf.',
|
|
805
|
+
'Cannot fork before the first conversation turn.':
|
|
806
|
+
'Vor der ersten Gesprächsrunde kann kein Fork erstellt werden.',
|
|
807
|
+
'The /fork command requires the fork feature gate. Set QWEN_CODE_ENABLE_FORK_SUBAGENT=1 to enable it.':
|
|
808
|
+
'Der Befehl /fork erfordert das Fork-Feature-Gate. Setzen Sie QWEN_CODE_ENABLE_FORK_SUBAGENT=1, um es zu aktivieren.',
|
|
809
|
+
'The agent tool is unavailable; cannot fork.':
|
|
810
|
+
'Das Agent-Tool ist nicht verfügbar; Fork kann nicht gestartet werden.',
|
|
811
|
+
'Failed to launch fork: {{error}}':
|
|
812
|
+
'Fork konnte nicht gestartet werden: {{error}}',
|
|
813
|
+
'User launched a background fork via /fork: {{directive}}':
|
|
814
|
+
'Benutzer hat über /fork einen Hintergrund-Fork gestartet: {{directive}}',
|
|
815
|
+
'Forked into a background agent. It inherits this conversation and runs without blocking — track it in the background tasks panel; it reports back when done.':
|
|
816
|
+
'In einen Hintergrund-Agenten verzweigt. Er übernimmt diese Unterhaltung und läuft ohne zu blockieren — verfolgen Sie ihn im Hintergrundaufgaben-Panel; er meldet sich nach Abschluss zurück.',
|
|
817
|
+
'Cannot branch while a response or tool call is in progress. Wait for it to finish or resolve the pending tool call.':
|
|
818
|
+
'Während eine Antwort oder ein Tool-Aufruf läuft, kann keine Verzweigung erstellt werden. Warten Sie, bis der Vorgang abgeschlossen ist, oder bearbeiten Sie den ausstehenden Tool-Aufruf.',
|
|
819
|
+
'No conversation to branch.': 'Keine Unterhaltung zum Verzweigen vorhanden.',
|
|
820
|
+
'Restore a tool call. This will reset the conversation and file history to the state it was in when the tool call was suggested':
|
|
821
|
+
'Einen Tool-Aufruf wiederherstellen. Dadurch werden Konversations- und Dateiverlauf auf den Zustand zurückgesetzt, in dem der Tool-Aufruf vorgeschlagen wurde',
|
|
822
|
+
'Could not detect terminal type. Supported terminals: VS Code, Cursor, Windsurf, and Trae.':
|
|
823
|
+
'Terminal-Typ konnte nicht erkannt werden. Unterstützte Terminals: VS Code, Cursor, Windsurf und Trae.',
|
|
824
|
+
'Terminal "{{terminal}}" is not supported yet.':
|
|
825
|
+
'Terminal "{{terminal}}" wird noch nicht unterstützt.',
|
|
826
|
+
|
|
827
|
+
// ============================================================================
|
|
828
|
+
// Commands - Language
|
|
829
|
+
// ============================================================================
|
|
830
|
+
'Invalid language. Available: {{options}}':
|
|
831
|
+
'Ungültige Sprache. Verfügbar: {{options}}',
|
|
832
|
+
'Language subcommands do not accept additional arguments.':
|
|
833
|
+
'Sprach-Unterbefehle akzeptieren keine zusätzlichen Argumente.',
|
|
834
|
+
'Current UI language: {{lang}}': 'Aktuelle UI-Sprache: {{lang}}',
|
|
835
|
+
'Current LLM output language: {{lang}}':
|
|
836
|
+
'Aktuelle LLM-Ausgabesprache: {{lang}}',
|
|
837
|
+
'Set UI language': 'UI-Sprache festlegen',
|
|
838
|
+
'Set LLM output language': 'LLM-Ausgabesprache festlegen',
|
|
839
|
+
'Usage: /language ui [{{options}}]': 'Verwendung: /language ui [{{options}}]',
|
|
840
|
+
'Usage: /language output <language>':
|
|
841
|
+
'Verwendung: /language output <Sprache>',
|
|
842
|
+
'Example: /language output 中文': 'Beispiel: /language output Deutsch',
|
|
843
|
+
'Example: /language output English': 'Beispiel: /language output Englisch',
|
|
844
|
+
'Example: /language output 日本語': 'Beispiel: /language output Japanisch',
|
|
845
|
+
'UI language changed to {{lang}}': 'UI-Sprache geändert zu {{lang}}',
|
|
846
|
+
'LLM output language set to {{lang}}':
|
|
847
|
+
'LLM-Ausgabesprache auf {{lang}} gesetzt',
|
|
848
|
+
'Please restart the application for the changes to take effect.':
|
|
849
|
+
'Bitte starten Sie die Anwendung neu, damit die Änderungen wirksam werden.',
|
|
850
|
+
'Failed to generate LLM output language rule file: {{error}}':
|
|
851
|
+
'Fehler beim Generieren der LLM-Ausgabesprach-Regeldatei: {{error}}',
|
|
852
|
+
'Invalid command. Available subcommands:':
|
|
853
|
+
'Ungültiger Befehl. Verfügbare Unterbefehle:',
|
|
854
|
+
'Available subcommands:': 'Verfügbare Unterbefehle:',
|
|
855
|
+
'To request additional UI language packs, please open an issue on GitHub.':
|
|
856
|
+
'Um zusätzliche UI-Sprachpakete anzufordern, öffnen Sie bitte ein Issue auf GitHub.',
|
|
857
|
+
'Available options:': 'Verfügbare Optionen:',
|
|
858
|
+
'Set UI language to {{name}}': 'UI-Sprache auf {{name}} setzen',
|
|
859
|
+
|
|
860
|
+
// ============================================================================
|
|
861
|
+
// Commands - Approval Mode
|
|
862
|
+
// ============================================================================
|
|
863
|
+
'Tool Approval Mode': 'Werkzeug-Genehmigungsmodus',
|
|
864
|
+
'Analyze only, do not modify files or execute commands':
|
|
865
|
+
'Nur analysieren, keine Dateien ändern oder Befehle ausführen',
|
|
866
|
+
'Require approval for file edits or shell commands':
|
|
867
|
+
'Genehmigung für Dateibearbeitungen oder Shell-Befehle erforderlich',
|
|
868
|
+
'Automatically approve file edits':
|
|
869
|
+
'Dateibearbeitungen automatisch genehmigen',
|
|
870
|
+
'Use classifier to automatically approve safe tool calls':
|
|
871
|
+
'Klassifikator verwenden, um sichere Werkzeugaufrufe automatisch zu genehmigen',
|
|
872
|
+
'Automatically approve all tools': 'Alle Werkzeuge automatisch genehmigen',
|
|
873
|
+
'Workspace approval mode exists and takes priority. User-level change will have no effect.':
|
|
874
|
+
'Arbeitsbereich-Genehmigungsmodus existiert und hat Vorrang. Benutzerebene-Änderung hat keine Wirkung.',
|
|
875
|
+
'Apply To': 'Anwenden auf',
|
|
876
|
+
'Workspace Settings': 'Arbeitsbereich-Einstellungen',
|
|
877
|
+
'Open auto-memory folder': 'Auto-Speicher-Ordner öffnen',
|
|
878
|
+
'Auto-memory: {{status}}': 'Auto-Speicher: {{status}}',
|
|
879
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
880
|
+
'Auto-Konsolidierung: {{status}} · {{lastDream}} · /dream zum Ausführen',
|
|
881
|
+
'Auto-skill: {{status}}': 'Auto-Skill: {{status}}',
|
|
882
|
+
never: 'nie',
|
|
883
|
+
on: 'ein',
|
|
884
|
+
off: 'aus',
|
|
885
|
+
'Remove matching entries from managed auto-memory.':
|
|
886
|
+
'Passende Einträge aus dem verwalteten Auto-Speicher entfernen.',
|
|
887
|
+
'Usage: /forget <memory text to remove>':
|
|
888
|
+
'Verwendung: /forget <zu entfernender Erinnerungstext>',
|
|
889
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
890
|
+
'Keine verwalteten Auto-Speicher-Einträge gefunden: {{query}}',
|
|
891
|
+
'Consolidate managed auto-memory topic files.':
|
|
892
|
+
'Verwaltete Auto-Speicher-Themendateien konsolidieren.',
|
|
893
|
+
'Could not retrieve tool registry.':
|
|
894
|
+
'Werkzeugregister konnte nicht abgerufen werden.',
|
|
895
|
+
"Successfully authenticated and refreshed tools for '{{name}}'.":
|
|
896
|
+
"Erfolgreich authentifiziert und Werkzeuge für '{{name}}' aktualisiert.",
|
|
897
|
+
"Re-discovering tools from '{{name}}'...":
|
|
898
|
+
"Werkzeuge von '{{name}}' werden neu erkannt...",
|
|
899
|
+
"Discovered {{count}} tool(s) from '{{name}}'.":
|
|
900
|
+
"{{count}} Werkzeug(e) von '{{name}}' entdeckt.",
|
|
901
|
+
'Authentication complete. Returning to server details...':
|
|
902
|
+
'Authentifizierung abgeschlossen. Zurück zu den Serverdetails...',
|
|
903
|
+
'Authentication successful.': 'Authentifizierung erfolgreich.',
|
|
904
|
+
// =========================================================
|
|
905
|
+
// Commands - Summary
|
|
906
|
+
// ============================================================================
|
|
907
|
+
'Generate a project summary and save it to .qwen/PROJECT_SUMMARY.md':
|
|
908
|
+
'Projektzusammenfassung generieren und in .qwen/PROJECT_SUMMARY.md speichern',
|
|
909
|
+
'No chat client available to generate summary.':
|
|
910
|
+
'Kein Chat-Client verfügbar, um Zusammenfassung zu generieren.',
|
|
911
|
+
'Already generating summary, wait for previous request to complete':
|
|
912
|
+
'Zusammenfassung wird bereits generiert, warten Sie auf Abschluss der vorherigen Anfrage',
|
|
913
|
+
'No conversation found to summarize.':
|
|
914
|
+
'Kein Gespräch zum Zusammenfassen gefunden.',
|
|
915
|
+
'Failed to generate project context summary: {{error}}':
|
|
916
|
+
'Fehler beim Generieren der Projektkontextzusammenfassung: {{error}}',
|
|
917
|
+
'Saved project summary to {{filePathForDisplay}}.':
|
|
918
|
+
'Projektzusammenfassung gespeichert unter {{filePathForDisplay}}.',
|
|
919
|
+
'Saving project summary...': 'Projektzusammenfassung wird gespeichert...',
|
|
920
|
+
'Generating project summary...': 'Projektzusammenfassung wird generiert...',
|
|
921
|
+
'Processing summary...': 'Projektzusammenfassung wird verarbeitet...',
|
|
922
|
+
'Project summary generated and saved successfully!':
|
|
923
|
+
'Projektzusammenfassung wurde erfolgreich erstellt und gespeichert!',
|
|
924
|
+
'Saved to: {{filePath}}': 'Gespeichert unter: {{filePath}}',
|
|
925
|
+
'Stopped because': 'Angehalten, weil',
|
|
926
|
+
'Failed to generate summary - no text content received from LLM response':
|
|
927
|
+
'Fehler beim Generieren der Zusammenfassung - kein Textinhalt von LLM-Antwort erhalten',
|
|
928
|
+
|
|
929
|
+
// ============================================================================
|
|
930
|
+
// Commands - Model
|
|
931
|
+
// ============================================================================
|
|
932
|
+
'Switch the model for this session (--fast for suggestion model, [model-id] to switch immediately).':
|
|
933
|
+
'Modell für diese Sitzung wechseln (--fast für Vorschlagsmodell)',
|
|
934
|
+
'Set a lighter model for prompt suggestions and speculative execution':
|
|
935
|
+
'Leichteres Modell für Eingabevorschläge und spekulative Ausführung festlegen',
|
|
936
|
+
'Content generator configuration not available.':
|
|
937
|
+
'Inhaltsgenerator-Konfiguration nicht verfügbar.',
|
|
938
|
+
'Authentication type not available.':
|
|
939
|
+
'Authentifizierungstyp nicht verfügbar.',
|
|
940
|
+
'No models available for the current authentication type ({{authType}}).':
|
|
941
|
+
'Keine Modelle für den aktuellen Authentifizierungstyp ({{authType}}) verfügbar.',
|
|
942
|
+
// Needs translation
|
|
943
|
+
' (not in model registry)': ' (not in model registry)',
|
|
944
|
+
|
|
945
|
+
// ============================================================================
|
|
946
|
+
// Commands - Clear
|
|
947
|
+
// ============================================================================
|
|
948
|
+
'Starting a new session, resetting chat, and clearing terminal.':
|
|
949
|
+
'Neue Sitzung wird gestartet, Chat wird zurückgesetzt und Terminal wird gelöscht.',
|
|
950
|
+
'Starting a new session and clearing.':
|
|
951
|
+
'Neue Sitzung wird gestartet und gelöscht.',
|
|
952
|
+
|
|
953
|
+
// ============================================================================
|
|
954
|
+
// Commands - Compress
|
|
955
|
+
// ============================================================================
|
|
956
|
+
'Already compressing, wait for previous request to complete':
|
|
957
|
+
'Komprimierung läuft bereits, warten Sie auf Abschluss der vorherigen Anfrage',
|
|
958
|
+
'Failed to compress chat history.':
|
|
959
|
+
'Fehler beim Komprimieren des Chatverlaufs.',
|
|
960
|
+
'Failed to compress chat history: {{error}}':
|
|
961
|
+
'Fehler beim Komprimieren des Chatverlaufs: {{error}}',
|
|
962
|
+
'Compressing chat history': 'Chatverlauf wird komprimiert',
|
|
963
|
+
'Chat history compressed from {{originalTokens}} to {{newTokens}} tokens.':
|
|
964
|
+
'Chatverlauf komprimiert von {{originalTokens}} auf {{newTokens}} Token.',
|
|
965
|
+
'Compression was not beneficial for this history size.':
|
|
966
|
+
'Komprimierung war für diese Verlaufsgröße nicht vorteilhaft.',
|
|
967
|
+
'Chat history compression did not reduce size. This may indicate issues with the compression prompt.':
|
|
968
|
+
'Chatverlauf-Komprimierung hat die Größe nicht reduziert. Dies kann auf Probleme mit dem Komprimierungs-Prompt hindeuten.',
|
|
969
|
+
'Could not compress chat history due to a token counting error.':
|
|
970
|
+
'Chatverlauf konnte aufgrund eines Token-Zählfehlers nicht komprimiert werden.',
|
|
971
|
+
// ============================================================================
|
|
972
|
+
// Commands - Directory
|
|
973
|
+
// ============================================================================
|
|
974
|
+
'Configuration is not available.': 'Konfiguration ist nicht verfügbar.',
|
|
975
|
+
'Please provide at least one path to add.':
|
|
976
|
+
'Bitte geben Sie mindestens einen Pfad zum Hinzufügen an.',
|
|
977
|
+
'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.':
|
|
978
|
+
'Der Befehl /directory add wird in restriktiven Sandbox-Profilen nicht unterstützt. Bitte verwenden Sie --include-directories beim Starten der Sitzung.',
|
|
979
|
+
"Error adding '{{path}}': {{error}}":
|
|
980
|
+
"Fehler beim Hinzufügen von '{{path}}': {{error}}",
|
|
981
|
+
'Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}':
|
|
982
|
+
'QWEN.md-Dateien aus folgenden Verzeichnissen erfolgreich hinzugefügt, falls vorhanden:\n- {{directories}}',
|
|
983
|
+
'Error refreshing memory: {{error}}':
|
|
984
|
+
'Fehler beim Aktualisieren des Speichers: {{error}}',
|
|
985
|
+
'Successfully added directories:\n- {{directories}}':
|
|
986
|
+
'Verzeichnisse erfolgreich hinzugefügt:\n- {{directories}}',
|
|
987
|
+
'Current workspace directories:\n{{directories}}':
|
|
988
|
+
'Aktuelle Arbeitsbereichsverzeichnisse:\n{{directories}}',
|
|
989
|
+
|
|
990
|
+
// ============================================================================
|
|
991
|
+
// Commands - Docs
|
|
992
|
+
// ============================================================================
|
|
993
|
+
'Please open the following URL in your browser to view the documentation:\n{{url}}':
|
|
994
|
+
'Bitte öffnen Sie folgende URL in Ihrem Browser, um die Dokumentation anzusehen:\n{{url}}',
|
|
995
|
+
'Opening documentation in your browser: {{url}}':
|
|
996
|
+
'Dokumentation wird in Ihrem Browser geöffnet: {{url}}',
|
|
997
|
+
|
|
998
|
+
// ============================================================================
|
|
999
|
+
// Dialogs - Tool Confirmation
|
|
1000
|
+
// ============================================================================
|
|
1001
|
+
'Do you want to proceed?': 'Möchten Sie fortfahren?',
|
|
1002
|
+
'Yes, allow once': 'Ja, einmal erlauben',
|
|
1003
|
+
'Allow always': 'Immer erlauben',
|
|
1004
|
+
Yes: 'Ja',
|
|
1005
|
+
No: 'Nein',
|
|
1006
|
+
'No (esc)': 'Nein (Esc)',
|
|
1007
|
+
// MCP Management Dialog (translations for MCP UI components)
|
|
1008
|
+
'Manage MCP servers': 'MCP servers verwalten',
|
|
1009
|
+
'Server Detail': 'Serverdetails',
|
|
1010
|
+
Tools: 'Werkzeuge',
|
|
1011
|
+
'Tool Detail': 'Werkzeugdetails',
|
|
1012
|
+
'Loading...': 'Lädt...',
|
|
1013
|
+
'Unknown step': 'Unbekannter Schritt',
|
|
1014
|
+
'Esc to back': 'Esc zurück',
|
|
1015
|
+
'↑↓ to navigate · Enter to select · Esc to close':
|
|
1016
|
+
'↑↓ navigieren · Enter auswählen · Esc schließen',
|
|
1017
|
+
'↑↓ to navigate · Enter to select · Esc to back':
|
|
1018
|
+
'↑↓ navigieren · Enter auswählen · Esc zurück',
|
|
1019
|
+
'↑↓ to navigate · Enter to confirm · Esc to back':
|
|
1020
|
+
'↑↓ navigieren · Enter bestätigen · Esc zurück',
|
|
1021
|
+
'User Settings (global)': 'Benutzereinstellungen (global)',
|
|
1022
|
+
'Workspace Settings (project-specific)':
|
|
1023
|
+
'Arbeitsbereichseinstellungen (projektspezifisch)',
|
|
1024
|
+
'Disable server:': 'Server deaktivieren:',
|
|
1025
|
+
'Select where to add the server to the exclude list:':
|
|
1026
|
+
'Wählen Sie, wo der Server zur Ausschlussliste hinzugefügt werden soll:',
|
|
1027
|
+
'Press Enter to confirm, Esc to cancel':
|
|
1028
|
+
'Enter zum Bestätigen, Esc zum Abbrechen',
|
|
1029
|
+
Disable: 'Deaktivieren',
|
|
1030
|
+
Enable: 'Aktivieren',
|
|
1031
|
+
Authenticate: 'Authentifizieren',
|
|
1032
|
+
'Re-authenticate': 'Erneut authentifizieren',
|
|
1033
|
+
'Clear Authentication': 'Authentifizierung löschen',
|
|
1034
|
+
disabled: 'deaktiviert',
|
|
1035
|
+
enabled: 'aktiviert',
|
|
1036
|
+
'Server:': 'Server:',
|
|
1037
|
+
Reconnect: 'Neu verbinden',
|
|
1038
|
+
'View tools': 'Werkzeuge anzeigen',
|
|
1039
|
+
'Status:': 'Status:',
|
|
1040
|
+
'Command:': 'Befehl:',
|
|
1041
|
+
'Working Directory:': 'Arbeitsverzeichnis:',
|
|
1042
|
+
'No server selected': 'Kein Server ausgewählt',
|
|
1043
|
+
'Error:': 'Fehler:',
|
|
1044
|
+
tool: 'Werkzeug',
|
|
1045
|
+
tools: 'Werkzeuge',
|
|
1046
|
+
connected: 'verbunden',
|
|
1047
|
+
connecting: 'verbindet',
|
|
1048
|
+
disconnected: 'getrennt',
|
|
1049
|
+
error: 'Fehler',
|
|
1050
|
+
|
|
1051
|
+
// MCP Server List
|
|
1052
|
+
'User MCPs': 'Benutzer-MCPs',
|
|
1053
|
+
'Project MCPs': 'Projekt-MCPs',
|
|
1054
|
+
'Extension MCPs': 'Erweiterungs-MCPs',
|
|
1055
|
+
server: 'Server',
|
|
1056
|
+
servers: 'Server',
|
|
1057
|
+
'Add MCP servers to your settings to get started.':
|
|
1058
|
+
'Fügen Sie MCP servers zu Ihren Einstellungen hinzu, um zu beginnen.',
|
|
1059
|
+
'Run qwen --debug to see error logs':
|
|
1060
|
+
'Führen Sie qwen --debug aus, um Fehlerprotokolle anzuzeigen',
|
|
1061
|
+
|
|
1062
|
+
// MCP OAuth Authentication
|
|
1063
|
+
'OAuth Authentication': 'OAuth-Authentifizierung',
|
|
1064
|
+
'Authenticating... Please complete the login in your browser.':
|
|
1065
|
+
'Authentifizierung läuft... Bitte schließen Sie die Anmeldung in Ihrem Browser ab.',
|
|
1066
|
+
// MCP Tool List
|
|
1067
|
+
'No tools available for this server.':
|
|
1068
|
+
'Keine Werkzeuge für diesen Server verfügbar.',
|
|
1069
|
+
destructive: 'destruktiv',
|
|
1070
|
+
'read-only': 'schreibgeschützt',
|
|
1071
|
+
'open-world': 'offene Welt',
|
|
1072
|
+
idempotent: 'idempotent',
|
|
1073
|
+
'Tools for {{serverName}}': 'Werkzeuge für {{serverName}}',
|
|
1074
|
+
'{{current}}/{{total}}': '{{current}}/{{total}}',
|
|
1075
|
+
|
|
1076
|
+
// MCP Tool Detail
|
|
1077
|
+
required: 'erforderlich',
|
|
1078
|
+
Parameters: 'Parameter',
|
|
1079
|
+
'No tool selected': 'Kein Werkzeug ausgewählt',
|
|
1080
|
+
Server: 'Server',
|
|
1081
|
+
|
|
1082
|
+
// Invalid tool related translations
|
|
1083
|
+
'{{count}} invalid tools': '{{count}} ungültige Werkzeuge',
|
|
1084
|
+
invalid: 'ungültig',
|
|
1085
|
+
'invalid: {{reason}}': 'ungültig: {{reason}}',
|
|
1086
|
+
'missing name': 'Name fehlt',
|
|
1087
|
+
'missing description': 'Beschreibung fehlt',
|
|
1088
|
+
'(unnamed)': '(unbenannt)',
|
|
1089
|
+
'Warning: This tool cannot be called by the LLM':
|
|
1090
|
+
'Warnung: Dieses Werkzeug kann nicht vom LLM aufgerufen werden',
|
|
1091
|
+
Reason: 'Grund',
|
|
1092
|
+
'Tools must have both name and description to be used by the LLM.':
|
|
1093
|
+
'Werkzeuge müssen sowohl einen Namen als auch eine Beschreibung haben, um vom LLM verwendet zu werden.',
|
|
1094
|
+
'Modify in progress:': 'Änderung in Bearbeitung:',
|
|
1095
|
+
'Save and close external editor to continue':
|
|
1096
|
+
'Speichern und externen Editor schließen, um fortzufahren',
|
|
1097
|
+
'Apply this change?': 'Diese Änderung anwenden?',
|
|
1098
|
+
'Yes, allow always': 'Ja, immer erlauben',
|
|
1099
|
+
'Modify with external editor': 'Mit externem Editor bearbeiten',
|
|
1100
|
+
'No, suggest changes (esc)': 'Nein, Änderungen vorschlagen (Esc)',
|
|
1101
|
+
"Allow execution of: '{{command}}'?":
|
|
1102
|
+
"Ausführung erlauben von: '{{command}}'?",
|
|
1103
|
+
'Always allow in this project': 'In diesem Projekt immer erlauben',
|
|
1104
|
+
'Always allow {{action}} in this project':
|
|
1105
|
+
'{{action}} in diesem Projekt immer erlauben',
|
|
1106
|
+
'Always allow for this user': 'Für diesen Benutzer immer erlauben',
|
|
1107
|
+
'Always allow {{action}} for this user':
|
|
1108
|
+
'{{action}} für diesen Benutzer immer erlauben',
|
|
1109
|
+
'Yes, restore previous mode ({{mode}})':
|
|
1110
|
+
'Ja, vorherigen Modus wiederherstellen ({{mode}})',
|
|
1111
|
+
'Yes, and auto-accept edits': 'Ja, und Änderungen automatisch akzeptieren',
|
|
1112
|
+
'Yes, and manually approve edits': 'Ja, und Änderungen manuell genehmigen',
|
|
1113
|
+
'No, keep planning (esc)': 'Nein, weiter planen (Esc)',
|
|
1114
|
+
'URLs to fetch:': 'Abzurufende URLs:',
|
|
1115
|
+
'MCP Server: {{server}}': 'MCP Server: {{server}}',
|
|
1116
|
+
'Tool: {{tool}}': 'Werkzeug: {{tool}}',
|
|
1117
|
+
'Allow execution of MCP tool "{{tool}}" from server "{{server}}"?':
|
|
1118
|
+
'Ausführung von MCP tool "{{tool}}" von MCP server "{{server}}" erlauben?',
|
|
1119
|
+
// ============================================================================
|
|
1120
|
+
// Dialogs - Shell Confirmation
|
|
1121
|
+
// ============================================================================
|
|
1122
|
+
'Shell Command Execution': 'Shell-Befehlsausführung',
|
|
1123
|
+
'A custom command wants to run the following shell commands:':
|
|
1124
|
+
'Ein benutzerdefinierter Befehl möchte folgende Shell-Befehle ausführen:',
|
|
1125
|
+
// ============================================================================
|
|
1126
|
+
// Dialogs - Welcome Back
|
|
1127
|
+
// ============================================================================
|
|
1128
|
+
'Current Plan:': 'Aktueller Plan:',
|
|
1129
|
+
'Progress: {{done}}/{{total}} tasks completed':
|
|
1130
|
+
'Fortschritt: {{done}}/{{total}} Aufgaben abgeschlossen',
|
|
1131
|
+
', {{inProgress}} in progress': ', {{inProgress}} in Bearbeitung',
|
|
1132
|
+
'Pending Tasks:': 'Ausstehende Aufgaben:',
|
|
1133
|
+
'What would you like to do?': 'Was möchten Sie tun?',
|
|
1134
|
+
'Choose how to proceed with your session:':
|
|
1135
|
+
'Wählen Sie, wie Sie mit Ihrer Sitzung fortfahren möchten:',
|
|
1136
|
+
'Start new chat session': 'Neue Chat-Sitzung starten',
|
|
1137
|
+
'Continue previous conversation': 'Vorheriges Gespräch fortsetzen',
|
|
1138
|
+
'👋 Welcome back! (Last updated: {{timeAgo}})':
|
|
1139
|
+
'👋 Willkommen zurück! (Zuletzt aktualisiert: {{timeAgo}})',
|
|
1140
|
+
'🎯 Overall Goal:': '🎯 Gesamtziel:',
|
|
1141
|
+
'Connect a Provider': 'Anbieter verbinden',
|
|
1142
|
+
'You must connect a provider to proceed. Press Ctrl+C again to exit.':
|
|
1143
|
+
'Sie müssen einen Anbieter verbinden, um fortzufahren. Drücken Sie erneut Ctrl+C zum Beenden.',
|
|
1144
|
+
'Terms of Services and Privacy Notice':
|
|
1145
|
+
'Nutzungsbedingungen und Datenschutzhinweis',
|
|
1146
|
+
'Qwen OAuth': 'Qwen OAuth',
|
|
1147
|
+
'Discontinued — switch to Coding Plan or API Key':
|
|
1148
|
+
'Eingestellt — wechseln Sie zu Coding Plan oder API Key',
|
|
1149
|
+
'Tulex OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.':
|
|
1150
|
+
'Das kostenlose Tulex OAuth-Kontingent wurde am 2026-04-15 eingestellt. Bitte wählen Sie Coding Plan oder API Key.',
|
|
1151
|
+
'Tulex OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.':
|
|
1152
|
+
'Das kostenlose Tulex OAuth-Angebot wurde am 2026-04-15 eingestellt. Bitte wählen Sie ein Modell eines anderen Anbieter oder führen Sie /auth aus, um zu wechseln.',
|
|
1153
|
+
'\n⚠ Tulex OAuth free tier was discontinued on 2026-04-15. Please select another option.\n':
|
|
1154
|
+
'\n⚠ Das kostenlose Tulex OAuth-Kontingent wurde am 2026-04-15 eingestellt. Bitte wählen Sie eine andere Option.\n',
|
|
1155
|
+
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
|
|
1156
|
+
'Kostenpflichtig \u00B7 Bis zu 6.000 Anfragen/5 Std. \u00B7 Alle Alibaba Cloud Coding Plan Modelle',
|
|
1157
|
+
'Alibaba Cloud Coding Plan': 'Alibaba Cloud Coding Plan',
|
|
1158
|
+
'Bring your own API key': 'Eigenen API Key verwenden',
|
|
1159
|
+
'Browser-based authentication with third-party providers (e.g. OpenRouter, ModelScope)':
|
|
1160
|
+
'Browserbasierte Authentifizierung mit externen Anbietern (z. B. OpenRouter, ModelScope)',
|
|
1161
|
+
'Authentication is enforced to be {{enforcedType}}, but you are currently using {{currentType}}.':
|
|
1162
|
+
'Authentifizierung ist auf {{enforcedType}} festgelegt, aber Sie verwenden derzeit {{currentType}}.',
|
|
1163
|
+
'Tulex OAuth Authentication': 'Qwen OAuth-Authentifizierung',
|
|
1164
|
+
'Please visit this URL to authorize:':
|
|
1165
|
+
'Bitte besuchen Sie diese URL zur Autorisierung:',
|
|
1166
|
+
'Waiting for authorization': 'Warten auf Autorisierung',
|
|
1167
|
+
'Time remaining:': 'Verbleibende Zeit:',
|
|
1168
|
+
'Tulex OAuth Authentication Timeout':
|
|
1169
|
+
'Tulex OAuth-Authentifizierung abgelaufen',
|
|
1170
|
+
'OAuth token expired (over {{seconds}} seconds). Please select authentication method again.':
|
|
1171
|
+
'OAuth-Token abgelaufen (über {{seconds}} Sekunden). Bitte wählen Sie erneut eine Authentifizierungsmethode.',
|
|
1172
|
+
'Press any key to return to authentication type selection.':
|
|
1173
|
+
'Drücken Sie eine beliebige Taste, um zur Authentifizierungstypauswahl zurückzukehren.',
|
|
1174
|
+
'Waiting for Tulex OAuth authentication...':
|
|
1175
|
+
'Warten auf Tulex OAuth-Authentifizierung...',
|
|
1176
|
+
'Authentication timed out. Please try again.':
|
|
1177
|
+
'Authentifizierung abgelaufen. Bitte versuchen Sie es erneut.',
|
|
1178
|
+
'Waiting for auth... (Press ESC or CTRL+C to cancel)':
|
|
1179
|
+
'Warten auf Authentifizierung... (ESC oder CTRL+C zum Abbrechen drücken)',
|
|
1180
|
+
'Missing API key for OpenAI-compatible auth. Set settings.security.auth.apiKey, or set the {{envKeyHint}} environment variable.':
|
|
1181
|
+
'API Key für OpenAI-kompatible Authentifizierung fehlt. Setzen Sie settings.security.auth.apiKey oder die Umgebungsvariable {{envKeyHint}}.',
|
|
1182
|
+
'{{envKeyHint}} environment variable not found. Please set it in your .env file or environment variables.':
|
|
1183
|
+
'Umgebungsvariable {{envKeyHint}} wurde nicht gefunden. Bitte legen Sie sie in Ihrer .env-Datei oder den Systemumgebungsvariablen fest.',
|
|
1184
|
+
'{{envKeyHint}} environment variable not found (or set settings.security.auth.apiKey). Please set it in your .env file or environment variables.':
|
|
1185
|
+
'Umgebungsvariable {{envKeyHint}} wurde nicht gefunden (oder setzen Sie settings.security.auth.apiKey). Bitte legen Sie sie in Ihrer .env-Datei oder den Systemumgebungsvariablen fest.',
|
|
1186
|
+
'Missing API key for OpenAI-compatible auth. Set the {{envKeyHint}} environment variable.':
|
|
1187
|
+
'API Key für OpenAI-kompatible Authentifizierung fehlt. Setzen Sie die Umgebungsvariable {{envKeyHint}}.',
|
|
1188
|
+
'Anthropic provider missing required baseUrl in modelProviders[].baseUrl.':
|
|
1189
|
+
'Anthropic-Anbieter fehlt erforderliche baseUrl in modelProviders[].baseUrl.',
|
|
1190
|
+
'ANTHROPIC_BASE_URL environment variable not found.':
|
|
1191
|
+
'Umgebungsvariable ANTHROPIC_BASE_URL wurde nicht gefunden.',
|
|
1192
|
+
'Invalid auth method selected.':
|
|
1193
|
+
'Ungültige Authentifizierungsmethode ausgewählt.',
|
|
1194
|
+
'Failed to authenticate. Message: {{message}}':
|
|
1195
|
+
'Authentifizierung fehlgeschlagen. Meldung: {{message}}',
|
|
1196
|
+
'Authenticated successfully with {{authType}} credentials.':
|
|
1197
|
+
'Erfolgreich mit {{authType}}-Anmeldedaten authentifiziert.',
|
|
1198
|
+
'Invalid QWEN_DEFAULT_AUTH_TYPE value: "{{value}}". Valid values are: {{validValues}}':
|
|
1199
|
+
'Ungültiger QWEN_DEFAULT_AUTH_TYPE-Wert: "{{value}}". Gültige Werte sind: {{validValues}}',
|
|
1200
|
+
// ============================================================================
|
|
1201
|
+
// Dialogs - Model
|
|
1202
|
+
// ============================================================================
|
|
1203
|
+
'Select Model': 'Modell auswählen',
|
|
1204
|
+
'API Key': 'API Key',
|
|
1205
|
+
'(default)': '(Standard)',
|
|
1206
|
+
'(not set)': '(nicht gesetzt)',
|
|
1207
|
+
Modality: 'Modalität',
|
|
1208
|
+
'Context Window': 'Kontextfenster',
|
|
1209
|
+
text: 'Text',
|
|
1210
|
+
'text-only': 'nur Text',
|
|
1211
|
+
image: 'Bild',
|
|
1212
|
+
pdf: 'PDF',
|
|
1213
|
+
audio: 'Audio',
|
|
1214
|
+
video: 'Video',
|
|
1215
|
+
'not set': 'nicht gesetzt',
|
|
1216
|
+
none: 'keine',
|
|
1217
|
+
unknown: 'unbekannt',
|
|
1218
|
+
// ============================================================================
|
|
1219
|
+
// Dialogs - Permissions
|
|
1220
|
+
// ============================================================================
|
|
1221
|
+
'Manage folder trust settings': 'Ordnervertrauenseinstellungen verwalten',
|
|
1222
|
+
'Manage permission rules': 'permission rules verwalten',
|
|
1223
|
+
Allow: 'Erlauben',
|
|
1224
|
+
Ask: 'Fragen',
|
|
1225
|
+
Deny: 'Verweigern',
|
|
1226
|
+
Workspace: 'Arbeitsbereich',
|
|
1227
|
+
"TulexCode won't ask before using allowed tools.":
|
|
1228
|
+
'Tulex Code fragt nicht, bevor erlaubte Tools verwendet werden.',
|
|
1229
|
+
'Tulex Code will ask before using these tools.':
|
|
1230
|
+
'Tulex Code fragt, bevor diese Tools verwendet werden.',
|
|
1231
|
+
'Tulex Code is not allowed to use denied tools.':
|
|
1232
|
+
'Tulex Code darf verweigerte Tools nicht verwenden.',
|
|
1233
|
+
'Manage trusted directories for this workspace.':
|
|
1234
|
+
'Vertrauenswürdige Verzeichnisse für diesen Arbeitsbereich verwalten.',
|
|
1235
|
+
'Any use of the {{tool}} tool': 'Jede Verwendung des {{tool}}-Tools',
|
|
1236
|
+
"{{tool}} commands matching '{{pattern}}'":
|
|
1237
|
+
"{{tool}}-Befehle, die '{{pattern}}' entsprechen",
|
|
1238
|
+
'From user settings': 'Aus Benutzereinstellungen',
|
|
1239
|
+
'From project settings': 'Aus Projekteinstellungen',
|
|
1240
|
+
'From session': 'Aus Sitzung',
|
|
1241
|
+
'Project settings': 'Projekteinstellungen',
|
|
1242
|
+
'Checked in at .tulex/settings.json': 'Eingecheckt in .tulex/settings.json',
|
|
1243
|
+
'User settings': 'Benutzereinstellungen',
|
|
1244
|
+
'Saved in at ~/.tulex/settings.json': 'Gespeichert in ~/.tulex/settings.json',
|
|
1245
|
+
'Add a new rule…': 'Neue Regel hinzufügen…',
|
|
1246
|
+
'Add {{type}} permission rule': '{{type}} permission rule hinzufügen',
|
|
1247
|
+
'Permission rules are a tool name, optionally followed by a specifier in parentheses.':
|
|
1248
|
+
'permission rules sind ein Toolname, optional gefolgt von einem Bezeichner in Klammern.',
|
|
1249
|
+
'e.g.,': 'z.B.',
|
|
1250
|
+
or: 'oder',
|
|
1251
|
+
'Enter permission rule…': 'permission rule eingeben…',
|
|
1252
|
+
'Enter to submit · Esc to cancel': 'Enter zum Absenden · Esc zum Abbrechen',
|
|
1253
|
+
'Where should this rule be saved?': 'Wo soll diese Regel gespeichert werden?',
|
|
1254
|
+
'Enter to confirm · Esc to cancel':
|
|
1255
|
+
'Enter zum Bestätigen · Esc zum Abbrechen',
|
|
1256
|
+
'Delete {{type}} rule?': '{{type}}-Regel löschen?',
|
|
1257
|
+
'Are you sure you want to delete this permission rule?':
|
|
1258
|
+
'Sind Sie sicher, dass Sie diese permission rule löschen möchten?',
|
|
1259
|
+
'Permissions:': 'Berechtigungen:',
|
|
1260
|
+
'(←/→ or tab to cycle)': '(←/→ oder Tab zum Wechseln)',
|
|
1261
|
+
'Press ↑↓ to navigate · Enter to select · Type to search · Esc to cancel':
|
|
1262
|
+
'↑↓ navigieren · Enter auswählen · Tippen suchen · Esc abbrechen',
|
|
1263
|
+
'Search…': 'Suche…',
|
|
1264
|
+
// Workspace directory management
|
|
1265
|
+
'Add directory…': 'Verzeichnis hinzufügen…',
|
|
1266
|
+
'Add directory to workspace': 'Verzeichnis zum Arbeitsbereich hinzufügen',
|
|
1267
|
+
'Tulex Code can read files in the workspace, and make edits when auto-accept edits is on.':
|
|
1268
|
+
'Tulex Code kann Dateien im Arbeitsbereich lesen und Bearbeitungen vornehmen, wenn die automatische Akzeptierung aktiviert ist.',
|
|
1269
|
+
'Tulex Code will be able to read files in this directory and make edits when auto-accept edits is on.':
|
|
1270
|
+
'Tulex Code kann Dateien in diesem Verzeichnis lesen und Bearbeitungen vornehmen, wenn die automatische Akzeptierung aktiviert ist.',
|
|
1271
|
+
'Enter the path to the directory:': 'Pfad zum Verzeichnis eingeben:',
|
|
1272
|
+
'Enter directory path…': 'Verzeichnispfad eingeben…',
|
|
1273
|
+
'Tab to complete · Enter to add · Esc to cancel':
|
|
1274
|
+
'Tab zum Vervollständigen · Enter zum Hinzufügen · Esc zum Abbrechen',
|
|
1275
|
+
'Remove directory?': 'Verzeichnis entfernen?',
|
|
1276
|
+
'Are you sure you want to remove this directory from the workspace?':
|
|
1277
|
+
'Möchten Sie dieses Verzeichnis wirklich aus dem Arbeitsbereich entfernen?',
|
|
1278
|
+
' (Original working directory)': ' (Ursprüngliches Arbeitsverzeichnis)',
|
|
1279
|
+
' (from settings)': ' (aus Einstellungen)',
|
|
1280
|
+
'Directory does not exist.': 'Verzeichnis existiert nicht.',
|
|
1281
|
+
'Path is not a directory.': 'Pfad ist kein Verzeichnis.',
|
|
1282
|
+
'This directory is already in the workspace.':
|
|
1283
|
+
'Dieses Verzeichnis ist bereits im Arbeitsbereich.',
|
|
1284
|
+
'Already covered by existing directory: {{dir}}':
|
|
1285
|
+
'Bereits durch vorhandenes Verzeichnis abgedeckt: {{dir}}',
|
|
1286
|
+
|
|
1287
|
+
// ============================================================================
|
|
1288
|
+
// Status Bar
|
|
1289
|
+
// ============================================================================
|
|
1290
|
+
'Using:': 'Verwendet:',
|
|
1291
|
+
'{{count}} open file': '{{count}} geöffnete Datei',
|
|
1292
|
+
'{{count}} open files': '{{count}} geöffnete Dateien',
|
|
1293
|
+
'(ctrl+g to view)': '(Ctrl+G zum Anzeigen)',
|
|
1294
|
+
'{{count}} {{name}} file': '{{count}} {{name}}-Datei',
|
|
1295
|
+
'{{count}} {{name}} files': '{{count}} {{name}}-Dateien',
|
|
1296
|
+
'{{count}} MCP server': '{{count}} MCP server',
|
|
1297
|
+
'{{count}} MCP servers': '{{count}} MCP servers',
|
|
1298
|
+
'{{count}} Blocked': '{{count}} blockiert',
|
|
1299
|
+
'(ctrl+t to view)': '(Ctrl+T zum Anzeigen)',
|
|
1300
|
+
'(ctrl+t to toggle)': '(Ctrl+T zum Umschalten)',
|
|
1301
|
+
'Press Ctrl+C again to exit.': 'Drücken Sie erneut Ctrl+C zum Beenden.',
|
|
1302
|
+
'Press Ctrl+D again to exit.': 'Drücken Sie erneut Ctrl+D zum Beenden.',
|
|
1303
|
+
'Press Esc again to clear.': 'Drücken Sie erneut Esc zum Löschen.',
|
|
1304
|
+
'Press ↑ to edit queued messages':
|
|
1305
|
+
'Drücken Sie ↑, um Nachrichten in der Warteschlange zu bearbeiten',
|
|
1306
|
+
|
|
1307
|
+
// ============================================================================
|
|
1308
|
+
// MCP Status
|
|
1309
|
+
// ============================================================================
|
|
1310
|
+
'No MCP servers configured.': 'Keine MCP servers konfiguriert.',
|
|
1311
|
+
'⏳ MCP servers are starting up ({{count}} initializing)...':
|
|
1312
|
+
'⏳ MCP servers werden gestartet ({{count}} werden initialisiert)...',
|
|
1313
|
+
'Note: First startup may take longer. Tool availability will update automatically.':
|
|
1314
|
+
'Hinweis: Der erste Start kann länger dauern. Werkzeugverfügbarkeit wird automatisch aktualisiert.',
|
|
1315
|
+
'Configured MCP servers:': 'Konfigurierte MCP servers:',
|
|
1316
|
+
Ready: 'Bereit',
|
|
1317
|
+
'Starting... (first startup may take longer)':
|
|
1318
|
+
'Wird gestartet... (erster Start kann länger dauern)',
|
|
1319
|
+
Disconnected: 'Getrennt',
|
|
1320
|
+
'{{count}} tool': '{{count}} Werkzeug',
|
|
1321
|
+
'{{count}} tools': '{{count}} Werkzeuge',
|
|
1322
|
+
'{{count}} prompt': '{{count}} Prompt',
|
|
1323
|
+
'{{count}} prompts': '{{count}} Prompts',
|
|
1324
|
+
'(from {{extensionName}})': '(von {{extensionName}})',
|
|
1325
|
+
OAuth: 'OAuth',
|
|
1326
|
+
'OAuth expired': 'OAuth abgelaufen',
|
|
1327
|
+
'OAuth not authenticated': 'OAuth nicht authentifiziert',
|
|
1328
|
+
'tools and prompts will appear when ready':
|
|
1329
|
+
'Werkzeuge und Prompts werden angezeigt, wenn bereit',
|
|
1330
|
+
'{{count}} tools cached': '{{count}} Werkzeuge zwischengespeichert',
|
|
1331
|
+
'Tools:': 'Werkzeuge:',
|
|
1332
|
+
'Parameters:': 'Parameter:',
|
|
1333
|
+
Blocked: 'Blockiert',
|
|
1334
|
+
'💡 Tips:': '💡 Tipps:',
|
|
1335
|
+
Use: 'Verwenden',
|
|
1336
|
+
'to show server and tool descriptions':
|
|
1337
|
+
'um Server- und Werkzeugbeschreibungen anzuzeigen',
|
|
1338
|
+
'to show tool parameter schemas': 'um tool parameter schemas anzuzeigen',
|
|
1339
|
+
'to hide descriptions': 'um Beschreibungen auszublenden',
|
|
1340
|
+
'to authenticate with OAuth-enabled servers':
|
|
1341
|
+
'um sich bei OAuth-fähigen Servern zu authentifizieren',
|
|
1342
|
+
Press: 'Drücken Sie',
|
|
1343
|
+
'to toggle tool descriptions on/off':
|
|
1344
|
+
'um Werkzeugbeschreibungen ein-/auszuschalten',
|
|
1345
|
+
"Starting OAuth authentication for MCP server '{{name}}'...":
|
|
1346
|
+
"OAuth-Authentifizierung für MCP server '{{name}}' wird gestartet...",
|
|
1347
|
+
// ============================================================================
|
|
1348
|
+
// Startup Tips
|
|
1349
|
+
// ============================================================================
|
|
1350
|
+
|
|
1351
|
+
// ============================================================================
|
|
1352
|
+
// Exit Screen / Stats
|
|
1353
|
+
// ============================================================================
|
|
1354
|
+
'Agent powering down. Goodbye!':
|
|
1355
|
+
'Agent wird heruntergefahren. Auf Wiedersehen!',
|
|
1356
|
+
'To continue this session, run':
|
|
1357
|
+
'Um diese Sitzung fortzusetzen, führen Sie aus',
|
|
1358
|
+
'Interaction Summary': 'Interaktionszusammenfassung',
|
|
1359
|
+
'Session ID:': 'Sitzungs-ID:',
|
|
1360
|
+
'Tool Calls:': 'Werkzeugaufrufe:',
|
|
1361
|
+
'Success Rate:': 'Erfolgsrate:',
|
|
1362
|
+
'User Agreement:': 'Benutzerzustimmung:',
|
|
1363
|
+
reviewed: 'überprüft',
|
|
1364
|
+
'Code Changes:': 'Codeänderungen:',
|
|
1365
|
+
Performance: 'Leistung',
|
|
1366
|
+
'Wall Time:': 'Gesamtzeit:',
|
|
1367
|
+
'Agent Active:': 'Agent aktiv:',
|
|
1368
|
+
'API Time:': 'API-Zeit:',
|
|
1369
|
+
'Tool Time:': 'Werkzeugzeit:',
|
|
1370
|
+
'Session Stats': 'Sitzungsstatistiken',
|
|
1371
|
+
'Model Usage': 'Modellnutzung',
|
|
1372
|
+
Reqs: 'Anfragen',
|
|
1373
|
+
'Input Tokens': 'Eingabe-Token',
|
|
1374
|
+
'Output Tokens': 'Ausgabe-Token',
|
|
1375
|
+
'Savings Highlight:': 'Einsparungen:',
|
|
1376
|
+
'of input tokens were served from the cache, reducing costs.':
|
|
1377
|
+
'der Eingabe-Token wurden aus dem Cache bedient, was die Kosten reduziert.',
|
|
1378
|
+
'Tip: For a full token breakdown, run `/stats model`.':
|
|
1379
|
+
'Tipp: Für eine vollständige Token-Aufschlüsselung führen Sie `/stats model` aus.',
|
|
1380
|
+
'Model Stats For Nerds': 'Modellstatistiken für Nerds',
|
|
1381
|
+
'Tool Stats For Nerds': 'Werkzeugstatistiken für Nerds',
|
|
1382
|
+
Metric: 'Metrik',
|
|
1383
|
+
API: 'API',
|
|
1384
|
+
Requests: 'Anfragen',
|
|
1385
|
+
Errors: 'Fehler',
|
|
1386
|
+
'Avg Latency': 'Durchschn. Latenz',
|
|
1387
|
+
Tokens: 'Token',
|
|
1388
|
+
Total: 'Gesamt',
|
|
1389
|
+
Cached: 'Zwischengespeichert',
|
|
1390
|
+
Thoughts: 'Gedanken',
|
|
1391
|
+
Output: 'Ausgabe',
|
|
1392
|
+
'No API calls have been made in this session.':
|
|
1393
|
+
'In dieser Sitzung wurden keine API-Aufrufe gemacht.',
|
|
1394
|
+
'Tool Name': 'Werkzeugname',
|
|
1395
|
+
Calls: 'Aufrufe',
|
|
1396
|
+
'Success Rate': 'Erfolgsrate',
|
|
1397
|
+
'Avg Duration': 'Durchschn. Dauer',
|
|
1398
|
+
'User Decision Summary': 'Benutzerentscheidungs-Zusammenfassung',
|
|
1399
|
+
'Total Reviewed Suggestions:': 'Insgesamt überprüfter Vorschläge:',
|
|
1400
|
+
' » Accepted:': ' » Akzeptiert:',
|
|
1401
|
+
' » Rejected:': ' » Abgelehnt:',
|
|
1402
|
+
' » Modified:': ' » Geändert:',
|
|
1403
|
+
' Overall Agreement Rate:': ' Gesamtzustimmungsrate:',
|
|
1404
|
+
'No tool calls have been made in this session.':
|
|
1405
|
+
'In dieser Sitzung wurden keine Werkzeugaufrufe gemacht.',
|
|
1406
|
+
'Session start time is unavailable, cannot calculate stats.':
|
|
1407
|
+
'Sitzungsstartzeit nicht verfügbar, Statistiken können nicht berechnet werden.',
|
|
1408
|
+
Activity: 'Aktivität',
|
|
1409
|
+
Efficiency: 'Effizienz',
|
|
1410
|
+
Today: 'Heute',
|
|
1411
|
+
'Token Trend': 'Token-Trend',
|
|
1412
|
+
'Cache Hit Rate': 'Cache-Trefferquote',
|
|
1413
|
+
'Tool Success': 'Tool-Erfolgsrate',
|
|
1414
|
+
'Tool Leaderboard': 'Tool-Rangliste',
|
|
1415
|
+
Time: 'Zeit',
|
|
1416
|
+
Success: 'Erfolg',
|
|
1417
|
+
Cache: 'Cache',
|
|
1418
|
+
Latency: 'Latenz',
|
|
1419
|
+
'Code Impact': 'Code-Änderungen',
|
|
1420
|
+
net: 'netto',
|
|
1421
|
+
streak: 'Serie',
|
|
1422
|
+
best: 'Rekord',
|
|
1423
|
+
|
|
1424
|
+
// ============================================================================
|
|
1425
|
+
// Command Format Migration
|
|
1426
|
+
// ============================================================================
|
|
1427
|
+
'Command Format Migration': 'Befehlsformat-Migration',
|
|
1428
|
+
'Found {{count}} TOML command file:': '{{count}} TOML-Befehlsdatei gefunden:',
|
|
1429
|
+
'Found {{count}} TOML command files:':
|
|
1430
|
+
'{{count}} TOML-Befehlsdateien gefunden:',
|
|
1431
|
+
'Current tasks': 'Aktuelle Aufgaben',
|
|
1432
|
+
'... and {{count}} more': '... und {{count}} weitere',
|
|
1433
|
+
'The TOML format is deprecated. Would you like to migrate them to Markdown format?':
|
|
1434
|
+
'Das TOML-Format ist veraltet. Möchten Sie sie ins Markdown-Format migrieren?',
|
|
1435
|
+
'(Backups will be created and original files will be preserved)':
|
|
1436
|
+
'(Backups werden erstellt und Originaldateien werden beibehalten)',
|
|
1437
|
+
|
|
1438
|
+
// ============================================================================
|
|
1439
|
+
// Loading Phrases
|
|
1440
|
+
// ============================================================================
|
|
1441
|
+
'Waiting for user confirmation...': 'Warten auf Benutzerbestätigung...',
|
|
1442
|
+
// ============================================================================
|
|
1443
|
+
// Loading Phrases
|
|
1444
|
+
// ============================================================================
|
|
1445
|
+
WITTY_LOADING_PHRASES: [
|
|
1446
|
+
'Auf gut Glück!',
|
|
1447
|
+
'Genialität wird ausgeliefert...',
|
|
1448
|
+
'Die Serifen werden aufgemalt...',
|
|
1449
|
+
'Durch den Schleimpilz navigieren...',
|
|
1450
|
+
'Die digitalen Geister werden befragt...',
|
|
1451
|
+
'Splines werden retikuliert...',
|
|
1452
|
+
'Die KI-Hamster werden aufgewärmt...',
|
|
1453
|
+
'Die Zaubermuschel wird befragt...',
|
|
1454
|
+
'Witzige Erwiderung wird generiert...',
|
|
1455
|
+
'Die Algorithmen werden poliert...',
|
|
1456
|
+
'Perfektion braucht Zeit (mein Code auch)...',
|
|
1457
|
+
'Frische Bytes werden gebrüht...',
|
|
1458
|
+
'Elektronen werden gezählt...',
|
|
1459
|
+
'Kognitive Prozessoren werden aktiviert...',
|
|
1460
|
+
'Auf Syntaxfehler im Universum wird geprüft...',
|
|
1461
|
+
'Einen Moment, Humor wird optimiert...',
|
|
1462
|
+
'Pointen werden gemischt...',
|
|
1463
|
+
'Neuronale Netze werden entwirrt...',
|
|
1464
|
+
'Brillanz wird kompiliert...',
|
|
1465
|
+
'wit.exe wird geladen...',
|
|
1466
|
+
'Die Wolke der Weisheit wird beschworen...',
|
|
1467
|
+
'Eine witzige Antwort wird vorbereitet...',
|
|
1468
|
+
'Einen Moment, ich debugge die Realität...',
|
|
1469
|
+
'Die Optionen werden verwirrt...',
|
|
1470
|
+
'Kosmische Frequenzen werden eingestellt...',
|
|
1471
|
+
'Eine Antwort wird erstellt, die Ihrer Geduld würdig ist...',
|
|
1472
|
+
'Die Einsen und Nullen werden kompiliert...',
|
|
1473
|
+
'Abhängigkeiten werden aufgelöst... und existenzielle Krisen...',
|
|
1474
|
+
'Erinnerungen werden defragmentiert... sowohl RAM als auch persönliche...',
|
|
1475
|
+
'Das Humor-Modul wird neu gestartet...',
|
|
1476
|
+
'Das Wesentliche wird zwischengespeichert (hauptsächlich Katzen-Memes)...',
|
|
1477
|
+
'Für lächerliche Geschwindigkeit wird optimiert',
|
|
1478
|
+
'Bits werden getauscht... sagen Sie es nicht den Bytes...',
|
|
1479
|
+
'Garbage Collection läuft... bin gleich zurück...',
|
|
1480
|
+
'Das Internet wird zusammengebaut...',
|
|
1481
|
+
'Kaffee wird in Code umgewandelt...',
|
|
1482
|
+
'Die Syntax der Realität wird aktualisiert...',
|
|
1483
|
+
'Die Synapsen werden neu verdrahtet...',
|
|
1484
|
+
'Ein verlegtes Semikolon wird gesucht...',
|
|
1485
|
+
'Die Zahnräder werden geschmiert...',
|
|
1486
|
+
'Die Server werden vorgeheizt...',
|
|
1487
|
+
'Der Fluxkompensator wird kalibriert...',
|
|
1488
|
+
'Der Unwahrscheinlichkeitsantrieb wird aktiviert...',
|
|
1489
|
+
'Die Macht wird kanalisiert...',
|
|
1490
|
+
'Die Sterne werden für optimale Antwort ausgerichtet...',
|
|
1491
|
+
'So sagen wir alle...',
|
|
1492
|
+
'Die nächste große Idee wird geladen...',
|
|
1493
|
+
'Einen Moment, ich bin in der Zone...',
|
|
1494
|
+
'Bereite mich vor, Sie mit Brillanz zu blenden...',
|
|
1495
|
+
'Einen Augenblick, ich poliere meinen Witz...',
|
|
1496
|
+
'Halten Sie durch, ich erschaffe ein Meisterwerk...',
|
|
1497
|
+
'Einen Moment, ich debugge das Universum...',
|
|
1498
|
+
'Einen Moment, ich richte die Pixel aus...',
|
|
1499
|
+
'Einen Moment, ich optimiere den Humor...',
|
|
1500
|
+
'Einen Moment, ich tune die Algorithmen...',
|
|
1501
|
+
'Warp-Geschwindigkeit aktiviert...',
|
|
1502
|
+
'Mehr Dilithium-Kristalle werden gesucht...',
|
|
1503
|
+
'Keine Panik...',
|
|
1504
|
+
'Dem weißen Kaninchen wird gefolgt...',
|
|
1505
|
+
'Die Wahrheit ist hier drin... irgendwo...',
|
|
1506
|
+
'Auf die Kassette wird gepustet...',
|
|
1507
|
+
'Ladevorgang... Machen Sie eine Fassrolle!',
|
|
1508
|
+
'Auf den Respawn wird gewartet...',
|
|
1509
|
+
'Der Kessel-Flug wird in weniger als 12 Parsec beendet...',
|
|
1510
|
+
'Der Kuchen ist keine Lüge, er lädt nur noch...',
|
|
1511
|
+
'Am Charaktererstellungsbildschirm wird herumgefummelt...',
|
|
1512
|
+
'Einen Moment, ich suche das richtige Meme...',
|
|
1513
|
+
"'A' wird zum Fortfahren gedrückt...",
|
|
1514
|
+
'Digitale Katzen werden gehütet...',
|
|
1515
|
+
'Die Pixel werden poliert...',
|
|
1516
|
+
'Ein passender Ladebildschirm-Witz wird gesucht...',
|
|
1517
|
+
'Ich lenke Sie mit diesem witzigen Spruch ab...',
|
|
1518
|
+
'Fast da... wahrscheinlich...',
|
|
1519
|
+
'Unsere Hamster arbeiten so schnell sie können...',
|
|
1520
|
+
'Cloudy wird am Kopf gestreichelt...',
|
|
1521
|
+
'Die Katze wird gestreichelt...',
|
|
1522
|
+
'Meinen Chef rickrollen...',
|
|
1523
|
+
'Never gonna give you up, never gonna let you down...',
|
|
1524
|
+
'Auf den Bass wird geschlagen...',
|
|
1525
|
+
'Die Schnozbeeren werden probiert...',
|
|
1526
|
+
"I'm going the distance, I'm going for speed...",
|
|
1527
|
+
'Ist dies das wahre Leben? Ist dies nur Fantasie?...',
|
|
1528
|
+
'Ich habe ein gutes Gefühl dabei...',
|
|
1529
|
+
'Den Bären wird gestupst...',
|
|
1530
|
+
'Recherche zu den neuesten Memes...',
|
|
1531
|
+
'Überlege, wie ich das witziger machen kann...',
|
|
1532
|
+
'Hmmm... lassen Sie mich nachdenken...',
|
|
1533
|
+
'Wie nennt man einen Fisch ohne Augen? Ein Fsh...',
|
|
1534
|
+
'Warum ging der Computer zur Therapie? Er hatte zu viele Bytes...',
|
|
1535
|
+
'Warum mögen Programmierer keine Natur? Sie hat zu viele Bugs...',
|
|
1536
|
+
'Warum bevorzugen Programmierer den Dunkelmodus? Weil Licht Bugs anzieht...',
|
|
1537
|
+
'Warum ging der Entwickler pleite? Er hat seinen ganzen Cache aufgebraucht...',
|
|
1538
|
+
'Was kann man mit einem kaputten Bleistift machen? Nichts, er ist sinnlos...',
|
|
1539
|
+
'Perkussive Wartung wird angewendet...',
|
|
1540
|
+
'Die richtige USB-Ausrichtung wird gesucht...',
|
|
1541
|
+
'Es wird sichergestellt, dass der magische Rauch in den Kabeln bleibt...',
|
|
1542
|
+
'Versuche Vim zu beenden...',
|
|
1543
|
+
'Das Hamsterrad wird angeworfen...',
|
|
1544
|
+
'Das ist kein Bug, das ist ein undokumentiertes Feature...',
|
|
1545
|
+
'Engage.',
|
|
1546
|
+
'Ich komme wieder... mit einer Antwort.',
|
|
1547
|
+
'Mein anderer Prozess ist eine TARDIS...',
|
|
1548
|
+
'Mit dem Maschinengeist wird kommuniziert...',
|
|
1549
|
+
'Die Gedanken marinieren lassen...',
|
|
1550
|
+
'Gerade erinnert, wo ich meine Schlüssel hingelegt habe...',
|
|
1551
|
+
'Über die Kugel wird nachgedacht...',
|
|
1552
|
+
'Ich habe Dinge gesehen, die Sie nicht glauben würden... wie einen Benutzer, der Lademeldungen liest.',
|
|
1553
|
+
'Nachdenklicher Blick wird initiiert...',
|
|
1554
|
+
'Was ist der Lieblingssnack eines Computers? Mikrochips.',
|
|
1555
|
+
'Warum tragen Java-Entwickler Brillen? Weil sie nicht C#.',
|
|
1556
|
+
'Der Laser wird aufgeladen... pew pew!',
|
|
1557
|
+
'Durch Null wird geteilt... nur Spaß!',
|
|
1558
|
+
'Suche nach einem erwachsenen Aufseh... ich meine, Verarbeitung.',
|
|
1559
|
+
'Es piept und boopt.',
|
|
1560
|
+
'Pufferung... weil auch KIs einen Moment brauchen.',
|
|
1561
|
+
'Quantenteilchen werden für schnellere Antwort verschränkt...',
|
|
1562
|
+
'Das Chrom wird poliert... an den Algorithmen.',
|
|
1563
|
+
'Sind Sie nicht unterhalten? (Arbeite daran!)',
|
|
1564
|
+
'Die Code-Gremlins werden beschworen... zum Helfen, natürlich.',
|
|
1565
|
+
'Warte nur auf das Einwahlton-Ende...',
|
|
1566
|
+
'Das Humor-O-Meter wird neu kalibriert.',
|
|
1567
|
+
'Mein anderer Ladebildschirm ist noch lustiger.',
|
|
1568
|
+
'Ziemlich sicher, dass irgendwo eine Katze über die Tastatur läuft...',
|
|
1569
|
+
'Verbessern... Verbessern... Lädt noch.',
|
|
1570
|
+
'Das ist kein Bug, das ist ein Feature... dieses Ladebildschirms.',
|
|
1571
|
+
'Haben Sie versucht, es aus- und wieder einzuschalten? (Den Ladebildschirm, nicht mich.)',
|
|
1572
|
+
'Zusätzliche Pylonen werden gebaut...',
|
|
1573
|
+
],
|
|
1574
|
+
|
|
1575
|
+
// ============================================================================
|
|
1576
|
+
// Extension Settings Input
|
|
1577
|
+
// ============================================================================
|
|
1578
|
+
'Enter value...': 'Wert eingeben...',
|
|
1579
|
+
'Enter sensitive value...': 'Sensiblen Wert eingeben...',
|
|
1580
|
+
'Press Enter to submit, Escape to cancel':
|
|
1581
|
+
'Enter zum Absenden, Escape zum Abbrechen drücken',
|
|
1582
|
+
|
|
1583
|
+
// ============================================================================
|
|
1584
|
+
// Command Migration Tool
|
|
1585
|
+
// ============================================================================
|
|
1586
|
+
'Markdown file already exists: {{filename}}':
|
|
1587
|
+
'Markdown-Datei existiert bereits: {{filename}}',
|
|
1588
|
+
'TOML Command Format Deprecation Notice':
|
|
1589
|
+
'TOML-Befehlsformat Veraltet-Hinweis',
|
|
1590
|
+
'Found {{count}} command file(s) in TOML format:':
|
|
1591
|
+
'{{count}} Befehlsdatei(en) im TOML-Format gefunden:',
|
|
1592
|
+
'The TOML format for commands is being deprecated in favor of Markdown format.':
|
|
1593
|
+
'Das TOML-Format für Befehle wird zugunsten des Markdown-Formats eingestellt.',
|
|
1594
|
+
'Markdown format is more readable and easier to edit.':
|
|
1595
|
+
'Das Markdown-Format ist lesbarer und einfacher zu bearbeiten.',
|
|
1596
|
+
'You can migrate these files automatically using:':
|
|
1597
|
+
'Sie können diese Dateien automatisch migrieren mit:',
|
|
1598
|
+
'Or manually convert each file:': 'Oder jede Datei manuell konvertieren:',
|
|
1599
|
+
'TOML: prompt = "..." / description = "..."':
|
|
1600
|
+
'TOML: prompt = "..." / description = "..."',
|
|
1601
|
+
'Markdown: YAML frontmatter + content': 'Markdown: YAML-Frontmatter + Inhalt',
|
|
1602
|
+
'The migration tool will:': 'Das Migrationstool wird:',
|
|
1603
|
+
'Convert TOML files to Markdown': 'TOML-Dateien in Markdown konvertieren',
|
|
1604
|
+
'Create backups of original files':
|
|
1605
|
+
'Sicherungen der Originaldateien erstellen',
|
|
1606
|
+
'Preserve all command functionality': 'Alle Befehlsfunktionen beibehalten',
|
|
1607
|
+
'TOML format will continue to work for now, but migration is recommended.':
|
|
1608
|
+
'Das TOML-Format funktioniert vorerst weiter, aber eine Migration wird empfohlen.',
|
|
1609
|
+
|
|
1610
|
+
// ============================================================================
|
|
1611
|
+
// Extensions - Explore Command
|
|
1612
|
+
// ============================================================================
|
|
1613
|
+
'Open extensions page in your browser': 'Erweiterungsseite im Browser öffnen',
|
|
1614
|
+
'Unknown extensions source: {{source}}.':
|
|
1615
|
+
'Unbekannte Erweiterungsquelle: {{source}}.',
|
|
1616
|
+
'Would open extensions page in your browser: {{url}} (skipped in test environment)':
|
|
1617
|
+
'Würde Erweiterungsseite im Browser öffnen: {{url}} (übersprungen in Testumgebung)',
|
|
1618
|
+
'View available extensions at {{url}}':
|
|
1619
|
+
'Verfügbare Erweiterungen ansehen unter {{url}}',
|
|
1620
|
+
'Opening extensions page in your browser: {{url}}':
|
|
1621
|
+
'Erweiterungsseite wird im Browser geöffnet: {{url}}',
|
|
1622
|
+
'Failed to open browser. Check out the extensions gallery at {{url}}':
|
|
1623
|
+
'Browser konnte nicht geöffnet werden. Besuchen Sie die Erweiterungsgalerie unter {{url}}',
|
|
1624
|
+
'Use /compress when the conversation gets long to summarize history and free up context.':
|
|
1625
|
+
'Verwenden Sie /compress, wenn die Unterhaltung lang wird, um den Verlauf zusammenzufassen und Kontext freizugeben.',
|
|
1626
|
+
'Start a fresh idea with /clear or /new; the previous session stays available in history.':
|
|
1627
|
+
'Starten Sie eine neue Idee mit /clear oder /new; die vorherige Sitzung bleibt im Verlauf verfügbar.',
|
|
1628
|
+
'Use /bug to submit issues to the maintainers when something goes off.':
|
|
1629
|
+
'Verwenden Sie /bug, um Probleme an die Betreuer zu melden, wenn etwas schiefgeht.',
|
|
1630
|
+
'Switch auth type quickly with /auth.':
|
|
1631
|
+
'Wechseln Sie den Authentifizierungstyp schnell mit /auth.',
|
|
1632
|
+
'You can run any shell commands from Tulex Code using ! (e.g. !ls).':
|
|
1633
|
+
'Sie können beliebige Shell-Befehle in Tulex Code mit ! ausführen (z. B. !ls).',
|
|
1634
|
+
'Type / to open the command popup; Tab autocompletes slash commands and saved prompts.':
|
|
1635
|
+
'Geben Sie / ein, um das Befehlsmenü zu öffnen; Tab vervollständigt Slash-Befehle und gespeicherte Prompts.',
|
|
1636
|
+
'You can resume a previous conversation by running tulex --continue or tulex --resume.':
|
|
1637
|
+
'Sie können eine frühere Unterhaltung mit tulex --continue oder tulex --resume fortsetzen.',
|
|
1638
|
+
'You can switch permission mode quickly with Shift+Tab or /approval-mode.':
|
|
1639
|
+
'Sie können den Berechtigungsmodus schnell mit Shift+Tab oder /approval-mode wechseln.',
|
|
1640
|
+
'You can switch permission mode quickly with Tab or /approval-mode.':
|
|
1641
|
+
'Sie können den Berechtigungsmodus schnell mit Tab oder /approval-mode wechseln.',
|
|
1642
|
+
'Try /insight to generate personalized insights from your chat history.':
|
|
1643
|
+
'Probieren Sie /insight, um personalisierte Erkenntnisse aus Ihrem Chatverlauf zu erstellen.',
|
|
1644
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1645
|
+
'Ctrl+O drücken, um den Kompaktmodus umzuschalten — Tool-Ausgabe und Denkprozess ausblenden.',
|
|
1646
|
+
'Add a Tulex.md file to give Tulex Code persistent project context.':
|
|
1647
|
+
'Fügen Sie eine Tulex.md-Datei hinzu, um Tulex Code dauerhaften Projektkontext zu geben.',
|
|
1648
|
+
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
1649
|
+
'Verwenden Sie /btw, um eine kurze Nebenfrage zu stellen, ohne die Unterhaltung zu unterbrechen.',
|
|
1650
|
+
'Context is almost full! Run /compress now or start /new to continue.':
|
|
1651
|
+
'Der Kontext ist fast voll! Führen Sie jetzt /compress aus oder starten Sie /new, um fortzufahren.',
|
|
1652
|
+
'Context is getting full. Use /compress to free up space.':
|
|
1653
|
+
'Der Kontext füllt sich. Verwenden Sie /compress, um Platz freizugeben.',
|
|
1654
|
+
'Long conversation? /compress summarizes history to free context.':
|
|
1655
|
+
'Lange Unterhaltung? /compress fasst den Verlauf zusammen, um Kontext freizugeben.',
|
|
1656
|
+
|
|
1657
|
+
// ============================================================================
|
|
1658
|
+
// Custom API Key Configuration
|
|
1659
|
+
// ============================================================================
|
|
1660
|
+
'You can configure your API key and models in settings.json':
|
|
1661
|
+
'Sie können Ihren API Key und Modelle in settings.json konfigurieren',
|
|
1662
|
+
'Refer to the documentation for setup instructions':
|
|
1663
|
+
'Einrichtungsanweisungen finden Sie in der Dokumentation',
|
|
1664
|
+
|
|
1665
|
+
// ============================================================================
|
|
1666
|
+
// Coding Plan Authentication
|
|
1667
|
+
// ============================================================================
|
|
1668
|
+
'API key cannot be empty.': 'API Key darf nicht leer sein.',
|
|
1669
|
+
'You can get your Coding Plan API key here':
|
|
1670
|
+
'Sie können Ihren Coding Plan API Key hier erhalten',
|
|
1671
|
+
'Failed to update Coding Plan configuration: {{message}}':
|
|
1672
|
+
'Fehler beim Aktualisieren der Coding Plan-Konfiguration: {{message}}',
|
|
1673
|
+
|
|
1674
|
+
// ============================================================================
|
|
1675
|
+
// Auth Dialog - View Titles and Labels
|
|
1676
|
+
// ============================================================================
|
|
1677
|
+
'Coding Plan': 'Coding Plan',
|
|
1678
|
+
Custom: 'Benutzerdefiniert',
|
|
1679
|
+
'Select Region for Coding Plan': 'Region für Coding Plan auswählen',
|
|
1680
|
+
'Choose based on where your account is registered':
|
|
1681
|
+
'Wählen Sie basierend auf dem Registrierungsort Ihres Kontos',
|
|
1682
|
+
'Enter Coding Plan API Key': 'Coding Plan API Key eingeben',
|
|
1683
|
+
|
|
1684
|
+
// ============================================================================
|
|
1685
|
+
// Coding Plan International Updates
|
|
1686
|
+
// ============================================================================
|
|
1687
|
+
'New model configurations are available for {{region}}. Update now?':
|
|
1688
|
+
'Neue Modellkonfigurationen sind für {{region}} verfügbar. Jetzt aktualisieren?',
|
|
1689
|
+
'{{region}} configuration updated successfully. Model switched to "{{model}}".':
|
|
1690
|
+
'{{region}}-Konfiguration erfolgreich aktualisiert. Modell auf "{{model}}" umgeschaltet.',
|
|
1691
|
+
// ============================================================================
|
|
1692
|
+
// Context Usage Component
|
|
1693
|
+
// ============================================================================
|
|
1694
|
+
'Context Usage': 'Kontextnutzung',
|
|
1695
|
+
'% used': '% verwendet',
|
|
1696
|
+
'% context used': '% Kontext verwendet',
|
|
1697
|
+
'Context exceeds limit! Use /compress or /clear to reduce.':
|
|
1698
|
+
'Kontext überschreitet Limit! Verwenden Sie /compress oder /clear zum Reduzieren.',
|
|
1699
|
+
'No API response yet. Send a message to see actual usage.':
|
|
1700
|
+
'Noch keine API-Antwort. Senden Sie eine Nachricht, um die tatsächliche Nutzung anzuzeigen.',
|
|
1701
|
+
'Estimated pre-conversation overhead':
|
|
1702
|
+
'Geschätzte Vorabkosten vor der Unterhaltung',
|
|
1703
|
+
'Context window': 'Kontextfenster',
|
|
1704
|
+
tokens: 'Tokens',
|
|
1705
|
+
Used: 'Verwendet',
|
|
1706
|
+
Free: 'Frei',
|
|
1707
|
+
'Autocompact buffer': 'Autokomprimierungs-Puffer',
|
|
1708
|
+
'Usage by category': 'Verwendung nach Kategorie',
|
|
1709
|
+
'System prompt': 'System-Prompt',
|
|
1710
|
+
'Built-in tools': 'Integrierte Tools',
|
|
1711
|
+
'MCP tools': 'MCP tools',
|
|
1712
|
+
'Memory files': 'Speicherdateien',
|
|
1713
|
+
Skills: 'Fähigkeiten',
|
|
1714
|
+
Messages: 'Nachrichten',
|
|
1715
|
+
'Run /context detail for per-item breakdown.':
|
|
1716
|
+
'Führen Sie /context detail für eine Aufschlüsselung nach Elementen aus.',
|
|
1717
|
+
active: 'aktiv',
|
|
1718
|
+
'body loaded': 'Inhalt geladen',
|
|
1719
|
+
memory: 'Speicher',
|
|
1720
|
+
'{{region}} configuration updated successfully.':
|
|
1721
|
+
'{{region}}-Konfiguration erfolgreich aktualisiert.',
|
|
1722
|
+
'Authenticated successfully with {{region}}. API key and model configs saved to settings.json.':
|
|
1723
|
+
'Erfolgreich mit {{region}} authentifiziert. API Key und Modellkonfigurationen wurden in settings.json gespeichert.',
|
|
1724
|
+
'Tip: Use /model to switch between available Coding Plan models.':
|
|
1725
|
+
'Tipp: Verwenden Sie /model, um zwischen verfügbaren Coding Plan-Modellen zu wechseln.',
|
|
1726
|
+
'Type something...': 'Etwas eingeben...',
|
|
1727
|
+
Submit: 'Senden',
|
|
1728
|
+
'Submit answers': 'Antworten senden',
|
|
1729
|
+
Cancel: 'Abbrechen',
|
|
1730
|
+
'Your answers:': 'Ihre Antworten:',
|
|
1731
|
+
'(not answered)': '(nicht beantwortet)',
|
|
1732
|
+
'Ready to submit your answers?': 'Bereit, Ihre Antworten zu senden?',
|
|
1733
|
+
'↑/↓: Navigate | ←/→: Switch tabs | Enter: Select':
|
|
1734
|
+
'↑/↓: Navigieren | ←/→: Tabs wechseln | Enter: Auswählen',
|
|
1735
|
+
'↑/↓: Navigate | Enter: Select | Esc: Cancel':
|
|
1736
|
+
'↑/↓: Navigieren | Enter: Auswählen | Esc: Abbrechen',
|
|
1737
|
+
'Authenticate using Tulex OAuth': 'Mit Tulex OAuth authentifizieren',
|
|
1738
|
+
'Authenticate using Alibaba Cloud Coding Plan':
|
|
1739
|
+
'Mit Alibaba Cloud Coding Plan authentifizieren',
|
|
1740
|
+
'Region for Coding Plan (china/global)':
|
|
1741
|
+
'Region für Coding Plan (china/global)',
|
|
1742
|
+
'API key for Coding Plan': 'API Key für Coding Plan',
|
|
1743
|
+
'Show current authentication status':
|
|
1744
|
+
'Aktuellen Authentifizierungsstatus anzeigen',
|
|
1745
|
+
'Authentication completed successfully.':
|
|
1746
|
+
'Authentifizierung erfolgreich abgeschlossen.',
|
|
1747
|
+
'Starting Tulex OAuth authentication...':
|
|
1748
|
+
'Tulex OAuth-Authentifizierung wird gestartet...',
|
|
1749
|
+
'Successfully authenticated with Tulex OAuth.':
|
|
1750
|
+
'Erfolgreich mit Tulex OAuth authentifiziert.',
|
|
1751
|
+
'Failed to authenticate with Tulex OAuth: {{error}}':
|
|
1752
|
+
'Authentifizierung mit Tulex OAuth fehlgeschlagen: {{error}}',
|
|
1753
|
+
'Processing Alibaba Cloud Coding Plan authentication...':
|
|
1754
|
+
'Alibaba Cloud Coding Plan-Authentifizierung wird verarbeitet...',
|
|
1755
|
+
'Successfully authenticated with Alibaba Cloud Coding Plan.':
|
|
1756
|
+
'Erfolgreich mit Alibaba Cloud Coding Plan authentifiziert.',
|
|
1757
|
+
'Failed to authenticate with Coding Plan: {{error}}':
|
|
1758
|
+
'Authentifizierung mit Coding Plan fehlgeschlagen: {{error}}',
|
|
1759
|
+
'阿里云百炼 (aliyun.com)': '阿里云百炼 (aliyun.com)',
|
|
1760
|
+
Global: 'Global',
|
|
1761
|
+
'Alibaba Cloud (alibabacloud.com)': 'Alibaba Cloud (alibabacloud.com)',
|
|
1762
|
+
'Select region for Coding Plan:': 'Region für Coding Plan auswählen:',
|
|
1763
|
+
'Enter your Coding Plan API key: ':
|
|
1764
|
+
'Geben Sie Ihren Coding Plan API Key ein: ',
|
|
1765
|
+
'Select authentication method:': 'Authentifizierungsmethode auswählen:',
|
|
1766
|
+
'\n=== Authentication Status ===\n': '\n=== Authentifizierungsstatus ===\n',
|
|
1767
|
+
'⚠️ No authentication method configured.\n':
|
|
1768
|
+
'⚠️ Keine Authentifizierungsmethode konfiguriert.\n',
|
|
1769
|
+
'Run one of the following commands to get started:\n':
|
|
1770
|
+
'Führen Sie einen der folgenden Befehle aus, um zu beginnen:\n',
|
|
1771
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)':
|
|
1772
|
+
' qwen auth qwen-oauth - Mit Qwen OAuth authentifizieren (eingestellt)',
|
|
1773
|
+
'Or simply run:': 'Oder einfach ausführen:',
|
|
1774
|
+
' qwen auth - Interactive authentication setup\n':
|
|
1775
|
+
' qwen auth - Interaktive Authentifizierungseinrichtung\n',
|
|
1776
|
+
'✓ Authentication Method: Tulex OAuth':
|
|
1777
|
+
'✓ Authentifizierungsmethode: Tulex OAuth',
|
|
1778
|
+
' Type: Free tier (discontinued 2026-04-15)':
|
|
1779
|
+
' Typ: Kostenloses Kontingent (eingestellt 2026-04-15)',
|
|
1780
|
+
' Limit: No longer available': ' Limit: Nicht mehr verfügbar',
|
|
1781
|
+
'Tulex OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.':
|
|
1782
|
+
'Das kostenlose Tulex OAuth-Kontingent wurde am 2026-04-15 eingestellt. Führen Sie /auth aus, um zu Coding Plan, OpenRouter, Fireworks AI oder einem anderen Anbieter zu wechseln.',
|
|
1783
|
+
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
1784
|
+
'✓ Authentifizierungsmethode: Alibaba Cloud Coding Plan',
|
|
1785
|
+
'Global - Alibaba Cloud': 'Global - Alibaba Cloud',
|
|
1786
|
+
' Region: {{region}}': ' Region: {{region}}',
|
|
1787
|
+
' Current Model: {{model}}': ' Aktuelles Modell: {{model}}',
|
|
1788
|
+
' Config Version: {{version}}': ' Konfigurationsversion: {{version}}',
|
|
1789
|
+
' Status: API key configured\n': ' Status: API Key konfiguriert\n',
|
|
1790
|
+
'⚠️ Authentication Method: Alibaba Cloud Coding Plan (Incomplete)':
|
|
1791
|
+
'⚠️ Authentifizierungsmethode: Alibaba Cloud Coding Plan (Unvollständig)',
|
|
1792
|
+
' Issue: API key not found in environment or settings\n':
|
|
1793
|
+
' Problem: API Key nicht in Umgebung oder Einstellungen gefunden\n',
|
|
1794
|
+
' Run `qwen auth coding-plan` to re-configure.\n':
|
|
1795
|
+
' Führen Sie `qwen auth coding-plan` aus, um neu zu konfigurieren.\n',
|
|
1796
|
+
'✓ Authentication Method: {{type}}': '✓ Authentifizierungsmethode: {{type}}',
|
|
1797
|
+
' Status: Configured\n': ' Status: Konfiguriert\n',
|
|
1798
|
+
'Failed to check authentication status: {{error}}':
|
|
1799
|
+
'Authentifizierungsstatus konnte nicht überprüft werden: {{error}}',
|
|
1800
|
+
'Select an option:': 'Option auswählen:',
|
|
1801
|
+
'Raw mode not available. Please run in an interactive terminal.':
|
|
1802
|
+
'Raw-Modus nicht verfügbar. Bitte in einem interaktiven Terminal ausführen.',
|
|
1803
|
+
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1804
|
+
'(↑ ↓ Pfeiltasten zum Navigieren, Enter zum Auswählen, Ctrl+C zum Beenden)\n',
|
|
1805
|
+
'to toggle compact mode': 'Kompaktmodus umschalten',
|
|
1806
|
+
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1807
|
+
'Tool-Ausgabe und Denkprozess ausblenden für eine übersichtlichere Ansicht (mit Ctrl+O umschalten).',
|
|
1808
|
+
'Press Ctrl+O to show full tool output':
|
|
1809
|
+
'Ctrl+O für vollständige Tool-Ausgabe drücken',
|
|
1810
|
+
'Switch to plan mode or exit plan mode':
|
|
1811
|
+
'In den Plan-Modus wechseln oder den Plan-Modus verlassen',
|
|
1812
|
+
'Exited plan mode. Previous approval mode restored.':
|
|
1813
|
+
'Plan-Modus verlassen. Vorheriger Genehmigungsmodus wiederhergestellt.',
|
|
1814
|
+
'Enabled plan mode. The agent will analyze and plan without executing tools.':
|
|
1815
|
+
'Plan-Modus aktiviert. Der Agent analysiert und plant, ohne Werkzeuge auszuführen.',
|
|
1816
|
+
'Already in plan mode. Use "/plan exit" to exit plan mode.':
|
|
1817
|
+
'Bereits im Plan-Modus. Verwenden Sie "/plan exit", um den Plan-Modus zu verlassen.',
|
|
1818
|
+
'Not in plan mode. Use "/plan" to enter plan mode first.':
|
|
1819
|
+
'Nicht im Plan-Modus. Verwenden Sie "/plan", um zuerst in den Plan-Modus zu gelangen.',
|
|
1820
|
+
"Set up Tulex Code's status line UI": 'Tulex Codes Statusleisten-UI einrichten',
|
|
1821
|
+
|
|
1822
|
+
// === Core: added from PR #3328 ===
|
|
1823
|
+
'Open the memory manager.': 'Den Speicher-Manager öffnen.',
|
|
1824
|
+
'Save a durable memory to the memory system.':
|
|
1825
|
+
'Eine dauerhafte Erinnerung im Speichersystem speichern.',
|
|
1826
|
+
'Open MCP management dialog': 'MCP-Verwaltungsdialog öffnen',
|
|
1827
|
+
'Manage extension settings': 'Erweiterungseinstellungen verwalten',
|
|
1828
|
+
prompts: 'Eingabeaufforderungen',
|
|
1829
|
+
'Manage Extensions': 'Erweiterungen verwalten',
|
|
1830
|
+
'Extension Details': 'Erweiterungsdetails',
|
|
1831
|
+
'View Extension': 'Erweiterung anzeigen',
|
|
1832
|
+
'Update Extension': 'Erweiterung aktualisieren',
|
|
1833
|
+
'Disable Extension': 'Erweiterung deaktivieren',
|
|
1834
|
+
'Enable Extension': 'Erweiterung aktivieren',
|
|
1835
|
+
'Uninstall Extension': 'Erweiterung deinstallieren',
|
|
1836
|
+
'Select Scope': 'Bereich auswählen',
|
|
1837
|
+
'User Scope': 'Benutzerbereich',
|
|
1838
|
+
'Workspace Scope': 'Arbeitsbereich',
|
|
1839
|
+
'No extensions found.': 'Keine Erweiterungen gefunden.',
|
|
1840
|
+
'Toggle this help display': 'Diese Hilfe ein- oder ausblenden',
|
|
1841
|
+
'Toggle shell mode': 'Shell-Modus umschalten',
|
|
1842
|
+
'Open command menu': 'Befehlsmenü öffnen',
|
|
1843
|
+
'Add file context': 'Dateikontext hinzufügen',
|
|
1844
|
+
'Accept suggestion / Autocomplete':
|
|
1845
|
+
'Vorschlag akzeptieren / automatisch vervollständigen',
|
|
1846
|
+
'Reverse search history': 'Verlauf rückwärts durchsuchen',
|
|
1847
|
+
'Press ? again to close': 'Erneut ? drücken, um zu schließen',
|
|
1848
|
+
'? for shortcuts': '? für Tastenkürzel',
|
|
1849
|
+
'Invalid approval mode "{{arg}}". Valid modes: {{modes}}':
|
|
1850
|
+
'Ungültiger Freigabemodus "{{arg}}". Gültige Modi: {{modes}}',
|
|
1851
|
+
'Approval mode set to "{{mode}}"': 'Freigabemodus auf "{{mode}}" gesetzt',
|
|
1852
|
+
'Are you sure you want to uninstall extension "{{name}}"?':
|
|
1853
|
+
'Sind Sie sicher, dass Sie die Erweiterung "{{name}}" deinstallieren möchten?',
|
|
1854
|
+
'This action cannot be undone.':
|
|
1855
|
+
'Diese Aktion kann nicht rückgängig gemacht werden.',
|
|
1856
|
+
'Extension "{{name}}" updated successfully.':
|
|
1857
|
+
'Erweiterung "{{name}}" erfolgreich aktualisiert.',
|
|
1858
|
+
'Name:': 'Name:',
|
|
1859
|
+
'MCP Servers:': 'MCP Servers:',
|
|
1860
|
+
'Settings:': 'Einstellungen:',
|
|
1861
|
+
'View Details': 'Details anzeigen',
|
|
1862
|
+
'Update failed:': 'Aktualisierung fehlgeschlagen:',
|
|
1863
|
+
'Updating {{name}}...': '{{name}} wird aktualisiert...',
|
|
1864
|
+
'Update complete!': 'Aktualisierung abgeschlossen!',
|
|
1865
|
+
'User (global)': 'Benutzer (global)',
|
|
1866
|
+
'Workspace (project-specific)': 'Arbeitsbereich (projektspezifisch)',
|
|
1867
|
+
'Disable "{{name}}" - Select Scope':
|
|
1868
|
+
'"{{name}}" deaktivieren - Bereich auswählen',
|
|
1869
|
+
'Enable "{{name}}" - Select Scope':
|
|
1870
|
+
'"{{name}}" aktivieren - Bereich auswählen',
|
|
1871
|
+
'No extension selected': 'Keine Erweiterung ausgewählt',
|
|
1872
|
+
'{{count}} extensions installed': '{{count}} Erweiterungen installiert',
|
|
1873
|
+
'up to date': 'aktuell',
|
|
1874
|
+
'update available': 'Update verfügbar',
|
|
1875
|
+
'checking...': 'wird geprüft...',
|
|
1876
|
+
'not updatable': 'nicht aktualisierbar',
|
|
1877
|
+
'Ask a quick side question without affecting the main conversation':
|
|
1878
|
+
'Eine kurze Nebenfrage stellen, ohne die Hauptunterhaltung zu beeinflussen',
|
|
1879
|
+
'Manage Arena sessions': 'Arena-Sitzungen verwalten',
|
|
1880
|
+
'Start an Arena session with multiple models competing on the same task':
|
|
1881
|
+
'Eine Arena-Sitzung starten, in der mehrere Modelle dieselbe Aufgabe bearbeiten',
|
|
1882
|
+
'Stop the current Arena session': 'Die aktuelle Arena-Sitzung beenden',
|
|
1883
|
+
'Show the current Arena session status':
|
|
1884
|
+
'Den Status der aktuellen Arena-Sitzung anzeigen',
|
|
1885
|
+
'Select a model result and merge its diff into the current workspace':
|
|
1886
|
+
'Ein Modellergebnis auswählen und dessen Diff in den aktuellen Arbeitsbereich übernehmen',
|
|
1887
|
+
'No running Arena session found.': 'Keine laufende Arena-Sitzung gefunden.',
|
|
1888
|
+
'No Arena session found. Start one with /arena start.':
|
|
1889
|
+
'Keine Arena-Sitzung gefunden. Starten Sie eine mit /arena start.',
|
|
1890
|
+
'Arena session is still running. Wait for it to complete or use /arena stop first.':
|
|
1891
|
+
'Die Arena-Sitzung läuft noch. Warten Sie, bis sie abgeschlossen ist, oder verwenden Sie zuerst /arena stop.',
|
|
1892
|
+
'No successful agent results to select from. All agents failed or were cancelled.':
|
|
1893
|
+
'Keine erfolgreichen Agent-Ergebnisse zur Auswahl. Alle Agents sind fehlgeschlagen oder wurden abgebrochen.',
|
|
1894
|
+
'Use /arena stop to end the session.':
|
|
1895
|
+
'Verwenden Sie /arena stop, um die Sitzung zu beenden.',
|
|
1896
|
+
'No idle agent found matching "{{name}}".':
|
|
1897
|
+
'Kein inaktiver Agent gefunden, der "{{name}}" entspricht.',
|
|
1898
|
+
'Failed to apply changes from {{label}}: {{error}}':
|
|
1899
|
+
'Anwenden der Änderungen von {{label}} fehlgeschlagen: {{error}}',
|
|
1900
|
+
'Applied changes from {{label}} to workspace. Arena session complete.':
|
|
1901
|
+
'Änderungen von {{label}} auf den Arbeitsbereich angewendet. Arena-Sitzung abgeschlossen.',
|
|
1902
|
+
'Discard all Arena results and clean up worktrees?':
|
|
1903
|
+
'Alle Arena-Ergebnisse verwerfen und Arbeitsbäume bereinigen?',
|
|
1904
|
+
'Arena results discarded. All worktrees cleaned up.':
|
|
1905
|
+
'Arena-Ergebnisse verworfen. Alle Arbeitsbäume wurden bereinigt.',
|
|
1906
|
+
'Arena is not supported in non-interactive mode. Use interactive mode to start an Arena session.':
|
|
1907
|
+
'Arena wird im nicht-interaktiven Modus nicht unterstützt. Verwenden Sie den interaktiven Modus, um eine Arena-Sitzung zu starten.',
|
|
1908
|
+
'Arena is not supported in non-interactive mode. Use interactive mode to stop an Arena session.':
|
|
1909
|
+
'Arena wird im nicht-interaktiven Modus nicht unterstützt. Verwenden Sie den interaktiven Modus, um eine Arena-Sitzung zu beenden.',
|
|
1910
|
+
'Arena is not supported in non-interactive mode.':
|
|
1911
|
+
'Arena wird im nicht-interaktiven Modus nicht unterstützt.',
|
|
1912
|
+
'An Arena session exists. Use /arena stop or /arena select to end it before starting a new one.':
|
|
1913
|
+
'Es existiert bereits eine Arena-Sitzung. Verwenden Sie /arena stop oder /arena select, um sie zu beenden, bevor Sie eine neue starten.',
|
|
1914
|
+
'Usage: /arena start --models model1,model2 <task>':
|
|
1915
|
+
'Verwendung: /arena start --models model1,model2 <Aufgabe>',
|
|
1916
|
+
'Models to compete (required, at least 2)':
|
|
1917
|
+
'Wettbewerbsmodelle (erforderlich, mindestens 2)',
|
|
1918
|
+
'Format: authType:modelId or just modelId':
|
|
1919
|
+
'Format: authType:modelId oder nur modelId',
|
|
1920
|
+
'Arena requires at least 2 models. Use --models model1,model2 to specify.':
|
|
1921
|
+
'Arena benötigt mindestens 2 Modelle. Verwenden Sie --models model1,model2 zur Angabe.',
|
|
1922
|
+
'Arena started with {{count}} agents on task: "{{task}}"\nModels:\n{{modelList}}':
|
|
1923
|
+
'Arena mit {{count}} Agents für Aufgabe "{{task}}" gestartet\nModelle:\n{{modelList}}',
|
|
1924
|
+
'Arena panes are running in tmux. Attach with: `{{command}}`':
|
|
1925
|
+
'Arena-Panels laufen in tmux. Verbinden mit: `{{command}}`',
|
|
1926
|
+
'[{{label}}] failed: {{error}}': '[{{label}}] fehlgeschlagen: {{error}}',
|
|
1927
|
+
'Loading suggestions...': 'Vorschläge werden geladen...',
|
|
1928
|
+
'Show context window usage breakdown. Use "/context detail" for per-item breakdown.':
|
|
1929
|
+
'Die Aufschlüsselung der Nutzung des Kontextfensters anzeigen. Für Details pro Element "/context detail" verwenden.',
|
|
1930
|
+
'Show per-item context usage breakdown.':
|
|
1931
|
+
'Die Aufschlüsselung der Kontextnutzung pro Element anzeigen.',
|
|
1932
|
+
|
|
1933
|
+
// === Missing key backfill ===
|
|
1934
|
+
'for shell mode': 'für Shell-Modus',
|
|
1935
|
+
'for commands': 'für Befehle',
|
|
1936
|
+
'for file paths': 'für Dateipfade',
|
|
1937
|
+
'to clear input': 'zum Leeren der Eingabe',
|
|
1938
|
+
'to cycle approvals': 'zum Wechseln der Freigaben',
|
|
1939
|
+
'to quit': 'zum Beenden',
|
|
1940
|
+
'for newline': 'für Zeilenumbruch',
|
|
1941
|
+
'to clear screen': 'zum Leeren des Bildschirms',
|
|
1942
|
+
'to search history': 'zum Durchsuchen des Verlaufs',
|
|
1943
|
+
'to paste images': 'zum Einfügen von Bildern',
|
|
1944
|
+
'for external editor': 'für externen Editor',
|
|
1945
|
+
'Updating...': 'Wird aktualisiert...',
|
|
1946
|
+
Unknown: 'Unbekannt',
|
|
1947
|
+
Error: 'Fehler',
|
|
1948
|
+
'Version:': 'Version:',
|
|
1949
|
+
"Use '/extensions install' to install your first extension.":
|
|
1950
|
+
"Verwenden Sie '/extensions install', um Ihre erste Erweiterung zu installieren.",
|
|
1951
|
+
'Value:': 'Wert:',
|
|
1952
|
+
'Press c to copy the authorization URL to your clipboard.':
|
|
1953
|
+
'Drücken Sie c, um die Autorisierungs-URL in die Zwischenablage zu kopieren.',
|
|
1954
|
+
'Copy request sent to your terminal. If paste is empty, copy the URL above manually.':
|
|
1955
|
+
'Kopieranfrage an Ihr Terminal gesendet. Wenn das Einfügen leer ist, kopieren Sie die URL oben manuell.',
|
|
1956
|
+
'Cannot write to terminal — copy the URL above manually.':
|
|
1957
|
+
'Schreiben ins Terminal nicht möglich — kopieren Sie die URL oben manuell.',
|
|
1958
|
+
'Tips:': 'Tipps:',
|
|
1959
|
+
'Retrying in {{seconds}} seconds… (attempt {{attempt}}/{{maxRetries}})':
|
|
1960
|
+
'Erneuter Versuch in {{seconds}} Sekunden… (Versuch {{attempt}}/{{maxRetries}})',
|
|
1961
|
+
'Press Ctrl+Y to retry': 'Drücken Sie Ctrl+Y, um es erneut zu versuchen',
|
|
1962
|
+
'No failed request to retry.':
|
|
1963
|
+
'Keine fehlgeschlagene Anfrage zum Wiederholen.',
|
|
1964
|
+
'to retry last request': 'um die letzte Anfrage erneut zu versuchen',
|
|
1965
|
+
'Invalid API key. Coding Plan API keys start with "sk-sp-". Please check.':
|
|
1966
|
+
'Ungültiger API Key. Coding Plan API Keys beginnen mit "sk-sp-". Bitte prüfen.',
|
|
1967
|
+
'Lock release warning': 'Warnung zur Sperrfreigabe',
|
|
1968
|
+
'Metadata write warning': 'Warnung beim Schreiben der Metadaten',
|
|
1969
|
+
"Subsequent dreams may be skipped as locked until the next session's staleness sweep cleans the file.":
|
|
1970
|
+
'Weitere Dream-Läufe können als gesperrt übersprungen werden, bis der nächste Stale-Sweep der Sitzung die Datei bereinigt.',
|
|
1971
|
+
"The scheduler gate did not see this dream's timestamp; the next dream cycle may re-fire sooner than usual.":
|
|
1972
|
+
'Das Scheduler-Gate hat den Zeitstempel dieses Dream-Laufs nicht gesehen; der nächste Dream-Zyklus kann früher als üblich erneut starten.',
|
|
1973
|
+
// === Same-as-English optimization ===
|
|
1974
|
+
'Agents:': 'Agenten:',
|
|
1975
|
+
Prompt: 'Eingabe',
|
|
1976
|
+
'Prompts:': 'Eingaben:',
|
|
1977
|
+
'Ref:': 'Referenz:',
|
|
1978
|
+
'Skills:': 'Fähigkeiten:',
|
|
1979
|
+
remote: 'entfernt',
|
|
1980
|
+
'中国 (China)': 'China',
|
|
1981
|
+
'中国 (China) - 阿里云百炼': 'China - 阿里云百炼',
|
|
1982
|
+
|
|
1983
|
+
// Stats Dashboard — Category 2
|
|
1984
|
+
'Activity Heatmap': 'Aktivitäts-Heatmap',
|
|
1985
|
+
Less: 'Weniger',
|
|
1986
|
+
More: 'Mehr',
|
|
1987
|
+
Sessions: 'Sitzungen',
|
|
1988
|
+
Duration: 'Dauer',
|
|
1989
|
+
Projects: 'Projekte',
|
|
1990
|
+
'Loading stats...': 'Statistiken werden geladen...',
|
|
1991
|
+
'(no data)': '(keine Daten)',
|
|
1992
|
+
d: 'd',
|
|
1993
|
+
h: 'h',
|
|
1994
|
+
m: 'm',
|
|
1995
|
+
Input: 'Eingabe',
|
|
1996
|
+
Models: 'Modelle',
|
|
1997
|
+
'All time': 'Gesamtzeitraum',
|
|
1998
|
+
'Last 7 days': 'Letzte 7 Tage',
|
|
1999
|
+
'Last 30 days': 'Letzte 30 Tage',
|
|
2000
|
+
'Show usage statistics dashboard.': 'Nutzungsstatistik-Dashboard anzeigen.',
|
|
2001
|
+
|
|
2002
|
+
// Stats Dashboard — keyboard hints (not translated)
|
|
2003
|
+
'tab \xB7 esc': 'tab \xB7 esc',
|
|
2004
|
+
'tab \xB7 r dates \xB7 \u2190\u2192 month \xB7 esc':
|
|
2005
|
+
'tab \xB7 r dates \xB7 \u2190\u2192 month \xB7 esc',
|
|
2006
|
+
'tab \xB7 r dates \xB7 esc': 'tab \xB7 r dates \xB7 esc',
|
|
2007
|
+
|
|
2008
|
+
// Stats Dashboard — missing labels
|
|
2009
|
+
'API Requests': 'API-Anfragen',
|
|
2010
|
+
'Tool Calls': 'Tool-Aufrufe',
|
|
2011
|
+
'Success rate': 'Erfolgsrate',
|
|
2012
|
+
'Code Changes': 'Code-Änderungen',
|
|
2013
|
+
Tool: 'Tool',
|
|
2014
|
+
reqs: 'Anfr.',
|
|
2015
|
+
in: 'ein',
|
|
2016
|
+
out: 'aus',
|
|
2017
|
+
'In/Out': 'Ein/Aus',
|
|
2018
|
+
};
|