@shipit-ai/cli 1.169.0 → 1.170.0-pr13.d3605b0
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/apis/json-schema/ClaudeCodeProxyConfig.yaml +20 -0
- package/apis/json-schema/FeatureFlags.yaml +5 -0
- package/apis/json-schema/LiteLLMProxyConfig.yaml +17 -0
- package/apis/json-schema/LiteLLMProxyRoutingMode.yaml +8 -0
- package/apis/json-schema/Settings.yaml +3 -0
- package/dist/packages/core/src/application/ports/output/services/index.d.ts +1 -0
- package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.d.ts +46 -0
- package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.js +12 -0
- package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.d.ts +16 -0
- package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.js +34 -0
- package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.d.ts +24 -0
- package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.js +52 -0
- package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.d.ts +17 -0
- package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.js +33 -0
- package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.d.ts +17 -0
- package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.js +33 -0
- package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.d.ts +16 -0
- package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.js +33 -0
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -0
- package/dist/packages/core/src/domain/generated/output.d.ts +59 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +6 -0
- package/dist/packages/core/src/infrastructure/di/modules/services.module.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/modules/services.module.js +13 -0
- package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.js +12 -0
- package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.js +22 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +9 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +41 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.d.ts +14 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.js +28 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/055-add-litellm-proxy-agent-config.d.ts +15 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/055-add-litellm-proxy-agent-config.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/055-add-litellm-proxy-agent-config.js +32 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +36 -5
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-provider.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-provider.service.js +7 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts +4 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +44 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +5 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.d.ts +4 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.js +3 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.d.ts +78 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.js +46 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.d.ts +29 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.js +147 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.d.ts +11 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.js +47 -0
- package/dist/src/presentation/web/app/actions/add-marketplace.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/add-marketplace.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/add-marketplace.js +11 -0
- package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.js +11 -0
- package/dist/src/presentation/web/app/actions/install-plugin.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/install-plugin.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/install-plugin.js +11 -0
- package/dist/src/presentation/web/app/actions/toggle-plugin.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/toggle-plugin.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/toggle-plugin.js +11 -0
- package/dist/src/presentation/web/app/actions/uninstall-plugin.d.ts +5 -0
- package/dist/src/presentation/web/app/actions/uninstall-plugin.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/uninstall-plugin.js +11 -0
- package/dist/src/presentation/web/app/plugins/page.d.ts +2 -0
- package/dist/src/presentation/web/app/plugins/page.d.ts.map +1 -0
- package/dist/src/presentation/web/app/plugins/page.js +23 -0
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.js +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.d.ts +9 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.js +15 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.d.ts +17 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.js +60 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.d.ts +11 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.js +33 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.d.ts +18 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.js +51 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.d.ts +6 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.js +124 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.d.ts +12 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.js +24 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +7 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +2 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.js +72 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.stories.d.ts +16 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-routing-section.stories.js +64 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.js +73 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.d.ts +15 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.js +29 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.js +5 -2
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +1 -0
- package/dist/src/presentation/web/components/features/skills/skills-page-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/skills/skills-page-client.js +6 -2
- package/dist/src/presentation/web/components/features/tools/tools-page-client.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/tools/tools-page-client.js +23 -4
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +1 -0
- package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/feature-flags-context.js +1 -0
- package/dist/src/presentation/web/lib/feature-flags.d.ts +2 -0
- package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/feature-flags.js +6 -0
- package/dist/translations/ar/web.json +56 -2
- package/dist/translations/de/web.json +56 -2
- package/dist/translations/en/web.json +56 -2
- package/dist/translations/es/web.json +56 -2
- package/dist/translations/fr/web.json +56 -2
- package/dist/translations/he/web.json +56 -2
- package/dist/translations/pt/web.json +56 -2
- package/dist/translations/ru/web.json +56 -2
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/app-path-routes-manifest.json +1 -0
- package/web/.next/build-manifest.json +3 -3
- package/web/.next/fallback-build-manifest.json +3 -3
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +3 -3
- package/web/.next/required-server-files.json +3 -3
- package/web/.next/routes-manifest.json +6 -0
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +31 -31
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +31 -31
- package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/_global-error.html +1 -1
- package/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/dialog/pick-files/route.js.nft.json +1 -1
- package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/api/graph-data/route.js +1 -1
- package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js +1 -1
- package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
- package/web/.next/server/app/api/sessions-batch/route.js +1 -1
- package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -1
- package/web/.next/server/app/plugins/page/app-paths-manifest.json +3 -0
- package/web/.next/server/app/plugins/page/build-manifest.json +18 -0
- package/web/.next/server/app/plugins/page/next-font-manifest.json +10 -0
- package/web/.next/server/app/plugins/page/react-loadable-manifest.json +8 -0
- package/web/.next/server/app/plugins/page/server-reference-manifest.json +185 -0
- package/web/.next/server/app/plugins/page.js +17 -0
- package/web/.next/server/app/plugins/page.js.map +5 -0
- package/web/.next/server/app/plugins/page.js.nft.json +1 -0
- package/web/.next/server/app/plugins/page_client-reference-manifest.js +3 -0
- package/web/.next/server/app/settings/page/server-reference-manifest.json +34 -22
- package/web/.next/server/app/settings/page.js +1 -1
- package/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/skills/page.js.nft.json +1 -1
- package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/tools/page.js.nft.json +1 -1
- package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/version/page.js.nft.json +1 -1
- package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app-paths-manifest.json +1 -0
- package/web/.next/server/chunks/11es_next_dist_esm_build_templates_app-route_067cwst.js +1 -1
- package/web/.next/server/chunks/11es_next_dist_esm_build_templates_app-route_067cwst.js.map +1 -1
- package/web/.next/server/chunks/{[root-of-the-server]__0zu_byw._.js → [root-of-the-server]__07suer1._.js} +2 -2
- package/web/.next/server/chunks/{[root-of-the-server]__0u1jyv9._.js → [root-of-the-server]__0sgzo7y._.js} +2 -2
- package/web/.next/server/chunks/[root-of-the-server]__0tb~wwk._.js +1 -1
- package/web/.next/server/chunks/{[root-of-the-server]__08cpfre._.js → [root-of-the-server]__0uxlr84._.js} +2 -2
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js +1 -1
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js.map +1 -1
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js +2 -2
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js.map +1 -1
- package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js +1 -1
- package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js.map +1 -1
- package/web/.next/server/chunks/ssr/11es_next_dist_esm_build_templates_app-page_0y6lfp8.js +4 -0
- package/web/.next/server/chunks/ssr/11es_next_dist_esm_build_templates_app-page_0y6lfp8.js.map +1 -0
- package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js +1 -1
- package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_04s_q5r._.js → 12k._sonner_dist_index_mjs_0-vmpk5._.js} +2 -2
- package/web/.next/server/chunks/ssr/12k._sonner_dist_index_mjs_0-vmpk5._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__0rvrr1j._.js → [root-of-the-server]__0.5ojmt._.js} +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0.5ojmt._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__04h~gav._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__04h~gav._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0dec29w._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0dec29w._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0ge~xny._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0ge~xny._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0qda~yi._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0qda~yi._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0rv1gci._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0tq2syh._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0t~u8sd._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0t~u8sd._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__10tll_l._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__10tll_l._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_01sesw0._.js +1 -1
- package/web/.next/server/chunks/ssr/_01sesw0._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_0wor25i._.js → _02g0xyh._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_0wor25i._.js.map → _02g0xyh._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/{_00u~.41._.js → _03x4h9e._.js} +2 -2
- package/web/.next/server/chunks/ssr/_03x4h9e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_0~0jkp_._.js → _05fk0a4._.js} +2 -2
- package/web/.next/server/chunks/ssr/_05fk0a4._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_069y.js._.js +2 -2
- package/web/.next/server/chunks/ssr/_069y.js._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_083k45~._.js +3 -0
- package/web/.next/server/chunks/ssr/_083k45~._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0__4si~._.js +1 -1
- package/web/.next/server/chunks/ssr/_0__4si~._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0_m17kl._.js +1 -1
- package/web/.next/server/chunks/ssr/_0_m17kl._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0d4miu.._.js +1 -1
- package/web/.next/server/chunks/ssr/_0d4miu.._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0e8ern9._.js +1 -1
- package/web/.next/server/chunks/ssr/_0e8ern9._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0i~-084._.js +3 -0
- package/web/.next/server/chunks/ssr/_0i~-084._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0kaec~c._.js +3 -0
- package/web/.next/server/chunks/ssr/_0kaec~c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_01qdxy2._.js → _0mdgz5u._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_01qdxy2._.js.map → _0mdgz5u._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_0o.xc6x._.js +3 -0
- package/web/.next/server/chunks/ssr/_0o.xc6x._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_0hw~zvl._.js → _0o_oaao._.js} +2 -2
- package/web/.next/server/chunks/ssr/_0o_oaao._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0p3~u8u._.js +2 -2
- package/web/.next/server/chunks/ssr/_0p3~u8u._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0r.3n~3._.js +1 -1
- package/web/.next/server/chunks/ssr/_0r.3n~3._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0rcx2-c._.js +9 -0
- package/web/.next/server/chunks/ssr/_0rcx2-c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0rqycsg._.js +3 -0
- package/web/.next/server/chunks/ssr/_0rqycsg._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0t59q8r._.js +1 -1
- package/web/.next/server/chunks/ssr/_0t59q8r._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0tcccbb._.js +1 -1
- package/web/.next/server/chunks/ssr/_0tcccbb._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_0pa1dkv._.js → _0u3d8.n._.js} +2 -2
- package/web/.next/server/chunks/ssr/_0u3d8.n._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0vyfc4b._.js +1 -1
- package/web/.next/server/chunks/ssr/_0vyfc4b._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0w-_hww._.js +1 -1
- package/web/.next/server/chunks/ssr/_0w-_hww._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_09r54oy._.js → _0ygafoy._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_09r54oy._.js.map → _0ygafoy._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_0zk-h5w._.js +1 -1
- package/web/.next/server/chunks/ssr/_0zk-h5w._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0~7lwu_._.js +1 -1
- package/web/.next/server/chunks/ssr/_0~7lwu_._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_10joy2y._.js +3 -0
- package/web/.next/server/chunks/ssr/_10joy2y._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_1161g9x._.js +1 -1
- package/web/.next/server/chunks/ssr/_1161g9x._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_plugins_page_actions_0rdndum.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_plugins_page_actions_0rdndum.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_0pjb_re._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_0aji.op._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_0aji.op._.js.map +1 -1
- package/web/.next/server/middleware-build-manifest.js +3 -3
- package/web/.next/server/next-font-manifest.js +1 -1
- package/web/.next/server/next-font-manifest.json +3 -0
- package/web/.next/server/pages/500.html +1 -1
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +187 -61
- package/web/.next/static/chunks/0.s8cxri-_s9l.js +1 -0
- package/web/.next/static/chunks/012cnd7koqv6d.js +7 -0
- package/web/.next/static/chunks/{12axopx66pocj.js → 056k4f_cj86_m.js} +2 -2
- package/web/.next/static/chunks/{0k0j7anrbg-of.js → 05_pa1uvg8ndq.js} +3 -3
- package/web/.next/static/chunks/{0fg~vc93spa9c.js → 07gal-~-zwagj.js} +1 -1
- package/web/.next/static/chunks/{0in4l8mne5y~_.js → 0b2pi58fg3lt3.js} +1 -1
- package/web/.next/static/chunks/{0o33urrd3lk~u.js → 0dbuetfm_wux5.js} +1 -1
- package/web/.next/static/chunks/{1874_wt9rit96.js → 0dq~u_3-zgq73.js} +1 -1
- package/web/.next/static/chunks/{00m_fbc2z1gyi.js → 0f1m9w6~4f-.w.js} +3 -3
- package/web/.next/static/chunks/{0u_27fdqa2jeg.js → 0i~5fqskcb~~p.js} +1 -1
- package/web/.next/static/chunks/{0v~n9z6b639zm.js → 0jwq.mr-.ltps.js} +1 -1
- package/web/.next/static/chunks/0k8m.qcahm63g.js +1 -0
- package/web/.next/static/chunks/0kjqz.9e9sou2.js +1 -0
- package/web/.next/static/chunks/0lc0x8kcu46ae.js +1 -0
- package/web/.next/static/chunks/{183ehj-b80a~o.js → 0nfd9bvcnbcgl.js} +1 -1
- package/web/.next/static/chunks/0nnltbyg963sg.js +1 -0
- package/web/.next/static/chunks/0pik.2.wvg.el.js +1 -0
- package/web/.next/static/chunks/0r05-2~73nsxp.js +1 -0
- package/web/.next/static/chunks/0ug478hm-8bog.js +5 -0
- package/web/.next/static/chunks/{0yibymrb2j05t.css → 0v7r7y~3e~oo6.css} +1 -1
- package/web/.next/static/chunks/{0dq50gtgaj63f.js → 0wcqsl6fpljkf.js} +1 -1
- package/web/.next/static/chunks/10rtagfoabp3b.js +1 -0
- package/web/.next/static/chunks/112xn3.b2hrmh.js +1 -0
- package/web/.next/static/chunks/{11vbir.u7_zf7.js → 13mkca.j8w.7_.js} +1 -1
- package/web/.next/static/chunks/{121v1_d_dfk2k.js → 14ulzux4y._m-.js} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0qxd563._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0qxd563._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0rvrr1j._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_00u~.41._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_04s_q5r._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0a_8rlj._.js +0 -3
- package/web/.next/server/chunks/ssr/_0a_8rlj._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0dy8.0k._.js +0 -3
- package/web/.next/server/chunks/ssr/_0dy8.0k._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0gdghcr._.js +0 -3
- package/web/.next/server/chunks/ssr/_0gdghcr._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0hw~zvl._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0l2~~pi._.js +0 -3
- package/web/.next/server/chunks/ssr/_0l2~~pi._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0n.magx._.js +0 -3
- package/web/.next/server/chunks/ssr/_0n.magx._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0pa1dkv._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0y8u4.e._.js +0 -9
- package/web/.next/server/chunks/ssr/_0y8u4.e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0~0jkp_._.js.map +0 -1
- package/web/.next/static/chunks/0-ud~1jj7chzu.js +0 -7
- package/web/.next/static/chunks/09f2lesd_dd3~.js +0 -1
- package/web/.next/static/chunks/0c0dau5pmseko.js +0 -1
- package/web/.next/static/chunks/0n3kuj7t_-jzp.js +0 -1
- package/web/.next/static/chunks/0pt-d18f7zxvv.js +0 -1
- package/web/.next/static/chunks/0xwh.0u-dexsl.js +0 -1
- package/web/.next/static/chunks/103xnw203o9k1.js +0 -1
- package/web/.next/static/chunks/12pd180jp8zu..js +0 -5
- package/web/.next/static/chunks/13fcwhkw7dle2.js +0 -1
- package/web/.next/static/chunks/13q1peb_t9vj8.js +0 -1
- /package/web/.next/server/chunks/{[root-of-the-server]__0zu_byw._.js.map → [root-of-the-server]__07suer1._.js.map} +0 -0
- /package/web/.next/server/chunks/{[root-of-the-server]__0u1jyv9._.js.map → [root-of-the-server]__0sgzo7y._.js.map} +0 -0
- /package/web/.next/server/chunks/{[root-of-the-server]__08cpfre._.js.map → [root-of-the-server]__0uxlr84._.js.map} +0 -0
- /package/web/.next/static/{SNdaKJ9fpre8tUMRe1jlA → W6C3cWcub-2kZuXP7c21j}/_buildManifest.js +0 -0
- /package/web/.next/static/{SNdaKJ9fpre8tUMRe1jlA → W6C3cWcub-2kZuXP7c21j}/_clientMiddlewareManifest.js +0 -0
- /package/web/.next/static/{SNdaKJ9fpre8tUMRe1jlA → W6C3cWcub-2kZuXP7c21j}/_ssgManifest.js +0 -0
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"flags": "Flags",
|
|
17
17
|
"chat": "Chat",
|
|
18
18
|
"layout": "Layout",
|
|
19
|
-
"database": "Datenbank"
|
|
19
|
+
"database": "Datenbank",
|
|
20
|
+
"proxy": "LiteLLM Proxy"
|
|
20
21
|
},
|
|
21
22
|
"language": {
|
|
22
23
|
"title": "Sprache",
|
|
@@ -195,8 +196,41 @@
|
|
|
195
196
|
"gitRebaseSyncDescription": "Git Rebase-on-Main- und Sync-Main-Operationen aktivieren",
|
|
196
197
|
"reactFileManager": "React-Dateimanager",
|
|
197
198
|
"reactFileManagerDescription": "Den integrierten React-Dateimanager anstelle der nativen Betriebssystem-Ordnerauswahl verwenden",
|
|
199
|
+
"plugins": "Plugins Marketplace",
|
|
200
|
+
"pluginsDescription": "Enable the Claude Code plugins marketplace browser",
|
|
198
201
|
"hint": "Experimentelle Features, die noch in Entwicklung sind. Aktivierung auf eigene Gefahr — sie können sich in zukünftigen Versionen ändern oder entfernt werden. Der Debug-Modus fügt ausführliche Protokollierung hinzu, die bei der Fehlerbehebung nützlich ist."
|
|
199
202
|
},
|
|
203
|
+
"litellmProxy": {
|
|
204
|
+
"title": "LiteLLM Proxy",
|
|
205
|
+
"description": "Configure connection to a LiteLLM proxy for plugin marketplace access",
|
|
206
|
+
"baseUrl": "Proxy URL",
|
|
207
|
+
"baseUrlDescription": "Base URL of your LiteLLM proxy (e.g., http://localhost:4000)",
|
|
208
|
+
"apiKey": "API Key",
|
|
209
|
+
"apiKeyDescription": "Virtual API key for LiteLLM proxy authentication",
|
|
210
|
+
"marketplaceEnabled": "Enable Marketplace",
|
|
211
|
+
"marketplaceEnabledDescription": "Use this proxy for the plugin marketplace catalog",
|
|
212
|
+
"hint": "Connect to a LiteLLM proxy to browse and install Claude Code plugins from your organization's curated marketplace.",
|
|
213
|
+
"testConnection": "Test Connection",
|
|
214
|
+
"testSuccess": "Connection successful",
|
|
215
|
+
"testFailed": "Connection failed",
|
|
216
|
+
"routing": {
|
|
217
|
+
"title": "Proxy Routing (Claude Code)",
|
|
218
|
+
"description": "Configure how Claude Code routes API traffic through LiteLLM",
|
|
219
|
+
"hint": "Control whether Claude Code uses the LiteLLM proxy for API requests. Supports full proxy routing, passthrough for Max/BYOK subscriptions, and model overrides.",
|
|
220
|
+
"mode": "Routing Mode",
|
|
221
|
+
"modeDescription": "How Claude Code routes API traffic",
|
|
222
|
+
"modeDirect": "Direct (own subscription)",
|
|
223
|
+
"modeProxy": "Proxy (full routing)",
|
|
224
|
+
"modePassthrough": "Passthrough (Max/BYOK)",
|
|
225
|
+
"passthroughHelp": "Passthrough mode requires the LiteLLM proxy to have forward_client_headers_to_llm_api or forward_llm_provider_auth_headers enabled.",
|
|
226
|
+
"customHeaders": "Custom Headers",
|
|
227
|
+
"customHeadersDescription": "Newline-separated headers for cost attribution (e.g., x-litellm-customer-id: user-123)",
|
|
228
|
+
"sonnetModel": "Sonnet Model Override",
|
|
229
|
+
"haikuModel": "Haiku Model Override",
|
|
230
|
+
"opusModel": "Opus Model Override",
|
|
231
|
+
"modelOverrideDescription": "Override the default model routed through LiteLLM"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
200
234
|
"interactiveAgent": {
|
|
201
235
|
"title": "Interaktiver Agent",
|
|
202
236
|
"description": "Chat-Tab-Einstellungen für interaktive Agenten-Sitzungen pro Feature",
|
|
@@ -237,7 +271,8 @@
|
|
|
237
271
|
"settings": "Einstellungen",
|
|
238
272
|
"sessions": "Sitzungen",
|
|
239
273
|
"tools": "Tools",
|
|
240
|
-
"skills": "Skills"
|
|
274
|
+
"skills": "Skills",
|
|
275
|
+
"plugins": "Plugins"
|
|
241
276
|
},
|
|
242
277
|
"sidebar": {
|
|
243
278
|
"features": "Features",
|
|
@@ -598,6 +633,25 @@
|
|
|
598
633
|
"viewServerLogs": "Server-Logs anzeigen",
|
|
599
634
|
"toggleSidebar": "Seitenleiste umschalten"
|
|
600
635
|
},
|
|
636
|
+
"plugins": {
|
|
637
|
+
"title": "Plugins",
|
|
638
|
+
"search": "Search",
|
|
639
|
+
"searchPlaceholder": "Search plugins...",
|
|
640
|
+
"emptyState": "No plugins found",
|
|
641
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
642
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
643
|
+
"install": "Install",
|
|
644
|
+
"uninstall": "Uninstall",
|
|
645
|
+
"enable": "Enable",
|
|
646
|
+
"disable": "Disable",
|
|
647
|
+
"installed": "Installed",
|
|
648
|
+
"notInstalled": "Not Installed",
|
|
649
|
+
"allCategories": "All Categories",
|
|
650
|
+
"version": "Version",
|
|
651
|
+
"source": "Source",
|
|
652
|
+
"category": "Category",
|
|
653
|
+
"clearFilters": "Clear filters"
|
|
654
|
+
},
|
|
601
655
|
"feature": {
|
|
602
656
|
"create": {
|
|
603
657
|
"permissionMode": "Rechte",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"flags": "Flags",
|
|
17
17
|
"chat": "Chat",
|
|
18
18
|
"layout": "Layout",
|
|
19
|
-
"database": "Database"
|
|
19
|
+
"database": "Database",
|
|
20
|
+
"proxy": "LiteLLM Proxy"
|
|
20
21
|
},
|
|
21
22
|
"language": {
|
|
22
23
|
"title": "Language",
|
|
@@ -209,8 +210,41 @@
|
|
|
209
210
|
"gitRebaseSyncDescription": "Enable git rebase-on-main and sync-main operations",
|
|
210
211
|
"reactFileManager": "React File Manager",
|
|
211
212
|
"reactFileManagerDescription": "Use the built-in React file manager instead of the native OS folder picker",
|
|
213
|
+
"plugins": "Plugins Marketplace",
|
|
214
|
+
"pluginsDescription": "Enable the Claude Code plugins marketplace browser",
|
|
212
215
|
"hint": "Experimental features that are still under development. Enable at your own risk — they may change or be removed in future versions. Debug mode adds verbose logging useful for troubleshooting."
|
|
213
216
|
},
|
|
217
|
+
"litellmProxy": {
|
|
218
|
+
"title": "LiteLLM Proxy",
|
|
219
|
+
"description": "Configure connection to a LiteLLM proxy for plugin marketplace access",
|
|
220
|
+
"baseUrl": "Proxy URL",
|
|
221
|
+
"baseUrlDescription": "Base URL of your LiteLLM proxy (e.g., http://localhost:4000)",
|
|
222
|
+
"apiKey": "API Key",
|
|
223
|
+
"apiKeyDescription": "Virtual API key for LiteLLM proxy authentication",
|
|
224
|
+
"marketplaceEnabled": "Enable Marketplace",
|
|
225
|
+
"marketplaceEnabledDescription": "Use this proxy for the plugin marketplace catalog",
|
|
226
|
+
"hint": "Connect to a LiteLLM proxy to browse and install Claude Code plugins from your organization's curated marketplace.",
|
|
227
|
+
"testConnection": "Test Connection",
|
|
228
|
+
"testSuccess": "Connection successful",
|
|
229
|
+
"testFailed": "Connection failed",
|
|
230
|
+
"routing": {
|
|
231
|
+
"title": "Proxy Routing (Claude Code)",
|
|
232
|
+
"description": "Configure how Claude Code routes API traffic through LiteLLM",
|
|
233
|
+
"hint": "Control whether Claude Code uses the LiteLLM proxy for API requests. Supports full proxy routing, passthrough for Max/BYOK subscriptions, and model overrides.",
|
|
234
|
+
"mode": "Routing Mode",
|
|
235
|
+
"modeDescription": "How Claude Code routes API traffic",
|
|
236
|
+
"modeDirect": "Direct (own subscription)",
|
|
237
|
+
"modeProxy": "Proxy (full routing)",
|
|
238
|
+
"modePassthrough": "Passthrough (Max/BYOK)",
|
|
239
|
+
"passthroughHelp": "Passthrough mode requires the LiteLLM proxy to have forward_client_headers_to_llm_api or forward_llm_provider_auth_headers enabled.",
|
|
240
|
+
"customHeaders": "Custom Headers",
|
|
241
|
+
"customHeadersDescription": "Newline-separated headers for cost attribution (e.g., x-litellm-customer-id: user-123)",
|
|
242
|
+
"sonnetModel": "Sonnet Model Override",
|
|
243
|
+
"haikuModel": "Haiku Model Override",
|
|
244
|
+
"opusModel": "Opus Model Override",
|
|
245
|
+
"modelOverrideDescription": "Override the default model routed through LiteLLM"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
214
248
|
"interactiveAgent": {
|
|
215
249
|
"title": "Interactive Agent",
|
|
216
250
|
"description": "Chat tab settings for per-feature interactive agent sessions",
|
|
@@ -251,7 +285,8 @@
|
|
|
251
285
|
"settings": "Settings",
|
|
252
286
|
"sessions": "Sessions",
|
|
253
287
|
"tools": "Tools",
|
|
254
|
-
"skills": "Skills"
|
|
288
|
+
"skills": "Skills",
|
|
289
|
+
"plugins": "Plugins"
|
|
255
290
|
},
|
|
256
291
|
"sidebar": {
|
|
257
292
|
"features": "Features",
|
|
@@ -612,6 +647,25 @@
|
|
|
612
647
|
"viewServerLogs": "View server logs",
|
|
613
648
|
"toggleSidebar": "Toggle Sidebar"
|
|
614
649
|
},
|
|
650
|
+
"plugins": {
|
|
651
|
+
"title": "Plugins",
|
|
652
|
+
"search": "Search",
|
|
653
|
+
"searchPlaceholder": "Search plugins...",
|
|
654
|
+
"emptyState": "No plugins found",
|
|
655
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
656
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
657
|
+
"install": "Install",
|
|
658
|
+
"uninstall": "Uninstall",
|
|
659
|
+
"enable": "Enable",
|
|
660
|
+
"disable": "Disable",
|
|
661
|
+
"installed": "Installed",
|
|
662
|
+
"notInstalled": "Not Installed",
|
|
663
|
+
"allCategories": "All Categories",
|
|
664
|
+
"version": "Version",
|
|
665
|
+
"source": "Source",
|
|
666
|
+
"category": "Category",
|
|
667
|
+
"clearFilters": "Clear filters"
|
|
668
|
+
},
|
|
615
669
|
"feature": {
|
|
616
670
|
"create": {
|
|
617
671
|
"permissionMode": "Perms",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"flags": "Opciones",
|
|
17
17
|
"chat": "Chat",
|
|
18
18
|
"layout": "Diseño",
|
|
19
|
-
"database": "Base de datos"
|
|
19
|
+
"database": "Base de datos",
|
|
20
|
+
"proxy": "Proxy LiteLLM"
|
|
20
21
|
},
|
|
21
22
|
"language": {
|
|
22
23
|
"title": "Idioma",
|
|
@@ -209,8 +210,41 @@
|
|
|
209
210
|
"gitRebaseSyncDescription": "Habilitar operaciones de rebase-on-main y sync-main de git",
|
|
210
211
|
"reactFileManager": "Administrador de archivos React",
|
|
211
212
|
"reactFileManagerDescription": "Usar el administrador de archivos React integrado en lugar del selector de carpetas nativo del SO",
|
|
213
|
+
"plugins": "Plugins Marketplace",
|
|
214
|
+
"pluginsDescription": "Enable the Claude Code plugins marketplace browser",
|
|
212
215
|
"hint": "Funcionalidades experimentales que aún están en desarrollo. Habilítalas bajo tu propio riesgo — pueden cambiar o ser eliminadas en versiones futuras. El modo de depuración agrega registro detallado útil para la resolución de problemas."
|
|
213
216
|
},
|
|
217
|
+
"litellmProxy": {
|
|
218
|
+
"title": "LiteLLM Proxy",
|
|
219
|
+
"description": "Configure connection to a LiteLLM proxy for plugin marketplace access",
|
|
220
|
+
"baseUrl": "Proxy URL",
|
|
221
|
+
"baseUrlDescription": "Base URL of your LiteLLM proxy (e.g., http://localhost:4000)",
|
|
222
|
+
"apiKey": "API Key",
|
|
223
|
+
"apiKeyDescription": "Virtual API key for LiteLLM proxy authentication",
|
|
224
|
+
"marketplaceEnabled": "Enable Marketplace",
|
|
225
|
+
"marketplaceEnabledDescription": "Use this proxy for the plugin marketplace catalog",
|
|
226
|
+
"hint": "Connect to a LiteLLM proxy to browse and install Claude Code plugins from your organization's curated marketplace.",
|
|
227
|
+
"testConnection": "Test Connection",
|
|
228
|
+
"testSuccess": "Connection successful",
|
|
229
|
+
"testFailed": "Connection failed",
|
|
230
|
+
"routing": {
|
|
231
|
+
"title": "Proxy Routing (Claude Code)",
|
|
232
|
+
"description": "Configure how Claude Code routes API traffic through LiteLLM",
|
|
233
|
+
"hint": "Control whether Claude Code uses the LiteLLM proxy for API requests. Supports full proxy routing, passthrough for Max/BYOK subscriptions, and model overrides.",
|
|
234
|
+
"mode": "Routing Mode",
|
|
235
|
+
"modeDescription": "How Claude Code routes API traffic",
|
|
236
|
+
"modeDirect": "Direct (own subscription)",
|
|
237
|
+
"modeProxy": "Proxy (full routing)",
|
|
238
|
+
"modePassthrough": "Passthrough (Max/BYOK)",
|
|
239
|
+
"passthroughHelp": "Passthrough mode requires the LiteLLM proxy to have forward_client_headers_to_llm_api or forward_llm_provider_auth_headers enabled.",
|
|
240
|
+
"customHeaders": "Custom Headers",
|
|
241
|
+
"customHeadersDescription": "Newline-separated headers for cost attribution (e.g., x-litellm-customer-id: user-123)",
|
|
242
|
+
"sonnetModel": "Sonnet Model Override",
|
|
243
|
+
"haikuModel": "Haiku Model Override",
|
|
244
|
+
"opusModel": "Opus Model Override",
|
|
245
|
+
"modelOverrideDescription": "Override the default model routed through LiteLLM"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
214
248
|
"interactiveAgent": {
|
|
215
249
|
"title": "Agente interactivo",
|
|
216
250
|
"description": "Configuración de la pestaña de chat para sesiones de agente interactivo por funcionalidad",
|
|
@@ -251,7 +285,8 @@
|
|
|
251
285
|
"settings": "Configuración",
|
|
252
286
|
"sessions": "Sesiones",
|
|
253
287
|
"tools": "Herramientas",
|
|
254
|
-
"skills": "Habilidades"
|
|
288
|
+
"skills": "Habilidades",
|
|
289
|
+
"plugins": "Plugins"
|
|
255
290
|
},
|
|
256
291
|
"sidebar": {
|
|
257
292
|
"features": "Funcionalidades",
|
|
@@ -612,6 +647,25 @@
|
|
|
612
647
|
"viewServerLogs": "Ver logs del servidor",
|
|
613
648
|
"toggleSidebar": "Alternar barra lateral"
|
|
614
649
|
},
|
|
650
|
+
"plugins": {
|
|
651
|
+
"title": "Plugins",
|
|
652
|
+
"search": "Search",
|
|
653
|
+
"searchPlaceholder": "Search plugins...",
|
|
654
|
+
"emptyState": "No plugins found",
|
|
655
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
656
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
657
|
+
"install": "Install",
|
|
658
|
+
"uninstall": "Uninstall",
|
|
659
|
+
"enable": "Enable",
|
|
660
|
+
"disable": "Disable",
|
|
661
|
+
"installed": "Installed",
|
|
662
|
+
"notInstalled": "Not Installed",
|
|
663
|
+
"allCategories": "All Categories",
|
|
664
|
+
"version": "Version",
|
|
665
|
+
"source": "Source",
|
|
666
|
+
"category": "Category",
|
|
667
|
+
"clearFilters": "Clear filters"
|
|
668
|
+
},
|
|
615
669
|
"feature": {
|
|
616
670
|
"create": {
|
|
617
671
|
"permissionMode": "Permisos",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"flags": "Drapeaux",
|
|
17
17
|
"chat": "Chat",
|
|
18
18
|
"layout": "Disposition",
|
|
19
|
-
"database": "Base de données"
|
|
19
|
+
"database": "Base de données",
|
|
20
|
+
"proxy": "Proxy LiteLLM"
|
|
20
21
|
},
|
|
21
22
|
"language": {
|
|
22
23
|
"title": "Langue",
|
|
@@ -209,8 +210,41 @@
|
|
|
209
210
|
"gitRebaseSyncDescription": "Activer les opérations de rebase-on-main et sync-main de git",
|
|
210
211
|
"reactFileManager": "Gestionnaire de fichiers React",
|
|
211
212
|
"reactFileManagerDescription": "Utiliser le gestionnaire de fichiers React intégré au lieu du sélecteur de dossier natif du système",
|
|
213
|
+
"plugins": "Plugins Marketplace",
|
|
214
|
+
"pluginsDescription": "Enable the Claude Code plugins marketplace browser",
|
|
212
215
|
"hint": "Fonctionnalités expérimentales encore en cours de développement. Activez à vos risques et périls — elles peuvent changer ou être supprimées dans les versions futures. Le mode débogage ajoute une journalisation détaillée utile pour le dépannage."
|
|
213
216
|
},
|
|
217
|
+
"litellmProxy": {
|
|
218
|
+
"title": "LiteLLM Proxy",
|
|
219
|
+
"description": "Configure connection to a LiteLLM proxy for plugin marketplace access",
|
|
220
|
+
"baseUrl": "Proxy URL",
|
|
221
|
+
"baseUrlDescription": "Base URL of your LiteLLM proxy (e.g., http://localhost:4000)",
|
|
222
|
+
"apiKey": "API Key",
|
|
223
|
+
"apiKeyDescription": "Virtual API key for LiteLLM proxy authentication",
|
|
224
|
+
"marketplaceEnabled": "Enable Marketplace",
|
|
225
|
+
"marketplaceEnabledDescription": "Use this proxy for the plugin marketplace catalog",
|
|
226
|
+
"hint": "Connect to a LiteLLM proxy to browse and install Claude Code plugins from your organization's curated marketplace.",
|
|
227
|
+
"testConnection": "Test Connection",
|
|
228
|
+
"testSuccess": "Connection successful",
|
|
229
|
+
"testFailed": "Connection failed",
|
|
230
|
+
"routing": {
|
|
231
|
+
"title": "Proxy Routing (Claude Code)",
|
|
232
|
+
"description": "Configure how Claude Code routes API traffic through LiteLLM",
|
|
233
|
+
"hint": "Control whether Claude Code uses the LiteLLM proxy for API requests. Supports full proxy routing, passthrough for Max/BYOK subscriptions, and model overrides.",
|
|
234
|
+
"mode": "Routing Mode",
|
|
235
|
+
"modeDescription": "How Claude Code routes API traffic",
|
|
236
|
+
"modeDirect": "Direct (own subscription)",
|
|
237
|
+
"modeProxy": "Proxy (full routing)",
|
|
238
|
+
"modePassthrough": "Passthrough (Max/BYOK)",
|
|
239
|
+
"passthroughHelp": "Passthrough mode requires the LiteLLM proxy to have forward_client_headers_to_llm_api or forward_llm_provider_auth_headers enabled.",
|
|
240
|
+
"customHeaders": "Custom Headers",
|
|
241
|
+
"customHeadersDescription": "Newline-separated headers for cost attribution (e.g., x-litellm-customer-id: user-123)",
|
|
242
|
+
"sonnetModel": "Sonnet Model Override",
|
|
243
|
+
"haikuModel": "Haiku Model Override",
|
|
244
|
+
"opusModel": "Opus Model Override",
|
|
245
|
+
"modelOverrideDescription": "Override the default model routed through LiteLLM"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
214
248
|
"interactiveAgent": {
|
|
215
249
|
"title": "Agent interactif",
|
|
216
250
|
"description": "Paramètres de l'onglet Chat pour les sessions d'agent interactif par fonctionnalité",
|
|
@@ -251,7 +285,8 @@
|
|
|
251
285
|
"settings": "Paramètres",
|
|
252
286
|
"sessions": "Sessions",
|
|
253
287
|
"tools": "Outils",
|
|
254
|
-
"skills": "Compétences"
|
|
288
|
+
"skills": "Compétences",
|
|
289
|
+
"plugins": "Plugins"
|
|
255
290
|
},
|
|
256
291
|
"sidebar": {
|
|
257
292
|
"features": "Fonctionnalités",
|
|
@@ -612,6 +647,25 @@
|
|
|
612
647
|
"viewServerLogs": "Voir les logs du serveur",
|
|
613
648
|
"toggleSidebar": "Basculer la barre latérale"
|
|
614
649
|
},
|
|
650
|
+
"plugins": {
|
|
651
|
+
"title": "Plugins",
|
|
652
|
+
"search": "Search",
|
|
653
|
+
"searchPlaceholder": "Search plugins...",
|
|
654
|
+
"emptyState": "No plugins found",
|
|
655
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
656
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
657
|
+
"install": "Install",
|
|
658
|
+
"uninstall": "Uninstall",
|
|
659
|
+
"enable": "Enable",
|
|
660
|
+
"disable": "Disable",
|
|
661
|
+
"installed": "Installed",
|
|
662
|
+
"notInstalled": "Not Installed",
|
|
663
|
+
"allCategories": "All Categories",
|
|
664
|
+
"version": "Version",
|
|
665
|
+
"source": "Source",
|
|
666
|
+
"category": "Category",
|
|
667
|
+
"clearFilters": "Clear filters"
|
|
668
|
+
},
|
|
615
669
|
"feature": {
|
|
616
670
|
"create": {
|
|
617
671
|
"permissionMode": "Droits",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"flags": "דגלים",
|
|
17
17
|
"chat": "צ'אט",
|
|
18
18
|
"layout": "פריסה",
|
|
19
|
-
"database": "מסד נתונים"
|
|
19
|
+
"database": "מסד נתונים",
|
|
20
|
+
"proxy": "פרוקסי LiteLLM"
|
|
20
21
|
},
|
|
21
22
|
"language": {
|
|
22
23
|
"title": "שפה",
|
|
@@ -209,8 +210,41 @@
|
|
|
209
210
|
"gitRebaseSyncDescription": "הפעל פעולות rebase-on-main וסנכרון main ב-Git",
|
|
210
211
|
"reactFileManager": "מנהל קבצים React",
|
|
211
212
|
"reactFileManagerDescription": "השתמש במנהל הקבצים המובנה של React במקום בוחר התיקיות של מערכת ההפעלה",
|
|
213
|
+
"plugins": "Plugins Marketplace",
|
|
214
|
+
"pluginsDescription": "Enable the Claude Code plugins marketplace browser",
|
|
212
215
|
"hint": "תכונות ניסיוניות שעדיין בפיתוח. הפעל על אחריותך — הן עשויות להשתנות או להיות מוסרות בגרסאות עתידיות. מצב ניפוי שגיאות מוסיף רישום מפורט שימושי לפתרון בעיות."
|
|
213
216
|
},
|
|
217
|
+
"litellmProxy": {
|
|
218
|
+
"title": "LiteLLM Proxy",
|
|
219
|
+
"description": "Configure connection to a LiteLLM proxy for plugin marketplace access",
|
|
220
|
+
"baseUrl": "Proxy URL",
|
|
221
|
+
"baseUrlDescription": "Base URL of your LiteLLM proxy (e.g., http://localhost:4000)",
|
|
222
|
+
"apiKey": "API Key",
|
|
223
|
+
"apiKeyDescription": "Virtual API key for LiteLLM proxy authentication",
|
|
224
|
+
"marketplaceEnabled": "Enable Marketplace",
|
|
225
|
+
"marketplaceEnabledDescription": "Use this proxy for the plugin marketplace catalog",
|
|
226
|
+
"hint": "Connect to a LiteLLM proxy to browse and install Claude Code plugins from your organization's curated marketplace.",
|
|
227
|
+
"testConnection": "Test Connection",
|
|
228
|
+
"testSuccess": "Connection successful",
|
|
229
|
+
"testFailed": "Connection failed",
|
|
230
|
+
"routing": {
|
|
231
|
+
"title": "Proxy Routing (Claude Code)",
|
|
232
|
+
"description": "Configure how Claude Code routes API traffic through LiteLLM",
|
|
233
|
+
"hint": "Control whether Claude Code uses the LiteLLM proxy for API requests. Supports full proxy routing, passthrough for Max/BYOK subscriptions, and model overrides.",
|
|
234
|
+
"mode": "Routing Mode",
|
|
235
|
+
"modeDescription": "How Claude Code routes API traffic",
|
|
236
|
+
"modeDirect": "Direct (own subscription)",
|
|
237
|
+
"modeProxy": "Proxy (full routing)",
|
|
238
|
+
"modePassthrough": "Passthrough (Max/BYOK)",
|
|
239
|
+
"passthroughHelp": "Passthrough mode requires the LiteLLM proxy to have forward_client_headers_to_llm_api or forward_llm_provider_auth_headers enabled.",
|
|
240
|
+
"customHeaders": "Custom Headers",
|
|
241
|
+
"customHeadersDescription": "Newline-separated headers for cost attribution (e.g., x-litellm-customer-id: user-123)",
|
|
242
|
+
"sonnetModel": "Sonnet Model Override",
|
|
243
|
+
"haikuModel": "Haiku Model Override",
|
|
244
|
+
"opusModel": "Opus Model Override",
|
|
245
|
+
"modelOverrideDescription": "Override the default model routed through LiteLLM"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
214
248
|
"interactiveAgent": {
|
|
215
249
|
"title": "סוכן אינטראקטיבי",
|
|
216
250
|
"description": "הגדרות לשונית צ'אט עבור סשנים אינטראקטיביים של סוכן לכל פיצ'ר",
|
|
@@ -251,7 +285,8 @@
|
|
|
251
285
|
"settings": "הגדרות",
|
|
252
286
|
"sessions": "סשנים",
|
|
253
287
|
"tools": "כלים",
|
|
254
|
-
"skills": "כישורים"
|
|
288
|
+
"skills": "כישורים",
|
|
289
|
+
"plugins": "Plugins"
|
|
255
290
|
},
|
|
256
291
|
"sidebar": {
|
|
257
292
|
"features": "פיצ'רים",
|
|
@@ -612,6 +647,25 @@
|
|
|
612
647
|
"viewServerLogs": "צפייה ביומני שרת",
|
|
613
648
|
"toggleSidebar": "החלפת סרגל צד"
|
|
614
649
|
},
|
|
650
|
+
"plugins": {
|
|
651
|
+
"title": "Plugins",
|
|
652
|
+
"search": "Search",
|
|
653
|
+
"searchPlaceholder": "Search plugins...",
|
|
654
|
+
"emptyState": "No plugins found",
|
|
655
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
656
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
657
|
+
"install": "Install",
|
|
658
|
+
"uninstall": "Uninstall",
|
|
659
|
+
"enable": "Enable",
|
|
660
|
+
"disable": "Disable",
|
|
661
|
+
"installed": "Installed",
|
|
662
|
+
"notInstalled": "Not Installed",
|
|
663
|
+
"allCategories": "All Categories",
|
|
664
|
+
"version": "Version",
|
|
665
|
+
"source": "Source",
|
|
666
|
+
"category": "Category",
|
|
667
|
+
"clearFilters": "Clear filters"
|
|
668
|
+
},
|
|
615
669
|
"feature": {
|
|
616
670
|
"create": {
|
|
617
671
|
"permissionMode": "הרשאות",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"flags": "Flags",
|
|
17
17
|
"chat": "Chat",
|
|
18
18
|
"layout": "Layout",
|
|
19
|
-
"database": "Banco de Dados"
|
|
19
|
+
"database": "Banco de Dados",
|
|
20
|
+
"proxy": "Proxy LiteLLM"
|
|
20
21
|
},
|
|
21
22
|
"language": {
|
|
22
23
|
"title": "Idioma",
|
|
@@ -209,8 +210,41 @@
|
|
|
209
210
|
"gitRebaseSyncDescription": "Ativar operações de git rebase-on-main e sync-main",
|
|
210
211
|
"reactFileManager": "Gerenciador de Arquivos React",
|
|
211
212
|
"reactFileManagerDescription": "Usar o gerenciador de arquivos React integrado em vez do seletor de pastas nativo do SO",
|
|
213
|
+
"plugins": "Plugins Marketplace",
|
|
214
|
+
"pluginsDescription": "Enable the Claude Code plugins marketplace browser",
|
|
212
215
|
"hint": "Recursos experimentais que ainda estão em desenvolvimento. Ative por sua conta e risco — podem mudar ou ser removidos em versões futuras. O modo debug adiciona logs detalhados úteis para solução de problemas."
|
|
213
216
|
},
|
|
217
|
+
"litellmProxy": {
|
|
218
|
+
"title": "LiteLLM Proxy",
|
|
219
|
+
"description": "Configure connection to a LiteLLM proxy for plugin marketplace access",
|
|
220
|
+
"baseUrl": "Proxy URL",
|
|
221
|
+
"baseUrlDescription": "Base URL of your LiteLLM proxy (e.g., http://localhost:4000)",
|
|
222
|
+
"apiKey": "API Key",
|
|
223
|
+
"apiKeyDescription": "Virtual API key for LiteLLM proxy authentication",
|
|
224
|
+
"marketplaceEnabled": "Enable Marketplace",
|
|
225
|
+
"marketplaceEnabledDescription": "Use this proxy for the plugin marketplace catalog",
|
|
226
|
+
"hint": "Connect to a LiteLLM proxy to browse and install Claude Code plugins from your organization's curated marketplace.",
|
|
227
|
+
"testConnection": "Test Connection",
|
|
228
|
+
"testSuccess": "Connection successful",
|
|
229
|
+
"testFailed": "Connection failed",
|
|
230
|
+
"routing": {
|
|
231
|
+
"title": "Proxy Routing (Claude Code)",
|
|
232
|
+
"description": "Configure how Claude Code routes API traffic through LiteLLM",
|
|
233
|
+
"hint": "Control whether Claude Code uses the LiteLLM proxy for API requests. Supports full proxy routing, passthrough for Max/BYOK subscriptions, and model overrides.",
|
|
234
|
+
"mode": "Routing Mode",
|
|
235
|
+
"modeDescription": "How Claude Code routes API traffic",
|
|
236
|
+
"modeDirect": "Direct (own subscription)",
|
|
237
|
+
"modeProxy": "Proxy (full routing)",
|
|
238
|
+
"modePassthrough": "Passthrough (Max/BYOK)",
|
|
239
|
+
"passthroughHelp": "Passthrough mode requires the LiteLLM proxy to have forward_client_headers_to_llm_api or forward_llm_provider_auth_headers enabled.",
|
|
240
|
+
"customHeaders": "Custom Headers",
|
|
241
|
+
"customHeadersDescription": "Newline-separated headers for cost attribution (e.g., x-litellm-customer-id: user-123)",
|
|
242
|
+
"sonnetModel": "Sonnet Model Override",
|
|
243
|
+
"haikuModel": "Haiku Model Override",
|
|
244
|
+
"opusModel": "Opus Model Override",
|
|
245
|
+
"modelOverrideDescription": "Override the default model routed through LiteLLM"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
214
248
|
"interactiveAgent": {
|
|
215
249
|
"title": "Agente Interativo",
|
|
216
250
|
"description": "Configurações da aba Chat para sessões de agente interativo por recurso",
|
|
@@ -251,7 +285,8 @@
|
|
|
251
285
|
"settings": "Configurações",
|
|
252
286
|
"sessions": "Sessões",
|
|
253
287
|
"tools": "Ferramentas",
|
|
254
|
-
"skills": "Skills"
|
|
288
|
+
"skills": "Skills",
|
|
289
|
+
"plugins": "Plugins"
|
|
255
290
|
},
|
|
256
291
|
"sidebar": {
|
|
257
292
|
"features": "Recursos",
|
|
@@ -612,6 +647,25 @@
|
|
|
612
647
|
"viewServerLogs": "Ver logs do servidor",
|
|
613
648
|
"toggleSidebar": "Alternar barra lateral"
|
|
614
649
|
},
|
|
650
|
+
"plugins": {
|
|
651
|
+
"title": "Plugins",
|
|
652
|
+
"search": "Search",
|
|
653
|
+
"searchPlaceholder": "Search plugins...",
|
|
654
|
+
"emptyState": "No plugins found",
|
|
655
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
656
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
657
|
+
"install": "Install",
|
|
658
|
+
"uninstall": "Uninstall",
|
|
659
|
+
"enable": "Enable",
|
|
660
|
+
"disable": "Disable",
|
|
661
|
+
"installed": "Installed",
|
|
662
|
+
"notInstalled": "Not Installed",
|
|
663
|
+
"allCategories": "All Categories",
|
|
664
|
+
"version": "Version",
|
|
665
|
+
"source": "Source",
|
|
666
|
+
"category": "Category",
|
|
667
|
+
"clearFilters": "Clear filters"
|
|
668
|
+
},
|
|
615
669
|
"feature": {
|
|
616
670
|
"create": {
|
|
617
671
|
"permissionMode": "Permissoes",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"flags": "Флаги",
|
|
17
17
|
"chat": "Чат",
|
|
18
18
|
"layout": "Расположение",
|
|
19
|
-
"database": "База данных"
|
|
19
|
+
"database": "База данных",
|
|
20
|
+
"proxy": "LiteLLM Прокси"
|
|
20
21
|
},
|
|
21
22
|
"language": {
|
|
22
23
|
"title": "Язык",
|
|
@@ -209,8 +210,41 @@
|
|
|
209
210
|
"gitRebaseSyncDescription": "Включить операции git rebase-on-main и sync-main",
|
|
210
211
|
"reactFileManager": "Файловый менеджер React",
|
|
211
212
|
"reactFileManagerDescription": "Использовать встроенный файловый менеджер React вместо системного выбора папок",
|
|
213
|
+
"plugins": "Plugins Marketplace",
|
|
214
|
+
"pluginsDescription": "Enable the Claude Code plugins marketplace browser",
|
|
212
215
|
"hint": "Экспериментальные функции, которые ещё находятся в разработке. Включайте на свой страх и риск — они могут измениться или быть удалены в будущих версиях. Режим отладки добавляет подробное логирование, полезное для устранения неполадок."
|
|
213
216
|
},
|
|
217
|
+
"litellmProxy": {
|
|
218
|
+
"title": "LiteLLM Proxy",
|
|
219
|
+
"description": "Configure connection to a LiteLLM proxy for plugin marketplace access",
|
|
220
|
+
"baseUrl": "Proxy URL",
|
|
221
|
+
"baseUrlDescription": "Base URL of your LiteLLM proxy (e.g., http://localhost:4000)",
|
|
222
|
+
"apiKey": "API Key",
|
|
223
|
+
"apiKeyDescription": "Virtual API key for LiteLLM proxy authentication",
|
|
224
|
+
"marketplaceEnabled": "Enable Marketplace",
|
|
225
|
+
"marketplaceEnabledDescription": "Use this proxy for the plugin marketplace catalog",
|
|
226
|
+
"hint": "Connect to a LiteLLM proxy to browse and install Claude Code plugins from your organization's curated marketplace.",
|
|
227
|
+
"testConnection": "Test Connection",
|
|
228
|
+
"testSuccess": "Connection successful",
|
|
229
|
+
"testFailed": "Connection failed",
|
|
230
|
+
"routing": {
|
|
231
|
+
"title": "Proxy Routing (Claude Code)",
|
|
232
|
+
"description": "Configure how Claude Code routes API traffic through LiteLLM",
|
|
233
|
+
"hint": "Control whether Claude Code uses the LiteLLM proxy for API requests. Supports full proxy routing, passthrough for Max/BYOK subscriptions, and model overrides.",
|
|
234
|
+
"mode": "Routing Mode",
|
|
235
|
+
"modeDescription": "How Claude Code routes API traffic",
|
|
236
|
+
"modeDirect": "Direct (own subscription)",
|
|
237
|
+
"modeProxy": "Proxy (full routing)",
|
|
238
|
+
"modePassthrough": "Passthrough (Max/BYOK)",
|
|
239
|
+
"passthroughHelp": "Passthrough mode requires the LiteLLM proxy to have forward_client_headers_to_llm_api or forward_llm_provider_auth_headers enabled.",
|
|
240
|
+
"customHeaders": "Custom Headers",
|
|
241
|
+
"customHeadersDescription": "Newline-separated headers for cost attribution (e.g., x-litellm-customer-id: user-123)",
|
|
242
|
+
"sonnetModel": "Sonnet Model Override",
|
|
243
|
+
"haikuModel": "Haiku Model Override",
|
|
244
|
+
"opusModel": "Opus Model Override",
|
|
245
|
+
"modelOverrideDescription": "Override the default model routed through LiteLLM"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
214
248
|
"interactiveAgent": {
|
|
215
249
|
"title": "Интерактивный агент",
|
|
216
250
|
"description": "Настройки вкладки чата для интерактивных сессий агента по функциям",
|
|
@@ -251,7 +285,8 @@
|
|
|
251
285
|
"settings": "Настройки",
|
|
252
286
|
"sessions": "Сессии",
|
|
253
287
|
"tools": "Инструменты",
|
|
254
|
-
"skills": "Навыки"
|
|
288
|
+
"skills": "Навыки",
|
|
289
|
+
"plugins": "Plugins"
|
|
255
290
|
},
|
|
256
291
|
"sidebar": {
|
|
257
292
|
"features": "Функции",
|
|
@@ -612,6 +647,25 @@
|
|
|
612
647
|
"viewServerLogs": "Просмотр журналов сервера",
|
|
613
648
|
"toggleSidebar": "Переключить боковую панель"
|
|
614
649
|
},
|
|
650
|
+
"plugins": {
|
|
651
|
+
"title": "Plugins",
|
|
652
|
+
"search": "Search",
|
|
653
|
+
"searchPlaceholder": "Search plugins...",
|
|
654
|
+
"emptyState": "No plugins found",
|
|
655
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
656
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
657
|
+
"install": "Install",
|
|
658
|
+
"uninstall": "Uninstall",
|
|
659
|
+
"enable": "Enable",
|
|
660
|
+
"disable": "Disable",
|
|
661
|
+
"installed": "Installed",
|
|
662
|
+
"notInstalled": "Not Installed",
|
|
663
|
+
"allCategories": "All Categories",
|
|
664
|
+
"version": "Version",
|
|
665
|
+
"source": "Source",
|
|
666
|
+
"category": "Category",
|
|
667
|
+
"clearFilters": "Clear filters"
|
|
668
|
+
},
|
|
615
669
|
"feature": {
|
|
616
670
|
"create": {
|
|
617
671
|
"permissionMode": "Права",
|