@shipit-ai/cli 1.164.2 → 1.165.0-pr11.8598321
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -7
- package/dist/packages/core/src/application/ports/output/services/environment-detector.service.d.ts +54 -0
- package/dist/packages/core/src/application/ports/output/services/environment-detector.service.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/environment-detector.service.js +8 -0
- package/dist/packages/core/src/application/ports/output/services/index.d.ts +1 -0
- package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/services/tool-metadata-service.interface.d.ts +5 -1
- package/dist/packages/core/src/application/ports/output/services/tool-metadata-service.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/configure-agent.use-case.d.ts +1 -1
- package/dist/packages/core/src/application/use-cases/agents/configure-agent.use-case.js +1 -1
- package/dist/packages/core/src/application/use-cases/agents/stop-agent-run.use-case.d.ts +1 -1
- package/dist/packages/core/src/application/use-cases/agents/stop-agent-run.use-case.js +1 -1
- package/dist/packages/core/src/application/use-cases/features/adopt-branch.use-case.d.ts +1 -1
- package/dist/packages/core/src/application/use-cases/features/adopt-branch.use-case.js +1 -1
- package/dist/packages/core/src/application/use-cases/settings/detect-environment-defaults.use-case.d.ts +18 -0
- package/dist/packages/core/src/application/use-cases/settings/detect-environment-defaults.use-case.d.ts.map +1 -0
- package/dist/packages/core/src/application/use-cases/settings/detect-environment-defaults.use-case.js +40 -0
- package/dist/packages/core/src/application/use-cases/settings/index.d.ts +1 -0
- package/dist/packages/core/src/application/use-cases/settings/index.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/settings/index.js +1 -0
- package/dist/packages/core/src/application/use-cases/settings/initialize-settings.use-case.d.ts +10 -4
- package/dist/packages/core/src/application/use-cases/settings/initialize-settings.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/settings/initialize-settings.use-case.js +34 -7
- package/dist/packages/core/src/application/use-cases/tools/list-tools.use-case.d.ts +1 -1
- package/dist/packages/core/src/application/use-cases/tools/list-tools.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts +18 -2
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +16 -5
- package/dist/packages/core/src/index.d.ts +2 -2
- package/dist/packages/core/src/index.js +2 -2
- package/dist/packages/core/src/infrastructure/di/modules/services.module.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/modules/services.module.js +2 -0
- package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.js +2 -0
- package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.js +4 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/plan.fixture.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/plan.fixture.js +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/research.fixture.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/research.fixture.js +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-analyze.fixture.d.ts +2 -2
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-analyze.fixture.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-analyze.fixture.js +5 -5
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-requirements.fixture.d.ts +2 -2
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-requirements.fixture.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-requirements.fixture.js +6 -6
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/tasks.fixture.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/tasks.fixture.js +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/evidence-prompts.js +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/merge-prompts.js +1 -1
- package/dist/packages/core/src/infrastructure/services/environment-detector.service.d.ts +38 -0
- package/dist/packages/core/src/infrastructure/services/environment-detector.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/environment-detector.service.js +196 -0
- package/dist/packages/core/src/infrastructure/services/filesystem/shipit-ai-directory.service.d.ts +2 -2
- package/dist/packages/core/src/infrastructure/services/filesystem/shipit-ai-directory.service.js +4 -4
- package/dist/packages/core/src/infrastructure/services/git/pr-branding.d.ts +4 -4
- package/dist/packages/core/src/infrastructure/services/git/pr-branding.js +4 -4
- package/dist/packages/core/src/infrastructure/services/interactive/feature-context.builder.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/interactive/feature-context.builder.js +7 -7
- package/dist/packages/core/src/infrastructure/services/port.service.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/port.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/port.service.js +1 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tool-metadata.d.ts +6 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tool-metadata.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tool-metadata.js +7 -0
- package/dist/packages/core/src/infrastructure/services/tool-installer/tool-metadata.service.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/services/tool-installer/tool-metadata.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tool-metadata.service.js +4 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/CLAUDE.md +2 -1
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/bash.json +20 -0
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/codex-cli.json +31 -0
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/fish.json +19 -0
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/powershell.json +24 -0
- package/dist/packages/core/src/infrastructure/services/tool-installer/tools/zsh.json +19 -0
- package/dist/src/presentation/cli/commands/agent/approve.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/agent/approve.command.js +1 -1
- package/dist/src/presentation/cli/commands/agent/delete.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/agent/delete.command.js +1 -1
- package/dist/src/presentation/cli/commands/agent/index.d.ts +6 -6
- package/dist/src/presentation/cli/commands/agent/index.js +6 -6
- package/dist/src/presentation/cli/commands/agent/logs.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/agent/logs.command.js +3 -3
- package/dist/src/presentation/cli/commands/agent/ls.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/agent/ls.command.js +1 -1
- package/dist/src/presentation/cli/commands/agent/reject.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/agent/reject.command.js +1 -1
- package/dist/src/presentation/cli/commands/agent/show.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/agent/show.command.js +1 -1
- package/dist/src/presentation/cli/commands/agent/stop.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/agent/stop.command.js +1 -1
- package/dist/src/presentation/cli/commands/daemon/start-daemon.d.ts +4 -4
- package/dist/src/presentation/cli/commands/daemon/start-daemon.js +4 -4
- package/dist/src/presentation/cli/commands/daemon/stop-daemon.d.ts +5 -5
- package/dist/src/presentation/cli/commands/daemon/stop-daemon.js +5 -5
- package/dist/src/presentation/cli/commands/feat/adopt.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/feat/adopt.command.js +3 -3
- package/dist/src/presentation/cli/commands/feat/approve.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/feat/approve.command.js +1 -1
- package/dist/src/presentation/cli/commands/feat/archive.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/feat/archive.command.js +3 -3
- package/dist/src/presentation/cli/commands/feat/del.command.d.ts +5 -5
- package/dist/src/presentation/cli/commands/feat/del.command.js +5 -5
- package/dist/src/presentation/cli/commands/feat/index.d.ts +4 -4
- package/dist/src/presentation/cli/commands/feat/index.js +4 -4
- package/dist/src/presentation/cli/commands/feat/logs.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/feat/logs.command.js +3 -3
- package/dist/src/presentation/cli/commands/feat/ls.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/feat/ls.command.js +3 -3
- package/dist/src/presentation/cli/commands/feat/new.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/feat/new.command.js +4 -4
- package/dist/src/presentation/cli/commands/feat/reject.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/feat/reject.command.js +1 -1
- package/dist/src/presentation/cli/commands/feat/resume.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/feat/resume.command.js +1 -1
- package/dist/src/presentation/cli/commands/feat/review.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/feat/review.command.js +1 -1
- package/dist/src/presentation/cli/commands/feat/show.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/feat/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/show.command.js +4 -3
- package/dist/src/presentation/cli/commands/feat/start.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/feat/start.command.js +1 -1
- package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts +2 -2
- package/dist/src/presentation/cli/commands/feat/unarchive.command.js +2 -2
- package/dist/src/presentation/cli/commands/ide-open.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/ide-open.command.js +1 -1
- package/dist/src/presentation/cli/commands/log-viewer.d.ts +1 -1
- package/dist/src/presentation/cli/commands/log-viewer.js +1 -1
- package/dist/src/presentation/cli/commands/repo/add.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/repo/add.command.js +3 -3
- package/dist/src/presentation/cli/commands/repo/index.d.ts +4 -4
- package/dist/src/presentation/cli/commands/repo/index.js +4 -4
- package/dist/src/presentation/cli/commands/repo/ls.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/repo/ls.command.js +1 -1
- package/dist/src/presentation/cli/commands/repo/show.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/repo/show.command.js +1 -1
- package/dist/src/presentation/cli/commands/restart.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/restart.command.js +5 -5
- package/dist/src/presentation/cli/commands/run.command.d.ts +5 -5
- package/dist/src/presentation/cli/commands/run.command.js +5 -5
- package/dist/src/presentation/cli/commands/session/index.d.ts +3 -3
- package/dist/src/presentation/cli/commands/session/index.js +3 -3
- package/dist/src/presentation/cli/commands/session/ls.command.d.ts +6 -6
- package/dist/src/presentation/cli/commands/session/ls.command.js +6 -6
- package/dist/src/presentation/cli/commands/session/show.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/session/show.command.js +3 -3
- package/dist/src/presentation/cli/commands/settings/agent.command.d.ts +4 -4
- package/dist/src/presentation/cli/commands/settings/agent.command.js +7 -7
- package/dist/src/presentation/cli/commands/settings/ide.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/settings/ide.command.js +6 -6
- package/dist/src/presentation/cli/commands/settings/index.d.ts +10 -10
- package/dist/src/presentation/cli/commands/settings/index.js +10 -10
- package/dist/src/presentation/cli/commands/settings/init.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/settings/init.command.js +6 -6
- package/dist/src/presentation/cli/commands/settings/language.command.d.ts +2 -2
- package/dist/src/presentation/cli/commands/settings/language.command.js +3 -3
- package/dist/src/presentation/cli/commands/settings/model.command.d.ts +2 -2
- package/dist/src/presentation/cli/commands/settings/model.command.js +3 -3
- package/dist/src/presentation/cli/commands/settings/show.command.d.ts +4 -4
- package/dist/src/presentation/cli/commands/settings/show.command.js +7 -7
- package/dist/src/presentation/cli/commands/settings/workflow.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/settings/workflow.command.js +6 -6
- package/dist/src/presentation/cli/commands/start.command.d.ts +3 -3
- package/dist/src/presentation/cli/commands/start.command.js +5 -5
- package/dist/src/presentation/cli/commands/status.command.d.ts +4 -4
- package/dist/src/presentation/cli/commands/status.command.js +4 -4
- package/dist/src/presentation/cli/commands/stop.command.d.ts +2 -2
- package/dist/src/presentation/cli/commands/stop.command.js +2 -2
- package/dist/src/presentation/cli/commands/tools.command.d.ts +1 -1
- package/dist/src/presentation/cli/commands/tools.command.js +1 -1
- package/dist/src/presentation/cli/commands/ui.command.d.ts +4 -4
- package/dist/src/presentation/cli/commands/ui.command.js +7 -7
- package/dist/src/presentation/cli/commands/upgrade.command.d.ts +2 -2
- package/dist/src/presentation/cli/commands/upgrade.command.js +2 -2
- package/dist/src/presentation/cli/commands/version.command.d.ts +2 -2
- package/dist/src/presentation/cli/commands/version.command.js +2 -2
- package/dist/src/presentation/cli/index.d.ts +3 -3
- package/dist/src/presentation/cli/index.js +4 -4
- package/dist/src/presentation/cli/ui/index.d.ts +1 -1
- package/dist/src/presentation/cli/ui/index.js +1 -1
- package/dist/src/presentation/tui/themes/shipit-ai.theme.d.ts +4 -4
- package/dist/src/presentation/tui/themes/shipit-ai.theme.js +4 -4
- package/dist/src/presentation/web/app/actions/check-agent-auth.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/check-agent-auth.js +69 -24
- package/dist/src/presentation/web/app/actions/deploy-feature.js +2 -2
- package/dist/src/presentation/web/app/actions/deploy-repository.js +2 -2
- package/dist/src/presentation/web/app/actions/get-all-agent-models.d.ts +1 -0
- package/dist/src/presentation/web/app/actions/get-all-agent-models.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/get-all-agent-models.js +28 -3
- package/dist/src/presentation/web/app/actions/get-available-editors.d.ts +14 -0
- package/dist/src/presentation/web/app/actions/get-available-editors.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/get-available-editors.js +24 -0
- package/dist/src/presentation/web/app/actions/get-available-shells.d.ts +14 -0
- package/dist/src/presentation/web/app/actions/get-available-shells.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/get-available-shells.js +22 -0
- package/dist/src/presentation/web/app/actions/get-merge-review-data.js +3 -3
- package/dist/src/presentation/web/app/layout.d.ts.map +1 -1
- package/dist/src/presentation/web/app/layout.js +4 -13
- package/dist/src/presentation/web/app/settings/page.d.ts.map +1 -1
- package/dist/src/presentation/web/app/settings/page.js +6 -2
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.js +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.stories.d.ts +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/adopt-branch-drawer.stories.js +1 -1
- package/dist/src/presentation/web/components/common/control-center-drawer/global-chat-drawer-client.js +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.d.ts +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.js +1 -1
- package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.js +2 -2
- package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.js +8 -8
- package/dist/src/presentation/web/components/common/github-import-dialog/github-import-dialog.js +1 -1
- package/dist/src/presentation/web/components/common/inline-attachments/inline-attachments.stories.js +5 -5
- package/dist/src/presentation/web/components/common/merge-review/merge-review.stories.js +8 -8
- package/dist/src/presentation/web/components/common/prd-questionnaire/prd-questionnaire.stories.js +1 -1
- package/dist/src/presentation/web/components/common/shipit-ai-logo/index.d.ts +2 -2
- package/dist/src/presentation/web/components/common/shipit-ai-logo/index.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/shipit-ai-logo/index.js +1 -1
- package/dist/src/presentation/web/components/common/shipit-ai-logo/{shep-logo.d.ts → shipit-ai-logo.d.ts} +1 -1
- package/dist/src/presentation/web/components/common/shipit-ai-logo/shipit-ai-logo.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/shipit-ai-logo/shipit-ai-logo.js +8 -0
- package/dist/src/presentation/web/components/common/shipit-ai-logo/{shep-logo.stories.d.ts → shipit-ai-logo.stories.d.ts} +2 -2
- package/dist/src/presentation/web/components/common/shipit-ai-logo/shipit-ai-logo.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/common/shipit-ai-logo/{shep-logo.stories.js → shipit-ai-logo.stories.js} +1 -1
- package/dist/src/presentation/web/components/common/version-badge/version-badge.stories.js +2 -2
- package/dist/src/presentation/web/components/features/chat/ChatSheet.js +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.js +1 -1
- package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.js +6 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.js +19 -19
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/index.js +13 -2
- package/dist/src/presentation/web/components/features/settings/database-settings-section.js +1 -1
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts +5 -1
- 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 +33 -27
- package/dist/src/presentation/web/components/features/tools/tool-card.js +1 -1
- package/dist/src/presentation/web/components/features/version/version-page-client.js +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +3 -3
- package/dist/src/presentation/web/components/ui/sidebar.stories.js +1 -1
- package/dist/src/presentation/web/lib/session-scanner.js +2 -2
- package/dist/src/presentation/web/lib/version.d.ts +1 -1
- package/dist/src/presentation/web/lib/version.js +1 -1
- package/dist/src/presentation/web/{middleware.d.ts → proxy.d.ts} +4 -4
- package/dist/src/presentation/web/proxy.d.ts.map +1 -0
- package/dist/src/presentation/web/{middleware.js → proxy.js} +3 -3
- package/dist/src/presentation/web/types/theme.d.ts +1 -1
- package/dist/src/presentation/web/types/theme.js +1 -1
- package/dist/translations/ar/cli.json +17 -17
- package/dist/translations/ar/tui.json +2 -2
- package/dist/translations/ar/web.json +7 -5
- package/dist/translations/de/cli.json +17 -17
- package/dist/translations/de/tui.json +2 -2
- package/dist/translations/de/web.json +7 -5
- package/dist/translations/en/cli.json +17 -17
- package/dist/translations/en/tui.json +2 -2
- package/dist/translations/en/web.json +7 -5
- package/dist/translations/es/cli.json +17 -17
- package/dist/translations/es/tui.json +2 -2
- package/dist/translations/es/web.json +7 -5
- package/dist/translations/fr/cli.json +17 -17
- package/dist/translations/fr/tui.json +2 -2
- package/dist/translations/fr/web.json +7 -5
- package/dist/translations/he/cli.json +17 -17
- package/dist/translations/he/tui.json +2 -2
- package/dist/translations/he/web.json +7 -5
- package/dist/translations/pt/cli.json +17 -17
- package/dist/translations/pt/tui.json +2 -2
- package/dist/translations/pt/web.json +7 -5
- package/dist/translations/ru/cli.json +17 -17
- package/dist/translations/ru/tui.json +2 -2
- package/dist/translations/ru/web.json +7 -5
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/build-manifest.json +5 -5
- package/web/.next/fallback-build-manifest.json +3 -3
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +3 -3
- package/web/.next/required-server-files.json +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +2 -1
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +2 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +30 -30
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js +2 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +2 -1
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +2 -1
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +2 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +2 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/chat/page/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/chat/page.js +2 -1
- package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/create/page/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +30 -30
- package/web/.next/server/app/(dashboard)/create/page.js +2 -1
- package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +2 -1
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +2 -1
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/page.js +2 -1
- package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +2 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +2 -2
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +2 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/_global-error/page/build-manifest.json +2 -2
- package/web/.next/server/app/_global-error.html +1 -1
- package/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/_not-found/page/build-manifest.json +2 -2
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/_not-found/page.js +2 -1
- package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/attachments/upload-from-path/route.js +1 -1
- package/web/.next/server/app/api/attachments/upload-from-path/route.js.nft.json +1 -1
- package/web/.next/server/app/api/dialog/pick-files/route.js.nft.json +1 -1
- package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/api/graph-data/route.js.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/settings/page/build-manifest.json +2 -2
- package/web/.next/server/app/settings/page/server-reference-manifest.json +42 -18
- package/web/.next/server/app/settings/page.js +3 -2
- package/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/skills/page/build-manifest.json +2 -2
- package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/skills/page.js +2 -2
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/tools/page.js +2 -2
- 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/build-manifest.json +2 -2
- package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/version/page.js +2 -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/chunks/[externals]__11vad82._.js +3 -0
- package/web/.next/server/chunks/[externals]__11vad82._.js.map +1 -0
- package/web/.next/server/chunks/[root-of-the-server]__0.2exzi._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__02xmnal._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__04jjtl_._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__07suer1._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__09118p2._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__0_.w-eb._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__0ip_e1x._.js.map +1 -1
- package/web/.next/server/chunks/{[root-of-the-server]__0ob3z53._.js → [root-of-the-server]__0l1p8bx._.js} +2 -2
- package/web/.next/server/chunks/{[root-of-the-server]__0ob3z53._.js.map → [root-of-the-server]__0l1p8bx._.js.map} +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__0tb~wwk._.js +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__13ni_ow._.js +20 -0
- package/web/.next/server/chunks/[root-of-the-server]__13ni_ow._.js.map +1 -0
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_00~eq5i.js +3 -0
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_00~eq5i.js.map +1 -0
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_0979_c..js +3 -0
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_0979_c..js.map +1 -0
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_chat_page_actions_0dqll_1.js +3 -0
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_chat_page_actions_0dqll_1.js.map +1 -0
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js +1 -1
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js.map +1 -1
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js +2 -2
- package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js.map +1 -1
- package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js +1 -1
- package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js.map +1 -1
- package/web/.next/server/chunks/ssr/11es_next_dist_0e36~wi._.js +1 -1
- package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_global-chat-drawer-client_tsx_03s32.q._.js +1 -1
- package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_global-chat-drawer-client_tsx_03s32.q._.js.map +1 -1
- package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js +1 -1
- package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__01~y8wi._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__01~y8wi._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0np51e2._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0np51e2._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0qh.wn.._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0rv1gci._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0rv1gci._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0uxn6-j._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0uxn6-j._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0~h382a._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0~h382a._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__11-~i9u._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__11-~i9u._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__12g8h3_._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__12g8h3_._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__12qqi.~._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__12qqi.~._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_0sgeiju._.js → _01mq~sm._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_0sgeiju._.js.map → _01mq~sm._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/{_05h68we._.js → _05xlgp0._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_05h68we._.js.map → _05xlgp0._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_0e5cv3q._.js +1 -1
- package/web/.next/server/chunks/ssr/_0e5cv3q._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0ez.1o4._.js +1 -1
- package/web/.next/server/chunks/ssr/_0ez.1o4._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0jpbsh_._.js +4 -0
- package/web/.next/server/chunks/ssr/_0jpbsh_._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_0ts70ov._.js → _0lkemih._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_0ts70ov._.js.map → _0lkemih._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_0n.xy38._.js +3 -0
- package/web/.next/server/chunks/ssr/_0n.xy38._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0rvaoj4._.js +3 -0
- package/web/.next/server/chunks/ssr/_0rvaoj4._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_13e1_1b._.js → _0tk2.oz._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_13e1_1b._.js.map → _0tk2.oz._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/_0v.yfmg._.js +1 -1
- package/web/.next/server/chunks/ssr/_0v.yfmg._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0w-_hww._.js +1 -1
- package/web/.next/server/chunks/ssr/_0w-_hww._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_11kuznh._.js +1 -1
- package/web/.next/server/chunks/ssr/_11kuznh._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_13euo-f._.js +1 -1
- package/web/.next/server/chunks/ssr/_13euo-f._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_0.e4~xc._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_0.e4~xc._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_00dvh.m._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_00dvh.m._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_06b6~lt._.js +5 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_06b6~lt._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_08fy2mf._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_08fy2mf._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_0f~udu1._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_0f~udu1._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_0qys821._.js +5 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_0qys821._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_0q~dt0o._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_0q~dt0o._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_11jrkxt._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_11jrkxt._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_1199d3x.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_1199d3x.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app__not-found_page_actions_0m2jqxx.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app__not-found_page_actions_0m2jqxx.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_version_page_actions_0krkh_0.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_version_page_actions_0krkh_0.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_load-settings_ts_0b8f3pf._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_load-settings_ts_0b8f3pf._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_0sk2qdt._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_0sk2qdt._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_0aji.op._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_0aji.op._.js.map +1 -1
- package/web/.next/server/functions-config-manifest.json +11 -1
- package/web/.next/server/middleware/middleware-manifest.json +1 -27
- package/web/.next/server/middleware-build-manifest.js +5 -5
- package/web/.next/server/middleware-manifest.json +2 -32
- package/web/.next/server/middleware.js +5 -0
- package/web/.next/server/middleware.js.map +5 -0
- package/web/.next/server/middleware.js.nft.json +1 -0
- package/web/.next/server/pages/500.html +1 -1
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +80 -56
- package/web/.next/static/chunks/{0xs4~af3nc_15.js → 05wxq..ljkx~8.js} +2 -2
- package/web/.next/static/chunks/{0bdtgeoys8bq..js → 08iuksm8rvb09.js} +1 -1
- package/web/.next/static/chunks/{0.2owry_sk_ak.js → 0ck_tvdt72yqk.js} +1 -1
- package/web/.next/static/chunks/0hz4voo3l~1q0.js +1 -0
- package/web/.next/static/chunks/0mff9v2tok0iu.js +1 -0
- package/web/.next/static/chunks/{01~tm1-qp0baa.js → 0r2mwqxc0v4n5.js} +1 -1
- package/web/.next/static/chunks/0r5dju6f1-i38.css +1 -0
- package/web/.next/static/chunks/{13xg0bjtuso~r.js → 0riti1bs-erm~.js} +1 -1
- package/web/.next/static/chunks/{0g-so1fagegtp.js → 0rxhygp1wctu0.js} +1 -1
- package/web/.next/static/chunks/{0qz02~wj25f-f.js → 0uydgl~tzc8jf.js} +1 -1
- package/web/.next/static/chunks/0v34l64-7uf8g.js +3 -0
- package/web/.next/static/chunks/{0vlx6s5d1~d-w.js → 0wmckrtphfa12.js} +1 -1
- package/web/.next/static/chunks/0ytegp-a66bg_.js +1 -0
- package/web/.next/static/chunks/{122mzkbtrj4-k.js → 0z996q2k3d.g0.js} +2 -2
- package/web/.next/static/chunks/{07lrq10rx0tp1.js → 0~er~22zwvx0i.js} +1 -1
- package/web/.next/static/chunks/{17jsatqy81xc..js → 10--deyd63evw.js} +2 -2
- package/web/.next/static/chunks/{0_9hv9_f66hur.js → 11dcv8ilx0i3p.js} +1 -1
- package/web/.next/static/chunks/{12pwrbjphv3z7.js → 139b_8tpi-94g.js} +1 -1
- package/web/.next/static/chunks/{0rnvcu2blaow4.js → 15m2wfd5k_7fj.js} +1 -1
- package/web/.next/static/chunks/{turbopack-10upsk2jydmq4.js → turbopack-0ve8f54_veg.u.js} +1 -1
- package/web/.next/static/{CJ4Fr1ggL4xWEe_fapYLv → g_IbOz_ALo2NrP2vhGtKn}/_clientMiddlewareManifest.js +1 -1
- package/web/public/apple-touch-icon.png +0 -0
- package/web/public/favicon-32x32.png +0 -0
- package/web/public/icon-192.png +0 -0
- package/web/public/icon-512.png +0 -0
- package/web/public/icons/agents/openai.svg +1 -1
- package/web/public/shipit-brain.png +0 -0
- package/web/public/shipit-icon.svg +68 -0
- package/web/public/shipit-logo.png +0 -0
- package/dist/src/presentation/web/components/common/shipit-ai-logo/shep-logo.d.ts.map +0 -1
- package/dist/src/presentation/web/components/common/shipit-ai-logo/shep-logo.js +0 -5
- package/dist/src/presentation/web/components/common/shipit-ai-logo/shep-logo.stories.d.ts.map +0 -1
- package/dist/src/presentation/web/middleware.d.ts.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0.j0ktf._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0.j0ktf._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__07m44ax._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__07m44ax._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0frgz11._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0frgz11._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0oi7r67._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0oi7r67._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0pti1a3._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0pti1a3._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0s9k_s3._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0s9k_s3._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0v-vmgt._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0v-vmgt._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0yky~xo._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0yky~xo._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__11dc42t._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__11dc42t._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0__4si~._.js +0 -4
- package/web/.next/server/chunks/ssr/_0__4si~._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0_m17kl._.js +0 -4
- package/web/.next/server/chunks/ssr/_0_m17kl._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0d4miu.._.js +0 -4
- package/web/.next/server/chunks/ssr/_0d4miu.._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0e8ern9._.js +0 -4
- package/web/.next/server/chunks/ssr/_0e8ern9._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0hovej-._.js +0 -6
- package/web/.next/server/chunks/ssr/_0hovej-._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0p3zs6p._.js +0 -3
- package/web/.next/server/chunks/ssr/_0p3zs6p._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0qpq3xl._.js +0 -3
- package/web/.next/server/chunks/ssr/_0qpq3xl._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0r.3n~3._.js +0 -4
- package/web/.next/server/chunks/ssr/_0r.3n~3._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0t59q8r._.js +0 -4
- package/web/.next/server/chunks/ssr/_0t59q8r._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0zk-h5w._.js +0 -4
- package/web/.next/server/chunks/ssr/_0zk-h5w._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0~ev6dw._.js +0 -6
- package/web/.next/server/chunks/ssr/_0~ev6dw._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_1161g9x._.js +0 -4
- package/web/.next/server/chunks/ssr/_1161g9x._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js.map +0 -1
- package/web/.next/server/edge/chunks/0pax_next_dist_esm_build_templates_edge-wrapper_0atr6ca.js +0 -3
- package/web/.next/server/edge/chunks/11es_next_dist_esm_build_templates_edge-wrapper_0atr6ca.js.map +0 -1
- package/web/.next/server/edge/chunks/11es_next_dist_esm_build_templates_edge-wrapper_0xg0zx-.js +0 -3
- package/web/.next/server/edge/chunks/11es_next_dist_esm_build_templates_edge-wrapper_0xg0zx-.js.map +0 -1
- package/web/.next/server/edge/chunks/[root-of-the-server]__0m078x4._.js +0 -11
- package/web/.next/server/edge/chunks/[root-of-the-server]__0m078x4._.js.map +0 -1
- package/web/.next/static/chunks/0dr6q94jmx86b.css +0 -1
- package/web/.next/static/chunks/0in40lx7y7f8o.js +0 -1
- package/web/.next/static/chunks/0rv6fo9ui94r9.js +0 -1
- package/web/.next/static/chunks/0t82zfhqgor5r.js +0 -1
- package/web/.next/static/chunks/0whetjaoa5y.l.js +0 -3
- package/web/public/favicon-dark.svg +0 -6
- package/web/public/favicon-light.svg +0 -6
- /package/web/.next/static/{CJ4Fr1ggL4xWEe_fapYLv → g_IbOz_ALo2NrP2vhGtKn}/_buildManifest.js +0 -0
- /package/web/.next/static/{CJ4Fr1ggL4xWEe_fapYLv → g_IbOz_ALo2NrP2vhGtKn}/_ssgManifest.js +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
self.__RSC_SERVER_MANIFEST="{\n \"node\": {\n \"00c80a56d76d189cad00056dfe6f15d8a4ea866cc6\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\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\": 58863,\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\": 68671,\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\": 5357,\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\": 35539,\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\": 97423,\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\": 14937,\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\": 21171,\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\": 8197,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\",\n \"exportedName\": \"getAllAgentModels\"\n },\n \"60c24e79a65f71816281c05ccdc67a74381ccb271d\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\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\": 58863,\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\": 68671,\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\": 5357,\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\": 35539,\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\": 97423,\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\": 14937,\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\": 21171,\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\": 8197,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\",\n \"exportedName\": \"updateAgentAndModel\"\n },\n \"00566adbfed227bb01622e29eb03dde0f8058f2951\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 35539,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 97423,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 8197,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\",\n \"exportedName\": \"pickFolder\"\n },\n \"406bb484aa2ee3e6451ab5d70395753576158ffbe0\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\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\": 35539,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 97423,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 8197,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\",\n \"exportedName\": \"listGitHubRepositories\"\n },\n \"00ab2e306984fbfe11fa11ecf98fbd13cc8a8d87fc\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\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\": 35539,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 97423,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 8197,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\",\n \"exportedName\": \"listGitHubOrganizations\"\n },\n \"409180cd3de30ff54c5fbf25357ae09b139b828bde\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\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\": 35539,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 97423,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 8197,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\",\n \"exportedName\": \"importGitHubRepository\"\n },\n \"4055de7f63ae346239d72436a0a2ac5831b046abec\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\",\n \"exportedName\": \"deployFeature\"\n },\n \"407a3efc64255473b744b86906dca1d8dabfd7b539\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\",\n \"exportedName\": \"deployRepository\"\n },\n \"40f4debde51acb81cfaab44867c666529b892f3ab5\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\",\n \"exportedName\": \"stopDeployment\"\n },\n \"40af4bded9712ab861e45bb4927a6fb6c4e234ac3c\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\",\n \"exportedName\": \"getDeploymentStatus\"\n },\n \"4009bb066df82b47adcb57237f3f4e338726c11294\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\",\n \"exportedName\": \"openIde\"\n },\n \"407b7ef3bcae0730612ba3dd73081c19fc9c614bd6\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\",\n \"exportedName\": \"openShell\"\n },\n \"40e7a6cda217260e3b033ec160669d9eb291dfb7c6\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\",\n \"exportedName\": \"openFolder\"\n },\n \"4017024772e38a9b1e3fbbe9c98ab2b8ab488ed38d\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\",\n \"exportedName\": \"syncRepository\"\n },\n \"40394c5890ca63e6fc8243aff4686a4b2865c2ae5c\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\",\n \"exportedName\": \"getDeploymentLogs\"\n },\n \"00ad481cbbd153a47736e80f53e5d1c1faa69e9955\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 59190,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 66074,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 59044,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 29507,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 69809,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 62284,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 68671,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 5357,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\",\n \"exportedName\": \"isAgentSetupComplete\"\n },\n \"004238accf1cff3b56f229cfd001f808cedea6d3f9\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 59190,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 66074,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 59044,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 29507,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 69809,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 62284,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 68671,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 5357,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\",\n \"exportedName\": \"checkAgentAuth\"\n },\n \"00332c3de0c2b83676af966062491e766530baf88f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 59190,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 66074,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 59044,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 29507,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 69809,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 62284,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 68671,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 5357,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\",\n \"exportedName\": \"checkToolStatus\"\n },\n \"40912663fe1b22563821a2ee9c729fee2113e449e0\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\",\n \"exportedName\": \"getFeatureMetadata\"\n },\n \"40a7e21b413b195daf9970d2b0a98ad53152fab94e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\",\n \"exportedName\": \"archiveFeature\"\n },\n \"78aafb9ae6536f1a507608adf075663cec624ab537\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\",\n \"exportedName\": \"deleteFeature\"\n },\n \"40dac690e39ef6ecd7c15d9575e0a2e7677a7f5cba\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\",\n \"exportedName\": \"resumeFeature\"\n },\n \"400c0e3bb3fbbc0fe6583addbb29e545123ce568da\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\",\n \"exportedName\": \"startFeature\"\n },\n \"40e769d30d1c1a365e04449f5e6bd883d0da2796b5\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\",\n \"exportedName\": \"stopFeature\"\n },\n \"40121c69e3a9bb6ab96a1da716236c69223e53d274\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\",\n \"exportedName\": \"unarchiveFeature\"\n },\n \"40183536720a1fbb25a5eb2a2d8d4183286275d9e3\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\",\n \"exportedName\": \"addRepository\"\n },\n \"40dc01bdf627371ea3223be73078cb105b56df6b98\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\",\n \"exportedName\": \"deleteRepository\"\n },\n \"40941acb822b92b6b629ae5d2e57531a3a3cae9784\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\n \"async\": false,\n \"exportedName\": \"adoptBranch\",\n \"filename\": \"src/presentation/web/app/actions/adopt-branch.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/adopt-branch.ts\",\n \"exportedName\": \"adoptBranch\"\n },\n \"40afd0d96b36d5d9a3de7ac917d957badf3f21e340\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\n \"async\": false,\n \"exportedName\": \"listBranches\",\n \"filename\": \"src/presentation/web/app/actions/list-branches.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/list-branches.ts\",\n \"exportedName\": \"listBranches\"\n },\n \"002e355f7cc4087e4721fc0987d5c0b7c0d7a58e2a\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\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\": 37644,\n \"async\": false,\n \"exportedName\": \"getWorkflowDefaults\",\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\",\n \"exportedName\": \"getWorkflowDefaults\"\n },\n \"409f0d96e27b61bc387e0d2573fb24b2ae2b64eec4\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\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\": 37644,\n \"async\": false,\n \"exportedName\": \"getViewerPermission\",\n \"filename\": \"src/presentation/web/app/actions/get-viewer-permission.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-viewer-permission.ts\",\n \"exportedName\": \"getViewerPermission\"\n },\n \"40334965bad865df464de0583e49535e5c2f29a6bf\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\",\n \"exportedName\": \"createFeature\"\n },\n \"60beee6b59cc76aaf0ded0ecb94d050ef6a46ddce9\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\",\n \"exportedName\": \"approveFeature\"\n },\n \"700fd1f215bdd4f0589a9618ff599294b275fd2eb3\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\",\n \"exportedName\": \"rejectFeature\"\n },\n \"40c8b4ceaf7b066e4e64125bb5d8adf20592a4a7ba\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\",\n \"exportedName\": \"getFeatureArtifact\"\n },\n \"407ac9e5f693a0f86ecf284e26745a05f17426054b\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\",\n \"exportedName\": \"getResearchArtifact\"\n },\n \"4023ea4ea9599b4e28347ce046ed5ecf4878c59019\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\",\n \"exportedName\": \"getMergeReviewData\"\n },\n \"40e640338fe9f4f8f29098ebaa6cef99d863b59333\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getFeaturePhaseTimings\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\",\n \"exportedName\": \"getFeaturePhaseTimings\"\n },\n \"402ace00b46d978b0d3cca94a40e49b325643b2ef1\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getFeaturePlan\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\",\n \"exportedName\": \"getFeaturePlan\"\n },\n \"402236d2cab5e0074fd02ba809213c4d3d0e32ecf8\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"rebaseFeature\",\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\",\n \"exportedName\": \"rebaseFeature\"\n },\n \"4051f3ece9c2df090c830ad470622887f17dce1576\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getFeatureDrawerData\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\",\n \"exportedName\": \"getFeatureDrawerData\"\n },\n \"4069db35a515506fac388bc4e7062ba58bbe0fdfde\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getBranchSyncStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\",\n \"exportedName\": \"getBranchSyncStatus\"\n },\n \"607d121d851b1cb8fa1219b8087389b20ce360cb50\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 59044,\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\": 29507,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\",\n \"exportedName\": \"getGitRepoInfo\"\n },\n \"00eed94b04a3e30d9d06de89ddd4400697cd4cb21b\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 97423,\n \"async\": false,\n \"exportedName\": \"loadSettings\",\n \"filename\": \"src/presentation/web/app/actions/load-settings.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/load-settings.ts\",\n \"exportedName\": \"loadSettings\"\n },\n \"006f9adbdf3a44fe9da943430343e3e33310d26282\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 97423,\n \"async\": false,\n \"exportedName\": \"getAvailableTerminals\",\n \"filename\": \"src/presentation/web/app/actions/get-available-terminals.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-available-terminals.ts\",\n \"exportedName\": \"getAvailableTerminals\"\n },\n \"400e4e46405b9b45e7442f750b0ff21eded1528306\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 97423,\n \"async\": false,\n \"exportedName\": \"updateSettingsAction\",\n \"filename\": \"src/presentation/web/app/actions/update-settings.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/update-settings.ts\",\n \"exportedName\": \"updateSettingsAction\"\n }\n },\n \"edge\": {},\n \"encryptionKey\": \"Xtrz5ZTHIEqXCbXE+REq7sqj2hNe9iqPWghunJ39Ofc=\"\n}"
|
|
1
|
+
self.__RSC_SERVER_MANIFEST="{\n \"node\": {\n \"0063d960a1e4655e04c9527d3f0a97fc9dfaf90e25\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\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\": 58863,\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\": 68671,\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\": 5357,\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\": 35539,\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\": 87459,\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\": 14937,\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\": 21171,\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\": 8197,\n \"async\": false,\n \"exportedName\": \"getAllAgentModels\",\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-all-agent-models.ts\",\n \"exportedName\": \"getAllAgentModels\"\n },\n \"603f1c8b771ea07b92d719de27f8ff2db85705ce27\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\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\": 58863,\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\": 68671,\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\": 5357,\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\": 35539,\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\": 87459,\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\": 14937,\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\": 21171,\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\": 8197,\n \"async\": false,\n \"exportedName\": \"updateAgentAndModel\",\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/update-agent-and-model.ts\",\n \"exportedName\": \"updateAgentAndModel\"\n },\n \"00da9dd4653d294d92ba4a213413259db6c5b1dd3f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 35539,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 87459,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 8197,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\",\n \"exportedName\": \"pickFolder\"\n },\n \"404d39fe5caf186d1c0838e290bf736069e9c7a5e3\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\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\": 35539,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 87459,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 8197,\n \"async\": false,\n \"exportedName\": \"listGitHubRepositories\",\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/list-github-repositories.ts\",\n \"exportedName\": \"listGitHubRepositories\"\n },\n \"00c1ea9a6acbcccdb38c1dbf965df6cd90d181e8dc\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\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\": 35539,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 87459,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 8197,\n \"async\": false,\n \"exportedName\": \"listGitHubOrganizations\",\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/list-github-organizations.ts\",\n \"exportedName\": \"listGitHubOrganizations\"\n },\n \"40db7f449fd40f063c30a64cad52dedd38db6cc68a\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\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\": 35539,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 87459,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 8197,\n \"async\": false,\n \"exportedName\": \"importGitHubRepository\",\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/import-github-repository.ts\",\n \"exportedName\": \"importGitHubRepository\"\n },\n \"406c32a8dcec51d98ca7209989a96bcc211da43f1a\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\",\n \"exportedName\": \"deployFeature\"\n },\n \"400b67f4dbbbd6ec44a1f8fb15d9982d3af9cf2f3f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\",\n \"exportedName\": \"deployRepository\"\n },\n \"403e76cfc92b40504c0cc5f23a7a524c1e08a0f269\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\",\n \"exportedName\": \"stopDeployment\"\n },\n \"40338c79072aed58cfe9a0b65a452d5c9f6cf14ec8\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\",\n \"exportedName\": \"getDeploymentStatus\"\n },\n \"40f4a566f8ad38a7a04c7f8de1ba937e68b7b4d0b9\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\",\n \"exportedName\": \"openIde\"\n },\n \"40b5039e1d0456ca864aefdc86c6f151de5ea114bd\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\",\n \"exportedName\": \"openShell\"\n },\n \"4062c7773c7615ff725e24ff2c9c88cdaf65138292\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\",\n \"exportedName\": \"openFolder\"\n },\n \"409f5aed614351ffa3b83f2c1e50bc39b42a598206\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"syncRepository\",\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/sync-repository.ts\",\n \"exportedName\": \"syncRepository\"\n },\n \"40227625f5029cdced4c34de5751400c4dcfb84d25\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 14937,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 21171,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\",\n \"exportedName\": \"getDeploymentLogs\"\n },\n \"00419e0d1ade61c590d866570d346f425d76e1256c\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 59190,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 66074,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 59044,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 29507,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 69809,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 62284,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 68671,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 5357,\n \"async\": false,\n \"exportedName\": \"isAgentSetupComplete\",\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/agent-setup-flag.ts\",\n \"exportedName\": \"isAgentSetupComplete\"\n },\n \"00877403a672b3c071f5b3473952d8ff1328a6050e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 59190,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 66074,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 59044,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 29507,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 69809,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 62284,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 68671,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 5357,\n \"async\": false,\n \"exportedName\": \"checkAgentAuth\",\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/check-agent-auth.ts\",\n \"exportedName\": \"checkAgentAuth\"\n },\n \"00fc9496d19a60d5861389e9d11ad65eb7f5e70f85\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/chat/page\": {\n \"moduleId\": 59190,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 66074,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 59044,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 29507,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 69809,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 62284,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 68671,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 5357,\n \"async\": false,\n \"exportedName\": \"checkToolStatus\",\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/check-tool-status.ts\",\n \"exportedName\": \"checkToolStatus\"\n },\n \"40d95b431ae8f504e22a9503dc21155a443b1a5566\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\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\": 3391,\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\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\",\n \"exportedName\": \"getFeatureMetadata\"\n },\n \"40ec2622c929f3c2b28cb9832fca5958185aba7f79\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"archiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/archive-feature.ts\",\n \"exportedName\": \"archiveFeature\"\n },\n \"78bdcef2bb0d67a6f7df636a86c616532d8ee45031\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\",\n \"exportedName\": \"deleteFeature\"\n },\n \"40adcbc49975d3124cda4580941fb7b21d1caacdc5\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"resumeFeature\",\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/resume-feature.ts\",\n \"exportedName\": \"resumeFeature\"\n },\n \"40b391b7606e291b56829fe45341f598904cdd3bf6\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"startFeature\",\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/start-feature.ts\",\n \"exportedName\": \"startFeature\"\n },\n \"40b705572a498acdf4d32739f8e727cac6cbac911c\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"stopFeature\",\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/stop-feature.ts\",\n \"exportedName\": \"stopFeature\"\n },\n \"405442f1421a5ad4ea3d493ba4219739c81ca344ed\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"unarchiveFeature\",\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/unarchive-feature.ts\",\n \"exportedName\": \"unarchiveFeature\"\n },\n \"40a176148d42295602ba233f835c63b7da5df8e4bd\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\",\n \"exportedName\": \"addRepository\"\n },\n \"402dde29c47e8f11112d47bcd28f2424991b64c39a\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\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\": 59190,\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\": 71100,\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\": 23461,\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\": 66074,\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\": 59044,\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\": 29507,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/chat/page\": {\n \"moduleId\": 3391,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 58863,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\",\n \"exportedName\": \"deleteRepository\"\n },\n \"40ade405f5a04f4e00082946d25292d5d552f6c5f6\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\n \"async\": false,\n \"exportedName\": \"adoptBranch\",\n \"filename\": \"src/presentation/web/app/actions/adopt-branch.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/adopt-branch.ts\",\n \"exportedName\": \"adoptBranch\"\n },\n \"4094527e453a8b21b45b084d78a8d5a9e1444034f3\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/adopt/page\": {\n \"moduleId\": 81306,\n \"async\": false,\n \"exportedName\": \"listBranches\",\n \"filename\": \"src/presentation/web/app/actions/list-branches.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/list-branches.ts\",\n \"exportedName\": \"listBranches\"\n },\n \"00bc1bb098f36a8595e2e8a436429a173d7f9d4c5f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\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\": 37644,\n \"async\": false,\n \"exportedName\": \"getWorkflowDefaults\",\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\",\n \"exportedName\": \"getWorkflowDefaults\"\n },\n \"4002062177d6c16608b0f1c195af4d8e64058f0cbd\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\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\": 37644,\n \"async\": false,\n \"exportedName\": \"getViewerPermission\",\n \"filename\": \"src/presentation/web/app/actions/get-viewer-permission.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-viewer-permission.ts\",\n \"exportedName\": \"getViewerPermission\"\n },\n \"40c893afec92786b20a6a32cd02eccf54d0142c269\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 71100,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 37644,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\",\n \"exportedName\": \"createFeature\"\n },\n \"6029f8b6d23f8132883b5d06359404622e80b9c4e6\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\",\n \"exportedName\": \"approveFeature\"\n },\n \"705bd12fe97b460a753aa6e0001af46b8a6d64c519\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\",\n \"exportedName\": \"rejectFeature\"\n },\n \"40bc2c94ebda8e4aa48fb8b25afde037b3b0ade43b\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\",\n \"exportedName\": \"getFeatureArtifact\"\n },\n \"40b840ffdc8115d148ff20edddd4f6acbffc831684\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\",\n \"exportedName\": \"getResearchArtifact\"\n },\n \"40ecb8112694361dd2668f9d0017daaf4bde3f2c22\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\",\n \"exportedName\": \"getMergeReviewData\"\n },\n \"403f06e9b71506004beef851c88305f0ee8a298c07\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getFeaturePhaseTimings\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-phase-timings.ts\",\n \"exportedName\": \"getFeaturePhaseTimings\"\n },\n \"40403759ffdd40307b6781908de8ea4d4ad4e0ad71\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getFeaturePlan\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-plan.ts\",\n \"exportedName\": \"getFeaturePlan\"\n },\n \"40a20ea6a4ee1a7cb783bf875b04a54ed6f4c4c299\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"rebaseFeature\",\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/rebase-feature.ts\",\n \"exportedName\": \"rebaseFeature\"\n },\n \"4064e23416dcb72c564b37c9ed965c9f2a91bc91e8\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getFeatureDrawerData\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-drawer-data.ts\",\n \"exportedName\": \"getFeatureDrawerData\"\n },\n \"4055f0e870fb5c2676fba7f116a776c11c52bc7e65\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/[tab]/page\": {\n \"moduleId\": 23461,\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\": 66074,\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\": 69809,\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\": 62284,\n \"async\": false,\n \"exportedName\": \"getBranchSyncStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-branch-sync-status.ts\",\n \"exportedName\": \"getBranchSyncStatus\"\n },\n \"60cb86542292a35b2b87394613ecf9308457d22e18\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page\": {\n \"moduleId\": 59044,\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\": 29507,\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\": 68671,\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\": 5357,\n \"async\": false,\n \"exportedName\": \"getGitRepoInfo\",\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-git-log.ts\",\n \"exportedName\": \"getGitRepoInfo\"\n },\n \"00b001d71c7906b9c629a5bc2f20a5e005af49987a\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 87459,\n \"async\": false,\n \"exportedName\": \"loadSettings\",\n \"filename\": \"src/presentation/web/app/actions/load-settings.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/load-settings.ts\",\n \"exportedName\": \"loadSettings\"\n },\n \"00e19d43ffb7af76a9f5bfc46b4c9bba46739dfa1c\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 87459,\n \"async\": false,\n \"exportedName\": \"getAvailableTerminals\",\n \"filename\": \"src/presentation/web/app/actions/get-available-terminals.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-available-terminals.ts\",\n \"exportedName\": \"getAvailableTerminals\"\n },\n \"009142331ef802acb5a003a3c4461cd59de448fc95\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 87459,\n \"async\": false,\n \"exportedName\": \"getAvailableEditors\",\n \"filename\": \"src/presentation/web/app/actions/get-available-editors.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-available-editors.ts\",\n \"exportedName\": \"getAvailableEditors\"\n },\n \"00917f00cfbd7b30007603baf3963c8e6283a3c119\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 87459,\n \"async\": false,\n \"exportedName\": \"getAvailableShells\",\n \"filename\": \"src/presentation/web/app/actions/get-available-shells.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/get-available-shells.ts\",\n \"exportedName\": \"getAvailableShells\"\n },\n \"40ac62df18fefaf45654859ee8fe625323489f3b10\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 87459,\n \"async\": false,\n \"exportedName\": \"updateSettingsAction\",\n \"filename\": \"src/presentation/web/app/actions/update-settings.ts\"\n }\n },\n \"filename\": \"src/presentation/web/app/actions/update-settings.ts\",\n \"exportedName\": \"updateSettingsAction\"\n }\n },\n \"edge\": {},\n \"encryptionKey\": \"xPpECPaqCbF3ytyDPmV+kwbHZvTL0obYAnWQrgndNyY=\"\n}"
|