@shipit-ai/cli 1.166.2 → 1.167.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -5
- package/apis/json-schema/AgentConfig.yaml +3 -0
- package/apis/json-schema/AgentPermissionSettings.yaml +23 -0
- package/apis/json-schema/AgentType.yaml +0 -1
- package/apis/json-schema/ClaudeCodePermissionMode.yaml +9 -0
- package/apis/json-schema/CodexPermissionMode.yaml +8 -0
- package/apis/json-schema/CopilotPermissionMode.yaml +8 -0
- package/apis/json-schema/CursorPermissionMode.yaml +7 -0
- package/apis/json-schema/Feature.yaml +3 -0
- package/apis/json-schema/GeminiPermissionMode.yaml +8 -0
- package/apis/json-schema/RovoDevPermissionMode.yaml +8 -0
- package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts +8 -0
- package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +1 -0
- package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -1
- package/dist/packages/core/src/application/ports/output/agents/interactive-agent-executor.interface.d.ts +3 -0
- package/dist/packages/core/src/application/ports/output/agents/interactive-agent-executor.interface.d.ts.map +1 -1
- 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/settings-reader.interface.d.ts +13 -0
- package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.d.ts.map +1 -0
- package/dist/packages/core/src/application/ports/output/services/settings-reader.interface.js +1 -0
- package/dist/packages/core/src/application/use-cases/agents/configure-agent.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/agents/configure-agent.use-case.js +4 -6
- package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +1 -0
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +2 -0
- package/dist/packages/core/src/application/use-cases/features/create/types.d.ts +2 -0
- package/dist/packages/core/src/application/use-cases/features/create/types.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +1 -0
- package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +1 -0
- package/dist/packages/core/src/application/use-cases/settings/complete-onboarding.use-case.d.ts +2 -0
- package/dist/packages/core/src/application/use-cases/settings/complete-onboarding.use-case.d.ts.map +1 -1
- package/dist/packages/core/src/application/use-cases/settings/complete-onboarding.use-case.js +23 -0
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +9 -1
- package/dist/packages/core/src/domain/generated/output.d.ts +68 -2
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/domain/generated/output.js +36 -1
- package/dist/packages/core/src/infrastructure/di/modules/agents.module.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/modules/agents.module.js +4 -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/persistence/sqlite/mappers/feature.mapper.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.js +4 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +6 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +31 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-agent-permission-modes.d.ts +21 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-agent-permission-modes.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-agent-permission-modes.js +35 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-feature-permission-mode.d.ts +14 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-feature-permission-mode.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-feature-permission-mode.js +19 -0
- package/dist/packages/core/src/infrastructure/services/agents/analyze-repo/analyze-repository-graph.d.ts +3 -1
- package/dist/packages/core/src/infrastructure/services/agents/analyze-repo/analyze-repository-graph.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/analyze-repo/analyze-repository-graph.js +18 -7
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.js +1 -6
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-permissions.d.ts +21 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-permissions.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-permissions.js +49 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-runner.service.d.ts +3 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-runner.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-runner.service.js +4 -3
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-validator.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/agent-validator.service.js +0 -3
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +11 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-interactive-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-interactive-executor.service.js +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/codex-cli-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/codex-cli-executor.service.js +4 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.js +11 -4
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/cursor-executor.service.js +11 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/gemini-cli-executor.service.js +2 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/rovo-dev-executor.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/rovo-dev-executor.service.js +11 -4
- package/dist/packages/core/src/infrastructure/services/agents/common/structured-agent-caller.service.d.ts +3 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/structured-agent-caller.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/structured-agent-caller.service.js +13 -6
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts +3 -1
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.js +12 -3
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +5 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +18 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +3 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +8 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/evidence.node.d.ts +3 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/evidence.node.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/evidence.node.js +3 -2
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/ci-watch-fix-loop.d.ts +3 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/ci-watch-fix-loop.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/ci-watch-fix-loop.js +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.d.ts +3 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/merge/merge.node.js +2 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts +11 -3
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +20 -5
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/repair.node.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/repair.node.js +6 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.js +4 -0
- package/dist/packages/core/src/infrastructure/services/settings-reader.service.d.ts +7 -0
- package/dist/packages/core/src/infrastructure/services/settings-reader.service.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/settings-reader.service.js +25 -0
- package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/new.command.js +18 -0
- package/dist/src/presentation/cli/commands/feat/show.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/show.command.js +2 -1
- package/dist/src/presentation/cli/commands/settings/agent.command.js +2 -2
- package/dist/src/presentation/cli/commands/settings/index.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/settings/index.js +3 -1
- package/dist/src/presentation/cli/commands/settings/permission-modes.d.ts +19 -0
- package/dist/src/presentation/cli/commands/settings/permission-modes.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/settings/permission-modes.js +38 -0
- package/dist/src/presentation/cli/commands/settings/permissions.command.d.ts +16 -0
- package/dist/src/presentation/cli/commands/settings/permissions.command.d.ts.map +1 -0
- package/dist/src/presentation/cli/commands/settings/permissions.command.js +147 -0
- package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts +4 -10
- package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts.map +1 -1
- package/dist/src/presentation/tui/prompts/agent-select.prompt.js +8 -13
- package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.d.ts +5 -3
- package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.d.ts.map +1 -1
- package/dist/src/presentation/tui/wizards/onboarding/onboarding.wizard.js +10 -5
- package/dist/src/presentation/tui/wizards/onboarding/steps/agent-permissions.step.d.ts +17 -0
- package/dist/src/presentation/tui/wizards/onboarding/steps/agent-permissions.step.d.ts.map +1 -0
- package/dist/src/presentation/tui/wizards/onboarding/steps/agent-permissions.step.js +48 -0
- package/dist/src/presentation/tui/wizards/onboarding/types.d.ts +2 -0
- package/dist/src/presentation/tui/wizards/onboarding/types.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/agent-permissions.d.ts +14 -0
- package/dist/src/presentation/web/app/actions/agent-permissions.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/agent-permissions.js +181 -0
- 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 +2 -5
- package/dist/src/presentation/web/app/actions/check-agent-tool.js +1 -1
- 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 +2 -17
- package/dist/src/presentation/web/app/actions/get-merge-review-data.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/get-merge-review-data.js +1 -0
- package/dist/src/presentation/web/app/actions/open-shell.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/open-shell.js +1 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/types.d.ts +2 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/types.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/use-feature-create-form.d.ts +2 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/use-feature-create-form.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/use-feature-create-form.js +6 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/workflow-options-section.d.ts +7 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/workflow-options-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/workflow-options-section.js +24 -3
- package/dist/src/presentation/web/components/common/feature-create-drawer/workflow-options-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/workflow-options-section.stories.js +3 -0
- package/dist/src/presentation/web/components/common/feature-list-item/feature-list-item.stories.js +2 -2
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts +2 -2
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.js +4 -11
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.d.ts +1 -1
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.js +5 -6
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +2 -0
- package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-node/feature-node.js +2 -2
- package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.js +10 -10
- package/dist/src/presentation/web/components/features/control-center/control-center.stories.js +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.js +2 -2
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.d.ts +1 -1
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.js +3 -3
- package/dist/src/presentation/web/components/features/settings/agent-permission-picker.d.ts +8 -0
- package/dist/src/presentation/web/components/features/settings/agent-permission-picker.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/agent-permission-picker.js +33 -0
- package/dist/src/presentation/web/components/features/settings/agent-permission-picker.stories.d.ts +15 -0
- package/dist/src/presentation/web/components/features/settings/agent-permission-picker.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/agent-permission-picker.stories.js +75 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +32 -4
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +1 -1
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +2 -2
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +2 -2
- package/dist/src/presentation/web/lib/path-sanitizers.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/path-sanitizers.js +1 -0
- package/dist/translations/ar/cli.json +16 -0
- package/dist/translations/ar/tui.json +12 -10
- package/dist/translations/ar/web.json +15 -0
- package/dist/translations/de/cli.json +16 -0
- package/dist/translations/de/tui.json +13 -5
- package/dist/translations/de/web.json +15 -0
- package/dist/translations/en/cli.json +16 -0
- package/dist/translations/en/tui.json +12 -10
- package/dist/translations/en/web.json +15 -0
- package/dist/translations/es/cli.json +16 -0
- package/dist/translations/es/tui.json +12 -10
- package/dist/translations/es/web.json +15 -0
- package/dist/translations/fr/cli.json +16 -0
- package/dist/translations/fr/tui.json +12 -10
- package/dist/translations/fr/web.json +15 -0
- package/dist/translations/he/cli.json +16 -0
- package/dist/translations/he/tui.json +12 -10
- package/dist/translations/he/web.json +15 -0
- package/dist/translations/pt/cli.json +16 -0
- package/dist/translations/pt/tui.json +12 -10
- package/dist/translations/pt/web.json +15 -0
- package/dist/translations/ru/cli.json +16 -0
- package/dist/translations/ru/tui.json +12 -10
- package/dist/translations/ru/web.json +15 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/build-manifest.json +3 -3
- package/web/.next/fallback-build-manifest.json +3 -3
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +2 -2
- package/web/.next/required-server-files.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 -3
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +2 -3
- package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +72 -60
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js +3 -3
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +3 -4
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +3 -4
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +2 -3
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +2 -3
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/chat/page.js +2 -3
- package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +72 -60
- package/web/.next/server/app/(dashboard)/create/page.js +3 -3
- package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +3 -4
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +37 -37
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +3 -4
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
- package/web/.next/server/app/(dashboard)/page.js +2 -3
- package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +2 -3
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +2 -3
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/_global-error.html +1 -1
- package/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/_not-found/page.js +2 -3
- package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
- package/web/.next/server/app/api/dialog/pick-files/route.js.nft.json +1 -1
- package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
- package/web/.next/server/app/api/graph-data/route.js.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/server-reference-manifest.json +11 -11
- package/web/.next/server/app/settings/page.js +3 -4
- package/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/skills/page.js +3 -3
- package/web/.next/server/app/skills/page.js.nft.json +1 -1
- package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
- package/web/.next/server/app/tools/page.js +3 -3
- package/web/.next/server/app/tools/page.js.nft.json +1 -1
- package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/version/page.js +2 -3
- 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/11es_next_dist_esm_build_templates_app-route_067cwst.js +1 -1
- package/web/.next/server/chunks/11es_next_dist_esm_build_templates_app-route_067cwst.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__0_-chcy._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__0e9p7em._.js.map +1 -1
- package/web/.next/server/chunks/[root-of-the-server]__0tb~wwk._.js +1 -1
- 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/{_01mq~sm._.js → 11es_next_0q-kz~8._.js} +2 -2
- package/web/.next/server/chunks/ssr/11es_next_0q-kz~8._.js.map +1 -0
- package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js +1 -1
- package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__02.89uf._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__02.89uf._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__04rq9lr._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__04rq9lr._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0c0xoi_._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0c0xoi_._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0r5zhk.._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0r5zhk.._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0rv1gci._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0rvrr1j._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0rvrr1j._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0tq2syh._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0tq2syh._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0uy_5rw._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0uy_5rw._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_00k65h-._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_01sesw0._.js +1 -1
- package/web/.next/server/chunks/ssr/_01sesw0._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_069y.js._.js +6 -0
- package/web/.next/server/chunks/ssr/_069y.js._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0__4si~._.js +4 -0
- package/web/.next/server/chunks/ssr/_0__4si~._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0_m17kl._.js +4 -0
- package/web/.next/server/chunks/ssr/_0_m17kl._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0d4miu.._.js +4 -0
- package/web/.next/server/chunks/ssr/_0d4miu.._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0e8ern9._.js +4 -0
- package/web/.next/server/chunks/ssr/_0e8ern9._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_04rrcmm._.js → _0l10ccg._.js} +2 -2
- package/web/.next/server/chunks/ssr/_0l10ccg._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0mo6j.n._.js +3 -0
- package/web/.next/server/chunks/ssr/_0mo6j.n._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{_0c497sr._.js → _0mvhe_2._.js} +2 -2
- package/web/.next/server/chunks/ssr/{_0c497sr._.js.map → _0mvhe_2._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/{_109n-y4._.js → _0n.magx._.js} +2 -2
- package/web/.next/server/chunks/ssr/_0n.magx._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0p3~u8u._.js +6 -0
- package/web/.next/server/chunks/ssr/_0p3~u8u._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0r.3n~3._.js +4 -0
- package/web/.next/server/chunks/ssr/_0r.3n~3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0t59q8r._.js +4 -0
- package/web/.next/server/chunks/ssr/_0t59q8r._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0tcccbb._.js +3 -0
- package/web/.next/server/chunks/ssr/_0tcccbb._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0vyfc4b._.js +1 -1
- package/web/.next/server/chunks/ssr/_0vyfc4b._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0w-_hww._.js +1 -1
- package/web/.next/server/chunks/ssr/_0w-_hww._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_0zk-h5w._.js +4 -0
- package/web/.next/server/chunks/ssr/_0zk-h5w._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_0~7lwu_._.js +1 -1
- package/web/.next/server/chunks/ssr/_0~7lwu_._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_1161g9x._.js +4 -0
- package/web/.next/server/chunks/ssr/_1161g9x._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_0pjb_re._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_0pjb_re._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.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/middleware-build-manifest.js +3 -3
- 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 +127 -109
- package/web/.next/static/chunks/{0ex35-_jtxyjc.js → 0.8ue6wwr7ni~.js} +1 -1
- package/web/.next/static/chunks/{0t_6hx6ul7umb.js → 028x3z97mchhz.js} +1 -1
- package/web/.next/static/chunks/044f5piy5pt5t.js +1 -0
- package/web/.next/static/chunks/04~sw.nhpwy6s.css +1 -0
- package/web/.next/static/chunks/05enics63g._-.js +7 -0
- package/web/.next/static/chunks/0_.x~txb5da7d.js +1 -0
- package/web/.next/static/chunks/0_9k2ybutuphq.js +1 -0
- package/web/.next/static/chunks/{07gx-h_y91lay.js → 0hti2r43x0~b7.js} +2 -2
- package/web/.next/static/chunks/0jo5-_q.1n69j.js +1 -0
- package/web/.next/static/chunks/{0oq-cvtg8rjjp.js → 0n3u~4ytndfyd.js} +1 -1
- package/web/.next/static/chunks/{0whez3wju~9ok.js → 0pyz97q7eg0jz.js} +1 -1
- package/web/.next/static/chunks/0qqe9hx_txhso.js +1 -0
- package/web/.next/static/chunks/{04xk1iouwcfcq.js → 0vx7ldqj8436q.js} +3 -3
- package/web/.next/static/chunks/11~m1ei9bh269.js +3 -0
- package/web/.next/static/chunks/{0c_bi0dck80dt.js → 13w6ziae82sjy.js} +1 -1
- package/web/.next/static/chunks/16.83v.xq8bn9.js +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.d.ts +0 -12
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/dev-executor.service.js +0 -233
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/plan.fixture.d.ts +0 -8
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/plan.fixture.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/plan.fixture.js +0 -94
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/research.fixture.d.ts +0 -8
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/research.fixture.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/research.fixture.js +0 -140
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-analyze.fixture.d.ts +0 -8
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-analyze.fixture.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-analyze.fixture.js +0 -81
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-requirements.fixture.d.ts +0 -8
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-requirements.fixture.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/spec-requirements.fixture.js +0 -131
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/tasks.fixture.d.ts +0 -6
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/tasks.fixture.d.ts.map +0 -1
- package/dist/packages/core/src/infrastructure/services/agents/common/executors/fixtures/tasks.fixture.js +0 -146
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_00~eq5i.js +0 -3
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_00~eq5i.js.map +0 -1
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_0979_c..js +0 -3
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_0979_c..js.map +0 -1
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_chat_page_actions_0dqll_1.js +0 -3
- package/web/.next/server/chunks/ssr/0j.8_web__next-internal_server_app_(dashboard)_chat_page_actions_0dqll_1.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__04nnbmc._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__04nnbmc._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__07740t6._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__07740t6._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0l~puw4._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0l~puw4._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0o3qggc._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0o3qggc._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0vwjc_m._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0vwjc_m._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0w4__yd._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0w4__yd._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0.rsra~._.js +0 -3
- package/web/.next/server/chunks/ssr/_0.rsra~._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_01mq~sm._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_04rrcmm._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0c741v_._.js +0 -3
- package/web/.next/server/chunks/ssr/_0c741v_._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0jpbsh_._.js +0 -4
- package/web/.next/server/chunks/ssr/_0jpbsh_._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_109n-y4._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_0.e4~xc._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_0.e4~xc._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_00dvh.m._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_00dvh.m._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_06b6~lt._.js +0 -5
- package/web/.next/server/chunks/ssr/src_presentation_web_06b6~lt._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_08fy2mf._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_08fy2mf._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_0f~udu1._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_0f~udu1._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_0qys821._.js +0 -5
- package/web/.next/server/chunks/ssr/src_presentation_web_0qys821._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_0q~dt0o._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_0q~dt0o._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_11jrkxt._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_11jrkxt._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_1199d3x.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_1199d3x.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app__not-found_page_actions_0m2jqxx.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app__not-found_page_actions_0m2jqxx.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_version_page_actions_0krkh_0.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_version_page_actions_0krkh_0.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_load-settings_ts_0b8f3pf._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_load-settings_ts_0b8f3pf._.js.map +0 -1
- package/web/.next/static/chunks/0-fy~80ui.5os.js +0 -7
- package/web/.next/static/chunks/039ic1ygq-to3.js +0 -1
- package/web/.next/static/chunks/07a4jt64wdipb.js +0 -1
- package/web/.next/static/chunks/0_imq4rg3q.fe.js +0 -3
- package/web/.next/static/chunks/0i084mozx131g.js +0 -1
- package/web/.next/static/chunks/0j_0i2qsrwh-c.js +0 -1
- package/web/.next/static/chunks/0k~55i.ofbdeb.js +0 -1
- package/web/.next/static/chunks/0r5dju6f1-i38.css +0 -1
- /package/web/.next/static/{ynyh_sSxbFA995FRvBUxs → ksBer6au8b_fS1_7dCF2D}/_buildManifest.js +0 -0
- /package/web/.next/static/{ynyh_sSxbFA995FRvBUxs → ksBer6au8b_fS1_7dCF2D}/_clientMiddlewareManifest.js +0 -0
- /package/web/.next/static/{ynyh_sSxbFA995FRvBUxs → ksBer6au8b_fS1_7dCF2D}/_ssgManifest.js +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"node": {
|
|
3
|
-
"
|
|
3
|
+
"008ce18bbda9c7412fffc41b75c43de60653419e0a": {
|
|
4
4
|
"workers": {
|
|
5
5
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
6
6
|
"moduleId": 66074,
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"exportedName": "getAllAgentModels",
|
|
13
13
|
"filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
|
|
14
14
|
},
|
|
15
|
-
"
|
|
15
|
+
"6067d9a8e9d5381ddc72d36b9e1b2d5bb81e590332": {
|
|
16
16
|
"workers": {
|
|
17
17
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
18
18
|
"moduleId": 66074,
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"exportedName": "updateAgentAndModel",
|
|
25
25
|
"filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
|
|
26
26
|
},
|
|
27
|
-
"
|
|
27
|
+
"004de4fda584a02e277917c9349954f44a58de45eb": {
|
|
28
28
|
"workers": {
|
|
29
29
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
30
30
|
"moduleId": 66074,
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"exportedName": "pickFolder",
|
|
37
37
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
38
38
|
},
|
|
39
|
-
"
|
|
39
|
+
"406ef602db02799b9b6c3442b43ec50a1cd09d3aa4": {
|
|
40
40
|
"workers": {
|
|
41
41
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
42
42
|
"moduleId": 66074,
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"exportedName": "listGitHubRepositories",
|
|
49
49
|
"filename": "src/presentation/web/app/actions/list-github-repositories.ts"
|
|
50
50
|
},
|
|
51
|
-
"
|
|
51
|
+
"005f4720bf7809c441ab19451925dc911694a8adda": {
|
|
52
52
|
"workers": {
|
|
53
53
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
54
54
|
"moduleId": 66074,
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"exportedName": "listGitHubOrganizations",
|
|
61
61
|
"filename": "src/presentation/web/app/actions/list-github-organizations.ts"
|
|
62
62
|
},
|
|
63
|
-
"
|
|
63
|
+
"4058f2edfeb0b27058984e2422f10b650e4dd327b4": {
|
|
64
64
|
"workers": {
|
|
65
65
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
66
66
|
"moduleId": 66074,
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"exportedName": "importGitHubRepository",
|
|
73
73
|
"filename": "src/presentation/web/app/actions/import-github-repository.ts"
|
|
74
74
|
},
|
|
75
|
-
"
|
|
75
|
+
"403679fe473b04dad87fe7b595b568cdf34d7bfb06": {
|
|
76
76
|
"workers": {
|
|
77
77
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
78
78
|
"moduleId": 66074,
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"exportedName": "deployFeature",
|
|
85
85
|
"filename": "src/presentation/web/app/actions/deploy-feature.ts"
|
|
86
86
|
},
|
|
87
|
-
"
|
|
87
|
+
"40bbdb93867cf0394e993a1f4c7659cf9344c64626": {
|
|
88
88
|
"workers": {
|
|
89
89
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
90
90
|
"moduleId": 66074,
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"exportedName": "deployRepository",
|
|
97
97
|
"filename": "src/presentation/web/app/actions/deploy-repository.ts"
|
|
98
98
|
},
|
|
99
|
-
"
|
|
99
|
+
"40a4d19d85138d750b04333a048ce0d676799fded1": {
|
|
100
100
|
"workers": {
|
|
101
101
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
102
102
|
"moduleId": 66074,
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"exportedName": "stopDeployment",
|
|
109
109
|
"filename": "src/presentation/web/app/actions/stop-deployment.ts"
|
|
110
110
|
},
|
|
111
|
-
"
|
|
111
|
+
"40eb2ac6acaadfed265f0ce3321efa21497f51ee72": {
|
|
112
112
|
"workers": {
|
|
113
113
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
114
114
|
"moduleId": 66074,
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"exportedName": "getDeploymentStatus",
|
|
121
121
|
"filename": "src/presentation/web/app/actions/get-deployment-status.ts"
|
|
122
122
|
},
|
|
123
|
-
"
|
|
123
|
+
"406200bc33303d89c7f39df3bb8c58c26e1d85ae52": {
|
|
124
124
|
"workers": {
|
|
125
125
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
126
126
|
"moduleId": 66074,
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"exportedName": "openIde",
|
|
133
133
|
"filename": "src/presentation/web/app/actions/open-ide.ts"
|
|
134
134
|
},
|
|
135
|
-
"
|
|
135
|
+
"40c2c951f6069918d86857a69d6a55f292e6c135be": {
|
|
136
136
|
"workers": {
|
|
137
137
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
138
138
|
"moduleId": 66074,
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
"exportedName": "openShell",
|
|
145
145
|
"filename": "src/presentation/web/app/actions/open-shell.ts"
|
|
146
146
|
},
|
|
147
|
-
"
|
|
147
|
+
"40c4812d1dbf61898d651d075dfd8889982346755c": {
|
|
148
148
|
"workers": {
|
|
149
149
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
150
150
|
"moduleId": 66074,
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
"exportedName": "openFolder",
|
|
157
157
|
"filename": "src/presentation/web/app/actions/open-folder.ts"
|
|
158
158
|
},
|
|
159
|
-
"
|
|
159
|
+
"406bf76e8db063f415f5e5171ef44feeda03b67605": {
|
|
160
160
|
"workers": {
|
|
161
161
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
162
162
|
"moduleId": 66074,
|
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
"exportedName": "syncRepository",
|
|
169
169
|
"filename": "src/presentation/web/app/actions/sync-repository.ts"
|
|
170
170
|
},
|
|
171
|
-
"
|
|
171
|
+
"408708e272a16c8be061967b1b65c610967f4e632e": {
|
|
172
172
|
"workers": {
|
|
173
173
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
174
174
|
"moduleId": 66074,
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"exportedName": "getDeploymentLogs",
|
|
181
181
|
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
|
|
182
182
|
},
|
|
183
|
-
"
|
|
183
|
+
"003b2159fc0e74102bb26ef2e2983979a6e170a0eb": {
|
|
184
184
|
"workers": {
|
|
185
185
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
186
186
|
"moduleId": 66074,
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"exportedName": "isAgentSetupComplete",
|
|
193
193
|
"filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
|
|
194
194
|
},
|
|
195
|
-
"
|
|
195
|
+
"0031d547f4fb87d72e5380fa89619b9e60c7dfa04a": {
|
|
196
196
|
"workers": {
|
|
197
197
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
198
198
|
"moduleId": 66074,
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
"exportedName": "checkAgentAuth",
|
|
205
205
|
"filename": "src/presentation/web/app/actions/check-agent-auth.ts"
|
|
206
206
|
},
|
|
207
|
-
"
|
|
207
|
+
"008145894bde4c0e8dd84d8f4599b25dbaa540253e": {
|
|
208
208
|
"workers": {
|
|
209
209
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
210
210
|
"moduleId": 66074,
|
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
"exportedName": "checkToolStatus",
|
|
217
217
|
"filename": "src/presentation/web/app/actions/check-tool-status.ts"
|
|
218
218
|
},
|
|
219
|
-
"
|
|
219
|
+
"4025aff900cd2432ae1f2983de9625fcaedfadeabb": {
|
|
220
220
|
"workers": {
|
|
221
221
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
222
222
|
"moduleId": 66074,
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
"exportedName": "getFeatureMetadata",
|
|
229
229
|
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
|
|
230
230
|
},
|
|
231
|
-
"
|
|
231
|
+
"408dca1dbffec5546433bf95369b9347e09869f79b": {
|
|
232
232
|
"workers": {
|
|
233
233
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
234
234
|
"moduleId": 66074,
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
"exportedName": "archiveFeature",
|
|
241
241
|
"filename": "src/presentation/web/app/actions/archive-feature.ts"
|
|
242
242
|
},
|
|
243
|
-
"
|
|
243
|
+
"784801204861ed6b6c74da98eb31e73c6c9f501ef9": {
|
|
244
244
|
"workers": {
|
|
245
245
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
246
246
|
"moduleId": 66074,
|
|
@@ -252,7 +252,7 @@
|
|
|
252
252
|
"exportedName": "deleteFeature",
|
|
253
253
|
"filename": "src/presentation/web/app/actions/delete-feature.ts"
|
|
254
254
|
},
|
|
255
|
-
"
|
|
255
|
+
"400762dc9490041f0fc8336c7d5a1bf9ca8c4fb1ab": {
|
|
256
256
|
"workers": {
|
|
257
257
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
258
258
|
"moduleId": 66074,
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
"exportedName": "resumeFeature",
|
|
265
265
|
"filename": "src/presentation/web/app/actions/resume-feature.ts"
|
|
266
266
|
},
|
|
267
|
-
"
|
|
267
|
+
"40e19001794111366feba1f8d3034693fcfb4d8e25": {
|
|
268
268
|
"workers": {
|
|
269
269
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
270
270
|
"moduleId": 66074,
|
|
@@ -276,7 +276,7 @@
|
|
|
276
276
|
"exportedName": "startFeature",
|
|
277
277
|
"filename": "src/presentation/web/app/actions/start-feature.ts"
|
|
278
278
|
},
|
|
279
|
-
"
|
|
279
|
+
"40e822283efc982ea0216cecdda5e61adc555531c6": {
|
|
280
280
|
"workers": {
|
|
281
281
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
282
282
|
"moduleId": 66074,
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
"exportedName": "stopFeature",
|
|
289
289
|
"filename": "src/presentation/web/app/actions/stop-feature.ts"
|
|
290
290
|
},
|
|
291
|
-
"
|
|
291
|
+
"40d337c1b8c987d8a0b0506c7a636b5892a719b4ad": {
|
|
292
292
|
"workers": {
|
|
293
293
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
294
294
|
"moduleId": 66074,
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
"exportedName": "unarchiveFeature",
|
|
301
301
|
"filename": "src/presentation/web/app/actions/unarchive-feature.ts"
|
|
302
302
|
},
|
|
303
|
-
"
|
|
303
|
+
"40a1cbbd8ffad793e366e622b75915cf7d54b08a08": {
|
|
304
304
|
"workers": {
|
|
305
305
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
306
306
|
"moduleId": 66074,
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
"exportedName": "addRepository",
|
|
313
313
|
"filename": "src/presentation/web/app/actions/add-repository.ts"
|
|
314
314
|
},
|
|
315
|
-
"
|
|
315
|
+
"40faa43db017671179976f512daac40261ba2d730c": {
|
|
316
316
|
"workers": {
|
|
317
317
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
318
318
|
"moduleId": 66074,
|
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
"exportedName": "deleteRepository",
|
|
325
325
|
"filename": "src/presentation/web/app/actions/delete-repository.ts"
|
|
326
326
|
},
|
|
327
|
-
"
|
|
327
|
+
"60b867d49424f87c059c6a441f6f4d2f1ac98cab23": {
|
|
328
328
|
"workers": {
|
|
329
329
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
330
330
|
"moduleId": 66074,
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
"exportedName": "approveFeature",
|
|
337
337
|
"filename": "src/presentation/web/app/actions/approve-feature.ts"
|
|
338
338
|
},
|
|
339
|
-
"
|
|
339
|
+
"7096748729de893c5452f1d11ebdd248ab30888326": {
|
|
340
340
|
"workers": {
|
|
341
341
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
342
342
|
"moduleId": 66074,
|
|
@@ -348,7 +348,7 @@
|
|
|
348
348
|
"exportedName": "rejectFeature",
|
|
349
349
|
"filename": "src/presentation/web/app/actions/reject-feature.ts"
|
|
350
350
|
},
|
|
351
|
-
"
|
|
351
|
+
"40afd8482f586c819f32f602fea008112e14685670": {
|
|
352
352
|
"workers": {
|
|
353
353
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
354
354
|
"moduleId": 66074,
|
|
@@ -360,7 +360,7 @@
|
|
|
360
360
|
"exportedName": "getFeatureArtifact",
|
|
361
361
|
"filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
|
|
362
362
|
},
|
|
363
|
-
"
|
|
363
|
+
"4058d33508395d76a991fad36a2ce0d2a68ccc1048": {
|
|
364
364
|
"workers": {
|
|
365
365
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
366
366
|
"moduleId": 66074,
|
|
@@ -372,7 +372,7 @@
|
|
|
372
372
|
"exportedName": "getResearchArtifact",
|
|
373
373
|
"filename": "src/presentation/web/app/actions/get-research-artifact.ts"
|
|
374
374
|
},
|
|
375
|
-
"
|
|
375
|
+
"4013e6e1d58ad3defdd6cb538c3646f08c1be3dc37": {
|
|
376
376
|
"workers": {
|
|
377
377
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
378
378
|
"moduleId": 66074,
|
|
@@ -384,7 +384,7 @@
|
|
|
384
384
|
"exportedName": "getMergeReviewData",
|
|
385
385
|
"filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
|
|
386
386
|
},
|
|
387
|
-
"
|
|
387
|
+
"40f270c3afc79684b049fcba3d11e5b4854e1a30c2": {
|
|
388
388
|
"workers": {
|
|
389
389
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
390
390
|
"moduleId": 66074,
|
|
@@ -396,7 +396,7 @@
|
|
|
396
396
|
"exportedName": "getFeaturePhaseTimings",
|
|
397
397
|
"filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts"
|
|
398
398
|
},
|
|
399
|
-
"
|
|
399
|
+
"40b1bd0af90f54c8a38090f8682b0322c471cbfc8a": {
|
|
400
400
|
"workers": {
|
|
401
401
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
402
402
|
"moduleId": 66074,
|
|
@@ -408,7 +408,7 @@
|
|
|
408
408
|
"exportedName": "getFeaturePlan",
|
|
409
409
|
"filename": "src/presentation/web/app/actions/get-feature-plan.ts"
|
|
410
410
|
},
|
|
411
|
-
"
|
|
411
|
+
"40fee5bd64658d183464d81ff9230bdffdc1a5b149": {
|
|
412
412
|
"workers": {
|
|
413
413
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
414
414
|
"moduleId": 66074,
|
|
@@ -420,7 +420,7 @@
|
|
|
420
420
|
"exportedName": "rebaseFeature",
|
|
421
421
|
"filename": "src/presentation/web/app/actions/rebase-feature.ts"
|
|
422
422
|
},
|
|
423
|
-
"
|
|
423
|
+
"40e39e9801f65f1497ac1ef8246bbe22c7076478c8": {
|
|
424
424
|
"workers": {
|
|
425
425
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
426
426
|
"moduleId": 66074,
|
|
@@ -432,7 +432,7 @@
|
|
|
432
432
|
"exportedName": "getFeatureDrawerData",
|
|
433
433
|
"filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts"
|
|
434
434
|
},
|
|
435
|
-
"
|
|
435
|
+
"400a22b9987853e1480b72cd99b7aa882a99a9f34d": {
|
|
436
436
|
"workers": {
|
|
437
437
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
438
438
|
"moduleId": 66074,
|
|
@@ -4,7 +4,7 @@ R.c("server/chunks/ssr/11es_next_dist_esm_build_templates_app-page_0y03ifc.js")
|
|
|
4
4
|
R.c("server/chunks/ssr/[root-of-the-server]__0fvrf-4._.js")
|
|
5
5
|
R.c("server/chunks/ssr/[root-of-the-server]__12~jro~._.js")
|
|
6
6
|
R.c("server/chunks/ssr/11es_next_dist_compiled_@opentelemetry_api_index_0rbiaaf.js")
|
|
7
|
-
R.c("server/chunks/ssr/
|
|
7
|
+
R.c("server/chunks/ssr/_0tcccbb._.js")
|
|
8
8
|
R.c("server/chunks/ssr/11es_next_dist_00z4~jt._.js")
|
|
9
9
|
R.c("server/chunks/ssr/_0e5cv3q._.js")
|
|
10
10
|
R.c("server/chunks/ssr/src_presentation_web_app_not-found_tsx_0v15lpt._.js")
|
|
@@ -14,9 +14,8 @@ R.c("server/chunks/ssr/src_presentation_web_app_global-error_tsx_0hc6py-._.js")
|
|
|
14
14
|
R.c("server/chunks/ssr/[root-of-the-server]__0q3-gz.._.js")
|
|
15
15
|
R.c("server/chunks/ssr/src_presentation_web_05-w-~v._.js")
|
|
16
16
|
R.c("server/chunks/ssr/src_presentation_web_app_(dashboard)_feature_[featureId]_page_tsx_0tdbn7c._.js")
|
|
17
|
-
R.c("server/chunks/ssr/[root-of-the-server]__07740t6._.js")
|
|
18
|
-
R.c("server/chunks/ssr/_0jpbsh_._.js")
|
|
19
|
-
R.c("server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js")
|
|
20
17
|
R.c("server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_0pjb_re._.js")
|
|
18
|
+
R.c("server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js")
|
|
19
|
+
R.c("server/chunks/ssr/[root-of-the-server]__0uy_5rw._.js")
|
|
21
20
|
R.m(55902)
|
|
22
21
|
module.exports=R.m(55902).exports
|