@shepai/cli 1.182.1 → 1.183.0
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/Application.yaml +7 -0
- package/dist/packages/core/src/application/ports/output/repositories/application-repository.interface.d.ts +1 -1
- package/dist/packages/core/src/application/ports/output/repositories/application-repository.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.d.ts +3 -3
- package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/applications/create-application.use-case.js +13 -21
- package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.d.ts +19 -3
- package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/applications/list-applications.use-case.js +37 -4
- package/dist/packages/core/src/application/use-cases/applications/resume-application-workflow.use-case.d.ts +30 -0
- package/dist/packages/core/src/application/use-cases/applications/resume-application-workflow.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/applications/resume-application-workflow.use-case.js +122 -0
- package/dist/packages/core/src/domain/generated/output.d.ts +8 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +5 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.d.ts +2 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/application.mapper.js +4 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/058-add-setup-complete-to-applications.d.ts +5 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/058-add-setup-complete-to-applications.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/058-add-setup-complete-to-applications.js +10 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/059-add-agent-session-id-to-applications.d.ts +5 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/059-add-agent-session-id-to-applications.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/059-add-agent-session-id-to-applications.js +10 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-application.repository.js +10 -2
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +4 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.js +4 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/implement.prompt.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/implement.prompt.js +4 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/merge-prompts.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/merge-prompts.js +11 -6
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/pr-branding.d.ts +2 -2
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/pr-branding.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/pr-branding.js +2 -2
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/git/git-pr.service.js +3 -2
- package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts +16 -5
- package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/git/pr-branding.js +38 -7
- package/dist/src/presentation/web/app/api/applications/[id]/resume/route.d.ts +20 -0
- package/dist/src/presentation/web/app/api/applications/[id]/resume/route.d.ts.map +1 -0
- package/dist/src/presentation/web/app/api/applications/[id]/resume/route.js +25 -0
- package/dist/src/presentation/web/app/api/applications/[id]/route.d.ts +19 -0
- package/dist/src/presentation/web/app/api/applications/[id]/route.d.ts.map +1 -0
- package/dist/src/presentation/web/app/api/applications/[id]/route.js +46 -0
- package/dist/src/presentation/web/app/api/applications/route.d.ts +9 -0
- package/dist/src/presentation/web/app/api/applications/route.d.ts.map +1 -0
- package/dist/src/presentation/web/app/api/applications/route.js +20 -0
- package/dist/src/presentation/web/app/application/[id]/page.d.ts +4 -4
- package/dist/src/presentation/web/app/application/[id]/page.d.ts.map +1 -1
- package/dist/src/presentation/web/app/application/[id]/page.js +2 -61
- package/dist/src/presentation/web/app/applications/page.d.ts +2 -0
- package/dist/src/presentation/web/app/applications/page.d.ts.map +1 -0
- package/dist/src/presentation/web/app/applications/page.js +5 -0
- package/dist/src/presentation/web/components/assistant-ui/thread.js +2 -2
- package/dist/src/presentation/web/components/common/application-node/application-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/application-node/application-node.js +3 -37
- package/dist/src/presentation/web/components/features/application-page/application-page-loader.d.ts +4 -0
- package/dist/src/presentation/web/components/features/application-page/application-page-loader.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/application-page/application-page-loader.js +47 -0
- package/dist/src/presentation/web/components/features/application-page/application-page.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/application-page/application-page.js +75 -54
- package/dist/src/presentation/web/components/features/application-page/application-page.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/application-page/application-page.stories.js +1 -0
- package/dist/src/presentation/web/components/features/application-page/run-dev-button.d.ts +3 -1
- package/dist/src/presentation/web/components/features/application-page/run-dev-button.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/application-page/run-dev-button.js +6 -2
- package/dist/src/presentation/web/components/features/applications/application-card.d.ts +7 -0
- package/dist/src/presentation/web/components/features/applications/application-card.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/applications/application-card.js +82 -0
- package/dist/src/presentation/web/components/features/applications/application-card.stories.d.ts +13 -0
- package/dist/src/presentation/web/components/features/applications/application-card.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/applications/application-card.stories.js +69 -0
- package/dist/src/presentation/web/components/features/applications/applications-page-client.d.ts +5 -0
- package/dist/src/presentation/web/components/features/applications/applications-page-client.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/applications/applications-page-client.js +28 -0
- package/dist/src/presentation/web/components/features/applications/applications-page-client.stories.d.ts +10 -0
- package/dist/src/presentation/web/components/features/applications/applications-page-client.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/applications/applications-page-client.stories.js +93 -0
- package/dist/src/presentation/web/components/features/chat/ChatComposer.d.ts +3 -1
- package/dist/src/presentation/web/components/features/chat/ChatComposer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatComposer.js +2 -2
- package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts +3 -1
- package/dist/src/presentation/web/components/features/chat/ChatTab.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/ChatTab.js +4 -3
- package/dist/src/presentation/web/components/features/chat/StepTracker.d.ts +6 -1
- package/dist/src/presentation/web/components/features/chat/StepTracker.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/chat/StepTracker.js +23 -20
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +3 -2
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts +3 -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 +2 -2
- package/dist/src/presentation/web/components/features/settings/language-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/language-settings-section.js +1 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts +1 -0
- package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/language-settings-section.stories.js +5 -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 +23 -3
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
- package/dist/src/presentation/web/lib/derive-app-status.d.ts +23 -0
- package/dist/src/presentation/web/lib/derive-app-status.d.ts.map +1 -0
- package/dist/src/presentation/web/lib/derive-app-status.js +89 -0
- package/dist/src/presentation/web/lib/i18n.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/i18n.js +3 -0
- package/dist/translations/ar/web.json +2 -1
- package/dist/translations/de/web.json +2 -1
- package/dist/translations/en/web.json +2 -1
- package/dist/translations/es/web.json +2 -1
- package/dist/translations/fr/web.json +2 -1
- package/dist/translations/he/web.json +2 -1
- package/dist/translations/pt/web.json +2 -1
- package/dist/translations/ru/web.json +2 -1
- package/dist/translations/uk/web.json +2 -1
- 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 +4 -0
- 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 +2 -2
- package/web/.next/required-server-files.json +2 -2
- package/web/.next/routes-manifest.json +28 -0
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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/page.js +1 -1
- package/web/.next/server/app/_global-error/page.js.nft.json +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 +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/applications/[id]/resume/route/app-paths-manifest.json +3 -0
- package/web/.next/server/app/api/applications/[id]/resume/route/build-manifest.json +11 -0
- package/web/.next/server/app/api/applications/[id]/resume/route/server-reference-manifest.json +4 -0
- package/web/.next/server/app/api/applications/[id]/resume/route.js +7 -0
- package/web/.next/server/app/api/applications/[id]/resume/route.js.map +5 -0
- package/web/.next/server/app/api/applications/[id]/resume/route.js.nft.json +1 -0
- package/web/.next/server/app/api/applications/[id]/resume/route_client-reference-manifest.js +2 -0
- package/web/.next/server/app/api/applications/[id]/route/app-paths-manifest.json +3 -0
- package/web/.next/server/app/api/applications/[id]/route/build-manifest.json +11 -0
- package/web/.next/server/app/api/applications/[id]/route/server-reference-manifest.json +4 -0
- package/web/.next/server/app/api/applications/[id]/route.js +7 -0
- package/web/.next/server/app/api/applications/[id]/route.js.map +5 -0
- package/web/.next/server/app/api/applications/[id]/route.js.nft.json +1 -0
- package/web/.next/server/app/api/applications/[id]/route_client-reference-manifest.js +2 -0
- package/web/.next/server/app/api/applications/route/app-paths-manifest.json +3 -0
- package/web/.next/server/app/api/applications/route/build-manifest.json +11 -0
- package/web/.next/server/app/api/applications/route/server-reference-manifest.json +4 -0
- package/web/.next/server/app/api/applications/route.js +7 -0
- package/web/.next/server/app/api/applications/route.js.map +5 -0
- package/web/.next/server/app/api/applications/route.js.nft.json +1 -0
- package/web/.next/server/app/api/applications/route_client-reference-manifest.js +2 -0
- 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 +45 -30
- package/web/.next/server/app/application/[id]/page.js +3 -3
- 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/applications/page/app-paths-manifest.json +3 -0
- package/web/.next/server/app/applications/page/build-manifest.json +18 -0
- package/web/.next/server/app/applications/page/next-font-manifest.json +6 -0
- package/web/.next/server/app/applications/page/react-loadable-manifest.json +1 -0
- package/web/.next/server/app/applications/page/server-reference-manifest.json +230 -0
- package/web/.next/server/app/applications/page.js +19 -0
- package/web/.next/server/app/applications/page.js.map +5 -0
- package/web/.next/server/app/applications/page.js.nft.json +1 -0
- package/web/.next/server/app/applications/page_client-reference-manifest.js +2 -0
- package/web/.next/server/app/features/page/server-reference-manifest.json +7 -7
- package/web/.next/server/app/features/page.js +1 -1
- 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 +10 -10
- 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 +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/server-reference-manifest.json +13 -13
- 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/server-reference-manifest.json +7 -7
- 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 +4 -0
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_[id]_route_actions_e31b426d.js +3 -0
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_[id]_route_actions_e31b426d.js.map +1 -0
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_route_actions_2b7d20d0.js +3 -0
- package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_applications_route_actions_2b7d20d0.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__3bb635e8._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__3bb635e8._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__ac0027b4._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__ac0027b4._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__b2a4bfcc._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__c8f90b29._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__ce82df38._.js +3 -0
- package/web/.next/server/chunks/[root-of-the-server]__ce82df38._.js.map +1 -0
- package/web/.next/server/chunks/f3a1f__next-internal_server_app_api_applications_[id]_resume_route_actions_3a66d646.js +3 -0
- package/web/.next/server/chunks/f3a1f__next-internal_server_app_api_applications_[id]_resume_route_actions_3a66d646.js.map +1 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4f9eef62.js +3 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4f9eef62.js.map +1 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_ffa16a22.js +3 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_ffa16a22.js.map +1 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_a1a998f9.js +3 -0
- package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_a1a998f9.js.map +1 -0
- 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/744ca_web_components_features_applications_applications-page-client_tsx_d0db9938._.js +3 -0
- package/web/.next/server/chunks/ssr/744ca_web_components_features_applications_applications-page-client_tsx_d0db9938._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__04f4895b._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__04f4895b._.js.map +1 -0
- 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]__347fd0f6._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__347fd0f6._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__46dd2baf._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__46dd2baf._.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]__73cb4ff6._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__73cb4ff6._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__87bc4dac._.js → [root-of-the-server]__86ff0bc5._.js} +3 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__86ff0bc5._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__91c50abe._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__91c50abe._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a48af49f._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a48af49f._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bb391c45._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__bb391c45._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__d5e22d1a._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__7aa484f5._.js.map → [root-of-the-server]__d5e22d1a._.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]__e0aa2bcb._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e0aa2bcb._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e265da61._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ef0b8905._.js +12 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ef0b8905._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f5614810._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__090f24cb._.js.map → [root-of-the-server]__f5614810._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fe5db6b2._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fe5db6b2._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_037e85c7._.js +3 -0
- package/web/.next/server/chunks/ssr/_037e85c7._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_774cbf7d._.js → _133ae3de._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_774cbf7d._.js.map → _133ae3de._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_1879404a._.js +1 -1
- package/web/.next/server/chunks/ssr/_1879404a._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_295fffde._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_29b8ed64._.js +3 -0
- package/web/.next/server/chunks/ssr/_29b8ed64._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_2bc302d1._.js +3 -0
- package/web/.next/server/chunks/ssr/_2bc302d1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_35294e79._.js +3 -0
- package/web/.next/server/chunks/ssr/_35294e79._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_3683083e._.js +3 -0
- package/web/.next/server/chunks/ssr/_3683083e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_45496654._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_4b57bcc3._.js +9 -0
- package/web/.next/server/chunks/ssr/_4b57bcc3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_519d77a9._.js +3 -0
- package/web/.next/server/chunks/ssr/_519d77a9._.js.map +1 -0
- 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/_82db03fd._.js +3 -0
- package/web/.next/server/chunks/ssr/_82db03fd._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_8c3086bf._.js +3 -0
- package/web/.next/server/chunks/ssr/_8c3086bf._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_9173e475._.js +21 -0
- package/web/.next/server/chunks/ssr/_9173e475._.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/{_81e7a131._.js → _a08047ef._.js} +2 -2
- package/web/.next/server/chunks/ssr/_a08047ef._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_bc03ac82._.js +4 -0
- package/web/.next/server/chunks/ssr/_bc03ac82._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_d4c0792b._.js +3 -0
- package/web/.next/server/chunks/ssr/_d4c0792b._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_e61d032d._.js +3 -0
- package/web/.next/server/chunks/ssr/_e61d032d._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_e65abbd1._.js +3 -0
- package/web/.next/server/chunks/ssr/_e65abbd1._.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/node_modules__pnpm_28a53b5d._.js +3 -0
- package/web/.next/server/chunks/ssr/node_modules__pnpm_28a53b5d._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_47181610._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_47181610._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_5d3f4199._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_5d3f4199._.js.map +1 -0
- 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_61d96ba8._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_61d96ba8._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_6994959a._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_6994959a._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_77dadf68._.js +32 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_77dadf68._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_9a543843._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_9a543843._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_c3f6f57e.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_c3f6f57e.js.map +1 -0
- 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_8514dfcd._.js +32 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_8514dfcd._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_b95ed206._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_b95ed206._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_bade80bd._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_bade80bd._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_c543cf3e._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_c543cf3e._.js.map +1 -0
- 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_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_components_ui_dropdown-menu_tsx_229332e3._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_dropdown-menu_tsx_229332e3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/translations_1562ae1a._.js +3 -0
- package/web/.next/server/chunks/ssr/translations_1562ae1a._.js.map +1 -0
- 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 +184 -72
- package/web/.next/static/chunks/019e71634c720ede.js +1 -0
- package/web/.next/static/chunks/040c5ff84a8ae1a3.js +7 -0
- package/web/.next/static/chunks/092ac28f5a4422a0.js +19 -0
- package/web/.next/static/chunks/0bd78b0cf1c1421f.js +1 -0
- package/web/.next/static/chunks/{996e4ea45364bf3c.js → 18c21c4f9f58b69a.js} +3 -3
- package/web/.next/static/chunks/2b5aea3575387b3a.js +1 -0
- package/web/.next/static/chunks/2cbe80f8e84d59a8.js +1 -0
- package/web/.next/static/chunks/{503d2e86f83285f9.js → 3219b06f6a34e573.js} +1 -1
- package/web/.next/static/chunks/37e434e579ecfa02.js +1 -0
- package/web/.next/static/chunks/4a7cf3b09e0495a4.js +1 -0
- package/web/.next/static/chunks/{83fc7ea32e18c9a5.js → 4ea617a22e21fb04.js} +1 -1
- package/web/.next/static/chunks/54d1d5a646a12d76.js +1 -0
- package/web/.next/static/chunks/{9e9b60f127270dfd.js → 553be530f22710a7.js} +1 -1
- package/web/.next/static/chunks/5795b9f399523c9e.js +1 -0
- package/web/.next/static/chunks/{d488e6b5cbbc6833.js → 6a88df64eaeb6322.js} +1 -1
- package/web/.next/static/chunks/{2fe20598e1b4793a.js → 6b2859ea368e7df3.js} +3 -3
- package/web/.next/static/chunks/6d8cae68371a845d.js +1 -0
- package/web/.next/static/chunks/{a2601dbbcb657c7d.js → 78607d521d916531.js} +1 -1
- package/web/.next/static/chunks/{7bf6ed16395220c4.js → 7d5a7551d452463d.js} +2 -2
- package/web/.next/static/chunks/80e778136b2f4c92.js +1 -0
- package/web/.next/static/chunks/a62fb058d660bea3.js +3 -0
- package/web/.next/static/chunks/adf16efe8bac05e9.css +1 -0
- package/web/.next/static/chunks/b0474319e5a50043.js +1 -0
- package/web/.next/static/chunks/b85532fb1545927c.js +5 -0
- package/web/.next/static/chunks/e0ae4dbd97b7af4c.js +1 -0
- package/web/.next/static/chunks/{2af89379fde6831d.js → f70998ac93012aef.js} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__013a0318._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__013a0318._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__090f24cb._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__24756fa9._.js +0 -12
- package/web/.next/server/chunks/ssr/[root-of-the-server]__24756fa9._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__70986695._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__70986695._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__7aa484f5._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__87bc4dac._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a3a4ddef._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a3a4ddef._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a4222b95._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a4222b95._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a5ea76a6._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__a5ea76a6._.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]__f3ca7bea._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f3ca7bea._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0277d3b5._.js +0 -21
- package/web/.next/server/chunks/ssr/_0277d3b5._.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/_5dec4047._.js +0 -3
- package/web/.next/server/chunks/ssr/_5dec4047._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_73aa3b20._.js +0 -3
- package/web/.next/server/chunks/ssr/_73aa3b20._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_81e7a131._.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/_d75dcb43._.js +0 -3
- package/web/.next/server/chunks/ssr/_d75dcb43._.js.map +0 -1
- 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/_eff1b518._.js +0 -3
- package/web/.next/server/chunks/ssr/_eff1b518._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_f227429a._.js +0 -3
- package/web/.next/server/chunks/ssr/_f227429a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_36f2bc45._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_36f2bc45._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_486908de._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_486908de._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_5c3596bc._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_5c3596bc._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_6326f81e._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_6326f81e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_6b2fdcd8._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_6b2fdcd8._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_74703c9f._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_74703c9f._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_a8056dac._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_a8056dac._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +0 -32
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_b00bfb08._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_b00bfb08._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_f1edcf5e._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_f1edcf5e._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_f9436804._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_f9436804._.js.map +0 -1
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +0 -3
- package/web/.next/server/chunks/ssr/translations_23dd5e7e._.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/3a71cab38909921e.js +0 -1
- package/web/.next/static/chunks/4e53adb5d07b7e3d.js +0 -1
- package/web/.next/static/chunks/5e7ac3508bef115f.js +0 -1
- package/web/.next/static/chunks/761a7c542b358739.js +0 -1
- package/web/.next/static/chunks/927442d2628f6e22.js +0 -1
- package/web/.next/static/chunks/a31f2264cedb23e9.js +0 -1
- package/web/.next/static/chunks/abf7d1b66555b758.js +0 -7
- package/web/.next/static/chunks/b99506a6f7bc2fa8.js +0 -1
- package/web/.next/static/chunks/d984d1d8d506291c.js +0 -7
- package/web/.next/static/chunks/e843a0d8e8c645c4.js +0 -1
- package/web/.next/static/chunks/f5ed0232d50b1ec8.js +0 -19
- /package/web/.next/static/{6GBQ7MHEYpZbJzqULwvXh → t-O8eMjJCUhhtd6CgtTXI}/_buildManifest.js +0 -0
- /package/web/.next/static/{6GBQ7MHEYpZbJzqULwvXh → t-O8eMjJCUhhtd6CgtTXI}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{6GBQ7MHEYpZbJzqULwvXh → t-O8eMjJCUhhtd6CgtTXI}/_ssgManifest.js +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
self.__RSC_SERVER_MANIFEST="{\n \"node\": {\n \"006509149fb6c2f415f8450c9088450072a014aa1a\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\",\n \"exportedName\": \"getAllAgentModels\"\n },\n \"004f4e5ce8df8f01c0c63485e0ed0718133e1fa853\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\",\n \"exportedName\": \"checkAllAgentsStatus\"\n },\n \"609c3cd490c6f827a214c5e775cde00e9cee2bd2da\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\",\n \"exportedName\": \"updateAgentAndModel\"\n },\n \"0017a3f596c2b90658bb19c5117be2b6f519bc1314\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\",\n \"exportedName\": \"pickFolder\"\n },\n \"408c4683e7e38f8046c9dad7739ff677e837c2e436\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\",\n \"exportedName\": \"listGitHubRepositories\"\n },\n \"0032e72d1011d4e626b5503edd0fef331cb9e8ae13\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\",\n \"exportedName\": \"listGitHubOrganizations\"\n },\n \"402a9388c4c40595790daa4181cb39052554de06ed\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\",\n \"exportedName\": \"importGitHubRepository\"\n },\n \"4019f70a0543cf0486aa16490cbe978f2a34a2347e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\",\n \"exportedName\": \"deployFeature\"\n },\n \"40b3ff55d8c6015de48f42ddd0a47a270c41d82366\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\",\n \"exportedName\": \"deployRepository\"\n },\n \"4083635fcd972ab212a5a17bf919c30711e14955c3\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\",\n \"exportedName\": \"deployApplication\"\n },\n \"402f3ec754226496bb37e1bf882a17def51cf8ccb8\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\",\n \"exportedName\": \"stopDeployment\"\n },\n \"40ae71a74448e4f534011f66f784be8cc3005391e7\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\",\n \"exportedName\": \"getDeploymentStatus\"\n },\n \"406858434b1d40a654474f652e273dacff0f114a8f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\",\n \"exportedName\": \"openIde\"\n },\n \"409173b44abca96c719c7230f6de025f6d9bea0849\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\",\n \"exportedName\": \"openShell\"\n },\n \"4028cc39abb05ca7c18237aafb41d8134bdb40a3ab\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\",\n \"exportedName\": \"openFolder\"\n },\n \"4043971339eb4f84d2ca25693efa0c5145dce877af\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\",\n \"exportedName\": \"syncRepository\"\n },\n \"40c3fcb203be759711825a5cac090e83e5c3b8e45f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\",\n \"exportedName\": \"getDeploymentLogs\"\n },\n \"403fbb28c13795acda94d00d80fca36290fbb3d9c4\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\",\n \"exportedName\": \"createProjectAndFeature\"\n },\n \"40b9d57439db23ee8fffe27f9307cddf7e203b1f95\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\",\n \"exportedName\": \"createApplication\"\n },\n \"40a6376439dd2da25ab983e84a2e327778f8f453f4\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\",\n \"exportedName\": \"createProjectFolder\"\n },\n \"406260b7003b9bf0cb14ef656aafd980487280c22c\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\",\n \"exportedName\": \"archiveFeature\"\n },\n \"7812c1aa0763b4d79f2e787daf598094ad499c8a1a\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\",\n \"exportedName\": \"deleteFeature\"\n },\n \"40429c9cf912c02f17c2da08bf4e9db4d1a9081059\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\",\n \"exportedName\": \"resumeFeature\"\n },\n \"409f36190e2ab34a496a18a1119a535d506aa6c3c8\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\",\n \"exportedName\": \"startFeature\"\n },\n \"40546ee39227e6e083b5ff161e95a54a24a3739a1c\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\",\n \"exportedName\": \"stopFeature\"\n },\n \"40023dc327570cea6ff2a1177e996854851a51c089\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\",\n \"exportedName\": \"unarchiveFeature\"\n },\n \"40b04b2895d648863306ce7d024b5e9baa6ef8ec7b\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\",\n \"exportedName\": \"addRepository\"\n },\n \"6036bd2e834ebd0c4acfa043c83e1a1f595d949be9\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\",\n \"exportedName\": \"deleteRepository\"\n },\n \"40ee07562b07beaa415ee4ea443c25c60934686a33\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\",\n \"exportedName\": \"deleteApplication\"\n },\n \"40af4871c7609c265aa4f2438b045c7abe38fe6e69\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\",\n \"exportedName\": \"getFeatureMetadata\"\n },\n \"40df04b98f7a9273f2459d0404f30d7673af744f3e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"adoptBranch\",\n \"filename\": \"src/presentation/web/app/actions/adopt-branch.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/adopt-branch.ts\",\n \"exportedName\": \"adoptBranch\"\n },\n \"4055f6e02aa7b824edd3ce6054b0867f23b393d0b3\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"listBranches\",\n \"filename\": \"src/presentation/web/app/actions/list-branches.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/list-branches.ts\",\n \"exportedName\": \"listBranches\"\n },\n \"00d32d5310df3ff792dfc6d8b67395f5ae206a5d56\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getWorkflowDefaults\",\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getWorkflowDefaults\",\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"rsc\",\n \"app/(dashboard)/create/page\": \"rsc\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\",\n \"exportedName\": \"getWorkflowDefaults\"\n },\n \"400ffd5690a8959d9374602bf4fb0609303f830c03\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getViewerPermission\",\n \"filename\": \"src/presentation/web/app/actions/get-viewer-permission.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getViewerPermission\",\n \"filename\": \"src/presentation/web/app/actions/get-viewer-permission.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-viewer-permission.ts\",\n \"exportedName\": \"getViewerPermission\"\n },\n \"40c2edbd9855aa0f10159f7fa545c5225d6c235eba\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\",\n \"exportedName\": \"createFeature\"\n },\n \"6039087a3381f6a6686ef42b534ddbf3f8f67bdd22\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\",\n \"exportedName\": \"approveFeature\"\n },\n \"709a84cd1e3ffa8578d58ff4eb4f39dd6538631e41\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\",\n \"exportedName\": \"rejectFeature\"\n },\n \"4083d006ea41189fa2953e9550aa68461da1b4b99c\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\",\n \"exportedName\": \"getFeatureArtifact\"\n },\n \"408176b887fbc26be0b73439d485b1cd75e14100d0\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\",\n \"exportedName\": \"getResearchArtifact\"\n },\n \"405394ebaf3f20fd317ae36dfee415d2e7460758af\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\",\n \"exportedName\": \"getMergeReviewData\"\n },\n \"408ca5b81b3349b4c215f61818333e5fbb662c00f5\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getFeaturePhaseTimings\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getFeaturePhaseTimings\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getFeaturePhaseTimings\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getFeaturePhaseTimings\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\",\n \"exportedName\": \"getFeaturePhaseTimings\"\n },\n \"4036edf267a20af3a7289c742b0649f671be87bb7e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getFeaturePlan\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getFeaturePlan\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getFeaturePlan\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getFeaturePlan\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\",\n \"exportedName\": \"getFeaturePlan\"\n },\n \"405da9f06d212a6e2046f77c34e4c7397e63c3cb64\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"rebaseFeature\",\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"rebaseFeature\",\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"rebaseFeature\",\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"rebaseFeature\",\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\",\n \"exportedName\": \"rebaseFeature\"\n },\n \"40d43ccb5d6f6ece2a2ed56786647bd6bf8e1a3729\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getFeatureDrawerData\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getFeatureDrawerData\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getFeatureDrawerData\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getFeatureDrawerData\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\",\n \"exportedName\": \"getFeatureDrawerData\"\n },\n \"404b7d524f10c0160e4b06b4fa5a3404a7b44e5be7\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getBranchSyncStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getBranchSyncStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getBranchSyncStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getBranchSyncStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\",\n \"exportedName\": \"getBranchSyncStatus\"\n },\n \"70b3efd4db57fbc5b5f2c6fda0bcd3a0add9923fb3\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"updateFeaturePinnedConfig\",\n \"filename\": \"src/presentation/web/app/actions/update-feature-pinned-config.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"updateFeaturePinnedConfig\",\n \"filename\": \"src/presentation/web/app/actions/update-feature-pinned-config.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"updateFeaturePinnedConfig\",\n \"filename\": \"src/presentation/web/app/actions/update-feature-pinned-config.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"updateFeaturePinnedConfig\",\n \"filename\": \"src/presentation/web/app/actions/update-feature-pinned-config.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/update-feature-pinned-config.ts\",\n \"exportedName\": \"updateFeaturePinnedConfig\"\n },\n \"60a4767abdc16755d70c418c91b95be6f50d8c3bea\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\",\n \"exportedName\": \"getGitRepoInfo\"\n },\n \"40944a288e4871edb2ec62b9df6ed2c6684a794d95\": {\n \"workers\": {\n \"app/application/[id]/page\": {\n \"moduleId\": 6736,\n \"async\": false,\n \"exportedName\": \"getApplicationDebugPrompt\",\n \"filename\": \"src/presentation/web/app/actions/get-application-debug-prompt.ts\"\n }\n },\n \"layer\": {\n \"app/application/[id]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-application-debug-prompt.ts\",\n \"exportedName\": \"getApplicationDebugPrompt\"\n },\n \"001797ce1e92a649fff4fbfc7f014e54362d57cd1e\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"loadSettings\",\n \"filename\": \"src/presentation/web/app/actions/load-settings.ts\"\n }\n },\n \"layer\": {\n \"app/settings/page\": \"rsc\"\n },\n \"filename\": \"src/presentation/web/app/actions/load-settings.ts\",\n \"exportedName\": \"loadSettings\"\n },\n \"0037a6fa1fe834a94f8e9cde5f5b450b5630a33c3b\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"getAvailableTerminals\",\n \"filename\": \"src/presentation/web/app/actions/get-available-terminals.ts\"\n }\n },\n \"layer\": {\n \"app/settings/page\": \"rsc\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-available-terminals.ts\",\n \"exportedName\": \"getAvailableTerminals\"\n },\n \"40335b246996bd296ed05cb04c7423cf52f3f82d54\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"updateSettingsAction\",\n \"filename\": \"src/presentation/web/app/actions/update-settings.ts\"\n }\n },\n \"layer\": {\n \"app/settings/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/update-settings.ts\",\n \"exportedName\": \"updateSettingsAction\"\n },\n \"4033377f5aa050298ffaa40eff1e1b053de1203a46\": {\n \"workers\": {\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"removeInjectedSkill\",\n \"filename\": \"src/presentation/web/app/actions/remove-injected-skill.ts\"\n }\n },\n \"layer\": {\n \"app/skills/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/remove-injected-skill.ts\",\n \"exportedName\": \"removeInjectedSkill\"\n },\n \"40d12d8b9c27664ee7f5dfdfd26e29dca2003f9523\": {\n \"workers\": {\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"addInjectedSkill\",\n \"filename\": \"src/presentation/web/app/actions/add-injected-skill.ts\"\n }\n },\n \"layer\": {\n \"app/skills/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/add-injected-skill.ts\",\n \"exportedName\": \"addInjectedSkill\"\n }\n },\n \"edge\": {},\n \"encryptionKey\": \"EeUgQFzswSZJr0zV0rHmLhrw6Q+jTfbclKjUPRaKbAY=\"\n}"
|
|
1
|
+
self.__RSC_SERVER_MANIFEST="{\n \"node\": {\n \"00f373462bd571a1792715325fb5184a126c445327\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\",\n \"exportedName\": \"getAllAgentModels\"\n },\n \"00dbbf086a7ef425edbbc5cb9795264e9a155bd40b\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"checkAllAgentsStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/check-all-agents-status.ts\",\n \"exportedName\": \"checkAllAgentsStatus\"\n },\n \"60b4cbab57a503aa7c536cfc32583da15139bead1a\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\",\n \"exportedName\": \"updateAgentAndModel\"\n },\n \"009691a6cd3b2c2ef91fbc73255d2709b6c5d051c4\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\",\n \"exportedName\": \"pickFolder\"\n },\n \"4031ecccb7cd5c86319137da2af0a51b0c0f8e0d95\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\",\n \"exportedName\": \"listGitHubRepositories\"\n },\n \"0090375660d2bf0df09932302bb2d6896c322ddc2f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\",\n \"exportedName\": \"listGitHubOrganizations\"\n },\n \"40895ee90ed9c02eb9b0d9db928e937cde07a407a4\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 97823,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/features/page\": {\n \"moduleId\": 27548,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 70613,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/features/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\",\n \"exportedName\": \"importGitHubRepository\"\n },\n \"4019757a68b2ab125dac7b85cd2e1dac22da3db6c5\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\",\n \"exportedName\": \"deployFeature\"\n },\n \"40948fe1c9352411e89edf299ed1e8f51bce06bee4\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\",\n \"exportedName\": \"deployRepository\"\n },\n \"408ebe4b532992092d18a9b513f7f54038544f0585\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"deployApplication\",\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-application.ts\",\n \"exportedName\": \"deployApplication\"\n },\n \"4058d4d774b9a00d4ea404dc2e1dffd3559a13fa1e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\",\n \"exportedName\": \"stopDeployment\"\n },\n \"40c3e4f1640509f222ee938f58e619fb9dc9e885ad\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\",\n \"exportedName\": \"getDeploymentStatus\"\n },\n \"40227fbf1f06087486d930f2be73341e7ed80091c3\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\",\n \"exportedName\": \"openIde\"\n },\n \"401e7b7f484afefb6755fb3d3f2c2a4c3ed1ec3f99\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\",\n \"exportedName\": \"openShell\"\n },\n \"407ae360e1c587f168a62691f5fbb902cc30239161\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\",\n \"exportedName\": \"openFolder\"\n },\n \"40a57525e1106170a91c42e7c7f3fa9a53481100c8\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\",\n \"exportedName\": \"syncRepository\"\n },\n \"402a5f9c99ccbf1d3c0cc441ba92b451798b3f5c40\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 17249,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\",\n \"exportedName\": \"getDeploymentLogs\"\n },\n \"4026e56be70d948dc3268ab6e2f2886a1104d8cd07\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"createProjectAndFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/create-project-and-feature.ts\",\n \"exportedName\": \"createProjectAndFeature\"\n },\n \"40f8c300c4c7d5f53c5c9434afc2eaaa9da4769348\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"createApplication\",\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/create-application.ts\",\n \"exportedName\": \"createApplication\"\n },\n \"40d591435cbf5e2844d6b0f56fb270938d5c8489e7\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"createProjectFolder\",\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/create-project-folder.ts\",\n \"exportedName\": \"createProjectFolder\"\n },\n \"40efbe9d403a44d886e0e48abc4980547033c4d898\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\",\n \"exportedName\": \"archiveFeature\"\n },\n \"78ffe5e01b8dbdc2aea6bf9627a1d57fc4f618024c\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\",\n \"exportedName\": \"deleteFeature\"\n },\n \"400b887a616cbf773d1916f3c9befda61ada388bbd\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\",\n \"exportedName\": \"resumeFeature\"\n },\n \"40726cf93f7ac7e2721f95270a9e1add6a92c81e35\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\",\n \"exportedName\": \"startFeature\"\n },\n \"40bf7f0efdba8ee98115b817c2be5858318a7f47e8\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\",\n \"exportedName\": \"stopFeature\"\n },\n \"402cdb26f49257eeb71728b1b3e61835d9fcf99014\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\",\n \"exportedName\": \"unarchiveFeature\"\n },\n \"40d9f11e8b5a5014c05d6e7c71d286bc3e3cf967f9\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\",\n \"exportedName\": \"addRepository\"\n },\n \"606a87dde2ab8df2216d158a8b5e396110073e0a9b\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\",\n \"exportedName\": \"deleteRepository\"\n },\n \"40967a1f7fb638f1a5c3db0578e8e9496de2aa9b41\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n },\n \"app/applications/page\": {\n \"moduleId\": 73474,\n \"async\": false,\n \"exportedName\": \"deleteApplication\",\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\",\n \"app/applications/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/delete-application.ts\",\n \"exportedName\": \"deleteApplication\"\n },\n \"4066f99f07b348d08962c2d7639dd18f214b5947e1\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 49159,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 6509,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 6199,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/chat/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/chat/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\",\n \"exportedName\": \"getFeatureMetadata\"\n },\n \"402aa05f4e9c22a6e964decad28ccad0b758fd7516\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"adoptBranch\",\n \"filename\": \"src/presentation/web/app/actions/adopt-branch.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/adopt-branch.ts\",\n \"exportedName\": \"adoptBranch\"\n },\n \"40a3c018dea53e595927e72600253e07a2f17baf3e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 49851,\n \"async\": false,\n \"exportedName\": \"listBranches\",\n \"filename\": \"src/presentation/web/app/actions/list-branches.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/adopt/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/list-branches.ts\",\n \"exportedName\": \"listBranches\"\n },\n \"009b2eebb24492818967fe4ceb71a68aff9493f1ee\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getWorkflowDefaults\",\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getWorkflowDefaults\",\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"rsc\",\n \"app/(dashboard)/create/page\": \"rsc\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\",\n \"exportedName\": \"getWorkflowDefaults\"\n },\n \"40c0af35a93210890daf635d8591a65315a5d61a27\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"getViewerPermission\",\n \"filename\": \"src/presentation/web/app/actions/get-viewer-permission.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"getViewerPermission\",\n \"filename\": \"src/presentation/web/app/actions/get-viewer-permission.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-viewer-permission.ts\",\n \"exportedName\": \"getViewerPermission\"\n },\n \"40d0e3402652c3ee7206eb31e80d3ae87ece9b492e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 25637,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 23761,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\",\n \"exportedName\": \"createFeature\"\n },\n \"60b9286db32ab26f1802c3d0b2ea8a4d8dd5ef068e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\",\n \"exportedName\": \"approveFeature\"\n },\n \"7020890fc4c621e67e835300ae1f033ea7afb57ec4\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\",\n \"exportedName\": \"rejectFeature\"\n },\n \"40f1d91ee22b9d0676ca8063b50c162be313109212\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\",\n \"exportedName\": \"getFeatureArtifact\"\n },\n \"40bb79180ab83b9826e800ea3e2330737b54873ee6\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\",\n \"exportedName\": \"getResearchArtifact\"\n },\n \"408506d119c0aa4a188ae878633441e4b6b93d5987\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\",\n \"exportedName\": \"getMergeReviewData\"\n },\n \"406aa853c3f18f819630a3a4b4b945c72811156e3e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getFeaturePhaseTimings\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getFeaturePhaseTimings\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getFeaturePhaseTimings\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getFeaturePhaseTimings\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\",\n \"exportedName\": \"getFeaturePhaseTimings\"\n },\n \"40b4e4bd4de3c0bd9780ca34f30d651ea46f099278\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getFeaturePlan\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getFeaturePlan\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getFeaturePlan\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getFeaturePlan\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\",\n \"exportedName\": \"getFeaturePlan\"\n },\n \"40dcdde34cff18456c1dd62c7872727d9ce250415a\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"rebaseFeature\",\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"rebaseFeature\",\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"rebaseFeature\",\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"rebaseFeature\",\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\",\n \"exportedName\": \"rebaseFeature\"\n },\n \"40046c1bb27a7064f3673e986d4186a1cf1ab3956e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getFeatureDrawerData\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getFeatureDrawerData\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getFeatureDrawerData\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getFeatureDrawerData\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\",\n \"exportedName\": \"getFeatureDrawerData\"\n },\n \"4083781430c002391f4f1c89947eb17b8d1b2acfd2\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"getBranchSyncStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"getBranchSyncStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"getBranchSyncStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"getBranchSyncStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\",\n \"exportedName\": \"getBranchSyncStatus\"\n },\n \"70af5a3ba86760ea7cd812de35ca88cf994700cfcf\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 12154,\n \"async\": false,\n \"exportedName\": \"updateFeaturePinnedConfig\",\n \"filename\": \"src/presentation/web/app/actions/update-feature-pinned-config.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 6340,\n \"async\": false,\n \"exportedName\": \"updateFeaturePinnedConfig\",\n \"filename\": \"src/presentation/web/app/actions/update-feature-pinned-config.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 43629,\n \"async\": false,\n \"exportedName\": \"updateFeaturePinnedConfig\",\n \"filename\": \"src/presentation/web/app/actions/update-feature-pinned-config.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 85216,\n \"async\": false,\n \"exportedName\": \"updateFeaturePinnedConfig\",\n \"filename\": \"src/presentation/web/app/actions/update-feature-pinned-config.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/update-feature-pinned-config.ts\",\n \"exportedName\": \"updateFeaturePinnedConfig\"\n },\n \"60056cb1d88afe7b000b79614b93edfc589e20dfdb\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 61035,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 80224,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 47688,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 12358,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n },\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/application/[id]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\",\n \"exportedName\": \"getGitRepoInfo\"\n },\n \"40aca981bbffa424b0b732c3a1baa6097c9d3f768c\": {\n \"workers\": {\n \"app/application/[id]/page\": {\n \"moduleId\": 70538,\n \"async\": false,\n \"exportedName\": \"getApplicationDebugPrompt\",\n \"filename\": \"src/presentation/web/app/actions/get-application-debug-prompt.ts\"\n }\n },\n \"layer\": {\n \"app/application/[id]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-application-debug-prompt.ts\",\n \"exportedName\": \"getApplicationDebugPrompt\"\n },\n \"003a25734d3e26a1176fcd794fdbc8258a2e344135\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"loadSettings\",\n \"filename\": \"src/presentation/web/app/actions/load-settings.ts\"\n }\n },\n \"layer\": {\n \"app/settings/page\": \"rsc\"\n },\n \"filename\": \"src/presentation/web/app/actions/load-settings.ts\",\n \"exportedName\": \"loadSettings\"\n },\n \"00c1aeff52a5b15ac978eec5030eca5644cc3fa8e5\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"getAvailableTerminals\",\n \"filename\": \"src/presentation/web/app/actions/get-available-terminals.ts\"\n }\n },\n \"layer\": {\n \"app/settings/page\": \"rsc\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-available-terminals.ts\",\n \"exportedName\": \"getAvailableTerminals\"\n },\n \"409e5d2e62795d8d43ed288ebba199861df584c091\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 98735,\n \"async\": false,\n \"exportedName\": \"updateSettingsAction\",\n \"filename\": \"src/presentation/web/app/actions/update-settings.ts\"\n }\n },\n \"layer\": {\n \"app/settings/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/update-settings.ts\",\n \"exportedName\": \"updateSettingsAction\"\n },\n \"40f3d9301a046cdb41c7d1c4ef2dc4aa406429cf3b\": {\n \"workers\": {\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"removeInjectedSkill\",\n \"filename\": \"src/presentation/web/app/actions/remove-injected-skill.ts\"\n }\n },\n \"layer\": {\n \"app/skills/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/remove-injected-skill.ts\",\n \"exportedName\": \"removeInjectedSkill\"\n },\n \"40183e18ce90d38e379a1cb08dc801984748c7556a\": {\n \"workers\": {\n \"app/skills/page\": {\n \"moduleId\": 34294,\n \"async\": false,\n \"exportedName\": \"addInjectedSkill\",\n \"filename\": \"src/presentation/web/app/actions/add-injected-skill.ts\"\n }\n },\n \"layer\": {\n \"app/skills/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/add-injected-skill.ts\",\n \"exportedName\": \"addInjectedSkill\"\n }\n },\n \"edge\": {},\n \"encryptionKey\": \"LYvIQl3GXgG96OodtlqFjQe1EXs78ozlO9CVVVSjH2Q=\"\n}"
|