@shepai/cli 1.76.0 → 1.77.0-pr244.422e487
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apis/json-schema/FeatureFlags.yaml +21 -0
- package/apis/json-schema/Settings.yaml +3 -0
- 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/services/spec-initializer.interface.d.ts +4 -1
- package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -1
- 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 +5 -2
- 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/domain/factories/settings-defaults.factory.d.ts.map +1 -1
- package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +7 -2
- package/dist/packages/core/src/domain/generated/output.d.ts +21 -0
- package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/di/container.js +6 -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 +17 -0
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.js +27 -0
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +13 -3
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +220 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.js +66 -0
- 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 +10 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.js +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.d.ts +21 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.js +60 -0
- 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 +1 -2
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.d.ts +25 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.d.ts.map +1 -0
- package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.js +176 -0
- package/dist/packages/core/src/infrastructure/services/settings.service.d.ts +10 -0
- package/dist/packages/core/src/infrastructure/services/settings.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/settings.service.js +15 -0
- package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts +1 -1
- package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
- package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.js +8 -3
- package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
- package/dist/src/presentation/cli/commands/feat/new.command.js +2 -0
- package/dist/src/presentation/web/app/actions/create-feature.d.ts +2 -0
- package/dist/src/presentation/web/app/actions/create-feature.d.ts.map +1 -1
- package/dist/src/presentation/web/app/actions/create-feature.js +3 -1
- package/dist/src/presentation/web/app/actions/load-settings.d.ts +9 -0
- package/dist/src/presentation/web/app/actions/load-settings.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/load-settings.js +33 -0
- package/dist/src/presentation/web/app/actions/update-settings.d.ts +11 -0
- package/dist/src/presentation/web/app/actions/update-settings.d.ts.map +1 -0
- package/dist/src/presentation/web/app/actions/update-settings.js +45 -0
- package/dist/src/presentation/web/app/global-error.d.ts +7 -0
- package/dist/src/presentation/web/app/global-error.d.ts.map +1 -0
- package/dist/src/presentation/web/app/global-error.js +5 -0
- package/dist/src/presentation/web/app/settings/page.d.ts +4 -0
- package/dist/src/presentation/web/app/settings/page.d.ts.map +1 -0
- package/dist/src/presentation/web/app/settings/page.js +12 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts +2 -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 +5 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.d.ts +18 -0
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.js +49 -0
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +28 -4
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +4 -1
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +6 -3
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.d.ts +1 -0
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.d.ts.map +1 -1
- package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.js +71 -2
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +71 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +16 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +36 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.js +8 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.d.ts +15 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.js +22 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.js +54 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts +15 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.js +27 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +45 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts +16 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +37 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.js +68 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts +16 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.js +62 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts +8 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.js +21 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts +15 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +39 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts +6 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.js +76 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts +16 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts.map +1 -0
- package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js +55 -0
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
- package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
- package/dist/src/presentation/web/components/ui/switch.d.ts +7 -0
- package/dist/src/presentation/web/components/ui/switch.d.ts.map +1 -0
- package/dist/src/presentation/web/components/ui/switch.js +8 -0
- package/dist/src/presentation/web/hooks/use-graph-state.d.ts +2 -0
- package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
- package/dist/src/presentation/web/hooks/use-graph-state.js +4 -0
- package/dist/src/presentation/web/hooks/use-viewport-persistence.d.ts +1 -0
- package/dist/src/presentation/web/hooks/use-viewport-persistence.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/feature-flags.d.ts +14 -2
- package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
- package/dist/src/presentation/web/lib/feature-flags.js +39 -4
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/web/.next/BUILD_ID +1 -1
- package/web/.next/app-path-routes-manifest.json +1 -0
- package/web/.next/build-manifest.json +6 -6
- package/web/.next/cache/.previewinfo +1 -1
- package/web/.next/cache/.rscinfo +1 -1
- package/web/.next/cache/.tsbuildinfo +1 -1
- package/web/.next/cache/config.json +3 -3
- package/web/.next/fallback-build-manifest.json +2 -2
- package/web/.next/prerender-manifest.json +3 -3
- package/web/.next/required-server-files.js +1 -1
- package/web/.next/required-server-files.json +1 -1
- package/web/.next/routes-manifest.json +6 -0
- package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +16 -16
- package/web/.next/server/app/(dashboard)/@drawer/create/page.js +8 -7
- 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]/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +19 -19
- package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +8 -7
- 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]/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
- package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +8 -7
- 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)/create/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +16 -16
- package/web/.next/server/app/(dashboard)/create/page.js +8 -7
- 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]/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +19 -19
- package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +8 -7
- 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 +4 -4
- package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +14 -14
- package/web/.next/server/app/(dashboard)/page.js +8 -7
- 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]/page/build-manifest.json +4 -4
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
- package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +8 -7
- 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 +4 -4
- package/web/.next/server/app/_global-error/page.js +4 -3
- package/web/.next/server/app/_global-error/page.js.nft.json +1 -1
- package/web/.next/server/app/_global-error.html +2 -2
- package/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/server/app/_not-found/page/build-manifest.json +4 -4
- package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
- package/web/.next/server/app/_not-found/page.js +9 -7
- package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app/settings/page/app-paths-manifest.json +3 -0
- package/web/.next/server/app/settings/page/build-manifest.json +18 -0
- package/web/.next/server/app/settings/page/next-font-manifest.json +6 -0
- package/web/.next/server/app/settings/page/react-loadable-manifest.json +1 -0
- package/web/.next/server/app/settings/page/server-reference-manifest.json +50 -0
- package/web/.next/server/app/settings/page.js +18 -0
- package/web/.next/server/app/settings/page.js.map +5 -0
- package/web/.next/server/app/settings/page.js.nft.json +1 -0
- package/web/.next/server/app/settings/page_client-reference-manifest.js +2 -0
- package/web/.next/server/app/skills/page/build-manifest.json +4 -4
- package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/skills/page.js +11 -8
- 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 +4 -4
- package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
- package/web/.next/server/app/tools/page.js +9 -7
- 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 +4 -4
- package/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
- package/web/.next/server/app/version/page.js +8 -7
- package/web/.next/server/app/version/page.js.nft.json +1 -1
- package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/server/app-paths-manifest.json +1 -0
- package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_190bdc35._.js +4 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js.map → 403f9_next_dist_190bdc35._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js +6 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +6 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js.map +1 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js +3 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js.map +1 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js +3 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_bec3d8d3.js → 403f9_next_dist_esm_build_templates_app-page_2eacac96.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_2eacac96.js.map +1 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_c27615b6.js → 403f9_next_dist_esm_build_templates_app-page_46d6bf1b.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_46d6bf1b.js.map +1 -0
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_bec3d8d3.js → server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_54b1e179.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_54b1e179.js.map +1 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_dbf21e04.js → 403f9_next_dist_esm_build_templates_app-page_6c70ecca.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_6c70ecca.js.map +1 -0
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d302115b.js → server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c9978986.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c9978986.js.map +1 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_d302115b.js → 403f9_next_dist_esm_build_templates_app-page_ce6dae5d.js} +3 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_ce6dae5d.js.map +1 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d82f78f0.js +4 -0
- package/web/.next/server/chunks/ssr/{_884ddade._.js.map → 403f9_next_dist_esm_build_templates_app-page_d82f78f0.js.map} +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
- package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js.map +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js +1 -1
- package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__0880ff0e._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__8a947500._.js.map → [root-of-the-server]__0880ff0e._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__c37779e6._.js → [root-of-the-server]__09af7f56._.js} +2 -2
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__c37779e6._.js.map → [root-of-the-server]__09af7f56._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__6b17a22d._.js.map → [root-of-the-server]__11033878._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1e4ddb05._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__1e4ddb05._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__23b5ca2c._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__6ee2450e._.js.map → [root-of-the-server]__23b5ca2c._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2f487654._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2f487654._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__249c74f6._.js.map → [root-of-the-server]__357d99f9._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__5edfc56b._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__c18f84a4._.js.map → [root-of-the-server]__5edfc56b._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8c88ef55._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__fa87595c._.js.map → [root-of-the-server]__8c88ef55._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ad2b2a3c._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__ad2b2a3c._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c0876a83._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c0876a83._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c3c963c6._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__2018e25f._.js.map → [root-of-the-server]__c3c963c6._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c9777776._.js +3 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__3b4af5ae._.js.map → [root-of-the-server]__c9777776._.js.map} +1 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c9eacb2e._.js +3 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c9eacb2e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fb243197._.js +4 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fb243197._.js.map +1 -0
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +4 -0
- package/web/.next/server/chunks/ssr/{[root-of-the-server]__804c006d._.js.map → [root-of-the-server]__fdc75809._.js.map} +1 -1
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_8e8822d6.js → server/chunks/ssr/_16235e5e._.js} +3 -3
- package/web/.next/server/chunks/ssr/_16235e5e._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_3a4c94e3._.js +3 -0
- package/web/.next/server/chunks/ssr/_3a4c94e3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_4b60a2b7._.js +3 -0
- package/web/.next/server/chunks/ssr/_4b60a2b7._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_6645f218._.js +21 -0
- package/web/.next/server/chunks/ssr/_6645f218._.js.map +1 -0
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_ad8a094f._.js → server/chunks/ssr/_6887cba3._.js} +3 -3
- package/web/.next/server/chunks/ssr/_6887cba3._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_6d5ca3fe._.js +3 -0
- package/web/.next/server/chunks/ssr/_6d5ca3fe._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_6e08ce21._.js.map +1 -1
- package/web/.next/server/chunks/ssr/_77989807._.js +3 -0
- package/web/.next/server/chunks/ssr/_77989807._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_800acf27._.js +3 -0
- package/web/.next/server/chunks/ssr/_800acf27._.js.map +1 -0
- package/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js → _8eeee4db._.js} +3 -3
- package/web/.next/server/chunks/ssr/_8eeee4db._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_9025abb8._.js +3 -0
- package/web/.next/server/chunks/ssr/_9025abb8._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_9603ace6._.js +3 -0
- package/web/.next/server/chunks/ssr/_9603ace6._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_ad771b49._.js +6 -0
- package/web/.next/server/chunks/ssr/_ad771b49._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_b11878f5._.js +3 -0
- package/web/.next/server/chunks/ssr/_b11878f5._.js.map +1 -0
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_3197d5cb._.js → server/chunks/ssr/_caf236b9._.js} +2 -2
- package/web/.next/server/chunks/ssr/_caf236b9._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_ce38ef23._.js +9 -0
- package/web/.next/server/chunks/ssr/_ce38ef23._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_d13defa2._.js +3 -0
- package/web/.next/server/chunks/ssr/_d13defa2._.js.map +1 -0
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_884ddade._.js → server/chunks/ssr/_ed11dcd6._.js} +3 -3
- package/web/.next/server/chunks/ssr/_ed11dcd6._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_f0132aa7._.js +7 -0
- package/web/.next/server/chunks/ssr/_f0132aa7._.js.map +1 -0
- package/web/.next/server/chunks/ssr/_f38b49fe._.js +3 -0
- package/web/.next/server/chunks/ssr/_f38b49fe._.js.map +1 -0
- package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_9d039634.js → server/chunks/ssr/_f4d222d6._.js} +3 -3
- package/web/.next/server/chunks/ssr/_f4d222d6._.js.map +1 -0
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +3 -0
- package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -0
- package/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js +3 -0
- package/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js +2 -2
- package/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js +2 -2
- package/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js.map +1 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_label_tsx_af3b4cd6._.js +3 -0
- package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_label_tsx_af3b4cd6._.js.map +1 -0
- package/web/.next/server/middleware-build-manifest.js +4 -4
- package/web/.next/server/pages/500.html +2 -2
- package/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/server/server-reference-manifest.json +59 -22
- package/web/.next/standalone/src/presentation/web/.next/BUILD_ID +1 -1
- package/web/.next/standalone/src/presentation/web/.next/app-path-routes-manifest.json +1 -0
- package/web/.next/standalone/src/presentation/web/.next/build-manifest.json +6 -6
- package/web/.next/standalone/src/presentation/web/.next/prerender-manifest.json +3 -3
- package/web/.next/standalone/src/presentation/web/.next/required-server-files.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/routes-manifest.json +6 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +16 -16
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js +8 -7
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +19 -19
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +8 -7
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +8 -7
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +16 -16
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js +8 -7
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +19 -19
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +8 -7
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +14 -14
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js +8 -7
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +8 -7
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page.js +4 -3
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.html +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page.js +9 -7
- package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/app-paths-manifest.json +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/build-manifest.json +18 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/next-font-manifest.json +6 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/react-loadable-manifest.json +1 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/server-reference-manifest.json +50 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js +18 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js.map +5 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js.nft.json +1 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page_client-reference-manifest.js +2 -0
- package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
- package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page.js +11 -8
- package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
- package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page.js +9 -7
- package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/build-manifest.json +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/version/page.js +8 -7
- package/web/.next/standalone/src/presentation/web/.next/server/app/version/page.js.nft.json +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/app-paths-manifest.json +1 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_190bdc35._.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js +6 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +6 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_2eacac96.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_c27615b6.js → 403f9_next_dist_esm_build_templates_app-page_46d6bf1b.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_54b1e179.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{403f9_next_dist_esm_build_templates_app-page_dbf21e04.js → 403f9_next_dist_esm_build_templates_app-page_6c70ecca.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c9978986.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_ce6dae5d.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d82f78f0.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__0880ff0e._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{[root-of-the-server]__c37779e6._.js → [root-of-the-server]__09af7f56._.js} +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__1e4ddb05._.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__23b5ca2c._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__2f487654._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__5edfc56b._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__8c88ef55._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__ad2b2a3c._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c0876a83._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c3c963c6._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c9777776._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c9eacb2e._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fb243197._.js +4 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +4 -0
- package/web/.next/{server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_8e8822d6.js → standalone/src/presentation/web/.next/server/chunks/ssr/_16235e5e._.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_3a4c94e3._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_4b60a2b7._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_6645f218._.js +21 -0
- package/web/.next/{server/chunks/ssr/_ad8a094f._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_6887cba3._.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_6d5ca3fe._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_77989807._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_800acf27._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js → _8eeee4db._.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9025abb8._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9603ace6._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_ad771b49._.js +6 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_b11878f5._.js +3 -0
- package/web/.next/{server/chunks/ssr/_3197d5cb._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_caf236b9._.js} +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_ce38ef23._.js +9 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_d13defa2._.js +3 -0
- package/web/.next/{server/chunks/ssr/_884ddade._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_ed11dcd6._.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_f0132aa7._.js +7 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_f38b49fe._.js +3 -0
- package/web/.next/{server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_9d039634.js → standalone/src/presentation/web/.next/server/chunks/ssr/_f4d222d6._.js} +3 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_ui_label_tsx_af3b4cd6._.js +3 -0
- package/web/.next/standalone/src/presentation/web/.next/server/middleware-build-manifest.js +4 -4
- package/web/.next/standalone/src/presentation/web/.next/server/pages/500.html +2 -2
- package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.js +1 -1
- package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.json +59 -22
- package/web/.next/standalone/src/presentation/web/app/actions/create-feature.ts +6 -1
- package/web/.next/standalone/src/presentation/web/app/actions/load-settings.ts +43 -0
- package/web/.next/standalone/src/presentation/web/app/actions/update-settings.ts +73 -0
- package/web/.next/standalone/src/presentation/web/app/global-error.tsx +23 -0
- package/web/.next/standalone/src/presentation/web/app/settings/page.tsx +27 -0
- package/web/.next/standalone/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.tsx +57 -0
- package/web/.next/standalone/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.tsx +21 -0
- package/web/.next/standalone/src/presentation/web/components/features/control-center/control-center-inner.tsx +32 -4
- package/web/.next/standalone/src/presentation/web/components/features/control-center/use-control-center-state.ts +9 -4
- package/web/.next/standalone/src/presentation/web/components/features/features-canvas/features-canvas.stories.tsx +81 -2
- package/web/.next/standalone/src/presentation/web/components/features/features-canvas/features-canvas.tsx +1 -1
- package/web/.next/standalone/src/presentation/web/components/features/settings/agent-settings-section.stories.tsx +43 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/agent-settings-section.tsx +176 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/database-settings-section.stories.tsx +28 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/database-settings-section.tsx +43 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/environment-settings-section.stories.tsx +33 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/environment-settings-section.tsx +125 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.tsx +44 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/feature-flags-settings-section.tsx +94 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/notification-settings-section.stories.tsx +71 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/notification-settings-section.tsx +178 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/settings-page-client.stories.tsx +46 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/settings-page-client.tsx +60 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/workflow-settings-section.stories.tsx +62 -0
- package/web/.next/standalone/src/presentation/web/components/features/settings/workflow-settings-section.tsx +274 -0
- package/web/.next/standalone/src/presentation/web/components/layouts/app-sidebar/app-sidebar.tsx +7 -1
- package/web/.next/standalone/src/presentation/web/components/ui/switch.tsx +35 -0
- package/web/.next/standalone/src/presentation/web/hooks/use-graph-state.ts +7 -0
- package/web/.next/standalone/src/presentation/web/hooks/use-viewport-persistence.ts +2 -0
- package/web/.next/standalone/src/presentation/web/lib/feature-flags.ts +47 -4
- package/web/.next/standalone/src/presentation/web/server.js +1 -1
- package/web/.next/static/chunks/0c9c6fa052f30692.js +1 -0
- package/web/.next/static/chunks/12c0a9e7b566f998.css +2 -0
- package/web/.next/static/chunks/2500bf7056aaeff1.js +1 -0
- package/web/.next/static/chunks/27a80588cf4e08df.js +1 -0
- package/web/.next/static/chunks/27f7260befce4dea.js +1 -0
- package/web/.next/static/chunks/2bbd5c12e2c90c0c.js +1 -0
- package/web/.next/static/chunks/356ebc89a2a97627.js +1 -0
- package/web/.next/static/chunks/3b37508221559c80.js +1 -0
- package/web/.next/static/chunks/3e4dc2cc60a49743.js +1 -0
- package/web/.next/static/chunks/{716547ef8d13139d.js → 4d4a4111dec5f70f.js} +1 -1
- package/web/.next/static/chunks/700501f5ac2bb320.js +1 -0
- package/web/.next/static/chunks/736bef33b328e5e6.js +1 -0
- package/web/.next/static/chunks/8857165c23fc8fe5.js +1 -0
- package/web/.next/static/chunks/89aac43287d73b02.js +1 -0
- package/web/.next/static/chunks/9c74a889605bb2a3.js +1 -0
- package/web/.next/static/chunks/a5c6c77b79b9ed9b.js +1 -0
- package/web/.next/static/chunks/b1c0e555cf7bb4f8.js +1 -0
- package/web/.next/static/chunks/d0732d738a696000.js +1 -0
- package/web/.next/static/chunks/{07f00e2e73d322d2.js → d4d8f0a137bd2eb4.js} +3 -3
- package/web/.next/static/chunks/d9c55c5f00f6d29b.js +1 -0
- package/web/.next/static/chunks/db55ff93af6c8455.js +4 -0
- package/web/.next/static/chunks/{00adfce42dbbd5ef.js → f742ff5c1be2ef77.js} +1 -1
- package/web/.next/static/chunks/f97fd41212035056.js +11 -0
- package/web/.next/static/chunks/fa9742636bdfcce6.js +1 -0
- package/web/.next/static/chunks/{turbopack-05820f781f3ffc22.js → turbopack-3bdf15471eef2eec.js} +1 -1
- package/web/.next/trace +1 -1
- package/web/.next/trace-build +1 -1
- package/web/.next/types/link.d.ts +1 -0
- package/web/.next/types/routes.d.ts +2 -1
- package/web/.next/types/validator.ts +9 -0
- package/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js +0 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js +0 -3
- package/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js +0 -4
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_8e8822d6.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_9d039634.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_bec3d8d3.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c27615b6.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d302115b.js.map +0 -1
- package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_dbf21e04.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__2018e25f._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__3b4af5ae._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__6ee2450e._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +0 -4
- package/web/.next/server/chunks/ssr/[root-of-the-server]__80e5bed2._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__80e5bed2._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__8a947500._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__c18f84a4._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js +0 -3
- package/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js.map +0 -1
- package/web/.next/server/chunks/ssr/[root-of-the-server]__fa87595c._.js +0 -3
- package/web/.next/server/chunks/ssr/_07c2a32a._.js +0 -9
- package/web/.next/server/chunks/ssr/_07c2a32a._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_0e9d6bf7._.js +0 -3
- package/web/.next/server/chunks/ssr/_0e9d6bf7._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_3197d5cb._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_380c6567._.js +0 -6
- package/web/.next/server/chunks/ssr/_380c6567._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_44cce4e0._.js +0 -4
- package/web/.next/server/chunks/ssr/_44cce4e0._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_5ee4f5a7._.js +0 -7
- package/web/.next/server/chunks/ssr/_5ee4f5a7._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_61351ed3._.js +0 -3
- package/web/.next/server/chunks/ssr/_61351ed3._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_8400c8bb._.js +0 -3
- package/web/.next/server/chunks/ssr/_8400c8bb._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_9f940437._.js +0 -3
- package/web/.next/server/chunks/ssr/_9f940437._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_a29296f0._.js +0 -3
- package/web/.next/server/chunks/ssr/_a29296f0._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_a3854150._.js +0 -6
- package/web/.next/server/chunks/ssr/_a3854150._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_ad8a094f._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_dc379243._.js +0 -4
- package/web/.next/server/chunks/ssr/_dc379243._.js.map +0 -1
- package/web/.next/server/chunks/ssr/_e806976d._.js +0 -3
- package/web/.next/server/chunks/ssr/_e806976d._.js.map +0 -1
- package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js +0 -3
- package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js.map +0 -1
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__2018e25f._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__3b4af5ae._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6ee2450e._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__80e5bed2._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__8a947500._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c18f84a4._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fa87595c._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_07c2a32a._.js +0 -9
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_0e9d6bf7._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_380c6567._.js +0 -6
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_44cce4e0._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_5ee4f5a7._.js +0 -7
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_61351ed3._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_8400c8bb._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9f940437._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_a29296f0._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_a3854150._.js +0 -6
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_dc379243._.js +0 -4
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_e806976d._.js +0 -3
- package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js +0 -3
- package/web/.next/static/chunks/11a6c88ffcbac93f.js +0 -1
- package/web/.next/static/chunks/1f5c93a8b939416d.js +0 -5
- package/web/.next/static/chunks/255140c45a023ff4.js +0 -1
- package/web/.next/static/chunks/293231ccc0b144fa.js +0 -1
- package/web/.next/static/chunks/3bc2a07d02372939.js +0 -1
- package/web/.next/static/chunks/3f205fd6adbfd20a.js +0 -7
- package/web/.next/static/chunks/424982cd78174a1a.js +0 -1
- package/web/.next/static/chunks/4a3b3cfcc85e7254.js +0 -1
- package/web/.next/static/chunks/5d0a6417c4e4e545.js +0 -1
- package/web/.next/static/chunks/6931ae67c2484ddf.js +0 -1
- package/web/.next/static/chunks/9215b6fb973482c5.js +0 -1
- package/web/.next/static/chunks/9a765e022ef2b815.js +0 -1
- package/web/.next/static/chunks/b6c507fc42d9a277.js +0 -1
- package/web/.next/static/chunks/c1dbeb3307dab443.js +0 -4
- package/web/.next/static/chunks/d7786685ec8efe10.js +0 -1
- package/web/.next/static/chunks/e12fff3b57456bc2.css +0 -2
- package/web/.next/static/chunks/edbd674102e897b4.js +0 -1
- /package/web/.next/static/{L6_6jZ4TnQuuDXIF5GZEf → OY9vo9JHlYYnBy-WPoYAQ}/_buildManifest.js +0 -0
- /package/web/.next/static/{L6_6jZ4TnQuuDXIF5GZEf → OY9vo9JHlYYnBy-WPoYAQ}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{L6_6jZ4TnQuuDXIF5GZEf → OY9vo9JHlYYnBy-WPoYAQ}/_ssgManifest.js +0 -0
package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"node": {
|
|
3
|
-
"
|
|
3
|
+
"00af19e4d20dbaffeed08210fc7540c61f829e28ea": {
|
|
4
4
|
"workers": {
|
|
5
5
|
"app/(dashboard)/@drawer/create/page": {
|
|
6
6
|
"moduleId": 90842,
|
|
@@ -50,6 +50,12 @@
|
|
|
50
50
|
"exportedName": "pickFolder",
|
|
51
51
|
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
52
52
|
},
|
|
53
|
+
"app/settings/page": {
|
|
54
|
+
"moduleId": 39169,
|
|
55
|
+
"async": false,
|
|
56
|
+
"exportedName": "pickFolder",
|
|
57
|
+
"filename": "src/presentation/web/app/actions/pick-folder.ts"
|
|
58
|
+
},
|
|
53
59
|
"app/skills/page": {
|
|
54
60
|
"moduleId": 87596,
|
|
55
61
|
"async": false,
|
|
@@ -78,6 +84,7 @@
|
|
|
78
84
|
"app/(dashboard)/page": "action-browser",
|
|
79
85
|
"app/(dashboard)/repository/[repositoryId]/page": "action-browser",
|
|
80
86
|
"app/_not-found/page": "action-browser",
|
|
87
|
+
"app/settings/page": "action-browser",
|
|
81
88
|
"app/skills/page": "action-browser",
|
|
82
89
|
"app/tools/page": "action-browser",
|
|
83
90
|
"app/version/page": "action-browser"
|
|
@@ -85,7 +92,7 @@
|
|
|
85
92
|
"filename": "src/presentation/web/app/actions/pick-folder.ts",
|
|
86
93
|
"exportedName": "pickFolder"
|
|
87
94
|
},
|
|
88
|
-
"
|
|
95
|
+
"40fe122cb65d44fb34c0d166acbecbc13af063e211": {
|
|
89
96
|
"workers": {
|
|
90
97
|
"app/(dashboard)/@drawer/create/page": {
|
|
91
98
|
"moduleId": 90842,
|
|
@@ -156,7 +163,7 @@
|
|
|
156
163
|
"filename": "src/presentation/web/app/actions/get-deployment-logs.ts",
|
|
157
164
|
"exportedName": "getDeploymentLogs"
|
|
158
165
|
},
|
|
159
|
-
"
|
|
166
|
+
"40ec8adbbe79c8eda37f954882d8b30b55ea6f7ffe": {
|
|
160
167
|
"workers": {
|
|
161
168
|
"app/(dashboard)/@drawer/create/page": {
|
|
162
169
|
"moduleId": 90842,
|
|
@@ -227,7 +234,7 @@
|
|
|
227
234
|
"filename": "src/presentation/web/app/actions/deploy-feature.ts",
|
|
228
235
|
"exportedName": "deployFeature"
|
|
229
236
|
},
|
|
230
|
-
"
|
|
237
|
+
"405c8f2fdac71c5005feb8998a702b7b4e59fc57d2": {
|
|
231
238
|
"workers": {
|
|
232
239
|
"app/(dashboard)/@drawer/create/page": {
|
|
233
240
|
"moduleId": 90842,
|
|
@@ -298,7 +305,7 @@
|
|
|
298
305
|
"filename": "src/presentation/web/app/actions/deploy-repository.ts",
|
|
299
306
|
"exportedName": "deployRepository"
|
|
300
307
|
},
|
|
301
|
-
"
|
|
308
|
+
"4089edf1e0faa4882df249cd5fcceacc37140a4c34": {
|
|
302
309
|
"workers": {
|
|
303
310
|
"app/(dashboard)/@drawer/create/page": {
|
|
304
311
|
"moduleId": 90842,
|
|
@@ -369,7 +376,7 @@
|
|
|
369
376
|
"filename": "src/presentation/web/app/actions/stop-deployment.ts",
|
|
370
377
|
"exportedName": "stopDeployment"
|
|
371
378
|
},
|
|
372
|
-
"
|
|
379
|
+
"402215691f701f4742d6f1efd251986a71a8946cae": {
|
|
373
380
|
"workers": {
|
|
374
381
|
"app/(dashboard)/@drawer/create/page": {
|
|
375
382
|
"moduleId": 90842,
|
|
@@ -440,7 +447,7 @@
|
|
|
440
447
|
"filename": "src/presentation/web/app/actions/get-deployment-status.ts",
|
|
441
448
|
"exportedName": "getDeploymentStatus"
|
|
442
449
|
},
|
|
443
|
-
"
|
|
450
|
+
"40b54235266e6173690048edcdc274d2f1db02c5c8": {
|
|
444
451
|
"workers": {
|
|
445
452
|
"app/(dashboard)/@drawer/create/page": {
|
|
446
453
|
"moduleId": 90842,
|
|
@@ -497,7 +504,7 @@
|
|
|
497
504
|
"filename": "src/presentation/web/app/actions/open-ide.ts",
|
|
498
505
|
"exportedName": "openIde"
|
|
499
506
|
},
|
|
500
|
-
"
|
|
507
|
+
"40a84404810dc95df84804b3b9b42ee6a0e0d21015": {
|
|
501
508
|
"workers": {
|
|
502
509
|
"app/(dashboard)/@drawer/create/page": {
|
|
503
510
|
"moduleId": 90842,
|
|
@@ -554,7 +561,7 @@
|
|
|
554
561
|
"filename": "src/presentation/web/app/actions/open-shell.ts",
|
|
555
562
|
"exportedName": "openShell"
|
|
556
563
|
},
|
|
557
|
-
"
|
|
564
|
+
"40991a985b98f5c394d43d4cc616e965ff94c62be5": {
|
|
558
565
|
"workers": {
|
|
559
566
|
"app/(dashboard)/@drawer/create/page": {
|
|
560
567
|
"moduleId": 90842,
|
|
@@ -611,7 +618,7 @@
|
|
|
611
618
|
"filename": "src/presentation/web/app/actions/open-folder.ts",
|
|
612
619
|
"exportedName": "openFolder"
|
|
613
620
|
},
|
|
614
|
-
"
|
|
621
|
+
"407270803e5e028ed5726bb8906490ea43c6d864f3": {
|
|
615
622
|
"workers": {
|
|
616
623
|
"app/(dashboard)/@drawer/create/page": {
|
|
617
624
|
"moduleId": 90842,
|
|
@@ -668,7 +675,7 @@
|
|
|
668
675
|
"filename": "src/presentation/web/app/actions/delete-feature.ts",
|
|
669
676
|
"exportedName": "deleteFeature"
|
|
670
677
|
},
|
|
671
|
-
"
|
|
678
|
+
"40b6fc96d7196fb5d413d65f48452cc6ec8cbac16f": {
|
|
672
679
|
"workers": {
|
|
673
680
|
"app/(dashboard)/@drawer/create/page": {
|
|
674
681
|
"moduleId": 90842,
|
|
@@ -725,7 +732,7 @@
|
|
|
725
732
|
"filename": "src/presentation/web/app/actions/add-repository.ts",
|
|
726
733
|
"exportedName": "addRepository"
|
|
727
734
|
},
|
|
728
|
-
"
|
|
735
|
+
"40ca6c158a12884e216643cd9b957d42eb97e1abcc": {
|
|
729
736
|
"workers": {
|
|
730
737
|
"app/(dashboard)/@drawer/create/page": {
|
|
731
738
|
"moduleId": 90842,
|
|
@@ -782,7 +789,7 @@
|
|
|
782
789
|
"filename": "src/presentation/web/app/actions/delete-repository.ts",
|
|
783
790
|
"exportedName": "deleteRepository"
|
|
784
791
|
},
|
|
785
|
-
"
|
|
792
|
+
"4015ca08aeb8b3e1b4a21c0b01aea726c570eddcb6": {
|
|
786
793
|
"workers": {
|
|
787
794
|
"app/(dashboard)/@drawer/create/page": {
|
|
788
795
|
"moduleId": 90842,
|
|
@@ -839,7 +846,7 @@
|
|
|
839
846
|
"filename": "src/presentation/web/app/actions/get-feature-metadata.ts",
|
|
840
847
|
"exportedName": "getFeatureMetadata"
|
|
841
848
|
},
|
|
842
|
-
"
|
|
849
|
+
"0050b8ce56382cc3aff95692bb5c67f5d7d52059ee": {
|
|
843
850
|
"workers": {
|
|
844
851
|
"app/(dashboard)/@drawer/create/page": {
|
|
845
852
|
"moduleId": 90842,
|
|
@@ -896,7 +903,7 @@
|
|
|
896
903
|
"filename": "src/presentation/web/app/actions/get-graph-data.ts",
|
|
897
904
|
"exportedName": "fetchGraphData"
|
|
898
905
|
},
|
|
899
|
-
"
|
|
906
|
+
"000d460479dd757bdfeca2660be35c44fe45c77502": {
|
|
900
907
|
"workers": {
|
|
901
908
|
"app/(dashboard)/@drawer/create/page": {
|
|
902
909
|
"moduleId": 90842,
|
|
@@ -918,7 +925,7 @@
|
|
|
918
925
|
"filename": "src/presentation/web/app/actions/get-workflow-defaults.ts",
|
|
919
926
|
"exportedName": "getWorkflowDefaults"
|
|
920
927
|
},
|
|
921
|
-
"
|
|
928
|
+
"405dff81b4a4fec0cd3b51ff37d582aa28cad82f0f": {
|
|
922
929
|
"workers": {
|
|
923
930
|
"app/(dashboard)/@drawer/create/page": {
|
|
924
931
|
"moduleId": 90842,
|
|
@@ -940,7 +947,7 @@
|
|
|
940
947
|
"filename": "src/presentation/web/app/actions/create-feature.ts",
|
|
941
948
|
"exportedName": "createFeature"
|
|
942
949
|
},
|
|
943
|
-
"
|
|
950
|
+
"606bd34298f6e8fe4e17d13d6928878fa1730721c3": {
|
|
944
951
|
"workers": {
|
|
945
952
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
946
953
|
"moduleId": 48839,
|
|
@@ -962,7 +969,7 @@
|
|
|
962
969
|
"filename": "src/presentation/web/app/actions/approve-feature.ts",
|
|
963
970
|
"exportedName": "approveFeature"
|
|
964
971
|
},
|
|
965
|
-
"
|
|
972
|
+
"60fe50245767090e629c7a54472e95fb34f54d657a": {
|
|
966
973
|
"workers": {
|
|
967
974
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
968
975
|
"moduleId": 48839,
|
|
@@ -984,7 +991,7 @@
|
|
|
984
991
|
"filename": "src/presentation/web/app/actions/reject-feature.ts",
|
|
985
992
|
"exportedName": "rejectFeature"
|
|
986
993
|
},
|
|
987
|
-
"
|
|
994
|
+
"40873ec020e5bb30d3601d034dba5f7aa3e54c8a5f": {
|
|
988
995
|
"workers": {
|
|
989
996
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
990
997
|
"moduleId": 48839,
|
|
@@ -1006,7 +1013,7 @@
|
|
|
1006
1013
|
"filename": "src/presentation/web/app/actions/get-feature-artifact.ts",
|
|
1007
1014
|
"exportedName": "getFeatureArtifact"
|
|
1008
1015
|
},
|
|
1009
|
-
"
|
|
1016
|
+
"406b23bd7a7fd8ebcc417fb052ba0f09c7e5ff2adc": {
|
|
1010
1017
|
"workers": {
|
|
1011
1018
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
1012
1019
|
"moduleId": 48839,
|
|
@@ -1028,7 +1035,7 @@
|
|
|
1028
1035
|
"filename": "src/presentation/web/app/actions/get-research-artifact.ts",
|
|
1029
1036
|
"exportedName": "getResearchArtifact"
|
|
1030
1037
|
},
|
|
1031
|
-
"
|
|
1038
|
+
"403aa17fa6b0970c177e705ff9de07dc4b20b8fdd5": {
|
|
1032
1039
|
"workers": {
|
|
1033
1040
|
"app/(dashboard)/@drawer/feature/[featureId]/page": {
|
|
1034
1041
|
"moduleId": 48839,
|
|
@@ -1049,8 +1056,38 @@
|
|
|
1049
1056
|
},
|
|
1050
1057
|
"filename": "src/presentation/web/app/actions/get-merge-review-data.ts",
|
|
1051
1058
|
"exportedName": "getMergeReviewData"
|
|
1059
|
+
},
|
|
1060
|
+
"00868f09adabc219e0d58ab5a58fca837eed8afff2": {
|
|
1061
|
+
"workers": {
|
|
1062
|
+
"app/settings/page": {
|
|
1063
|
+
"moduleId": 39169,
|
|
1064
|
+
"async": false,
|
|
1065
|
+
"exportedName": "loadSettings",
|
|
1066
|
+
"filename": "src/presentation/web/app/actions/load-settings.ts"
|
|
1067
|
+
}
|
|
1068
|
+
},
|
|
1069
|
+
"layer": {
|
|
1070
|
+
"app/settings/page": "rsc"
|
|
1071
|
+
},
|
|
1072
|
+
"filename": "src/presentation/web/app/actions/load-settings.ts",
|
|
1073
|
+
"exportedName": "loadSettings"
|
|
1074
|
+
},
|
|
1075
|
+
"4035384bfb27be59779168d3f6981c1c028a5821bb": {
|
|
1076
|
+
"workers": {
|
|
1077
|
+
"app/settings/page": {
|
|
1078
|
+
"moduleId": 39169,
|
|
1079
|
+
"async": false,
|
|
1080
|
+
"exportedName": "updateSettingsAction",
|
|
1081
|
+
"filename": "src/presentation/web/app/actions/update-settings.ts"
|
|
1082
|
+
}
|
|
1083
|
+
},
|
|
1084
|
+
"layer": {
|
|
1085
|
+
"app/settings/page": "action-browser"
|
|
1086
|
+
},
|
|
1087
|
+
"filename": "src/presentation/web/app/actions/update-settings.ts",
|
|
1088
|
+
"exportedName": "updateSettingsAction"
|
|
1052
1089
|
}
|
|
1053
1090
|
},
|
|
1054
1091
|
"edge": {},
|
|
1055
|
-
"encryptionKey": "
|
|
1092
|
+
"encryptionKey": "SQn4HVyZkTnp/ZirBvbmSQKMUCg81DwbUXso/FdpRQY="
|
|
1056
1093
|
}
|
|
@@ -27,6 +27,8 @@ interface CreateFeatureInput {
|
|
|
27
27
|
push?: boolean;
|
|
28
28
|
openPr?: boolean;
|
|
29
29
|
parentId?: string;
|
|
30
|
+
/** When true, skip SDLC phases and implement directly from the prompt. */
|
|
31
|
+
fast?: boolean;
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
function composeUserInput(description: string, attachments: Attachment[] | undefined): string {
|
|
@@ -43,7 +45,8 @@ function composeUserInput(description: string, attachments: Attachment[] | undef
|
|
|
43
45
|
export async function createFeature(
|
|
44
46
|
input: CreateFeatureInput
|
|
45
47
|
): Promise<{ feature?: Feature; error?: string }> {
|
|
46
|
-
const { description, repositoryPath, attachments, approvalGates, push, openPr, parentId } =
|
|
48
|
+
const { description, repositoryPath, attachments, approvalGates, push, openPr, parentId, fast } =
|
|
49
|
+
input;
|
|
47
50
|
|
|
48
51
|
if (!description?.trim()) {
|
|
49
52
|
return { error: 'description is required' };
|
|
@@ -72,6 +75,7 @@ export async function createFeature(
|
|
|
72
75
|
openPr: openPr ?? false,
|
|
73
76
|
...(parentId ? { parentId } : {}),
|
|
74
77
|
description,
|
|
78
|
+
...(fast ? { fast } : {}),
|
|
75
79
|
});
|
|
76
80
|
|
|
77
81
|
// Phase 2 (background): metadata generation, worktree, spec, agent spawn
|
|
@@ -86,6 +90,7 @@ export async function createFeature(
|
|
|
86
90
|
push: push ?? false,
|
|
87
91
|
openPr: openPr ?? false,
|
|
88
92
|
...(parentId ? { parentId } : {}),
|
|
93
|
+
...(fast ? { fast } : {}),
|
|
89
94
|
},
|
|
90
95
|
shouldSpawn
|
|
91
96
|
)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use server';
|
|
2
|
+
|
|
3
|
+
import { statSync } from 'node:fs';
|
|
4
|
+
import { join } from 'node:path';
|
|
5
|
+
import { resolve } from '@/lib/server-container';
|
|
6
|
+
import type { LoadSettingsUseCase } from '@shepai/core/application/use-cases/settings/load-settings.use-case';
|
|
7
|
+
import { getShepHomeDir } from '@shepai/core/infrastructure/services/filesystem/shep-directory.service';
|
|
8
|
+
import type { Settings } from '@shepai/core/domain/generated/output';
|
|
9
|
+
|
|
10
|
+
export interface LoadSettingsResult {
|
|
11
|
+
settings?: Settings;
|
|
12
|
+
shepHome?: string;
|
|
13
|
+
dbFileSize?: string;
|
|
14
|
+
error?: string;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function formatFileSize(bytes: number): string {
|
|
18
|
+
if (bytes < 1024) return `${bytes} B`;
|
|
19
|
+
if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KB`;
|
|
20
|
+
return `${(bytes / (1024 * 1024)).toFixed(1)} MB`;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export async function loadSettings(): Promise<LoadSettingsResult> {
|
|
24
|
+
try {
|
|
25
|
+
const useCase = resolve<LoadSettingsUseCase>('LoadSettingsUseCase');
|
|
26
|
+
const settings = await useCase.execute();
|
|
27
|
+
|
|
28
|
+
const shepHome = getShepHomeDir();
|
|
29
|
+
let dbFileSize = 'Unknown';
|
|
30
|
+
try {
|
|
31
|
+
const dbPath = join(shepHome, 'data');
|
|
32
|
+
const stat = statSync(dbPath);
|
|
33
|
+
dbFileSize = formatFileSize(stat.size);
|
|
34
|
+
} catch {
|
|
35
|
+
// DB file may not exist yet
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
return { settings, shepHome, dbFileSize };
|
|
39
|
+
} catch (error: unknown) {
|
|
40
|
+
const message = error instanceof Error ? error.message : 'Failed to load settings';
|
|
41
|
+
return { error: message };
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
'use server';
|
|
2
|
+
|
|
3
|
+
import { revalidatePath } from 'next/cache';
|
|
4
|
+
import { resolve } from '@/lib/server-container';
|
|
5
|
+
import type { LoadSettingsUseCase } from '@shepai/core/application/use-cases/settings/load-settings.use-case';
|
|
6
|
+
import type { UpdateSettingsUseCase } from '@shepai/core/application/use-cases/settings/update-settings.use-case';
|
|
7
|
+
import { updateSettings as updateSettingsSingleton } from '@shepai/core/infrastructure/services/settings.service';
|
|
8
|
+
import type { Settings } from '@shepai/core/domain/generated/output';
|
|
9
|
+
|
|
10
|
+
type DeepPartial<T> = {
|
|
11
|
+
[K in keyof T]?: T[K] extends object ? DeepPartial<T[K]> : T[K];
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
function deepMerge<T extends Record<string, unknown>>(target: T, source: DeepPartial<T>): T {
|
|
15
|
+
const result = { ...target };
|
|
16
|
+
for (const key of Object.keys(source) as (keyof T)[]) {
|
|
17
|
+
const sourceVal = source[key];
|
|
18
|
+
if (sourceVal === undefined) continue;
|
|
19
|
+
|
|
20
|
+
const targetVal = target[key];
|
|
21
|
+
if (
|
|
22
|
+
targetVal !== null &&
|
|
23
|
+
targetVal !== undefined &&
|
|
24
|
+
typeof targetVal === 'object' &&
|
|
25
|
+
!Array.isArray(targetVal) &&
|
|
26
|
+
!(targetVal instanceof Date) &&
|
|
27
|
+
sourceVal !== null &&
|
|
28
|
+
typeof sourceVal === 'object' &&
|
|
29
|
+
!Array.isArray(sourceVal) &&
|
|
30
|
+
!(sourceVal instanceof Date)
|
|
31
|
+
) {
|
|
32
|
+
result[key] = deepMerge(
|
|
33
|
+
targetVal as Record<string, unknown>,
|
|
34
|
+
sourceVal as DeepPartial<Record<string, unknown>>
|
|
35
|
+
) as T[keyof T];
|
|
36
|
+
} else {
|
|
37
|
+
result[key] = sourceVal as T[keyof T];
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
return result;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface UpdateSettingsResult {
|
|
44
|
+
success: boolean;
|
|
45
|
+
error?: string;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export async function updateSettingsAction(
|
|
49
|
+
partial: DeepPartial<Settings>
|
|
50
|
+
): Promise<UpdateSettingsResult> {
|
|
51
|
+
try {
|
|
52
|
+
const loadUseCase = resolve<LoadSettingsUseCase>('LoadSettingsUseCase');
|
|
53
|
+
const current = await loadUseCase.execute();
|
|
54
|
+
|
|
55
|
+
const merged = deepMerge(
|
|
56
|
+
current as unknown as Record<string, unknown>,
|
|
57
|
+
partial as DeepPartial<Record<string, unknown>>
|
|
58
|
+
) as Settings;
|
|
59
|
+
merged.updatedAt = new Date();
|
|
60
|
+
|
|
61
|
+
const updateUseCase = resolve<UpdateSettingsUseCase>('UpdateSettingsUseCase');
|
|
62
|
+
await updateUseCase.execute(merged);
|
|
63
|
+
|
|
64
|
+
updateSettingsSingleton(merged);
|
|
65
|
+
|
|
66
|
+
revalidatePath('/settings');
|
|
67
|
+
|
|
68
|
+
return { success: true };
|
|
69
|
+
} catch (error: unknown) {
|
|
70
|
+
const message = error instanceof Error ? error.message : 'Failed to update settings';
|
|
71
|
+
return { success: false, error: message };
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
export default function GlobalError({
|
|
4
|
+
error,
|
|
5
|
+
reset,
|
|
6
|
+
}: {
|
|
7
|
+
error: Error & { digest?: string };
|
|
8
|
+
reset: () => void;
|
|
9
|
+
}) {
|
|
10
|
+
return (
|
|
11
|
+
<html lang="en">
|
|
12
|
+
<body>
|
|
13
|
+
<div style={{ padding: '2rem', fontFamily: 'sans-serif' }}>
|
|
14
|
+
<h2>Something went wrong</h2>
|
|
15
|
+
<p>{error.message}</p>
|
|
16
|
+
<button onClick={reset} style={{ marginTop: '1rem', cursor: 'pointer' }}>
|
|
17
|
+
Try again
|
|
18
|
+
</button>
|
|
19
|
+
</div>
|
|
20
|
+
</body>
|
|
21
|
+
</html>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { loadSettings } from '@/app/actions/load-settings';
|
|
2
|
+
import { SettingsPageClient } from '@/components/features/settings/settings-page-client';
|
|
3
|
+
|
|
4
|
+
/** Skip static pre-rendering since we need runtime DI container and server context. */
|
|
5
|
+
export const dynamic = 'force-dynamic';
|
|
6
|
+
|
|
7
|
+
export default async function SettingsPage() {
|
|
8
|
+
const { settings, shepHome, dbFileSize, error } = await loadSettings();
|
|
9
|
+
|
|
10
|
+
if (error || !settings) {
|
|
11
|
+
return (
|
|
12
|
+
<div className="flex h-full flex-col p-6">
|
|
13
|
+
<p className="text-destructive text-sm">Failed to load settings: {error}</p>
|
|
14
|
+
</div>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
return (
|
|
19
|
+
<div className="flex h-full flex-col p-6">
|
|
20
|
+
<SettingsPageClient
|
|
21
|
+
settings={settings}
|
|
22
|
+
shepHome={shepHome ?? ''}
|
|
23
|
+
dbFileSize={dbFileSize ?? 'Unknown'}
|
|
24
|
+
/>
|
|
25
|
+
</div>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
@@ -274,6 +274,63 @@ export const PrChecked: Story = {
|
|
|
274
274
|
},
|
|
275
275
|
};
|
|
276
276
|
|
|
277
|
+
/* ---------------------------------------------------------------------------
|
|
278
|
+
* Fast mode stories
|
|
279
|
+
* ------------------------------------------------------------------------- */
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* Fast Mode off (default) — the "Fast Mode" checkbox in the MODE section
|
|
283
|
+
* is unchecked. The full SDLC pipeline (analyze, requirements, research,
|
|
284
|
+
* plan, implement) will run.
|
|
285
|
+
*/
|
|
286
|
+
export const FastModeOff: Story = {
|
|
287
|
+
render: () => <CreateDrawerTrigger label="Open (Fast Mode Off)" />,
|
|
288
|
+
play: async ({ canvasElement }) => {
|
|
289
|
+
const canvas = within(canvasElement);
|
|
290
|
+
await userEvent.click(canvas.getByRole('button', { name: 'Open (Fast Mode Off)' }));
|
|
291
|
+
},
|
|
292
|
+
};
|
|
293
|
+
|
|
294
|
+
/**
|
|
295
|
+
* Fast Mode on — the "Fast Mode" checkbox is checked. When submitted,
|
|
296
|
+
* `fast: true` is included in the payload, skipping SDLC phases and
|
|
297
|
+
* implementing directly from the user's prompt.
|
|
298
|
+
*/
|
|
299
|
+
export const FastModeOn: Story = {
|
|
300
|
+
render: () => <CreateDrawerTrigger label="Open (Fast Mode On)" />,
|
|
301
|
+
play: async ({ canvasElement }) => {
|
|
302
|
+
const canvas = within(canvasElement);
|
|
303
|
+
await userEvent.click(canvas.getByRole('button', { name: 'Open (Fast Mode On)' }));
|
|
304
|
+
|
|
305
|
+
const body = within(canvasElement.ownerDocument.body);
|
|
306
|
+
const fastCheckbox = await body.findByLabelText('Fast Mode');
|
|
307
|
+
await userEvent.click(fastCheckbox);
|
|
308
|
+
},
|
|
309
|
+
};
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* Fast Mode combined with approval gates and git options — demonstrates
|
|
313
|
+
* that fast mode works alongside other form controls. Here fast mode,
|
|
314
|
+
* auto-approve all, push, and create PR are all enabled.
|
|
315
|
+
*/
|
|
316
|
+
export const FastModeWithOptions: Story = {
|
|
317
|
+
render: () => <CreateDrawerTrigger label="Open (Fast + Options)" />,
|
|
318
|
+
play: async ({ canvasElement }) => {
|
|
319
|
+
const canvas = within(canvasElement);
|
|
320
|
+
await userEvent.click(canvas.getByRole('button', { name: 'Open (Fast + Options)' }));
|
|
321
|
+
|
|
322
|
+
const body = within(canvasElement.ownerDocument.body);
|
|
323
|
+
const fastCheckbox = await body.findByLabelText('Fast Mode');
|
|
324
|
+
await userEvent.click(fastCheckbox);
|
|
325
|
+
|
|
326
|
+
const autoApprove = body.getByLabelText('Auto approve all');
|
|
327
|
+
await userEvent.click(autoApprove);
|
|
328
|
+
|
|
329
|
+
const prCheckbox = body.getByLabelText('Create PR');
|
|
330
|
+
await userEvent.click(prCheckbox);
|
|
331
|
+
},
|
|
332
|
+
};
|
|
333
|
+
|
|
277
334
|
/* ---------------------------------------------------------------------------
|
|
278
335
|
* Workflow defaults stories
|
|
279
336
|
* ------------------------------------------------------------------------- */
|
|
@@ -49,6 +49,8 @@ export interface FeatureCreatePayload {
|
|
|
49
49
|
push: boolean;
|
|
50
50
|
openPr: boolean;
|
|
51
51
|
parentId?: string;
|
|
52
|
+
/** When true, skip SDLC phases and implement directly from the prompt. */
|
|
53
|
+
fast: boolean;
|
|
52
54
|
}
|
|
53
55
|
|
|
54
56
|
const AUTO_APPROVE_OPTIONS = [
|
|
@@ -97,6 +99,7 @@ export function FeatureCreateDrawer({
|
|
|
97
99
|
const [push, setPush] = useState(defaultPush);
|
|
98
100
|
const [openPr, setOpenPr] = useState(defaultOpenPr);
|
|
99
101
|
const [parentId, setParentId] = useState<string | undefined>(undefined);
|
|
102
|
+
const [fast, setFast] = useState(false);
|
|
100
103
|
|
|
101
104
|
// Sync state when workflowDefaults load asynchronously
|
|
102
105
|
useEffect(() => {
|
|
@@ -121,6 +124,7 @@ export function FeatureCreateDrawer({
|
|
|
121
124
|
setPush(defaultPush);
|
|
122
125
|
setOpenPr(defaultOpenPr);
|
|
123
126
|
setParentId(undefined);
|
|
127
|
+
setFast(false);
|
|
124
128
|
}, [defaultGates, defaultPush, defaultOpenPr]);
|
|
125
129
|
|
|
126
130
|
// Track whether the form has unsaved data
|
|
@@ -145,6 +149,7 @@ export function FeatureCreateDrawer({
|
|
|
145
149
|
},
|
|
146
150
|
push: push || openPr,
|
|
147
151
|
openPr,
|
|
152
|
+
fast,
|
|
148
153
|
...(parentId ? { parentId } : {}),
|
|
149
154
|
});
|
|
150
155
|
resetForm();
|
|
@@ -157,6 +162,7 @@ export function FeatureCreateDrawer({
|
|
|
157
162
|
onSubmit,
|
|
158
163
|
push,
|
|
159
164
|
openPr,
|
|
165
|
+
fast,
|
|
160
166
|
parentId,
|
|
161
167
|
createSound,
|
|
162
168
|
resetForm,
|
|
@@ -258,6 +264,21 @@ export function FeatureCreateDrawer({
|
|
|
258
264
|
</div>
|
|
259
265
|
) : null}
|
|
260
266
|
|
|
267
|
+
{/* Fast mode toggle */}
|
|
268
|
+
<div className="flex flex-col gap-1.5">
|
|
269
|
+
<Label className="text-muted-foreground text-xs font-semibold tracking-wider">
|
|
270
|
+
MODE
|
|
271
|
+
</Label>
|
|
272
|
+
<CheckboxGroupItem
|
|
273
|
+
id="fast-mode"
|
|
274
|
+
label="Fast Mode"
|
|
275
|
+
description="Skip SDLC phases and implement directly from your prompt."
|
|
276
|
+
checked={fast}
|
|
277
|
+
onCheckedChange={setFast}
|
|
278
|
+
disabled={isSubmitting}
|
|
279
|
+
/>
|
|
280
|
+
</div>
|
|
281
|
+
|
|
261
282
|
{/* Auto-approve checkboxes */}
|
|
262
283
|
<div className="flex flex-col gap-1.5">
|
|
263
284
|
<Label className="text-muted-foreground text-xs font-semibold tracking-wider">
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
|
-
import { useCallback, useEffect, useMemo } from 'react';
|
|
3
|
+
import { useCallback, useEffect, useMemo, useRef } from 'react';
|
|
4
4
|
import { useRouter, usePathname } from 'next/navigation';
|
|
5
5
|
import type { Edge, Viewport } from '@xyflow/react';
|
|
6
|
+
import { useReactFlow } from '@xyflow/react';
|
|
6
7
|
import { FeaturesCanvas } from '@/components/features/features-canvas';
|
|
7
8
|
import type { CanvasNodeType } from '@/components/features/features-canvas';
|
|
8
9
|
import type { FeatureNodeData } from '@/components/common/feature-node';
|
|
@@ -18,6 +19,14 @@ import { useViewportPersistence } from '@/hooks/use-viewport-persistence';
|
|
|
18
19
|
import { ControlCenterEmptyState } from './control-center-empty-state';
|
|
19
20
|
import { useControlCenterState } from './use-control-center-state';
|
|
20
21
|
|
|
22
|
+
const AUTO_FOCUS_OPTIONS = {
|
|
23
|
+
maxZoom: 1.0,
|
|
24
|
+
padding: 0.5,
|
|
25
|
+
duration: 500,
|
|
26
|
+
} as const;
|
|
27
|
+
|
|
28
|
+
const AUTO_FOCUS_DRAWER_DELAY_MS = 600;
|
|
29
|
+
|
|
21
30
|
interface ControlCenterInnerProps {
|
|
22
31
|
initialNodes: CanvasNodeType[];
|
|
23
32
|
initialEdges: Edge[];
|
|
@@ -29,6 +38,8 @@ export function ControlCenterInner({ initialNodes, initialEdges }: ControlCenter
|
|
|
29
38
|
const selectedFeatureId = useSelectedFeatureId();
|
|
30
39
|
const clickSound = useSoundAction('click');
|
|
31
40
|
const { guardedNavigate } = useDrawerCloseGuard();
|
|
41
|
+
const { fitView } = useReactFlow();
|
|
42
|
+
const drawerTimerRef = useRef<ReturnType<typeof setTimeout> | null>(null);
|
|
32
43
|
|
|
33
44
|
const {
|
|
34
45
|
defaultViewport,
|
|
@@ -164,11 +175,28 @@ export function ControlCenterInner({ initialNodes, initialEdges }: ControlCenter
|
|
|
164
175
|
useEffect(() => {
|
|
165
176
|
const handler = (e: Event) => {
|
|
166
177
|
const path = (e as CustomEvent<{ path: string }>).detail.path;
|
|
167
|
-
handleAddRepository(path);
|
|
178
|
+
const { wasEmpty, repoPath } = handleAddRepository(path);
|
|
179
|
+
|
|
180
|
+
if (wasEmpty) {
|
|
181
|
+
// Wait for next render so the repo node exists in the DOM, then auto-focus
|
|
182
|
+
setTimeout(() => {
|
|
183
|
+
fitView(AUTO_FOCUS_OPTIONS);
|
|
184
|
+
|
|
185
|
+
// Open the create-feature drawer after the fitView animation completes
|
|
186
|
+
drawerTimerRef.current = setTimeout(() => {
|
|
187
|
+
guardedNavigate(() => router.push(`/create?repo=${encodeURIComponent(repoPath)}`));
|
|
188
|
+
}, AUTO_FOCUS_DRAWER_DELAY_MS);
|
|
189
|
+
}, 0);
|
|
190
|
+
}
|
|
168
191
|
};
|
|
169
192
|
window.addEventListener('shep:add-repository', handler);
|
|
170
|
-
return () =>
|
|
171
|
-
|
|
193
|
+
return () => {
|
|
194
|
+
window.removeEventListener('shep:add-repository', handler);
|
|
195
|
+
if (drawerTimerRef.current != null) {
|
|
196
|
+
clearTimeout(drawerTimerRef.current);
|
|
197
|
+
}
|
|
198
|
+
};
|
|
199
|
+
}, [handleAddRepository, fitView, guardedNavigate, router]);
|
|
172
200
|
|
|
173
201
|
// Listen for create events from the create drawer (with real feature ID from server)
|
|
174
202
|
useEffect(() => {
|