@shipit-ai/cli 1.167.1 → 1.169.0-pr12.6d78faf
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/FeatureFlags.yaml +5 -0
- package/apis/json-schema/LiteLLMProxyConfig.yaml +14 -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 +25 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- 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 +4 -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 +18 -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/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/packages/core/src/infrastructure/services/tool-installer/tools/antigravity.json +1 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/bash.json +1 -0
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/cursor-cli.json +1 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/cursor.json +1 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/fish.json +1 -0
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/powershell.json +1 -0
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/zsh.json +1 -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/layout.d.ts.map +1 -1
- package/dist/src/presentation/web/app/layout.js +15 -2
- 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/base-drawer/base-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +4 -1
- package/dist/src/presentation/web/components/common/page-header/page-header.d.ts +3 -1
- package/dist/src/presentation/web/components/common/page-header/page-header.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/page-header/page-header.js +8 -2
- 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/common/repository-node/repository-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/repository-node/repository-node.js +6 -1
- package/dist/src/presentation/web/components/common/shipit-ai-logo/shipit-ai-logo.d.ts +9 -1
- package/dist/src/presentation/web/components/common/shipit-ai-logo/shipit-ai-logo.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/shipit-ai-logo/shipit-ai-logo.js +12 -6
- package/dist/src/presentation/web/components/common/sidebar-collapse-toggle/sidebar-collapse-toggle.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/sidebar-collapse-toggle/sidebar-collapse-toggle.js +5 -1
- package/dist/src/presentation/web/components/common/sidebar-nav-item/sidebar-nav-item.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/sidebar-nav-item/sidebar-nav-item.js +15 -0
- package/dist/src/presentation/web/components/features/chat/ChatSheet.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatSheet.js +18 -5
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.js +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +5 -1
- 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 +115 -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/agent-settings-section.d.ts +3 -3
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +23 -102
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +2 -3
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +18 -22
- package/dist/src/presentation/web/components/features/settings/ci-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/ci-settings-section.js +14 -5
- package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/database-settings-section.js +14 -4
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts +9 -3
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.js +75 -65
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.js +20 -18
- package/dist/src/presentation/web/components/features/settings/fab-layout-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/fab-layout-settings-section.js +1 -1
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts +3 -3
- 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 +53 -50
- 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 +27 -25
- package/dist/src/presentation/web/components/features/settings/interactive-agent-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/interactive-agent-settings-section.js +3 -3
- 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 +76 -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/notification-settings-section.d.ts +3 -3
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.js +64 -47
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.js +32 -24
- 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 +30 -381
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts +2 -0
- 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 +14 -0
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.d.ts +13 -10
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.js +10 -10
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.d.ts +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.js +7 -7
- package/dist/src/presentation/web/components/features/settings/stage-timeouts-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/stage-timeouts-settings-section.js +1 -1
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts +3 -3
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.js +118 -165
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts +1 -1
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js +26 -64
- package/dist/src/presentation/web/components/features/skills/category-filter.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/skills/category-filter.js +12 -2
- package/dist/src/presentation/web/components/features/skills/skill-card.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/skills/skill-card.js +3 -3
- package/dist/src/presentation/web/components/features/skills/skill-detail-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/skills/skill-detail-drawer.js +27 -1
- package/dist/src/presentation/web/components/features/skills/skill-list.js +2 -2
- 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 +2 -2
- package/dist/src/presentation/web/components/features/tools/tool-card.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/tools/tool-card.js +20 -11
- package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.js +1 -1
- 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 +6 -1
- 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 +40 -44
- 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/components/ui/card.d.ts.map +1 -1
- package/dist/src/presentation/web/components/ui/card.js +9 -1
- package/dist/src/presentation/web/components/ui/drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/ui/drawer.js +8 -2
- package/dist/src/presentation/web/components/ui/tooltip.d.ts.map +1 -1
- package/dist/src/presentation/web/components/ui/tooltip.js +3 -3
- 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 +40 -2
- package/dist/translations/de/web.json +40 -2
- package/dist/translations/en/web.json +40 -2
- package/dist/translations/es/web.json +40 -2
- package/dist/translations/fr/web.json +40 -2
- package/dist/translations/he/web.json +40 -2
- package/dist/translations/pt/web.json +40 -2
- package/dist/translations/ru/web.json +40 -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/next-font-manifest.json +6 -2
- 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 +1 -1
- 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/next-font-manifest.json +6 -2
- 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 +1 -1
- 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/next-font-manifest.json +6 -2
- 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 +1 -1
- 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/next-font-manifest.json +6 -2
- 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 +2 -2
- 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/next-font-manifest.json +6 -2
- 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 +2 -2
- 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/next-font-manifest.json +6 -2
- 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 +1 -1
- 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/next-font-manifest.json +6 -2
- 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 +1 -1
- 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/next-font-manifest.json +6 -2
- package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/chat/page.js +1 -1
- 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/next-font-manifest.json +6 -2
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +31 -31
- package/web/.next/server/app/(dashboard)/create/page.js +1 -1
- 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/next-font-manifest.json +6 -2
- 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 +2 -2
- 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/next-font-manifest.json +6 -2
- 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 +2 -2
- 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/next-font-manifest.json +6 -2
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/page.js +1 -1
- 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/next-font-manifest.json +6 -2
- 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 +1 -1
- 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/next-font-manifest.json +6 -2
- 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 +1 -1
- 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/next-font-manifest.json +6 -2
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/_not-found/page.js +1 -1
- 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/next-font-manifest.json +6 -2
- package/web/.next/server/app/settings/page/server-reference-manifest.json +34 -22
- package/web/.next/server/app/settings/page.js +2 -2
- 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/next-font-manifest.json +6 -2
- package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/skills/page.js +1 -1
- 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/next-font-manifest.json +6 -2
- package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/tools/page.js +1 -1
- 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/next-font-manifest.json +6 -2
- package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/version/page.js +1 -1
- 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.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/08qz_lucide-react_dist_esm_icons_0c0dui7._.js +3 -0
- package/web/.next/server/chunks/ssr/08qz_lucide-react_dist_esm_icons_0c0dui7._.js.map +1 -0
- 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]__0uy_5rw._.js → [root-of-the-server]__0ge~xny._.js} +2 -2
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__0uy_5rw._.js.map → [root-of-the-server]__0ge~xny._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0jy4nha._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0jy4nha._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_0e5cv3q._.js → [root-of-the-server]__0n~o-g-._.js} +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0n~o-g-._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__02.89uf._.js → [root-of-the-server]__0qda~yi._.js} +2 -2
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__02.89uf._.js.map → [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]__0r5zhk.._.js → [root-of-the-server]__0t~u8sd._.js} +2 -2
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__0r5zhk.._.js.map → [root-of-the-server]__0t~u8sd._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0~v1~b9._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0~v1~b9._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__04rq9lr._.js → [root-of-the-server]__10tll_l._.js} +2 -2
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__04rq9lr._.js.map → [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/_0-09vq7._.js +1 -1
- package/web/.next/server/chunks/ssr/_0-09vq7._.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/{_00u~.41._.js → _03x4h9e._.js} +2 -2
- package/web/.next/server/chunks/ssr/_03x4h9e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_0hwjfpu._.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/{_0-.ckn5._.js → _07u.4jr._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_0-.ckn5._.js.map → _07u.4jr._.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/_0kt18~b._.js +3 -0
- package/web/.next/server/chunks/ssr/_0kt18~b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_138qywk._.js → _0mj-tmi._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_138qywk._.js.map → _0mj-tmi._.js.map} +1 -1
- 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/_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/_0tfz1v_._.js +3 -0
- package/web/.next/server/chunks/ssr/_0tfz1v_._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_00k65h-._.js → _0u3d8.n._.js} +2 -2
- package/web/.next/server/chunks/ssr/_0u3d8.n._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0vjw-e_._.js +7 -0
- package/web/.next/server/chunks/ssr/_0vjw-e_._.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/_0ygafoy._.js +7 -0
- package/web/.next/server/chunks/ssr/_0ygafoy._.js.map +1 -0
- 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/_12uy.45._.js +3 -0
- package/web/.next/server/chunks/ssr/_12uy.45._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_0y11iiz._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_0y11iiz._.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_0sk2qdt._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_0sk2qdt._.js.map +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 +63 -2
- 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/{0q8ax~44oybo2.js → 01~u_q8i2zgcl.js} +2 -2
- package/web/.next/static/chunks/{0-woqr2brccx_.js → 025ml1.quzhqf.js} +1 -1
- package/web/.next/static/chunks/{0fg~vc93spa9c.js → 07gal-~-zwagj.js} +1 -1
- package/web/.next/static/chunks/07le1mov593z9.js +1 -0
- package/web/.next/static/chunks/{0ls0v8h_qbctm.js → 09ungqk9~va40.js} +1 -1
- package/web/.next/static/chunks/0ab36sfvo.9ai.js +1 -0
- package/web/.next/static/chunks/0aq9-lg.5r.nk.js +5 -0
- package/web/.next/static/chunks/{11bi612fz8agh.js → 0b2pi58fg3lt3.js} +1 -1
- package/web/.next/static/chunks/{022nrd6snse79.js → 0cvyulutrctst.js} +1 -1
- package/web/.next/static/chunks/0eqi_uuiepxhf.js +1 -0
- package/web/.next/static/chunks/0inayq2zzadja.js +1 -0
- package/web/.next/static/chunks/{0t3xjndx2s1_j.css → 0j.1nx3ly591i.css} +1 -0
- 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/0lc0x8kcu46ae.js +1 -0
- package/web/.next/static/chunks/0lz-oq74e_ciu.js +1 -0
- package/web/.next/static/chunks/0nkujbu62z1jl.js +7 -0
- package/web/.next/static/chunks/0o4m0k3642219.js +1 -0
- package/web/.next/static/chunks/0oadtfnesfdqc.js +1 -0
- package/web/.next/static/chunks/0udlnp30o1kjd.js +5 -0
- package/web/.next/static/chunks/{0q7ohuqneuur4.js → 0uryz2ek77e2a.js} +1 -1
- package/web/.next/static/chunks/0v7r7y~3e~oo6.css +1 -0
- package/web/.next/static/chunks/0xo.hi4px83w2.js +1 -0
- package/web/.next/static/chunks/{0j.wph28jrce1.js → 0xr0p_ynap2~d.js} +1 -1
- package/web/.next/static/chunks/0xtzpbc5mm5z7.js +5 -0
- package/web/.next/static/chunks/{02phgt~f2c-2q.js → 0~-kk8o121_13.js} +1 -1
- package/web/.next/static/chunks/13q1peb_t9vj8.js +1 -0
- package/web/.next/static/chunks/{0ps5sykbi-z5-.js → 16k169s1a_8ru.js} +1 -1
- package/web/.next/static/chunks/{0ma7k9iohb3bb.js → 17dp77weos4ao.js} +1 -1
- package/web/.next/static/media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2 +0 -0
- package/web/.next/static/media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2 +0 -0
- package/web/.next/static/media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2 +0 -0
- package/web/.next/static/media/5476f68d60460930-s.0wxq9webf.ew4.woff2 +0 -0
- package/web/.next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2 +0 -0
- package/web/.next/static/media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2 +0 -0
- package/web/.next/static/media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2 +0 -0
- package/web/package.json +2 -2
- package/web/public/favicon.svg +10 -0
- package/web/public/icons/tools/antigravity.svg +1 -0
- package/web/public/icons/tools/bash.svg +38 -0
- package/web/public/icons/tools/cursor-cli.svg +12 -0
- package/web/public/icons/tools/cursor.svg +1 -0
- package/web/public/icons/tools/fish.svg +153 -0
- package/web/public/icons/tools/powershell.svg +29 -0
- package/web/public/icons/tools/zsh.svg +1 -0
- package/web/.next/server/chunks/ssr/08qz_lucide-react_dist_esm_icons_0zwb4s4._.js +0 -3
- package/web/.next/server/chunks/ssr/08qz_lucide-react_dist_esm_icons_0zwb4s4._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0c0xoi_._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0c0xoi_._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0lslgap._.js +0 -7
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0lslgap._.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/_00k65h-._.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/_08i-c2n._.js +0 -3
- package/web/.next/server/chunks/ssr/_08i-c2n._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0aaotn-._.js +0 -3
- package/web/.next/server/chunks/ssr/_0aaotn-._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0e5cv3q._.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/_0hwjfpu._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0hw~zvl._.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/_0phryzt._.js +0 -3
- package/web/.next/server/chunks/ssr/_0phryzt._.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/_12un22l._.js +0 -7
- package/web/.next/server/chunks/ssr/_12un22l._.js.map +0 -1
- package/web/.next/static/chunks/0-lu0b1ewsb0_.js +0 -1
- package/web/.next/static/chunks/01~dudieyb7wl.js +0 -5
- package/web/.next/static/chunks/02kpdawdtqcxm.js +0 -1
- package/web/.next/static/chunks/03s7z6w1lj0w~.js +0 -1
- package/web/.next/static/chunks/04~sw.nhpwy6s.css +0 -1
- package/web/.next/static/chunks/05enics63g._-.js +0 -7
- package/web/.next/static/chunks/08611baheit.t.js +0 -1
- package/web/.next/static/chunks/0_9k2ybutuphq.js +0 -1
- package/web/.next/static/chunks/0m5~9kij3s~81.js +0 -1
- package/web/.next/static/chunks/0n3kuj7t_-jzp.js +0 -1
- package/web/.next/static/chunks/0q~uf2s33.48w.js +0 -1
- package/web/.next/static/chunks/15m2wfd5k_7fj.js +0 -1
- package/web/.next/static/chunks/15rbgqykl.er8.js +0 -1
- package/web/.next/static/chunks/164dnpi666fv_.js +0 -5
- package/web/.next/static/chunks/17z2sq7c5z8cr.js +0 -5
- /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/{GSG_c1emY-f_AA00vD56y → vD7xT4_iwKDhgj4-rr637}/_buildManifest.js +0 -0
- /package/web/.next/static/{GSG_c1emY-f_AA00vD56y → vD7xT4_iwKDhgj4-rr637}/_clientMiddlewareManifest.js +0 -0
- /package/web/.next/static/{GSG_c1emY-f_AA00vD56y → vD7xT4_iwKDhgj4-rr637}/_ssgManifest.js +0 -0
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"saved": "تم الحفظ",
|
|
6
6
|
"failedToSave": "فشل حفظ الإعدادات",
|
|
7
7
|
"sections": {
|
|
8
|
+
"all": "الكل",
|
|
8
9
|
"language": "اللغة",
|
|
9
10
|
"agent": "الوكيل",
|
|
10
11
|
"environment": "البيئة",
|
|
@@ -15,7 +16,8 @@
|
|
|
15
16
|
"flags": "العلامات",
|
|
16
17
|
"chat": "المحادثة",
|
|
17
18
|
"layout": "التخطيط",
|
|
18
|
-
"database": "قاعدة البيانات"
|
|
19
|
+
"database": "قاعدة البيانات",
|
|
20
|
+
"proxy": "وكيل LiteLLM"
|
|
19
21
|
},
|
|
20
22
|
"language": {
|
|
21
23
|
"title": "اللغة",
|
|
@@ -208,8 +210,24 @@
|
|
|
208
210
|
"gitRebaseSyncDescription": "تمكين عمليات إعادة التأسيس على main ومزامنة main",
|
|
209
211
|
"reactFileManager": "مدير ملفات React",
|
|
210
212
|
"reactFileManagerDescription": "استخدام مدير ملفات React المدمج بدلاً من منتقي مجلدات نظام التشغيل الأصلي",
|
|
213
|
+
"plugins": "Plugins Marketplace",
|
|
214
|
+
"pluginsDescription": "Enable the Claude Code plugins marketplace browser",
|
|
211
215
|
"hint": "ميزات تجريبية لا تزال قيد التطوير. قم بتمكينها على مسؤوليتك — قد تتغير أو تُزال في الإصدارات المستقبلية. وضع التصحيح يضيف تسجيلًا مفصلاً مفيدًا لاستكشاف الأخطاء."
|
|
212
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
|
+
},
|
|
213
231
|
"interactiveAgent": {
|
|
214
232
|
"title": "الوكيل التفاعلي",
|
|
215
233
|
"description": "إعدادات علامة المحادثة لجلسات الوكيل التفاعلية لكل ميزة",
|
|
@@ -250,7 +268,8 @@
|
|
|
250
268
|
"settings": "الإعدادات",
|
|
251
269
|
"sessions": "الجلسات",
|
|
252
270
|
"tools": "الأدوات",
|
|
253
|
-
"skills": "المهارات"
|
|
271
|
+
"skills": "المهارات",
|
|
272
|
+
"plugins": "Plugins"
|
|
254
273
|
},
|
|
255
274
|
"sidebar": {
|
|
256
275
|
"features": "الميزات",
|
|
@@ -611,6 +630,25 @@
|
|
|
611
630
|
"viewServerLogs": "عرض سجلات الخادم",
|
|
612
631
|
"toggleSidebar": "تبديل الشريط الجانبي"
|
|
613
632
|
},
|
|
633
|
+
"plugins": {
|
|
634
|
+
"title": "Plugins",
|
|
635
|
+
"search": "Search",
|
|
636
|
+
"searchPlaceholder": "Search plugins...",
|
|
637
|
+
"emptyState": "No plugins found",
|
|
638
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
639
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
640
|
+
"install": "Install",
|
|
641
|
+
"uninstall": "Uninstall",
|
|
642
|
+
"enable": "Enable",
|
|
643
|
+
"disable": "Disable",
|
|
644
|
+
"installed": "Installed",
|
|
645
|
+
"notInstalled": "Not Installed",
|
|
646
|
+
"allCategories": "All Categories",
|
|
647
|
+
"version": "Version",
|
|
648
|
+
"source": "Source",
|
|
649
|
+
"category": "Category",
|
|
650
|
+
"clearFilters": "Clear filters"
|
|
651
|
+
},
|
|
614
652
|
"feature": {
|
|
615
653
|
"create": {
|
|
616
654
|
"permissionMode": "الأذونات",
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"saved": "Gespeichert",
|
|
6
6
|
"failedToSave": "Einstellungen konnten nicht gespeichert werden",
|
|
7
7
|
"sections": {
|
|
8
|
+
"all": "Alle",
|
|
8
9
|
"language": "Sprache",
|
|
9
10
|
"agent": "Agent",
|
|
10
11
|
"environment": "Umgebung",
|
|
@@ -15,7 +16,8 @@
|
|
|
15
16
|
"flags": "Flags",
|
|
16
17
|
"chat": "Chat",
|
|
17
18
|
"layout": "Layout",
|
|
18
|
-
"database": "Datenbank"
|
|
19
|
+
"database": "Datenbank",
|
|
20
|
+
"proxy": "LiteLLM Proxy"
|
|
19
21
|
},
|
|
20
22
|
"language": {
|
|
21
23
|
"title": "Sprache",
|
|
@@ -194,8 +196,24 @@
|
|
|
194
196
|
"gitRebaseSyncDescription": "Git Rebase-on-Main- und Sync-Main-Operationen aktivieren",
|
|
195
197
|
"reactFileManager": "React-Dateimanager",
|
|
196
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",
|
|
197
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."
|
|
198
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
|
+
},
|
|
199
217
|
"interactiveAgent": {
|
|
200
218
|
"title": "Interaktiver Agent",
|
|
201
219
|
"description": "Chat-Tab-Einstellungen für interaktive Agenten-Sitzungen pro Feature",
|
|
@@ -236,7 +254,8 @@
|
|
|
236
254
|
"settings": "Einstellungen",
|
|
237
255
|
"sessions": "Sitzungen",
|
|
238
256
|
"tools": "Tools",
|
|
239
|
-
"skills": "Skills"
|
|
257
|
+
"skills": "Skills",
|
|
258
|
+
"plugins": "Plugins"
|
|
240
259
|
},
|
|
241
260
|
"sidebar": {
|
|
242
261
|
"features": "Features",
|
|
@@ -597,6 +616,25 @@
|
|
|
597
616
|
"viewServerLogs": "Server-Logs anzeigen",
|
|
598
617
|
"toggleSidebar": "Seitenleiste umschalten"
|
|
599
618
|
},
|
|
619
|
+
"plugins": {
|
|
620
|
+
"title": "Plugins",
|
|
621
|
+
"search": "Search",
|
|
622
|
+
"searchPlaceholder": "Search plugins...",
|
|
623
|
+
"emptyState": "No plugins found",
|
|
624
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
625
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
626
|
+
"install": "Install",
|
|
627
|
+
"uninstall": "Uninstall",
|
|
628
|
+
"enable": "Enable",
|
|
629
|
+
"disable": "Disable",
|
|
630
|
+
"installed": "Installed",
|
|
631
|
+
"notInstalled": "Not Installed",
|
|
632
|
+
"allCategories": "All Categories",
|
|
633
|
+
"version": "Version",
|
|
634
|
+
"source": "Source",
|
|
635
|
+
"category": "Category",
|
|
636
|
+
"clearFilters": "Clear filters"
|
|
637
|
+
},
|
|
600
638
|
"feature": {
|
|
601
639
|
"create": {
|
|
602
640
|
"permissionMode": "Rechte",
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"saved": "Saved",
|
|
6
6
|
"failedToSave": "Failed to save settings",
|
|
7
7
|
"sections": {
|
|
8
|
+
"all": "All",
|
|
8
9
|
"language": "Language",
|
|
9
10
|
"agent": "Agent",
|
|
10
11
|
"environment": "Environment",
|
|
@@ -15,7 +16,8 @@
|
|
|
15
16
|
"flags": "Flags",
|
|
16
17
|
"chat": "Chat",
|
|
17
18
|
"layout": "Layout",
|
|
18
|
-
"database": "Database"
|
|
19
|
+
"database": "Database",
|
|
20
|
+
"proxy": "LiteLLM Proxy"
|
|
19
21
|
},
|
|
20
22
|
"language": {
|
|
21
23
|
"title": "Language",
|
|
@@ -208,8 +210,24 @@
|
|
|
208
210
|
"gitRebaseSyncDescription": "Enable git rebase-on-main and sync-main operations",
|
|
209
211
|
"reactFileManager": "React File Manager",
|
|
210
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",
|
|
211
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."
|
|
212
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
|
+
},
|
|
213
231
|
"interactiveAgent": {
|
|
214
232
|
"title": "Interactive Agent",
|
|
215
233
|
"description": "Chat tab settings for per-feature interactive agent sessions",
|
|
@@ -250,7 +268,8 @@
|
|
|
250
268
|
"settings": "Settings",
|
|
251
269
|
"sessions": "Sessions",
|
|
252
270
|
"tools": "Tools",
|
|
253
|
-
"skills": "Skills"
|
|
271
|
+
"skills": "Skills",
|
|
272
|
+
"plugins": "Plugins"
|
|
254
273
|
},
|
|
255
274
|
"sidebar": {
|
|
256
275
|
"features": "Features",
|
|
@@ -611,6 +630,25 @@
|
|
|
611
630
|
"viewServerLogs": "View server logs",
|
|
612
631
|
"toggleSidebar": "Toggle Sidebar"
|
|
613
632
|
},
|
|
633
|
+
"plugins": {
|
|
634
|
+
"title": "Plugins",
|
|
635
|
+
"search": "Search",
|
|
636
|
+
"searchPlaceholder": "Search plugins...",
|
|
637
|
+
"emptyState": "No plugins found",
|
|
638
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
639
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
640
|
+
"install": "Install",
|
|
641
|
+
"uninstall": "Uninstall",
|
|
642
|
+
"enable": "Enable",
|
|
643
|
+
"disable": "Disable",
|
|
644
|
+
"installed": "Installed",
|
|
645
|
+
"notInstalled": "Not Installed",
|
|
646
|
+
"allCategories": "All Categories",
|
|
647
|
+
"version": "Version",
|
|
648
|
+
"source": "Source",
|
|
649
|
+
"category": "Category",
|
|
650
|
+
"clearFilters": "Clear filters"
|
|
651
|
+
},
|
|
614
652
|
"feature": {
|
|
615
653
|
"create": {
|
|
616
654
|
"permissionMode": "Perms",
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"saved": "Guardado",
|
|
6
6
|
"failedToSave": "Error al guardar la configuración",
|
|
7
7
|
"sections": {
|
|
8
|
+
"all": "Todo",
|
|
8
9
|
"language": "Idioma",
|
|
9
10
|
"agent": "Agente",
|
|
10
11
|
"environment": "Entorno",
|
|
@@ -15,7 +16,8 @@
|
|
|
15
16
|
"flags": "Opciones",
|
|
16
17
|
"chat": "Chat",
|
|
17
18
|
"layout": "Diseño",
|
|
18
|
-
"database": "Base de datos"
|
|
19
|
+
"database": "Base de datos",
|
|
20
|
+
"proxy": "Proxy LiteLLM"
|
|
19
21
|
},
|
|
20
22
|
"language": {
|
|
21
23
|
"title": "Idioma",
|
|
@@ -208,8 +210,24 @@
|
|
|
208
210
|
"gitRebaseSyncDescription": "Habilitar operaciones de rebase-on-main y sync-main de git",
|
|
209
211
|
"reactFileManager": "Administrador de archivos React",
|
|
210
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",
|
|
211
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."
|
|
212
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
|
+
},
|
|
213
231
|
"interactiveAgent": {
|
|
214
232
|
"title": "Agente interactivo",
|
|
215
233
|
"description": "Configuración de la pestaña de chat para sesiones de agente interactivo por funcionalidad",
|
|
@@ -250,7 +268,8 @@
|
|
|
250
268
|
"settings": "Configuración",
|
|
251
269
|
"sessions": "Sesiones",
|
|
252
270
|
"tools": "Herramientas",
|
|
253
|
-
"skills": "Habilidades"
|
|
271
|
+
"skills": "Habilidades",
|
|
272
|
+
"plugins": "Plugins"
|
|
254
273
|
},
|
|
255
274
|
"sidebar": {
|
|
256
275
|
"features": "Funcionalidades",
|
|
@@ -611,6 +630,25 @@
|
|
|
611
630
|
"viewServerLogs": "Ver logs del servidor",
|
|
612
631
|
"toggleSidebar": "Alternar barra lateral"
|
|
613
632
|
},
|
|
633
|
+
"plugins": {
|
|
634
|
+
"title": "Plugins",
|
|
635
|
+
"search": "Search",
|
|
636
|
+
"searchPlaceholder": "Search plugins...",
|
|
637
|
+
"emptyState": "No plugins found",
|
|
638
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
639
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
640
|
+
"install": "Install",
|
|
641
|
+
"uninstall": "Uninstall",
|
|
642
|
+
"enable": "Enable",
|
|
643
|
+
"disable": "Disable",
|
|
644
|
+
"installed": "Installed",
|
|
645
|
+
"notInstalled": "Not Installed",
|
|
646
|
+
"allCategories": "All Categories",
|
|
647
|
+
"version": "Version",
|
|
648
|
+
"source": "Source",
|
|
649
|
+
"category": "Category",
|
|
650
|
+
"clearFilters": "Clear filters"
|
|
651
|
+
},
|
|
614
652
|
"feature": {
|
|
615
653
|
"create": {
|
|
616
654
|
"permissionMode": "Permisos",
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"saved": "Enregistré",
|
|
6
6
|
"failedToSave": "Échec de l'enregistrement des paramètres",
|
|
7
7
|
"sections": {
|
|
8
|
+
"all": "Tout",
|
|
8
9
|
"language": "Langue",
|
|
9
10
|
"agent": "Agent",
|
|
10
11
|
"environment": "Environnement",
|
|
@@ -15,7 +16,8 @@
|
|
|
15
16
|
"flags": "Drapeaux",
|
|
16
17
|
"chat": "Chat",
|
|
17
18
|
"layout": "Disposition",
|
|
18
|
-
"database": "Base de données"
|
|
19
|
+
"database": "Base de données",
|
|
20
|
+
"proxy": "Proxy LiteLLM"
|
|
19
21
|
},
|
|
20
22
|
"language": {
|
|
21
23
|
"title": "Langue",
|
|
@@ -208,8 +210,24 @@
|
|
|
208
210
|
"gitRebaseSyncDescription": "Activer les opérations de rebase-on-main et sync-main de git",
|
|
209
211
|
"reactFileManager": "Gestionnaire de fichiers React",
|
|
210
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",
|
|
211
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."
|
|
212
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
|
+
},
|
|
213
231
|
"interactiveAgent": {
|
|
214
232
|
"title": "Agent interactif",
|
|
215
233
|
"description": "Paramètres de l'onglet Chat pour les sessions d'agent interactif par fonctionnalité",
|
|
@@ -250,7 +268,8 @@
|
|
|
250
268
|
"settings": "Paramètres",
|
|
251
269
|
"sessions": "Sessions",
|
|
252
270
|
"tools": "Outils",
|
|
253
|
-
"skills": "Compétences"
|
|
271
|
+
"skills": "Compétences",
|
|
272
|
+
"plugins": "Plugins"
|
|
254
273
|
},
|
|
255
274
|
"sidebar": {
|
|
256
275
|
"features": "Fonctionnalités",
|
|
@@ -611,6 +630,25 @@
|
|
|
611
630
|
"viewServerLogs": "Voir les logs du serveur",
|
|
612
631
|
"toggleSidebar": "Basculer la barre latérale"
|
|
613
632
|
},
|
|
633
|
+
"plugins": {
|
|
634
|
+
"title": "Plugins",
|
|
635
|
+
"search": "Search",
|
|
636
|
+
"searchPlaceholder": "Search plugins...",
|
|
637
|
+
"emptyState": "No plugins found",
|
|
638
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
639
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
640
|
+
"install": "Install",
|
|
641
|
+
"uninstall": "Uninstall",
|
|
642
|
+
"enable": "Enable",
|
|
643
|
+
"disable": "Disable",
|
|
644
|
+
"installed": "Installed",
|
|
645
|
+
"notInstalled": "Not Installed",
|
|
646
|
+
"allCategories": "All Categories",
|
|
647
|
+
"version": "Version",
|
|
648
|
+
"source": "Source",
|
|
649
|
+
"category": "Category",
|
|
650
|
+
"clearFilters": "Clear filters"
|
|
651
|
+
},
|
|
614
652
|
"feature": {
|
|
615
653
|
"create": {
|
|
616
654
|
"permissionMode": "Droits",
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"saved": "נשמר",
|
|
6
6
|
"failedToSave": "שמירת ההגדרות נכשלה",
|
|
7
7
|
"sections": {
|
|
8
|
+
"all": "הכל",
|
|
8
9
|
"language": "שפה",
|
|
9
10
|
"agent": "סוכן",
|
|
10
11
|
"environment": "סביבה",
|
|
@@ -15,7 +16,8 @@
|
|
|
15
16
|
"flags": "דגלים",
|
|
16
17
|
"chat": "צ'אט",
|
|
17
18
|
"layout": "פריסה",
|
|
18
|
-
"database": "מסד נתונים"
|
|
19
|
+
"database": "מסד נתונים",
|
|
20
|
+
"proxy": "פרוקסי LiteLLM"
|
|
19
21
|
},
|
|
20
22
|
"language": {
|
|
21
23
|
"title": "שפה",
|
|
@@ -208,8 +210,24 @@
|
|
|
208
210
|
"gitRebaseSyncDescription": "הפעל פעולות rebase-on-main וסנכרון main ב-Git",
|
|
209
211
|
"reactFileManager": "מנהל קבצים React",
|
|
210
212
|
"reactFileManagerDescription": "השתמש במנהל הקבצים המובנה של React במקום בוחר התיקיות של מערכת ההפעלה",
|
|
213
|
+
"plugins": "Plugins Marketplace",
|
|
214
|
+
"pluginsDescription": "Enable the Claude Code plugins marketplace browser",
|
|
211
215
|
"hint": "תכונות ניסיוניות שעדיין בפיתוח. הפעל על אחריותך — הן עשויות להשתנות או להיות מוסרות בגרסאות עתידיות. מצב ניפוי שגיאות מוסיף רישום מפורט שימושי לפתרון בעיות."
|
|
212
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
|
+
},
|
|
213
231
|
"interactiveAgent": {
|
|
214
232
|
"title": "סוכן אינטראקטיבי",
|
|
215
233
|
"description": "הגדרות לשונית צ'אט עבור סשנים אינטראקטיביים של סוכן לכל פיצ'ר",
|
|
@@ -250,7 +268,8 @@
|
|
|
250
268
|
"settings": "הגדרות",
|
|
251
269
|
"sessions": "סשנים",
|
|
252
270
|
"tools": "כלים",
|
|
253
|
-
"skills": "כישורים"
|
|
271
|
+
"skills": "כישורים",
|
|
272
|
+
"plugins": "Plugins"
|
|
254
273
|
},
|
|
255
274
|
"sidebar": {
|
|
256
275
|
"features": "פיצ'רים",
|
|
@@ -611,6 +630,25 @@
|
|
|
611
630
|
"viewServerLogs": "צפייה ביומני שרת",
|
|
612
631
|
"toggleSidebar": "החלפת סרגל צד"
|
|
613
632
|
},
|
|
633
|
+
"plugins": {
|
|
634
|
+
"title": "Plugins",
|
|
635
|
+
"search": "Search",
|
|
636
|
+
"searchPlaceholder": "Search plugins...",
|
|
637
|
+
"emptyState": "No plugins found",
|
|
638
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
639
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
640
|
+
"install": "Install",
|
|
641
|
+
"uninstall": "Uninstall",
|
|
642
|
+
"enable": "Enable",
|
|
643
|
+
"disable": "Disable",
|
|
644
|
+
"installed": "Installed",
|
|
645
|
+
"notInstalled": "Not Installed",
|
|
646
|
+
"allCategories": "All Categories",
|
|
647
|
+
"version": "Version",
|
|
648
|
+
"source": "Source",
|
|
649
|
+
"category": "Category",
|
|
650
|
+
"clearFilters": "Clear filters"
|
|
651
|
+
},
|
|
614
652
|
"feature": {
|
|
615
653
|
"create": {
|
|
616
654
|
"permissionMode": "הרשאות",
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"saved": "Salvo",
|
|
6
6
|
"failedToSave": "Falha ao salvar configurações",
|
|
7
7
|
"sections": {
|
|
8
|
+
"all": "Tudo",
|
|
8
9
|
"language": "Idioma",
|
|
9
10
|
"agent": "Agente",
|
|
10
11
|
"environment": "Ambiente",
|
|
@@ -15,7 +16,8 @@
|
|
|
15
16
|
"flags": "Flags",
|
|
16
17
|
"chat": "Chat",
|
|
17
18
|
"layout": "Layout",
|
|
18
|
-
"database": "Banco de Dados"
|
|
19
|
+
"database": "Banco de Dados",
|
|
20
|
+
"proxy": "Proxy LiteLLM"
|
|
19
21
|
},
|
|
20
22
|
"language": {
|
|
21
23
|
"title": "Idioma",
|
|
@@ -208,8 +210,24 @@
|
|
|
208
210
|
"gitRebaseSyncDescription": "Ativar operações de git rebase-on-main e sync-main",
|
|
209
211
|
"reactFileManager": "Gerenciador de Arquivos React",
|
|
210
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",
|
|
211
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."
|
|
212
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
|
+
},
|
|
213
231
|
"interactiveAgent": {
|
|
214
232
|
"title": "Agente Interativo",
|
|
215
233
|
"description": "Configurações da aba Chat para sessões de agente interativo por recurso",
|
|
@@ -250,7 +268,8 @@
|
|
|
250
268
|
"settings": "Configurações",
|
|
251
269
|
"sessions": "Sessões",
|
|
252
270
|
"tools": "Ferramentas",
|
|
253
|
-
"skills": "Skills"
|
|
271
|
+
"skills": "Skills",
|
|
272
|
+
"plugins": "Plugins"
|
|
254
273
|
},
|
|
255
274
|
"sidebar": {
|
|
256
275
|
"features": "Recursos",
|
|
@@ -611,6 +630,25 @@
|
|
|
611
630
|
"viewServerLogs": "Ver logs do servidor",
|
|
612
631
|
"toggleSidebar": "Alternar barra lateral"
|
|
613
632
|
},
|
|
633
|
+
"plugins": {
|
|
634
|
+
"title": "Plugins",
|
|
635
|
+
"search": "Search",
|
|
636
|
+
"searchPlaceholder": "Search plugins...",
|
|
637
|
+
"emptyState": "No plugins found",
|
|
638
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
639
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
640
|
+
"install": "Install",
|
|
641
|
+
"uninstall": "Uninstall",
|
|
642
|
+
"enable": "Enable",
|
|
643
|
+
"disable": "Disable",
|
|
644
|
+
"installed": "Installed",
|
|
645
|
+
"notInstalled": "Not Installed",
|
|
646
|
+
"allCategories": "All Categories",
|
|
647
|
+
"version": "Version",
|
|
648
|
+
"source": "Source",
|
|
649
|
+
"category": "Category",
|
|
650
|
+
"clearFilters": "Clear filters"
|
|
651
|
+
},
|
|
614
652
|
"feature": {
|
|
615
653
|
"create": {
|
|
616
654
|
"permissionMode": "Permissoes",
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
"saved": "Сохранено",
|
|
6
6
|
"failedToSave": "Не удалось сохранить настройки",
|
|
7
7
|
"sections": {
|
|
8
|
+
"all": "Все",
|
|
8
9
|
"language": "Язык",
|
|
9
10
|
"agent": "Агент",
|
|
10
11
|
"environment": "Окружение",
|
|
@@ -15,7 +16,8 @@
|
|
|
15
16
|
"flags": "Флаги",
|
|
16
17
|
"chat": "Чат",
|
|
17
18
|
"layout": "Расположение",
|
|
18
|
-
"database": "База данных"
|
|
19
|
+
"database": "База данных",
|
|
20
|
+
"proxy": "LiteLLM Прокси"
|
|
19
21
|
},
|
|
20
22
|
"language": {
|
|
21
23
|
"title": "Язык",
|
|
@@ -208,8 +210,24 @@
|
|
|
208
210
|
"gitRebaseSyncDescription": "Включить операции git rebase-on-main и sync-main",
|
|
209
211
|
"reactFileManager": "Файловый менеджер React",
|
|
210
212
|
"reactFileManagerDescription": "Использовать встроенный файловый менеджер React вместо системного выбора папок",
|
|
213
|
+
"plugins": "Plugins Marketplace",
|
|
214
|
+
"pluginsDescription": "Enable the Claude Code plugins marketplace browser",
|
|
211
215
|
"hint": "Экспериментальные функции, которые ещё находятся в разработке. Включайте на свой страх и риск — они могут измениться или быть удалены в будущих версиях. Режим отладки добавляет подробное логирование, полезное для устранения неполадок."
|
|
212
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
|
+
},
|
|
213
231
|
"interactiveAgent": {
|
|
214
232
|
"title": "Интерактивный агент",
|
|
215
233
|
"description": "Настройки вкладки чата для интерактивных сессий агента по функциям",
|
|
@@ -250,7 +268,8 @@
|
|
|
250
268
|
"settings": "Настройки",
|
|
251
269
|
"sessions": "Сессии",
|
|
252
270
|
"tools": "Инструменты",
|
|
253
|
-
"skills": "Навыки"
|
|
271
|
+
"skills": "Навыки",
|
|
272
|
+
"plugins": "Plugins"
|
|
254
273
|
},
|
|
255
274
|
"sidebar": {
|
|
256
275
|
"features": "Функции",
|
|
@@ -611,6 +630,25 @@
|
|
|
611
630
|
"viewServerLogs": "Просмотр журналов сервера",
|
|
612
631
|
"toggleSidebar": "Переключить боковую панель"
|
|
613
632
|
},
|
|
633
|
+
"plugins": {
|
|
634
|
+
"title": "Plugins",
|
|
635
|
+
"search": "Search",
|
|
636
|
+
"searchPlaceholder": "Search plugins...",
|
|
637
|
+
"emptyState": "No plugins found",
|
|
638
|
+
"noProxy": "No LiteLLM proxy configured. Go to Settings to set up your proxy URL.",
|
|
639
|
+
"wrongAgent": "Plugin marketplace is only available for Claude Code agent type.",
|
|
640
|
+
"install": "Install",
|
|
641
|
+
"uninstall": "Uninstall",
|
|
642
|
+
"enable": "Enable",
|
|
643
|
+
"disable": "Disable",
|
|
644
|
+
"installed": "Installed",
|
|
645
|
+
"notInstalled": "Not Installed",
|
|
646
|
+
"allCategories": "All Categories",
|
|
647
|
+
"version": "Version",
|
|
648
|
+
"source": "Source",
|
|
649
|
+
"category": "Category",
|
|
650
|
+
"clearFilters": "Clear filters"
|
|
651
|
+
},
|
|
614
652
|
"feature": {
|
|
615
653
|
"create": {
|
|
616
654
|
"permissionMode": "Права",
|