@shepai/cli 1.180.0 → 1.181.0-pr512.ba01d33
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/MessagingCommand.yaml +28 -0
- package/apis/json-schema/MessagingCommandType.yaml +17 -0
- package/apis/json-schema/MessagingConfig.yaml +40 -0
- package/apis/json-schema/MessagingFrameType.yaml +8 -0
- package/apis/json-schema/MessagingNotification.yaml +22 -0
- package/apis/json-schema/MessagingPlatform.yaml +7 -0
- package/apis/json-schema/MessagingPlatformConfig.yaml +38 -0
- package/apis/json-schema/Settings.yaml +3 -0
- package/dist/packages/core/src/application/ports/output/services/gateway-client.interface.d.ts +58 -0
- package/dist/packages/core/src/application/ports/output/services/gateway-client.interface.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/gateway-client.interface.js +10 -0
- package/dist/packages/core/src/application/ports/output/services/message-sender.interface.d.ts +18 -0
- package/dist/packages/core/src/application/ports/output/services/message-sender.interface.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/message-sender.interface.js +9 -0
- package/dist/packages/core/src/application/ports/output/services/messaging-service.interface.d.ts +34 -0
- package/dist/packages/core/src/application/ports/output/services/messaging-service.interface.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/messaging-service.interface.js +12 -0
- package/dist/packages/core/src/application/ports/output/services/telegram-client.interface.d.ts +19 -0
- package/dist/packages/core/src/application/ports/output/services/telegram-client.interface.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/telegram-client.interface.js +8 -0
- package/dist/packages/core/src/application/use-cases/messaging/begin-pairing.use-case.d.ts +46 -0
- package/dist/packages/core/src/application/use-cases/messaging/begin-pairing.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/messaging/begin-pairing.use-case.js +148 -0
- package/dist/packages/core/src/application/use-cases/messaging/confirm-pairing.use-case.d.ts +19 -0
- package/dist/packages/core/src/application/use-cases/messaging/confirm-pairing.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/messaging/confirm-pairing.use-case.js +63 -0
- package/dist/packages/core/src/application/use-cases/messaging/disconnect-messaging.use-case.d.ts +19 -0
- package/dist/packages/core/src/application/use-cases/messaging/disconnect-messaging.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/messaging/disconnect-messaging.use-case.js +65 -0
- package/dist/packages/core/src/domain/generated/output.d.ts +155 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +26 -0
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +117 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +24 -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 +117 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-messaging-remote-control.d.ts +22 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-messaging-remote-control.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-messaging-remote-control.js +62 -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 +43 -3
- package/dist/packages/core/src/infrastructure/services/messaging/chat-relay.d.ts +45 -0
- package/dist/packages/core/src/infrastructure/services/messaging/chat-relay.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/chat-relay.js +100 -0
- package/dist/packages/core/src/infrastructure/services/messaging/command-executor.d.ts +53 -0
- package/dist/packages/core/src/infrastructure/services/messaging/command-executor.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/command-executor.js +200 -0
- package/dist/packages/core/src/infrastructure/services/messaging/content-sanitizer.d.ts +23 -0
- package/dist/packages/core/src/infrastructure/services/messaging/content-sanitizer.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/content-sanitizer.js +39 -0
- package/dist/packages/core/src/infrastructure/services/messaging/http-gateway.client.d.ts +19 -0
- package/dist/packages/core/src/infrastructure/services/messaging/http-gateway.client.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/http-gateway.client.js +124 -0
- package/dist/packages/core/src/infrastructure/services/messaging/http-telegram.client.d.ts +18 -0
- package/dist/packages/core/src/infrastructure/services/messaging/http-telegram.client.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/http-telegram.client.js +60 -0
- package/dist/packages/core/src/infrastructure/services/messaging/messaging-tunnel.adapter.d.ts +68 -0
- package/dist/packages/core/src/infrastructure/services/messaging/messaging-tunnel.adapter.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/messaging-tunnel.adapter.js +262 -0
- package/dist/packages/core/src/infrastructure/services/messaging/messaging.service.d.ts +78 -0
- package/dist/packages/core/src/infrastructure/services/messaging/messaging.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/messaging.service.js +279 -0
- package/dist/packages/core/src/infrastructure/services/messaging/notification-emitter.d.ts +33 -0
- package/dist/packages/core/src/infrastructure/services/messaging/notification-emitter.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/notification-emitter.js +79 -0
- package/dist/packages/core/src/infrastructure/services/messaging/stub-gateway.client.d.ts +12 -0
- package/dist/packages/core/src/infrastructure/services/messaging/stub-gateway.client.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/stub-gateway.client.js +26 -0
- package/dist/packages/core/src/infrastructure/services/messaging/telegram-message-sender.d.ts +26 -0
- package/dist/packages/core/src/infrastructure/services/messaging/telegram-message-sender.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/telegram-message-sender.js +49 -0
- package/dist/packages/core/src/infrastructure/services/messaging/telegram-webhook.parser.d.ts +28 -0
- package/dist/packages/core/src/infrastructure/services/messaging/telegram-webhook.parser.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/telegram-webhook.parser.js +45 -0
- package/dist/packages/core/src/infrastructure/services/messaging/tunnel-protocol.d.ts +102 -0
- package/dist/packages/core/src/infrastructure/services/messaging/tunnel-protocol.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/tunnel-protocol.js +16 -0
- package/dist/packages/core/src/infrastructure/services/messaging/whatsapp-webhook.parser.d.ts +39 -0
- package/dist/packages/core/src/infrastructure/services/messaging/whatsapp-webhook.parser.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/messaging/whatsapp-webhook.parser.js +56 -0
- package/dist/src/presentation/cli/commands/_serve.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/_serve.command.js +6 -0
- package/dist/src/presentation/cli/commands/app/del.command.d.ts +14 -0
- package/dist/src/presentation/cli/commands/app/del.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/app/del.command.js +58 -0
- package/dist/src/presentation/cli/commands/app/index.d.ts +20 -0
- package/dist/src/presentation/cli/commands/app/index.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/app/index.js +33 -0
- package/dist/src/presentation/cli/commands/app/ls.command.d.ts +11 -0
- package/dist/src/presentation/cli/commands/app/ls.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/app/ls.command.js +74 -0
- package/dist/src/presentation/cli/commands/app/new.command.d.ts +17 -0
- package/dist/src/presentation/cli/commands/app/new.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/app/new.command.js +58 -0
- package/dist/src/presentation/cli/commands/app/resolve-application.d.ts +10 -0
- package/dist/src/presentation/cli/commands/app/resolve-application.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/app/resolve-application.js +33 -0
- package/dist/src/presentation/cli/commands/app/show.command.d.ts +11 -0
- package/dist/src/presentation/cli/commands/app/show.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/app/show.command.js +95 -0
- package/dist/src/presentation/cli/commands/settings/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/index.js +3 -1
- package/dist/src/presentation/cli/commands/settings/messaging.command.d.ts +17 -0
- package/dist/src/presentation/cli/commands/settings/messaging.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/settings/messaging.command.js +187 -0
- package/dist/src/presentation/cli/index.js +2 -0
- package/dist/src/presentation/web/app/actions/messaging.d.ts +29 -0
- package/dist/src/presentation/web/app/actions/messaging.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/messaging.js +55 -0
- package/dist/src/presentation/web/components/features/settings/messaging-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/messaging-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/messaging-settings-section.js +206 -0
- package/dist/src/presentation/web/components/features/settings/messaging-settings-section.stories.d.ts +17 -0
- package/dist/src/presentation/web/components/features/settings/messaging-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/messaging-settings-section.stories.js +55 -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 +9 -2
- package/dist/src/presentation/web/dev-server.js +27 -0
- package/dist/translations/ar/cli.json +63 -0
- package/dist/translations/ar/web.json +2 -1
- package/dist/translations/de/cli.json +63 -0
- package/dist/translations/de/web.json +2 -1
- package/dist/translations/en/cli.json +63 -0
- package/dist/translations/en/web.json +13 -12
- package/dist/translations/es/cli.json +63 -0
- package/dist/translations/es/web.json +2 -1
- package/dist/translations/fr/cli.json +63 -0
- package/dist/translations/fr/web.json +2 -1
- package/dist/translations/he/cli.json +63 -0
- package/dist/translations/he/web.json +2 -1
- package/dist/translations/pt/cli.json +63 -0
- package/dist/translations/pt/web.json +2 -1
- package/dist/translations/ru/cli.json +63 -0
- package/dist/translations/ru/web.json +2 -1
- package/dist/translations/uk/cli.json +63 -0
- package/dist/translations/uk/web.json +2 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -1
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/build-manifest.json +2 -2
- package/web/.next/fallback-build-manifest.json +2 -2
- 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/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +32 -32
- 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 +30 -30
- 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 +33 -33
- 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 +41 -41
- 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 +41 -41
- 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 +31 -31
- 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 +31 -31
- 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 +30 -30
- 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 +33 -33
- 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 +41 -41
- 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 +41 -41
- 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 +30 -30
- 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 +31 -31
- 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 +31 -31
- 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 +2 -2
- 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 +7 -7
- 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/evidence/route.js.nft.json +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.nft.json +1 -1
- package/web/.next/server/app/application/[id]/page/server-reference-manifest.json +15 -15
- package/web/.next/server/app/application/[id]/page.js.nft.json +1 -1
- package/web/.next/server/app/application/[id]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/features/page/server-reference-manifest.json +7 -7
- package/web/.next/server/app/features/page.js.nft.json +1 -1
- package/web/.next/server/app/features/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/settings/page/server-reference-manifest.json +65 -20
- 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 +15 -15
- 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 +13 -13
- 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 +7 -7
- 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/chunks/[root-of-the-server]__a402b567._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__b2a4bfcc._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__b2a4bfcc._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +2 -2
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{7f428_lucide-react_dist_esm_icons_5da25833._.js → 7f428_lucide-react_dist_esm_icons_469d51b7._.js} +2 -2
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_469d51b7._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__013a0318._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__013a0318._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__17dadd08._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__17dadd08._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1925bef0._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1a9687c4._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1a9687c4._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__24756fa9._.js +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__24756fa9._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__42d066e1._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__42d066e1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__4ee8be85._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__70986695._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__70986695._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a5ea76a6._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a5ea76a6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dd3e834e._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__dd3e834e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e265da61._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f3ca7bea._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f3ca7bea._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__bb391c45._.js → [root-of-the-server]__f4f07ee6._.js} +2 -2
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f4f07ee6._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0277d3b5._.js +1 -1
- package/web/.next/server/chunks/ssr/_0277d3b5._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_d44d091a._.js → _1a4c514f._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_d44d091a._.js.map → _1a4c514f._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_33bab16e._.js +3 -0
- package/web/.next/server/chunks/ssr/{_b8e8b690._.js.map → _33bab16e._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_45496654._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
- package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/{_8caadb9a._.js → _5d41b1f7._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_8caadb9a._.js.map → _5d41b1f7._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_708a9069._.js +3 -0
- package/web/.next/server/chunks/ssr/_708a9069._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_63fc4647._.js → _81197d1b._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_63fc4647._.js.map → _81197d1b._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/{_295fffde._.js → _86bb5eb1._.js} +6 -2
- package/web/.next/server/chunks/ssr/_86bb5eb1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_946a7fc6._.js +1 -1
- package/web/.next/server/chunks/ssr/_946a7fc6._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_bad61758._.js +3 -0
- package/web/.next/server/chunks/ssr/_bad61758._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_36489f2b._.js → _ce70bfa0._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_36489f2b._.js.map → _ce70bfa0._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_d7d82308._.js +3 -0
- package/web/.next/server/chunks/ssr/_d7d82308._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_dd852eae._.js +3 -0
- package/web/.next/server/chunks/ssr/_dd852eae._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_eff1b518._.js +1 -1
- package/web/.next/server/chunks/ssr/_eff1b518._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f227429a._.js +1 -1
- package/web/.next/server/chunks/ssr/_f227429a._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f6b812ec._.js +9 -0
- package/web/.next/server/chunks/ssr/_f6b812ec._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_f86fc1bf._.js +1 -1
- package/web/.next/server/chunks/ssr/_f86fc1bf._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_f8c55130._.js +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
- package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
- package/web/.next/server/chunks/ssr/node_modules__pnpm_64cc95e9._.js +3 -0
- package/web/.next/server/chunks/ssr/node_modules__pnpm_64cc95e9._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_36f2bc45._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_36f2bc45._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_486908de._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_486908de._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_5c3596bc._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_5c3596bc._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_6159fef8._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_6159fef8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_6326f81e._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_6326f81e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_6b2fdcd8._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_6b2fdcd8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_74703c9f._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_74703c9f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_a8056dac._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_a8056dac._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_ad42cc73._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_ad42cc73._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +3 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_b00bfb08._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_b00bfb08._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_common_base-drawer_base-drawer_tsx_97dfbbc8._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_common_base-drawer_base-drawer_tsx_97dfbbc8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_f1edcf5e._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_f1edcf5e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_f9436804._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_f9436804._.js.map +1 -1
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +1 -1
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -1
- package/web/.next/server/pages/500.html +2 -2
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +109 -64
- package/web/.next/static/chunks/0239d68df2738a2a.js +1 -0
- package/web/.next/static/chunks/{e2f9e224d1fa1faa.js → 05d641009a42e94b.js} +1 -1
- package/web/.next/static/chunks/{26e2ca76ab6c38b4.js → 0d04391861f2a381.js} +1 -1
- package/web/.next/static/chunks/{f28aef9cf5107c4b.js → 151d16c2c65a4356.js} +1 -1
- package/web/.next/static/chunks/19008d82be3a09a5.js +5 -0
- package/web/.next/static/chunks/{893a2a76546c66a7.js → 193d8b761fec697e.js} +1 -1
- package/web/.next/static/chunks/2bad6607c1e0f153.js +7 -0
- package/web/.next/static/chunks/{7c3fe3c694874dea.js → 32940aa08b947f66.js} +1 -1
- package/web/.next/static/chunks/368809962c4cd597.js +1 -0
- package/web/.next/static/chunks/{dfdcccf73de56960.js → 475e5bd4e8bafc6f.js} +1 -1
- package/web/.next/static/chunks/{8746807722de67a8.js → 55e59f912fff1858.js} +1 -1
- package/web/.next/static/chunks/{490667b2a9bb58e2.js → 66d72ca561bb91ca.js} +1 -1
- package/web/.next/static/chunks/6da04daaac881f27.js +1 -0
- package/web/.next/static/chunks/{2fe20598e1b4793a.js → 75eb5f94364a44bf.js} +2 -2
- package/web/.next/static/chunks/{e8444bf5f6c35f8b.js → 7bbe49d9daedd94d.js} +5 -1
- package/web/.next/static/chunks/{7bc7028587490fff.js → 83ea5b5b0d0a8477.js} +1 -1
- package/web/.next/static/chunks/8fe70d4e73e1fe31.css +1 -0
- package/web/.next/static/chunks/{1bc12075020723ed.js → 9d70c74c84d24724.js} +1 -1
- package/web/.next/static/chunks/{7849c6797be7c6ca.js → a6d8276c88451abf.js} +2 -2
- package/web/.next/static/chunks/b3fa9a303332e7d6.js +3 -0
- package/web/.next/static/chunks/b9b3a6d83e07b213.js +1 -0
- package/web/.next/static/chunks/c92bc820f657f9d9.js +1 -0
- package/web/.next/static/chunks/dd5ab4e1762b5812.js +1 -0
- package/web/.next/static/chunks/{e7da54dde18e7fb2.js → e7b870347bdfe35d.js} +1 -1
- package/web/.next/static/chunks/ecafea5bc026ed41.js +1 -0
- package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_5da25833._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a6f2b763._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a6f2b763._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bb391c45._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_295fffde._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_44531b76._.js +0 -9
- package/web/.next/server/chunks/ssr/_44531b76._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_5bf2415e._.js +0 -7
- package/web/.next/server/chunks/ssr/_5bf2415e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_869a3a15._.js +0 -3
- package/web/.next/server/chunks/ssr/_869a3a15._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_b227ff50._.js +0 -3
- package/web/.next/server/chunks/ssr/_b227ff50._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_b8e8b690._.js +0 -3
- package/web/.next/server/chunks/ssr/_e071ba48._.js +0 -3
- package/web/.next/server/chunks/ssr/_e071ba48._.js.map +0 -1
- package/web/.next/server/chunks/ssr/node_modules__pnpm_747b43ac._.js +0 -3
- package/web/.next/server/chunks/ssr/node_modules__pnpm_747b43ac._.js.map +0 -1
- package/web/.next/static/chunks/06b9d6dbf635c370.css +0 -1
- package/web/.next/static/chunks/1ae0cf5be30ef398.js +0 -1
- package/web/.next/static/chunks/1fa1574b87bd2eb1.js +0 -1
- package/web/.next/static/chunks/8492d8e0b5f9a4e8.js +0 -1
- package/web/.next/static/chunks/927442d2628f6e22.js +0 -1
- package/web/.next/static/chunks/a1098522326428d1.js +0 -1
- package/web/.next/static/chunks/b99506a6f7bc2fa8.js +0 -1
- package/web/.next/static/chunks/be89c20c257247ad.js +0 -7
- package/web/.next/static/chunks/c0bd3ffcf94d1845.js +0 -7
- package/web/.next/static/chunks/f6d47ff35d612852.js +0 -5
- /package/web/.next/static/{GQFJf3UCD4D5C4NCn8eXl → Rb8tiiSfY1LEpEkuZLtTr}/_buildManifest.js +0 -0
- /package/web/.next/static/{GQFJf3UCD4D5C4NCn8eXl → Rb8tiiSfY1LEpEkuZLtTr}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{GQFJf3UCD4D5C4NCn8eXl → Rb8tiiSfY1LEpEkuZLtTr}/_ssgManifest.js +0 -0
|
@@ -478,6 +478,69 @@
|
|
|
478
478
|
"notFound": "Repository not found: {{id}}"
|
|
479
479
|
}
|
|
480
480
|
},
|
|
481
|
+
"app": {
|
|
482
|
+
"description": "Manage applications",
|
|
483
|
+
"ls": {
|
|
484
|
+
"description": "List applications",
|
|
485
|
+
"title": "Applications",
|
|
486
|
+
"idColumn": "ID",
|
|
487
|
+
"nameColumn": "Name",
|
|
488
|
+
"statusColumn": "Status",
|
|
489
|
+
"pathColumn": "Path",
|
|
490
|
+
"createdColumn": "Created",
|
|
491
|
+
"noApps": "No applications found",
|
|
492
|
+
"failedToList": "Failed to list applications"
|
|
493
|
+
},
|
|
494
|
+
"show": {
|
|
495
|
+
"description": "Display details of an application",
|
|
496
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
497
|
+
"title": "Application: {{name}}",
|
|
498
|
+
"nameLabel": "Name",
|
|
499
|
+
"slugLabel": "Slug",
|
|
500
|
+
"statusLabel": "Status",
|
|
501
|
+
"descriptionLabel": "Description",
|
|
502
|
+
"pathLabel": "Path",
|
|
503
|
+
"configTitle": "Configuration",
|
|
504
|
+
"agentLabel": "Agent",
|
|
505
|
+
"modelLabel": "Model",
|
|
506
|
+
"timestampsTitle": "Timestamps",
|
|
507
|
+
"createdLabel": "Created",
|
|
508
|
+
"updatedLabel": "Updated",
|
|
509
|
+
"deletedLabel": "Deleted",
|
|
510
|
+
"failedToShow": "Failed to show application"
|
|
511
|
+
},
|
|
512
|
+
"new": {
|
|
513
|
+
"description": "Create a new application",
|
|
514
|
+
"descriptionArgument": "Application description",
|
|
515
|
+
"agentOption": "Agent type override",
|
|
516
|
+
"modelOption": "LLM model override (e.g. claude-opus-4-6)",
|
|
517
|
+
"spinnerText": "Creating application",
|
|
518
|
+
"appCreated": "Application created",
|
|
519
|
+
"idLabel": "ID:",
|
|
520
|
+
"nameLabel": "Name:",
|
|
521
|
+
"slugLabel": "Slug:",
|
|
522
|
+
"pathLabel": "Path:",
|
|
523
|
+
"statusLabel": "Status:",
|
|
524
|
+
"agentLabel": "Agent:",
|
|
525
|
+
"modelLabel": "Model:",
|
|
526
|
+
"failedToCreate": "Failed to create application"
|
|
527
|
+
},
|
|
528
|
+
"del": {
|
|
529
|
+
"description": "Delete an application",
|
|
530
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
531
|
+
"forceOption": "Skip confirmation prompt",
|
|
532
|
+
"confirmDelete": "Delete application \"{{name}}\"?",
|
|
533
|
+
"cancelled": "Cancelled",
|
|
534
|
+
"appDeleted": "Application deleted",
|
|
535
|
+
"nameLabel": "Name:",
|
|
536
|
+
"slugLabel": "Slug:",
|
|
537
|
+
"failedToDelete": "Failed to delete application"
|
|
538
|
+
},
|
|
539
|
+
"resolve": {
|
|
540
|
+
"multipleMatch": "Multiple applications match prefix \"{{id}}\": {{matches}}",
|
|
541
|
+
"notFound": "Application not found: {{id}}"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
481
544
|
"agent": {
|
|
482
545
|
"description": "Manage and view agent runs",
|
|
483
546
|
"show": {
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"flags": "Flags",
|
|
16
16
|
"chat": "Chat",
|
|
17
17
|
"layout": "Layout",
|
|
18
|
-
"database": "Database"
|
|
18
|
+
"database": "Database",
|
|
19
|
+
"messaging": "Messaging"
|
|
19
20
|
},
|
|
20
21
|
"language": {
|
|
21
22
|
"title": "Language",
|
|
@@ -269,7 +270,7 @@
|
|
|
269
270
|
"deleteSubFeatures": "Delete sub-features",
|
|
270
271
|
"closePullRequest": "Close pull request",
|
|
271
272
|
"cancel": "Cancel",
|
|
272
|
-
"deleting": "Deleting
|
|
273
|
+
"deleting": "Deleting…",
|
|
273
274
|
"delete": "Delete"
|
|
274
275
|
},
|
|
275
276
|
"rejectFeedback": {
|
|
@@ -278,25 +279,25 @@
|
|
|
278
279
|
"ariaLabel": "Rejection feedback",
|
|
279
280
|
"placeholder": "Describe what needs to change...",
|
|
280
281
|
"cancel": "Cancel",
|
|
281
|
-
"rejecting": "Rejecting
|
|
282
|
+
"rejecting": "Rejecting…",
|
|
282
283
|
"confirmReject": "Confirm Reject"
|
|
283
284
|
},
|
|
284
285
|
"emptyState": {
|
|
285
286
|
"addProject": "Add a project",
|
|
286
287
|
"addProjectDescription": "Add your project folder to unlock feature creation.",
|
|
287
|
-
"addProjectDescriptionLine2": "Describe what you need
|
|
288
|
-
"checkingSetup": "Checking setup
|
|
288
|
+
"addProjectDescriptionLine2": "Describe what you need — Shep handles the rest.",
|
|
289
|
+
"checkingSetup": "Checking setup…",
|
|
289
290
|
"ready": "{{label}} ready",
|
|
290
291
|
"notInstalled": "{{label}} not installed",
|
|
291
292
|
"reCheck": "Re-check",
|
|
292
293
|
"needsAuth": "{{label}} needs authentication",
|
|
293
294
|
"open": "Open {{label}}",
|
|
294
|
-
"checking": "Checking {{label}}
|
|
295
|
+
"checking": "Checking {{label}}…",
|
|
295
296
|
"notFound": "{{label}} not found",
|
|
296
297
|
"docs": "Docs",
|
|
297
|
-
"opening": "Opening
|
|
298
|
+
"opening": "Opening…",
|
|
298
299
|
"chooseFolder": "Choose a Folder",
|
|
299
|
-
"folderHint": "Any folder works
|
|
300
|
+
"folderHint": "Any folder works — git will be initialized automatically if needed.",
|
|
300
301
|
"orUseCli": "or use the CLI",
|
|
301
302
|
"copyCommands": "Copy commands",
|
|
302
303
|
"git": "Git",
|
|
@@ -305,7 +306,7 @@
|
|
|
305
306
|
"githubCliRequired": "Required for pull requests"
|
|
306
307
|
},
|
|
307
308
|
"welcome": {
|
|
308
|
-
"loadingAgents": "Loading agents
|
|
309
|
+
"loadingAgents": "Loading agents…",
|
|
309
310
|
"chooseAgent": "Choose your agent",
|
|
310
311
|
"pickModel": "Pick a model",
|
|
311
312
|
"selectAgentSubtitle": "Select the AI coding agent you want Shep to use.",
|
|
@@ -353,11 +354,11 @@
|
|
|
353
354
|
"stopDevServer": "Stop Dev Server",
|
|
354
355
|
"startDevServer": "Start Dev Server",
|
|
355
356
|
"retryDevServer": "Retry Dev Server",
|
|
356
|
-
"starting": "Starting
|
|
357
|
+
"starting": "Starting…",
|
|
357
358
|
"retry": "Retry",
|
|
358
359
|
"start": "Start",
|
|
359
360
|
"failed": "Failed",
|
|
360
|
-
"deleting": "Deleting
|
|
361
|
+
"deleting": "Deleting…",
|
|
361
362
|
"addFeature": "Add feature",
|
|
362
363
|
"reviewRequirements": "Review Requirements",
|
|
363
364
|
"reviewTechnicalPlan": "Review Technical Plan",
|
|
@@ -600,7 +601,7 @@
|
|
|
600
601
|
"addRepository": "Add Repository"
|
|
601
602
|
},
|
|
602
603
|
"modelPicker": {
|
|
603
|
-
"searchPlaceholder": "Search or type a model ID
|
|
604
|
+
"searchPlaceholder": "Search or type a model ID…"
|
|
604
605
|
},
|
|
605
606
|
"skills": {
|
|
606
607
|
"searchPlaceholder": "Search skills..."
|
|
@@ -478,6 +478,69 @@
|
|
|
478
478
|
"notFound": "Repositorio no encontrado: {{id}}"
|
|
479
479
|
}
|
|
480
480
|
},
|
|
481
|
+
"app": {
|
|
482
|
+
"description": "Manage applications",
|
|
483
|
+
"ls": {
|
|
484
|
+
"description": "List applications",
|
|
485
|
+
"title": "Applications",
|
|
486
|
+
"idColumn": "ID",
|
|
487
|
+
"nameColumn": "Name",
|
|
488
|
+
"statusColumn": "Status",
|
|
489
|
+
"pathColumn": "Path",
|
|
490
|
+
"createdColumn": "Created",
|
|
491
|
+
"noApps": "No applications found",
|
|
492
|
+
"failedToList": "Failed to list applications"
|
|
493
|
+
},
|
|
494
|
+
"show": {
|
|
495
|
+
"description": "Display details of an application",
|
|
496
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
497
|
+
"title": "Application: {{name}}",
|
|
498
|
+
"nameLabel": "Name",
|
|
499
|
+
"slugLabel": "Slug",
|
|
500
|
+
"statusLabel": "Status",
|
|
501
|
+
"descriptionLabel": "Description",
|
|
502
|
+
"pathLabel": "Path",
|
|
503
|
+
"configTitle": "Configuration",
|
|
504
|
+
"agentLabel": "Agent",
|
|
505
|
+
"modelLabel": "Model",
|
|
506
|
+
"timestampsTitle": "Timestamps",
|
|
507
|
+
"createdLabel": "Created",
|
|
508
|
+
"updatedLabel": "Updated",
|
|
509
|
+
"deletedLabel": "Deleted",
|
|
510
|
+
"failedToShow": "Failed to show application"
|
|
511
|
+
},
|
|
512
|
+
"new": {
|
|
513
|
+
"description": "Create a new application",
|
|
514
|
+
"descriptionArgument": "Application description",
|
|
515
|
+
"agentOption": "Agent type override",
|
|
516
|
+
"modelOption": "LLM model override (e.g. claude-opus-4-6)",
|
|
517
|
+
"spinnerText": "Creating application",
|
|
518
|
+
"appCreated": "Application created",
|
|
519
|
+
"idLabel": "ID:",
|
|
520
|
+
"nameLabel": "Name:",
|
|
521
|
+
"slugLabel": "Slug:",
|
|
522
|
+
"pathLabel": "Path:",
|
|
523
|
+
"statusLabel": "Status:",
|
|
524
|
+
"agentLabel": "Agent:",
|
|
525
|
+
"modelLabel": "Model:",
|
|
526
|
+
"failedToCreate": "Failed to create application"
|
|
527
|
+
},
|
|
528
|
+
"del": {
|
|
529
|
+
"description": "Delete an application",
|
|
530
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
531
|
+
"forceOption": "Skip confirmation prompt",
|
|
532
|
+
"confirmDelete": "Delete application \"{{name}}\"?",
|
|
533
|
+
"cancelled": "Cancelled",
|
|
534
|
+
"appDeleted": "Application deleted",
|
|
535
|
+
"nameLabel": "Name:",
|
|
536
|
+
"slugLabel": "Slug:",
|
|
537
|
+
"failedToDelete": "Failed to delete application"
|
|
538
|
+
},
|
|
539
|
+
"resolve": {
|
|
540
|
+
"multipleMatch": "Multiple applications match prefix \"{{id}}\": {{matches}}",
|
|
541
|
+
"notFound": "Application not found: {{id}}"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
481
544
|
"agent": {
|
|
482
545
|
"description": "Administrar y ver ejecuciones de agentes",
|
|
483
546
|
"show": {
|
|
@@ -478,6 +478,69 @@
|
|
|
478
478
|
"notFound": "Dépôt introuvable : {{id}}"
|
|
479
479
|
}
|
|
480
480
|
},
|
|
481
|
+
"app": {
|
|
482
|
+
"description": "Manage applications",
|
|
483
|
+
"ls": {
|
|
484
|
+
"description": "List applications",
|
|
485
|
+
"title": "Applications",
|
|
486
|
+
"idColumn": "ID",
|
|
487
|
+
"nameColumn": "Name",
|
|
488
|
+
"statusColumn": "Status",
|
|
489
|
+
"pathColumn": "Path",
|
|
490
|
+
"createdColumn": "Created",
|
|
491
|
+
"noApps": "No applications found",
|
|
492
|
+
"failedToList": "Failed to list applications"
|
|
493
|
+
},
|
|
494
|
+
"show": {
|
|
495
|
+
"description": "Display details of an application",
|
|
496
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
497
|
+
"title": "Application: {{name}}",
|
|
498
|
+
"nameLabel": "Name",
|
|
499
|
+
"slugLabel": "Slug",
|
|
500
|
+
"statusLabel": "Status",
|
|
501
|
+
"descriptionLabel": "Description",
|
|
502
|
+
"pathLabel": "Path",
|
|
503
|
+
"configTitle": "Configuration",
|
|
504
|
+
"agentLabel": "Agent",
|
|
505
|
+
"modelLabel": "Model",
|
|
506
|
+
"timestampsTitle": "Timestamps",
|
|
507
|
+
"createdLabel": "Created",
|
|
508
|
+
"updatedLabel": "Updated",
|
|
509
|
+
"deletedLabel": "Deleted",
|
|
510
|
+
"failedToShow": "Failed to show application"
|
|
511
|
+
},
|
|
512
|
+
"new": {
|
|
513
|
+
"description": "Create a new application",
|
|
514
|
+
"descriptionArgument": "Application description",
|
|
515
|
+
"agentOption": "Agent type override",
|
|
516
|
+
"modelOption": "LLM model override (e.g. claude-opus-4-6)",
|
|
517
|
+
"spinnerText": "Creating application",
|
|
518
|
+
"appCreated": "Application created",
|
|
519
|
+
"idLabel": "ID:",
|
|
520
|
+
"nameLabel": "Name:",
|
|
521
|
+
"slugLabel": "Slug:",
|
|
522
|
+
"pathLabel": "Path:",
|
|
523
|
+
"statusLabel": "Status:",
|
|
524
|
+
"agentLabel": "Agent:",
|
|
525
|
+
"modelLabel": "Model:",
|
|
526
|
+
"failedToCreate": "Failed to create application"
|
|
527
|
+
},
|
|
528
|
+
"del": {
|
|
529
|
+
"description": "Delete an application",
|
|
530
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
531
|
+
"forceOption": "Skip confirmation prompt",
|
|
532
|
+
"confirmDelete": "Delete application \"{{name}}\"?",
|
|
533
|
+
"cancelled": "Cancelled",
|
|
534
|
+
"appDeleted": "Application deleted",
|
|
535
|
+
"nameLabel": "Name:",
|
|
536
|
+
"slugLabel": "Slug:",
|
|
537
|
+
"failedToDelete": "Failed to delete application"
|
|
538
|
+
},
|
|
539
|
+
"resolve": {
|
|
540
|
+
"multipleMatch": "Multiple applications match prefix \"{{id}}\": {{matches}}",
|
|
541
|
+
"notFound": "Application not found: {{id}}"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
481
544
|
"agent": {
|
|
482
545
|
"description": "Gérer et voir les exécutions d'agent",
|
|
483
546
|
"show": {
|
|
@@ -478,6 +478,69 @@
|
|
|
478
478
|
"notFound": "מאגר לא נמצא: {{id}}"
|
|
479
479
|
}
|
|
480
480
|
},
|
|
481
|
+
"app": {
|
|
482
|
+
"description": "Manage applications",
|
|
483
|
+
"ls": {
|
|
484
|
+
"description": "List applications",
|
|
485
|
+
"title": "Applications",
|
|
486
|
+
"idColumn": "ID",
|
|
487
|
+
"nameColumn": "Name",
|
|
488
|
+
"statusColumn": "Status",
|
|
489
|
+
"pathColumn": "Path",
|
|
490
|
+
"createdColumn": "Created",
|
|
491
|
+
"noApps": "No applications found",
|
|
492
|
+
"failedToList": "Failed to list applications"
|
|
493
|
+
},
|
|
494
|
+
"show": {
|
|
495
|
+
"description": "Display details of an application",
|
|
496
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
497
|
+
"title": "Application: {{name}}",
|
|
498
|
+
"nameLabel": "Name",
|
|
499
|
+
"slugLabel": "Slug",
|
|
500
|
+
"statusLabel": "Status",
|
|
501
|
+
"descriptionLabel": "Description",
|
|
502
|
+
"pathLabel": "Path",
|
|
503
|
+
"configTitle": "Configuration",
|
|
504
|
+
"agentLabel": "Agent",
|
|
505
|
+
"modelLabel": "Model",
|
|
506
|
+
"timestampsTitle": "Timestamps",
|
|
507
|
+
"createdLabel": "Created",
|
|
508
|
+
"updatedLabel": "Updated",
|
|
509
|
+
"deletedLabel": "Deleted",
|
|
510
|
+
"failedToShow": "Failed to show application"
|
|
511
|
+
},
|
|
512
|
+
"new": {
|
|
513
|
+
"description": "Create a new application",
|
|
514
|
+
"descriptionArgument": "Application description",
|
|
515
|
+
"agentOption": "Agent type override",
|
|
516
|
+
"modelOption": "LLM model override (e.g. claude-opus-4-6)",
|
|
517
|
+
"spinnerText": "Creating application",
|
|
518
|
+
"appCreated": "Application created",
|
|
519
|
+
"idLabel": "ID:",
|
|
520
|
+
"nameLabel": "Name:",
|
|
521
|
+
"slugLabel": "Slug:",
|
|
522
|
+
"pathLabel": "Path:",
|
|
523
|
+
"statusLabel": "Status:",
|
|
524
|
+
"agentLabel": "Agent:",
|
|
525
|
+
"modelLabel": "Model:",
|
|
526
|
+
"failedToCreate": "Failed to create application"
|
|
527
|
+
},
|
|
528
|
+
"del": {
|
|
529
|
+
"description": "Delete an application",
|
|
530
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
531
|
+
"forceOption": "Skip confirmation prompt",
|
|
532
|
+
"confirmDelete": "Delete application \"{{name}}\"?",
|
|
533
|
+
"cancelled": "Cancelled",
|
|
534
|
+
"appDeleted": "Application deleted",
|
|
535
|
+
"nameLabel": "Name:",
|
|
536
|
+
"slugLabel": "Slug:",
|
|
537
|
+
"failedToDelete": "Failed to delete application"
|
|
538
|
+
},
|
|
539
|
+
"resolve": {
|
|
540
|
+
"multipleMatch": "Multiple applications match prefix \"{{id}}\": {{matches}}",
|
|
541
|
+
"notFound": "Application not found: {{id}}"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
481
544
|
"agent": {
|
|
482
545
|
"description": "נהל וצפה בהרצות סוכן",
|
|
483
546
|
"show": {
|
|
@@ -478,6 +478,69 @@
|
|
|
478
478
|
"notFound": "Repositório não encontrado: {{id}}"
|
|
479
479
|
}
|
|
480
480
|
},
|
|
481
|
+
"app": {
|
|
482
|
+
"description": "Manage applications",
|
|
483
|
+
"ls": {
|
|
484
|
+
"description": "List applications",
|
|
485
|
+
"title": "Applications",
|
|
486
|
+
"idColumn": "ID",
|
|
487
|
+
"nameColumn": "Name",
|
|
488
|
+
"statusColumn": "Status",
|
|
489
|
+
"pathColumn": "Path",
|
|
490
|
+
"createdColumn": "Created",
|
|
491
|
+
"noApps": "No applications found",
|
|
492
|
+
"failedToList": "Failed to list applications"
|
|
493
|
+
},
|
|
494
|
+
"show": {
|
|
495
|
+
"description": "Display details of an application",
|
|
496
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
497
|
+
"title": "Application: {{name}}",
|
|
498
|
+
"nameLabel": "Name",
|
|
499
|
+
"slugLabel": "Slug",
|
|
500
|
+
"statusLabel": "Status",
|
|
501
|
+
"descriptionLabel": "Description",
|
|
502
|
+
"pathLabel": "Path",
|
|
503
|
+
"configTitle": "Configuration",
|
|
504
|
+
"agentLabel": "Agent",
|
|
505
|
+
"modelLabel": "Model",
|
|
506
|
+
"timestampsTitle": "Timestamps",
|
|
507
|
+
"createdLabel": "Created",
|
|
508
|
+
"updatedLabel": "Updated",
|
|
509
|
+
"deletedLabel": "Deleted",
|
|
510
|
+
"failedToShow": "Failed to show application"
|
|
511
|
+
},
|
|
512
|
+
"new": {
|
|
513
|
+
"description": "Create a new application",
|
|
514
|
+
"descriptionArgument": "Application description",
|
|
515
|
+
"agentOption": "Agent type override",
|
|
516
|
+
"modelOption": "LLM model override (e.g. claude-opus-4-6)",
|
|
517
|
+
"spinnerText": "Creating application",
|
|
518
|
+
"appCreated": "Application created",
|
|
519
|
+
"idLabel": "ID:",
|
|
520
|
+
"nameLabel": "Name:",
|
|
521
|
+
"slugLabel": "Slug:",
|
|
522
|
+
"pathLabel": "Path:",
|
|
523
|
+
"statusLabel": "Status:",
|
|
524
|
+
"agentLabel": "Agent:",
|
|
525
|
+
"modelLabel": "Model:",
|
|
526
|
+
"failedToCreate": "Failed to create application"
|
|
527
|
+
},
|
|
528
|
+
"del": {
|
|
529
|
+
"description": "Delete an application",
|
|
530
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
531
|
+
"forceOption": "Skip confirmation prompt",
|
|
532
|
+
"confirmDelete": "Delete application \"{{name}}\"?",
|
|
533
|
+
"cancelled": "Cancelled",
|
|
534
|
+
"appDeleted": "Application deleted",
|
|
535
|
+
"nameLabel": "Name:",
|
|
536
|
+
"slugLabel": "Slug:",
|
|
537
|
+
"failedToDelete": "Failed to delete application"
|
|
538
|
+
},
|
|
539
|
+
"resolve": {
|
|
540
|
+
"multipleMatch": "Multiple applications match prefix \"{{id}}\": {{matches}}",
|
|
541
|
+
"notFound": "Application not found: {{id}}"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
481
544
|
"agent": {
|
|
482
545
|
"description": "Gerenciar e visualizar execuções de agentes",
|
|
483
546
|
"show": {
|
|
@@ -478,6 +478,69 @@
|
|
|
478
478
|
"notFound": "Репозиторий не найден: {{id}}"
|
|
479
479
|
}
|
|
480
480
|
},
|
|
481
|
+
"app": {
|
|
482
|
+
"description": "Manage applications",
|
|
483
|
+
"ls": {
|
|
484
|
+
"description": "List applications",
|
|
485
|
+
"title": "Applications",
|
|
486
|
+
"idColumn": "ID",
|
|
487
|
+
"nameColumn": "Name",
|
|
488
|
+
"statusColumn": "Status",
|
|
489
|
+
"pathColumn": "Path",
|
|
490
|
+
"createdColumn": "Created",
|
|
491
|
+
"noApps": "No applications found",
|
|
492
|
+
"failedToList": "Failed to list applications"
|
|
493
|
+
},
|
|
494
|
+
"show": {
|
|
495
|
+
"description": "Display details of an application",
|
|
496
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
497
|
+
"title": "Application: {{name}}",
|
|
498
|
+
"nameLabel": "Name",
|
|
499
|
+
"slugLabel": "Slug",
|
|
500
|
+
"statusLabel": "Status",
|
|
501
|
+
"descriptionLabel": "Description",
|
|
502
|
+
"pathLabel": "Path",
|
|
503
|
+
"configTitle": "Configuration",
|
|
504
|
+
"agentLabel": "Agent",
|
|
505
|
+
"modelLabel": "Model",
|
|
506
|
+
"timestampsTitle": "Timestamps",
|
|
507
|
+
"createdLabel": "Created",
|
|
508
|
+
"updatedLabel": "Updated",
|
|
509
|
+
"deletedLabel": "Deleted",
|
|
510
|
+
"failedToShow": "Failed to show application"
|
|
511
|
+
},
|
|
512
|
+
"new": {
|
|
513
|
+
"description": "Create a new application",
|
|
514
|
+
"descriptionArgument": "Application description",
|
|
515
|
+
"agentOption": "Agent type override",
|
|
516
|
+
"modelOption": "LLM model override (e.g. claude-opus-4-6)",
|
|
517
|
+
"spinnerText": "Creating application",
|
|
518
|
+
"appCreated": "Application created",
|
|
519
|
+
"idLabel": "ID:",
|
|
520
|
+
"nameLabel": "Name:",
|
|
521
|
+
"slugLabel": "Slug:",
|
|
522
|
+
"pathLabel": "Path:",
|
|
523
|
+
"statusLabel": "Status:",
|
|
524
|
+
"agentLabel": "Agent:",
|
|
525
|
+
"modelLabel": "Model:",
|
|
526
|
+
"failedToCreate": "Failed to create application"
|
|
527
|
+
},
|
|
528
|
+
"del": {
|
|
529
|
+
"description": "Delete an application",
|
|
530
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
531
|
+
"forceOption": "Skip confirmation prompt",
|
|
532
|
+
"confirmDelete": "Delete application \"{{name}}\"?",
|
|
533
|
+
"cancelled": "Cancelled",
|
|
534
|
+
"appDeleted": "Application deleted",
|
|
535
|
+
"nameLabel": "Name:",
|
|
536
|
+
"slugLabel": "Slug:",
|
|
537
|
+
"failedToDelete": "Failed to delete application"
|
|
538
|
+
},
|
|
539
|
+
"resolve": {
|
|
540
|
+
"multipleMatch": "Multiple applications match prefix \"{{id}}\": {{matches}}",
|
|
541
|
+
"notFound": "Application not found: {{id}}"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
481
544
|
"agent": {
|
|
482
545
|
"description": "Управление и просмотр запусков агентов",
|
|
483
546
|
"show": {
|
|
@@ -478,6 +478,69 @@
|
|
|
478
478
|
"notFound": "Репозиторій не знайдено: {{id}}"
|
|
479
479
|
}
|
|
480
480
|
},
|
|
481
|
+
"app": {
|
|
482
|
+
"description": "Manage applications",
|
|
483
|
+
"ls": {
|
|
484
|
+
"description": "List applications",
|
|
485
|
+
"title": "Applications",
|
|
486
|
+
"idColumn": "ID",
|
|
487
|
+
"nameColumn": "Name",
|
|
488
|
+
"statusColumn": "Status",
|
|
489
|
+
"pathColumn": "Path",
|
|
490
|
+
"createdColumn": "Created",
|
|
491
|
+
"noApps": "No applications found",
|
|
492
|
+
"failedToList": "Failed to list applications"
|
|
493
|
+
},
|
|
494
|
+
"show": {
|
|
495
|
+
"description": "Display details of an application",
|
|
496
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
497
|
+
"title": "Application: {{name}}",
|
|
498
|
+
"nameLabel": "Name",
|
|
499
|
+
"slugLabel": "Slug",
|
|
500
|
+
"statusLabel": "Status",
|
|
501
|
+
"descriptionLabel": "Description",
|
|
502
|
+
"pathLabel": "Path",
|
|
503
|
+
"configTitle": "Configuration",
|
|
504
|
+
"agentLabel": "Agent",
|
|
505
|
+
"modelLabel": "Model",
|
|
506
|
+
"timestampsTitle": "Timestamps",
|
|
507
|
+
"createdLabel": "Created",
|
|
508
|
+
"updatedLabel": "Updated",
|
|
509
|
+
"deletedLabel": "Deleted",
|
|
510
|
+
"failedToShow": "Failed to show application"
|
|
511
|
+
},
|
|
512
|
+
"new": {
|
|
513
|
+
"description": "Create a new application",
|
|
514
|
+
"descriptionArgument": "Application description",
|
|
515
|
+
"agentOption": "Agent type override",
|
|
516
|
+
"modelOption": "LLM model override (e.g. claude-opus-4-6)",
|
|
517
|
+
"spinnerText": "Creating application",
|
|
518
|
+
"appCreated": "Application created",
|
|
519
|
+
"idLabel": "ID:",
|
|
520
|
+
"nameLabel": "Name:",
|
|
521
|
+
"slugLabel": "Slug:",
|
|
522
|
+
"pathLabel": "Path:",
|
|
523
|
+
"statusLabel": "Status:",
|
|
524
|
+
"agentLabel": "Agent:",
|
|
525
|
+
"modelLabel": "Model:",
|
|
526
|
+
"failedToCreate": "Failed to create application"
|
|
527
|
+
},
|
|
528
|
+
"del": {
|
|
529
|
+
"description": "Delete an application",
|
|
530
|
+
"idArgument": "Application ID, slug, or prefix",
|
|
531
|
+
"forceOption": "Skip confirmation prompt",
|
|
532
|
+
"confirmDelete": "Delete application \"{{name}}\"?",
|
|
533
|
+
"cancelled": "Cancelled",
|
|
534
|
+
"appDeleted": "Application deleted",
|
|
535
|
+
"nameLabel": "Name:",
|
|
536
|
+
"slugLabel": "Slug:",
|
|
537
|
+
"failedToDelete": "Failed to delete application"
|
|
538
|
+
},
|
|
539
|
+
"resolve": {
|
|
540
|
+
"multipleMatch": "Multiple applications match prefix \"{{id}}\": {{matches}}",
|
|
541
|
+
"notFound": "Application not found: {{id}}"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
481
544
|
"agent": {
|
|
482
545
|
"description": "Керування та перегляд запусків агентів",
|
|
483
546
|
"show": {
|