@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.
Files changed (692) hide show
  1. package/apis/json-schema/FeatureFlags.yaml +21 -0
  2. package/apis/json-schema/Settings.yaml +3 -0
  3. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +1 -0
  4. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -1
  5. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts +4 -1
  6. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -1
  7. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
  8. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +5 -2
  9. package/dist/packages/core/src/application/use-cases/features/create/types.d.ts +2 -0
  10. package/dist/packages/core/src/application/use-cases/features/create/types.d.ts.map +1 -1
  11. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  12. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +7 -2
  13. package/dist/packages/core/src/domain/generated/output.d.ts +21 -0
  14. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  15. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  16. package/dist/packages/core/src/infrastructure/di/container.js +6 -0
  17. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +6 -0
  18. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  19. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +17 -0
  20. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.d.ts.map +1 -1
  21. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.js +27 -0
  22. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  23. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +13 -3
  24. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +220 -0
  25. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -0
  26. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.js +66 -0
  27. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +1 -0
  28. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
  29. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +3 -0
  30. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +1 -0
  31. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
  32. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +10 -1
  33. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.d.ts.map +1 -1
  34. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.js +1 -0
  35. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.d.ts +21 -0
  36. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.d.ts.map +1 -0
  37. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/fast-implement.node.js +60 -0
  38. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  39. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +1 -2
  40. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.d.ts +25 -0
  41. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.d.ts.map +1 -0
  42. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/fast-implement.prompt.js +176 -0
  43. package/dist/packages/core/src/infrastructure/services/settings.service.d.ts +10 -0
  44. package/dist/packages/core/src/infrastructure/services/settings.service.d.ts.map +1 -1
  45. package/dist/packages/core/src/infrastructure/services/settings.service.js +15 -0
  46. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts +1 -1
  47. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
  48. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.js +8 -3
  49. package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
  50. package/dist/src/presentation/cli/commands/feat/new.command.js +2 -0
  51. package/dist/src/presentation/web/app/actions/create-feature.d.ts +2 -0
  52. package/dist/src/presentation/web/app/actions/create-feature.d.ts.map +1 -1
  53. package/dist/src/presentation/web/app/actions/create-feature.js +3 -1
  54. package/dist/src/presentation/web/app/actions/load-settings.d.ts +9 -0
  55. package/dist/src/presentation/web/app/actions/load-settings.d.ts.map +1 -0
  56. package/dist/src/presentation/web/app/actions/load-settings.js +33 -0
  57. package/dist/src/presentation/web/app/actions/update-settings.d.ts +11 -0
  58. package/dist/src/presentation/web/app/actions/update-settings.d.ts.map +1 -0
  59. package/dist/src/presentation/web/app/actions/update-settings.js +45 -0
  60. package/dist/src/presentation/web/app/global-error.d.ts +7 -0
  61. package/dist/src/presentation/web/app/global-error.d.ts.map +1 -0
  62. package/dist/src/presentation/web/app/global-error.js +5 -0
  63. package/dist/src/presentation/web/app/settings/page.d.ts +4 -0
  64. package/dist/src/presentation/web/app/settings/page.d.ts.map +1 -0
  65. package/dist/src/presentation/web/app/settings/page.js +12 -0
  66. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts +2 -0
  67. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
  68. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +5 -1
  69. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.d.ts +18 -0
  70. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.d.ts.map +1 -1
  71. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.js +49 -0
  72. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  73. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +28 -4
  74. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +4 -1
  75. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  76. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +6 -3
  77. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +1 -1
  78. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.d.ts +1 -0
  79. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.d.ts.map +1 -1
  80. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.stories.js +71 -2
  81. package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts +6 -0
  82. package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -0
  83. package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +71 -0
  84. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +16 -0
  85. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -0
  86. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +36 -0
  87. package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts +6 -0
  88. package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts.map +1 -0
  89. package/dist/src/presentation/web/components/features/settings/database-settings-section.js +8 -0
  90. package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.d.ts +15 -0
  91. package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.d.ts.map +1 -0
  92. package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.js +22 -0
  93. package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts +6 -0
  94. package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts.map +1 -0
  95. package/dist/src/presentation/web/components/features/settings/environment-settings-section.js +54 -0
  96. package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts +15 -0
  97. package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts.map +1 -0
  98. package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.js +27 -0
  99. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts +6 -0
  100. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -0
  101. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +45 -0
  102. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts +16 -0
  103. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -0
  104. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +37 -0
  105. package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts +6 -0
  106. package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts.map +1 -0
  107. package/dist/src/presentation/web/components/features/settings/notification-settings-section.js +68 -0
  108. package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts +16 -0
  109. package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts.map +1 -0
  110. package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.js +62 -0
  111. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts +8 -0
  112. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -0
  113. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +21 -0
  114. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts +15 -0
  115. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -0
  116. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +39 -0
  117. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts +6 -0
  118. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts.map +1 -0
  119. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.js +76 -0
  120. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts +16 -0
  121. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts.map +1 -0
  122. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js +55 -0
  123. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  124. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
  125. package/dist/src/presentation/web/components/ui/switch.d.ts +7 -0
  126. package/dist/src/presentation/web/components/ui/switch.d.ts.map +1 -0
  127. package/dist/src/presentation/web/components/ui/switch.js +8 -0
  128. package/dist/src/presentation/web/hooks/use-graph-state.d.ts +2 -0
  129. package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
  130. package/dist/src/presentation/web/hooks/use-graph-state.js +4 -0
  131. package/dist/src/presentation/web/hooks/use-viewport-persistence.d.ts +1 -0
  132. package/dist/src/presentation/web/hooks/use-viewport-persistence.d.ts.map +1 -1
  133. package/dist/src/presentation/web/lib/feature-flags.d.ts +14 -2
  134. package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
  135. package/dist/src/presentation/web/lib/feature-flags.js +39 -4
  136. package/dist/tsconfig.build.tsbuildinfo +1 -1
  137. package/package.json +1 -1
  138. package/web/.next/BUILD_ID +1 -1
  139. package/web/.next/app-path-routes-manifest.json +1 -0
  140. package/web/.next/build-manifest.json +6 -6
  141. package/web/.next/cache/.previewinfo +1 -1
  142. package/web/.next/cache/.rscinfo +1 -1
  143. package/web/.next/cache/.tsbuildinfo +1 -1
  144. package/web/.next/cache/config.json +3 -3
  145. package/web/.next/fallback-build-manifest.json +2 -2
  146. package/web/.next/prerender-manifest.json +3 -3
  147. package/web/.next/required-server-files.js +1 -1
  148. package/web/.next/required-server-files.json +1 -1
  149. package/web/.next/routes-manifest.json +6 -0
  150. package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +4 -4
  151. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +16 -16
  152. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +8 -7
  153. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  154. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  155. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +4 -4
  156. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +19 -19
  157. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +8 -7
  158. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  159. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  160. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +4 -4
  161. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  162. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +8 -7
  163. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  164. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  165. package/web/.next/server/app/(dashboard)/create/page/build-manifest.json +4 -4
  166. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +16 -16
  167. package/web/.next/server/app/(dashboard)/create/page.js +8 -7
  168. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  169. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  170. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +4 -4
  171. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +19 -19
  172. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +8 -7
  173. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  174. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  175. package/web/.next/server/app/(dashboard)/page/build-manifest.json +4 -4
  176. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +14 -14
  177. package/web/.next/server/app/(dashboard)/page.js +8 -7
  178. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  179. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  180. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +4 -4
  181. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  182. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +8 -7
  183. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  184. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  185. package/web/.next/server/app/_global-error/page/build-manifest.json +4 -4
  186. package/web/.next/server/app/_global-error/page.js +4 -3
  187. package/web/.next/server/app/_global-error/page.js.nft.json +1 -1
  188. package/web/.next/server/app/_global-error.html +2 -2
  189. package/web/.next/server/app/_global-error.rsc +1 -1
  190. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  191. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  192. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  193. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  194. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  195. package/web/.next/server/app/_not-found/page/build-manifest.json +4 -4
  196. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  197. package/web/.next/server/app/_not-found/page.js +9 -7
  198. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  199. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  200. package/web/.next/server/app/settings/page/app-paths-manifest.json +3 -0
  201. package/web/.next/server/app/settings/page/build-manifest.json +18 -0
  202. package/web/.next/server/app/settings/page/next-font-manifest.json +6 -0
  203. package/web/.next/server/app/settings/page/react-loadable-manifest.json +1 -0
  204. package/web/.next/server/app/settings/page/server-reference-manifest.json +50 -0
  205. package/web/.next/server/app/settings/page.js +18 -0
  206. package/web/.next/server/app/settings/page.js.map +5 -0
  207. package/web/.next/server/app/settings/page.js.nft.json +1 -0
  208. package/web/.next/server/app/settings/page_client-reference-manifest.js +2 -0
  209. package/web/.next/server/app/skills/page/build-manifest.json +4 -4
  210. package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  211. package/web/.next/server/app/skills/page.js +11 -8
  212. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  213. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  214. package/web/.next/server/app/tools/page/build-manifest.json +4 -4
  215. package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
  216. package/web/.next/server/app/tools/page.js +9 -7
  217. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  218. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  219. package/web/.next/server/app/version/page/build-manifest.json +4 -4
  220. package/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  221. package/web/.next/server/app/version/page.js +8 -7
  222. package/web/.next/server/app/version/page.js.nft.json +1 -1
  223. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  224. package/web/.next/server/app-paths-manifest.json +1 -0
  225. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
  226. package/web/.next/server/chunks/ssr/403f9_next_dist_190bdc35._.js +4 -0
  227. package/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js.map → 403f9_next_dist_190bdc35._.js.map} +1 -1
  228. package/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js +6 -0
  229. package/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js.map +1 -0
  230. package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +6 -0
  231. package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js.map +1 -0
  232. package/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js +3 -0
  233. package/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js.map +1 -0
  234. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js +3 -0
  235. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js.map +1 -0
  236. 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
  237. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_2eacac96.js.map +1 -0
  238. 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
  239. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_46d6bf1b.js.map +1 -0
  240. 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
  241. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_54b1e179.js.map +1 -0
  242. 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
  243. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_6c70ecca.js.map +1 -0
  244. 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
  245. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c9978986.js.map +1 -0
  246. 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
  247. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_ce6dae5d.js.map +1 -0
  248. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d82f78f0.js +4 -0
  249. package/web/.next/server/chunks/ssr/{_884ddade._.js.map → 403f9_next_dist_esm_build_templates_app-page_d82f78f0.js.map} +1 -1
  250. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  251. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  252. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js +1 -1
  253. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js.map +1 -1
  254. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js +1 -1
  255. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js.map +1 -1
  256. package/web/.next/server/chunks/ssr/[root-of-the-server]__0880ff0e._.js +3 -0
  257. package/web/.next/server/chunks/ssr/{[root-of-the-server]__8a947500._.js.map → [root-of-the-server]__0880ff0e._.js.map} +1 -1
  258. package/web/.next/server/chunks/ssr/{[root-of-the-server]__c37779e6._.js → [root-of-the-server]__09af7f56._.js} +2 -2
  259. package/web/.next/server/chunks/ssr/{[root-of-the-server]__c37779e6._.js.map → [root-of-the-server]__09af7f56._.js.map} +1 -1
  260. package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +4 -0
  261. package/web/.next/server/chunks/ssr/{[root-of-the-server]__6b17a22d._.js.map → [root-of-the-server]__11033878._.js.map} +1 -1
  262. package/web/.next/server/chunks/ssr/[root-of-the-server]__1e4ddb05._.js +4 -0
  263. package/web/.next/server/chunks/ssr/[root-of-the-server]__1e4ddb05._.js.map +1 -0
  264. package/web/.next/server/chunks/ssr/[root-of-the-server]__23b5ca2c._.js +3 -0
  265. package/web/.next/server/chunks/ssr/{[root-of-the-server]__6ee2450e._.js.map → [root-of-the-server]__23b5ca2c._.js.map} +1 -1
  266. package/web/.next/server/chunks/ssr/[root-of-the-server]__2f487654._.js +3 -0
  267. package/web/.next/server/chunks/ssr/[root-of-the-server]__2f487654._.js.map +1 -0
  268. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +3 -0
  269. package/web/.next/server/chunks/ssr/{[root-of-the-server]__249c74f6._.js.map → [root-of-the-server]__357d99f9._.js.map} +1 -1
  270. package/web/.next/server/chunks/ssr/[root-of-the-server]__5edfc56b._.js +3 -0
  271. package/web/.next/server/chunks/ssr/{[root-of-the-server]__c18f84a4._.js.map → [root-of-the-server]__5edfc56b._.js.map} +1 -1
  272. package/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js +3 -0
  273. package/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js.map +1 -0
  274. package/web/.next/server/chunks/ssr/[root-of-the-server]__8c88ef55._.js +3 -0
  275. package/web/.next/server/chunks/ssr/{[root-of-the-server]__fa87595c._.js.map → [root-of-the-server]__8c88ef55._.js.map} +1 -1
  276. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
  277. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
  278. package/web/.next/server/chunks/ssr/[root-of-the-server]__ad2b2a3c._.js +3 -0
  279. package/web/.next/server/chunks/ssr/[root-of-the-server]__ad2b2a3c._.js.map +1 -0
  280. package/web/.next/server/chunks/ssr/[root-of-the-server]__c0876a83._.js +3 -0
  281. package/web/.next/server/chunks/ssr/[root-of-the-server]__c0876a83._.js.map +1 -0
  282. package/web/.next/server/chunks/ssr/[root-of-the-server]__c3c963c6._.js +3 -0
  283. package/web/.next/server/chunks/ssr/{[root-of-the-server]__2018e25f._.js.map → [root-of-the-server]__c3c963c6._.js.map} +1 -1
  284. package/web/.next/server/chunks/ssr/[root-of-the-server]__c9777776._.js +3 -0
  285. package/web/.next/server/chunks/ssr/{[root-of-the-server]__3b4af5ae._.js.map → [root-of-the-server]__c9777776._.js.map} +1 -1
  286. package/web/.next/server/chunks/ssr/[root-of-the-server]__c9eacb2e._.js +3 -0
  287. package/web/.next/server/chunks/ssr/[root-of-the-server]__c9eacb2e._.js.map +1 -0
  288. package/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js +4 -0
  289. package/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js.map +1 -0
  290. package/web/.next/server/chunks/ssr/[root-of-the-server]__fb243197._.js +4 -0
  291. package/web/.next/server/chunks/ssr/[root-of-the-server]__fb243197._.js.map +1 -0
  292. package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +4 -0
  293. package/web/.next/server/chunks/ssr/{[root-of-the-server]__804c006d._.js.map → [root-of-the-server]__fdc75809._.js.map} +1 -1
  294. 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
  295. package/web/.next/server/chunks/ssr/_16235e5e._.js.map +1 -0
  296. package/web/.next/server/chunks/ssr/_3a4c94e3._.js +3 -0
  297. package/web/.next/server/chunks/ssr/_3a4c94e3._.js.map +1 -0
  298. package/web/.next/server/chunks/ssr/_4b60a2b7._.js +3 -0
  299. package/web/.next/server/chunks/ssr/_4b60a2b7._.js.map +1 -0
  300. package/web/.next/server/chunks/ssr/_6645f218._.js +21 -0
  301. package/web/.next/server/chunks/ssr/_6645f218._.js.map +1 -0
  302. package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_ad8a094f._.js → server/chunks/ssr/_6887cba3._.js} +3 -3
  303. package/web/.next/server/chunks/ssr/_6887cba3._.js.map +1 -0
  304. package/web/.next/server/chunks/ssr/_6d5ca3fe._.js +3 -0
  305. package/web/.next/server/chunks/ssr/_6d5ca3fe._.js.map +1 -0
  306. package/web/.next/server/chunks/ssr/_6e08ce21._.js.map +1 -1
  307. package/web/.next/server/chunks/ssr/_77989807._.js +3 -0
  308. package/web/.next/server/chunks/ssr/_77989807._.js.map +1 -0
  309. package/web/.next/server/chunks/ssr/_800acf27._.js +3 -0
  310. package/web/.next/server/chunks/ssr/_800acf27._.js.map +1 -0
  311. package/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js → _8eeee4db._.js} +3 -3
  312. package/web/.next/server/chunks/ssr/_8eeee4db._.js.map +1 -0
  313. package/web/.next/server/chunks/ssr/_9025abb8._.js +3 -0
  314. package/web/.next/server/chunks/ssr/_9025abb8._.js.map +1 -0
  315. package/web/.next/server/chunks/ssr/_9603ace6._.js +3 -0
  316. package/web/.next/server/chunks/ssr/_9603ace6._.js.map +1 -0
  317. package/web/.next/server/chunks/ssr/_ad771b49._.js +6 -0
  318. package/web/.next/server/chunks/ssr/_ad771b49._.js.map +1 -0
  319. package/web/.next/server/chunks/ssr/_b11878f5._.js +3 -0
  320. package/web/.next/server/chunks/ssr/_b11878f5._.js.map +1 -0
  321. package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_3197d5cb._.js → server/chunks/ssr/_caf236b9._.js} +2 -2
  322. package/web/.next/server/chunks/ssr/_caf236b9._.js.map +1 -0
  323. package/web/.next/server/chunks/ssr/_ce38ef23._.js +9 -0
  324. package/web/.next/server/chunks/ssr/_ce38ef23._.js.map +1 -0
  325. package/web/.next/server/chunks/ssr/_d13defa2._.js +3 -0
  326. package/web/.next/server/chunks/ssr/_d13defa2._.js.map +1 -0
  327. package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_884ddade._.js → server/chunks/ssr/_ed11dcd6._.js} +3 -3
  328. package/web/.next/server/chunks/ssr/_ed11dcd6._.js.map +1 -0
  329. package/web/.next/server/chunks/ssr/_f0132aa7._.js +7 -0
  330. package/web/.next/server/chunks/ssr/_f0132aa7._.js.map +1 -0
  331. package/web/.next/server/chunks/ssr/_f38b49fe._.js +3 -0
  332. package/web/.next/server/chunks/ssr/_f38b49fe._.js.map +1 -0
  333. 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
  334. package/web/.next/server/chunks/ssr/_f4d222d6._.js.map +1 -0
  335. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +3 -0
  336. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -0
  337. package/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js +3 -0
  338. package/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js.map +1 -0
  339. package/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js +2 -2
  340. package/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js.map +1 -1
  341. package/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js +1 -1
  342. package/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js.map +1 -1
  343. package/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js +2 -2
  344. package/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js.map +1 -1
  345. package/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js +1 -1
  346. package/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js.map +1 -1
  347. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js +1 -1
  348. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js.map +1 -1
  349. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +3 -0
  350. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js.map +1 -0
  351. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +3 -0
  352. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js.map +1 -0
  353. package/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js +3 -0
  354. package/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js.map +1 -0
  355. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
  356. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
  357. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  358. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  359. package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_label_tsx_af3b4cd6._.js +3 -0
  360. package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_label_tsx_af3b4cd6._.js.map +1 -0
  361. package/web/.next/server/middleware-build-manifest.js +4 -4
  362. package/web/.next/server/pages/500.html +2 -2
  363. package/web/.next/server/server-reference-manifest.js +1 -1
  364. package/web/.next/server/server-reference-manifest.json +59 -22
  365. package/web/.next/standalone/src/presentation/web/.next/BUILD_ID +1 -1
  366. package/web/.next/standalone/src/presentation/web/.next/app-path-routes-manifest.json +1 -0
  367. package/web/.next/standalone/src/presentation/web/.next/build-manifest.json +6 -6
  368. package/web/.next/standalone/src/presentation/web/.next/prerender-manifest.json +3 -3
  369. package/web/.next/standalone/src/presentation/web/.next/required-server-files.json +1 -1
  370. package/web/.next/standalone/src/presentation/web/.next/routes-manifest.json +6 -0
  371. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +4 -4
  372. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +16 -16
  373. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js +8 -7
  374. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  375. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  376. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +4 -4
  377. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +19 -19
  378. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +8 -7
  379. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  380. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  381. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +4 -4
  382. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  383. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +8 -7
  384. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  385. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  386. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/build-manifest.json +4 -4
  387. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +16 -16
  388. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js +8 -7
  389. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  390. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  391. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +4 -4
  392. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +19 -19
  393. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +8 -7
  394. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  395. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  396. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/build-manifest.json +4 -4
  397. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +14 -14
  398. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js +8 -7
  399. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  400. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  401. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +4 -4
  402. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  403. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +8 -7
  404. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  405. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  406. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page/build-manifest.json +4 -4
  407. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page.js +4 -3
  408. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page.js.nft.json +1 -1
  409. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.html +2 -2
  410. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.rsc +1 -1
  411. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  412. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  413. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  414. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  415. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  416. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/build-manifest.json +4 -4
  417. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  418. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page.js +9 -7
  419. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  420. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  421. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/app-paths-manifest.json +3 -0
  422. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/build-manifest.json +18 -0
  423. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/next-font-manifest.json +6 -0
  424. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/react-loadable-manifest.json +1 -0
  425. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/server-reference-manifest.json +50 -0
  426. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js +18 -0
  427. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js.map +5 -0
  428. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js.nft.json +1 -0
  429. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page_client-reference-manifest.js +2 -0
  430. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/build-manifest.json +4 -4
  431. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  432. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page.js +11 -8
  433. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page.js.nft.json +1 -1
  434. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  435. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/build-manifest.json +4 -4
  436. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
  437. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page.js +9 -7
  438. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page.js.nft.json +1 -1
  439. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  440. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/build-manifest.json +4 -4
  441. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  442. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page.js +8 -7
  443. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page.js.nft.json +1 -1
  444. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  445. package/web/.next/standalone/src/presentation/web/.next/server/app-paths-manifest.json +1 -0
  446. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_190bdc35._.js +4 -0
  447. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js +6 -0
  448. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +6 -0
  449. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js +3 -0
  450. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js +3 -0
  451. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_2eacac96.js +4 -0
  452. 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
  453. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_54b1e179.js +4 -0
  454. 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
  455. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c9978986.js +4 -0
  456. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_ce6dae5d.js +4 -0
  457. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d82f78f0.js +4 -0
  458. 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
  459. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js +1 -1
  460. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js +1 -1
  461. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__0880ff0e._.js +3 -0
  462. 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
  463. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +4 -0
  464. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__1e4ddb05._.js +4 -0
  465. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__23b5ca2c._.js +3 -0
  466. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__2f487654._.js +3 -0
  467. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +3 -0
  468. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__5edfc56b._.js +3 -0
  469. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js +3 -0
  470. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__8c88ef55._.js +3 -0
  471. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
  472. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__ad2b2a3c._.js +3 -0
  473. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c0876a83._.js +3 -0
  474. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c3c963c6._.js +3 -0
  475. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c9777776._.js +3 -0
  476. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c9eacb2e._.js +3 -0
  477. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js +4 -0
  478. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fb243197._.js +4 -0
  479. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +4 -0
  480. 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
  481. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_3a4c94e3._.js +3 -0
  482. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_4b60a2b7._.js +3 -0
  483. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_6645f218._.js +21 -0
  484. package/web/.next/{server/chunks/ssr/_ad8a094f._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_6887cba3._.js} +3 -3
  485. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_6d5ca3fe._.js +3 -0
  486. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_77989807._.js +3 -0
  487. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_800acf27._.js +3 -0
  488. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js → _8eeee4db._.js} +3 -3
  489. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9025abb8._.js +3 -0
  490. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9603ace6._.js +3 -0
  491. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_ad771b49._.js +6 -0
  492. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_b11878f5._.js +3 -0
  493. package/web/.next/{server/chunks/ssr/_3197d5cb._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_caf236b9._.js} +2 -2
  494. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_ce38ef23._.js +9 -0
  495. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_d13defa2._.js +3 -0
  496. package/web/.next/{server/chunks/ssr/_884ddade._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_ed11dcd6._.js} +3 -3
  497. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_f0132aa7._.js +7 -0
  498. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_f38b49fe._.js +3 -0
  499. 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
  500. 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
  501. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js +3 -0
  502. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js +2 -2
  503. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js +1 -1
  504. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js +2 -2
  505. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js +1 -1
  506. 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
  507. 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
  508. 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
  509. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js +3 -0
  510. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
  511. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  512. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_ui_label_tsx_af3b4cd6._.js +3 -0
  513. package/web/.next/standalone/src/presentation/web/.next/server/middleware-build-manifest.js +4 -4
  514. package/web/.next/standalone/src/presentation/web/.next/server/pages/500.html +2 -2
  515. package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.js +1 -1
  516. package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.json +59 -22
  517. package/web/.next/standalone/src/presentation/web/app/actions/create-feature.ts +6 -1
  518. package/web/.next/standalone/src/presentation/web/app/actions/load-settings.ts +43 -0
  519. package/web/.next/standalone/src/presentation/web/app/actions/update-settings.ts +73 -0
  520. package/web/.next/standalone/src/presentation/web/app/global-error.tsx +23 -0
  521. package/web/.next/standalone/src/presentation/web/app/settings/page.tsx +27 -0
  522. package/web/.next/standalone/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.tsx +57 -0
  523. package/web/.next/standalone/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.tsx +21 -0
  524. package/web/.next/standalone/src/presentation/web/components/features/control-center/control-center-inner.tsx +32 -4
  525. package/web/.next/standalone/src/presentation/web/components/features/control-center/use-control-center-state.ts +9 -4
  526. package/web/.next/standalone/src/presentation/web/components/features/features-canvas/features-canvas.stories.tsx +81 -2
  527. package/web/.next/standalone/src/presentation/web/components/features/features-canvas/features-canvas.tsx +1 -1
  528. package/web/.next/standalone/src/presentation/web/components/features/settings/agent-settings-section.stories.tsx +43 -0
  529. package/web/.next/standalone/src/presentation/web/components/features/settings/agent-settings-section.tsx +176 -0
  530. package/web/.next/standalone/src/presentation/web/components/features/settings/database-settings-section.stories.tsx +28 -0
  531. package/web/.next/standalone/src/presentation/web/components/features/settings/database-settings-section.tsx +43 -0
  532. package/web/.next/standalone/src/presentation/web/components/features/settings/environment-settings-section.stories.tsx +33 -0
  533. package/web/.next/standalone/src/presentation/web/components/features/settings/environment-settings-section.tsx +125 -0
  534. package/web/.next/standalone/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.tsx +44 -0
  535. package/web/.next/standalone/src/presentation/web/components/features/settings/feature-flags-settings-section.tsx +94 -0
  536. package/web/.next/standalone/src/presentation/web/components/features/settings/notification-settings-section.stories.tsx +71 -0
  537. package/web/.next/standalone/src/presentation/web/components/features/settings/notification-settings-section.tsx +178 -0
  538. package/web/.next/standalone/src/presentation/web/components/features/settings/settings-page-client.stories.tsx +46 -0
  539. package/web/.next/standalone/src/presentation/web/components/features/settings/settings-page-client.tsx +60 -0
  540. package/web/.next/standalone/src/presentation/web/components/features/settings/workflow-settings-section.stories.tsx +62 -0
  541. package/web/.next/standalone/src/presentation/web/components/features/settings/workflow-settings-section.tsx +274 -0
  542. package/web/.next/standalone/src/presentation/web/components/layouts/app-sidebar/app-sidebar.tsx +7 -1
  543. package/web/.next/standalone/src/presentation/web/components/ui/switch.tsx +35 -0
  544. package/web/.next/standalone/src/presentation/web/hooks/use-graph-state.ts +7 -0
  545. package/web/.next/standalone/src/presentation/web/hooks/use-viewport-persistence.ts +2 -0
  546. package/web/.next/standalone/src/presentation/web/lib/feature-flags.ts +47 -4
  547. package/web/.next/standalone/src/presentation/web/server.js +1 -1
  548. package/web/.next/static/chunks/0c9c6fa052f30692.js +1 -0
  549. package/web/.next/static/chunks/12c0a9e7b566f998.css +2 -0
  550. package/web/.next/static/chunks/2500bf7056aaeff1.js +1 -0
  551. package/web/.next/static/chunks/27a80588cf4e08df.js +1 -0
  552. package/web/.next/static/chunks/27f7260befce4dea.js +1 -0
  553. package/web/.next/static/chunks/2bbd5c12e2c90c0c.js +1 -0
  554. package/web/.next/static/chunks/356ebc89a2a97627.js +1 -0
  555. package/web/.next/static/chunks/3b37508221559c80.js +1 -0
  556. package/web/.next/static/chunks/3e4dc2cc60a49743.js +1 -0
  557. package/web/.next/static/chunks/{716547ef8d13139d.js → 4d4a4111dec5f70f.js} +1 -1
  558. package/web/.next/static/chunks/700501f5ac2bb320.js +1 -0
  559. package/web/.next/static/chunks/736bef33b328e5e6.js +1 -0
  560. package/web/.next/static/chunks/8857165c23fc8fe5.js +1 -0
  561. package/web/.next/static/chunks/89aac43287d73b02.js +1 -0
  562. package/web/.next/static/chunks/9c74a889605bb2a3.js +1 -0
  563. package/web/.next/static/chunks/a5c6c77b79b9ed9b.js +1 -0
  564. package/web/.next/static/chunks/b1c0e555cf7bb4f8.js +1 -0
  565. package/web/.next/static/chunks/d0732d738a696000.js +1 -0
  566. package/web/.next/static/chunks/{07f00e2e73d322d2.js → d4d8f0a137bd2eb4.js} +3 -3
  567. package/web/.next/static/chunks/d9c55c5f00f6d29b.js +1 -0
  568. package/web/.next/static/chunks/db55ff93af6c8455.js +4 -0
  569. package/web/.next/static/chunks/{00adfce42dbbd5ef.js → f742ff5c1be2ef77.js} +1 -1
  570. package/web/.next/static/chunks/f97fd41212035056.js +11 -0
  571. package/web/.next/static/chunks/fa9742636bdfcce6.js +1 -0
  572. package/web/.next/static/chunks/{turbopack-05820f781f3ffc22.js → turbopack-3bdf15471eef2eec.js} +1 -1
  573. package/web/.next/trace +1 -1
  574. package/web/.next/trace-build +1 -1
  575. package/web/.next/types/link.d.ts +1 -0
  576. package/web/.next/types/routes.d.ts +2 -1
  577. package/web/.next/types/validator.ts +9 -0
  578. package/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js +0 -3
  579. package/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js.map +0 -1
  580. package/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js +0 -3
  581. package/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js.map +0 -1
  582. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js +0 -4
  583. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js.map +0 -1
  584. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_8e8822d6.js.map +0 -1
  585. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_9d039634.js.map +0 -1
  586. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_bec3d8d3.js.map +0 -1
  587. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c27615b6.js.map +0 -1
  588. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d302115b.js.map +0 -1
  589. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_dbf21e04.js.map +0 -1
  590. package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +0 -4
  591. package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js.map +0 -1
  592. package/web/.next/server/chunks/ssr/[root-of-the-server]__2018e25f._.js +0 -3
  593. package/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +0 -3
  594. package/web/.next/server/chunks/ssr/[root-of-the-server]__3b4af5ae._.js +0 -3
  595. package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +0 -4
  596. package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js.map +0 -1
  597. package/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js +0 -3
  598. package/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js.map +0 -1
  599. package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +0 -4
  600. package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +0 -4
  601. package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js.map +0 -1
  602. package/web/.next/server/chunks/ssr/[root-of-the-server]__6ee2450e._.js +0 -3
  603. package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +0 -4
  604. package/web/.next/server/chunks/ssr/[root-of-the-server]__80e5bed2._.js +0 -3
  605. package/web/.next/server/chunks/ssr/[root-of-the-server]__80e5bed2._.js.map +0 -1
  606. package/web/.next/server/chunks/ssr/[root-of-the-server]__8a947500._.js +0 -3
  607. package/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js +0 -3
  608. package/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js.map +0 -1
  609. package/web/.next/server/chunks/ssr/[root-of-the-server]__c18f84a4._.js +0 -3
  610. package/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js +0 -3
  611. package/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js.map +0 -1
  612. package/web/.next/server/chunks/ssr/[root-of-the-server]__fa87595c._.js +0 -3
  613. package/web/.next/server/chunks/ssr/_07c2a32a._.js +0 -9
  614. package/web/.next/server/chunks/ssr/_07c2a32a._.js.map +0 -1
  615. package/web/.next/server/chunks/ssr/_0e9d6bf7._.js +0 -3
  616. package/web/.next/server/chunks/ssr/_0e9d6bf7._.js.map +0 -1
  617. package/web/.next/server/chunks/ssr/_3197d5cb._.js.map +0 -1
  618. package/web/.next/server/chunks/ssr/_380c6567._.js +0 -6
  619. package/web/.next/server/chunks/ssr/_380c6567._.js.map +0 -1
  620. package/web/.next/server/chunks/ssr/_44cce4e0._.js +0 -4
  621. package/web/.next/server/chunks/ssr/_44cce4e0._.js.map +0 -1
  622. package/web/.next/server/chunks/ssr/_5ee4f5a7._.js +0 -7
  623. package/web/.next/server/chunks/ssr/_5ee4f5a7._.js.map +0 -1
  624. package/web/.next/server/chunks/ssr/_61351ed3._.js +0 -3
  625. package/web/.next/server/chunks/ssr/_61351ed3._.js.map +0 -1
  626. package/web/.next/server/chunks/ssr/_8400c8bb._.js +0 -3
  627. package/web/.next/server/chunks/ssr/_8400c8bb._.js.map +0 -1
  628. package/web/.next/server/chunks/ssr/_9f940437._.js +0 -3
  629. package/web/.next/server/chunks/ssr/_9f940437._.js.map +0 -1
  630. package/web/.next/server/chunks/ssr/_a29296f0._.js +0 -3
  631. package/web/.next/server/chunks/ssr/_a29296f0._.js.map +0 -1
  632. package/web/.next/server/chunks/ssr/_a3854150._.js +0 -6
  633. package/web/.next/server/chunks/ssr/_a3854150._.js.map +0 -1
  634. package/web/.next/server/chunks/ssr/_ad8a094f._.js.map +0 -1
  635. package/web/.next/server/chunks/ssr/_dc379243._.js +0 -4
  636. package/web/.next/server/chunks/ssr/_dc379243._.js.map +0 -1
  637. package/web/.next/server/chunks/ssr/_e806976d._.js +0 -3
  638. package/web/.next/server/chunks/ssr/_e806976d._.js.map +0 -1
  639. package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js +0 -3
  640. package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js.map +0 -1
  641. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js +0 -3
  642. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js +0 -3
  643. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js +0 -4
  644. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +0 -4
  645. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__2018e25f._.js +0 -3
  646. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +0 -3
  647. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__3b4af5ae._.js +0 -3
  648. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +0 -4
  649. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js +0 -3
  650. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +0 -4
  651. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +0 -4
  652. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6ee2450e._.js +0 -3
  653. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +0 -4
  654. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__80e5bed2._.js +0 -3
  655. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__8a947500._.js +0 -3
  656. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js +0 -3
  657. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c18f84a4._.js +0 -3
  658. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js +0 -3
  659. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fa87595c._.js +0 -3
  660. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_07c2a32a._.js +0 -9
  661. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_0e9d6bf7._.js +0 -3
  662. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_380c6567._.js +0 -6
  663. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_44cce4e0._.js +0 -4
  664. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_5ee4f5a7._.js +0 -7
  665. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_61351ed3._.js +0 -3
  666. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_8400c8bb._.js +0 -3
  667. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9f940437._.js +0 -3
  668. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_a29296f0._.js +0 -3
  669. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_a3854150._.js +0 -6
  670. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_dc379243._.js +0 -4
  671. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_e806976d._.js +0 -3
  672. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js +0 -3
  673. package/web/.next/static/chunks/11a6c88ffcbac93f.js +0 -1
  674. package/web/.next/static/chunks/1f5c93a8b939416d.js +0 -5
  675. package/web/.next/static/chunks/255140c45a023ff4.js +0 -1
  676. package/web/.next/static/chunks/293231ccc0b144fa.js +0 -1
  677. package/web/.next/static/chunks/3bc2a07d02372939.js +0 -1
  678. package/web/.next/static/chunks/3f205fd6adbfd20a.js +0 -7
  679. package/web/.next/static/chunks/424982cd78174a1a.js +0 -1
  680. package/web/.next/static/chunks/4a3b3cfcc85e7254.js +0 -1
  681. package/web/.next/static/chunks/5d0a6417c4e4e545.js +0 -1
  682. package/web/.next/static/chunks/6931ae67c2484ddf.js +0 -1
  683. package/web/.next/static/chunks/9215b6fb973482c5.js +0 -1
  684. package/web/.next/static/chunks/9a765e022ef2b815.js +0 -1
  685. package/web/.next/static/chunks/b6c507fc42d9a277.js +0 -1
  686. package/web/.next/static/chunks/c1dbeb3307dab443.js +0 -4
  687. package/web/.next/static/chunks/d7786685ec8efe10.js +0 -1
  688. package/web/.next/static/chunks/e12fff3b57456bc2.css +0 -2
  689. package/web/.next/static/chunks/edbd674102e897b4.js +0 -1
  690. /package/web/.next/static/{L6_6jZ4TnQuuDXIF5GZEf → OY9vo9JHlYYnBy-WPoYAQ}/_buildManifest.js +0 -0
  691. /package/web/.next/static/{L6_6jZ4TnQuuDXIF5GZEf → OY9vo9JHlYYnBy-WPoYAQ}/_clientMiddlewareManifest.json +0 -0
  692. /package/web/.next/static/{L6_6jZ4TnQuuDXIF5GZEf → OY9vo9JHlYYnBy-WPoYAQ}/_ssgManifest.js +0 -0
@@ -0,0 +1,6 @@
1
+ import type { FeatureFlags } from '../../../../../../packages/core/src/domain/generated/output.js';
2
+ export interface FeatureFlagsSettingsSectionProps {
3
+ featureFlags: FeatureFlags;
4
+ }
5
+ export declare function FeatureFlagsSettingsSection({ featureFlags }: FeatureFlagsSettingsSectionProps): import("react/jsx-runtime").JSX.Element;
6
+ //# sourceMappingURL=feature-flags-settings-section.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"feature-flags-settings-section.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/feature-flags-settings-section.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sCAAsC,CAAC;AAgBzE,MAAM,WAAW,gCAAgC;IAC/C,YAAY,EAAE,YAAY,CAAC;CAC5B;AAED,wBAAgB,2BAA2B,CAAC,EAAE,YAAY,EAAE,EAAE,gCAAgC,2CAgE7F"}
@@ -0,0 +1,45 @@
1
+ 'use client';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import { useState, useTransition, useRef, useEffect } from 'react';
4
+ import { Flag, Check } from 'lucide-react';
5
+ import { toast } from 'sonner';
6
+ import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '../../ui/card.js';
7
+ import { Label } from '../../ui/label.js';
8
+ import { Switch } from '../../ui/switch.js';
9
+ import { updateSettingsAction } from '../../../app/actions/update-settings.js';
10
+ const FLAG_DESCRIPTIONS = {
11
+ skills: 'Enable Skills navigation and functionality in the web UI',
12
+ envDeploy: 'Enable environment deployment features in the web UI',
13
+ debug: 'Enable debug UI elements and verbose client-side logging',
14
+ };
15
+ const FLAG_LABELS = {
16
+ skills: 'Skills',
17
+ envDeploy: 'Deployments',
18
+ debug: 'Debug',
19
+ };
20
+ const FLAG_KEYS = ['skills', 'envDeploy', 'debug'];
21
+ export function FeatureFlagsSettingsSection({ featureFlags }) {
22
+ const [flags, setFlags] = useState({ ...featureFlags });
23
+ const [isPending, startTransition] = useTransition();
24
+ const [showSaved, setShowSaved] = useState(false);
25
+ const prevPendingRef = useRef(false);
26
+ useEffect(() => {
27
+ if (prevPendingRef.current && !isPending) {
28
+ setShowSaved(true);
29
+ const timer = setTimeout(() => setShowSaved(false), 2000);
30
+ return () => clearTimeout(timer);
31
+ }
32
+ prevPendingRef.current = isPending;
33
+ }, [isPending]);
34
+ function handleFlagChange(key, value) {
35
+ const newFlags = { ...flags, [key]: value };
36
+ setFlags(newFlags);
37
+ startTransition(async () => {
38
+ const result = await updateSettingsAction({ featureFlags: newFlags });
39
+ if (!result.success) {
40
+ toast.error(result.error ?? 'Failed to save feature flags');
41
+ }
42
+ });
43
+ }
44
+ return (_jsxs(Card, { id: "feature-flags", className: "scroll-mt-6", "data-testid": "feature-flags-settings-section", children: [_jsxs(CardHeader, { children: [_jsxs("div", { className: "flex items-center justify-between", children: [_jsxs("div", { className: "flex items-center gap-2", children: [_jsx(Flag, { className: "text-muted-foreground h-4 w-4" }), _jsx(CardTitle, { children: "Feature Flags" })] }), isPending ? _jsx("span", { className: "text-muted-foreground text-xs", children: "Saving..." }) : null, showSaved && !isPending ? (_jsxs("span", { className: "flex items-center gap-1 text-xs text-green-600", children: [_jsx(Check, { className: "h-3 w-3" }), "Saved"] })) : null] }), _jsx(CardDescription, { children: "Toggle experimental and optional features. Changes take effect after page navigation." })] }), _jsx(CardContent, { className: "space-y-4", children: FLAG_KEYS.map((key) => (_jsxs("div", { className: "flex items-center justify-between gap-4", children: [_jsxs("div", { className: "space-y-0.5", children: [_jsx(Label, { htmlFor: `flag-${key}`, children: FLAG_LABELS[key] }), _jsx("p", { className: "text-muted-foreground text-xs", children: FLAG_DESCRIPTIONS[key] })] }), _jsx(Switch, { id: `flag-${key}`, "data-testid": `switch-flag-${key}`, checked: flags[key], onCheckedChange: (v) => handleFlagChange(key, v) })] }, key))) })] }));
45
+ }
@@ -0,0 +1,16 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import { FeatureFlagsSettingsSection } from './feature-flags-settings-section.js';
3
+ declare const meta: {
4
+ title: string;
5
+ component: typeof FeatureFlagsSettingsSection;
6
+ tags: string[];
7
+ parameters: {
8
+ layout: string;
9
+ };
10
+ };
11
+ export default meta;
12
+ type Story = StoryObj<typeof meta>;
13
+ export declare const Default: Story;
14
+ export declare const AllEnabled: Story;
15
+ export declare const AllDisabled: Story;
16
+ //# sourceMappingURL=feature-flags-settings-section.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"feature-flags-settings-section.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/feature-flags-settings-section.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAE/E,QAAA,MAAM,IAAI;;;;;;;CAO0C,CAAC;AAErD,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAQrB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,KAQxB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAQzB,CAAC"}
@@ -0,0 +1,37 @@
1
+ import { FeatureFlagsSettingsSection } from './feature-flags-settings-section.js';
2
+ const meta = {
3
+ title: 'Features/Settings/FeatureFlagsSettingsSection',
4
+ component: FeatureFlagsSettingsSection,
5
+ tags: ['autodocs'],
6
+ parameters: {
7
+ layout: 'padded',
8
+ },
9
+ };
10
+ export default meta;
11
+ export const Default = {
12
+ args: {
13
+ featureFlags: {
14
+ skills: false,
15
+ envDeploy: false,
16
+ debug: false,
17
+ },
18
+ },
19
+ };
20
+ export const AllEnabled = {
21
+ args: {
22
+ featureFlags: {
23
+ skills: true,
24
+ envDeploy: true,
25
+ debug: true,
26
+ },
27
+ },
28
+ };
29
+ export const AllDisabled = {
30
+ args: {
31
+ featureFlags: {
32
+ skills: false,
33
+ envDeploy: false,
34
+ debug: false,
35
+ },
36
+ },
37
+ };
@@ -0,0 +1,6 @@
1
+ import type { NotificationPreferences } from '../../../../../../packages/core/src/domain/generated/output.js';
2
+ export interface NotificationSettingsSectionProps {
3
+ notifications: NotificationPreferences;
4
+ }
5
+ export declare function NotificationSettingsSection({ notifications }: NotificationSettingsSectionProps): import("react/jsx-runtime").JSX.Element;
6
+ //# sourceMappingURL=notification-settings-section.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notification-settings-section.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/notification-settings-section.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAiBpF,MAAM,WAAW,gCAAgC;IAC/C,aAAa,EAAE,uBAAuB,CAAC;CACxC;AAED,wBAAgB,2BAA2B,CAAC,EAAE,aAAa,EAAE,EAAE,gCAAgC,2CAkJ9F"}
@@ -0,0 +1,68 @@
1
+ 'use client';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import { useState, useTransition, useRef, useEffect } from 'react';
4
+ import { Bell, Check } from 'lucide-react';
5
+ import { toast } from 'sonner';
6
+ import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '../../ui/card.js';
7
+ import { Label } from '../../ui/label.js';
8
+ import { Switch } from '../../ui/switch.js';
9
+ import { Separator } from '../../ui/separator.js';
10
+ import { updateSettingsAction } from '../../../app/actions/update-settings.js';
11
+ const AGENT_EVENT_TOGGLES = [
12
+ { key: 'agentStarted', label: 'Agent Started' },
13
+ { key: 'phaseCompleted', label: 'Phase Completed' },
14
+ { key: 'waitingApproval', label: 'Waiting Approval' },
15
+ { key: 'agentCompleted', label: 'Agent Completed' },
16
+ { key: 'agentFailed', label: 'Agent Failed' },
17
+ ];
18
+ const PR_EVENT_TOGGLES = [
19
+ { key: 'prMerged', label: 'PR Merged' },
20
+ { key: 'prClosed', label: 'PR Closed' },
21
+ { key: 'prChecksPassed', label: 'PR Checks Passed' },
22
+ { key: 'prChecksFailed', label: 'PR Checks Failed' },
23
+ ];
24
+ export function NotificationSettingsSection({ notifications }) {
25
+ const [inApp, setInApp] = useState(notifications.inApp.enabled);
26
+ const [browser, setBrowser] = useState(notifications.browser.enabled);
27
+ const [desktop, setDesktop] = useState(notifications.desktop.enabled);
28
+ const [events, setEvents] = useState({ ...notifications.events });
29
+ const [isPending, startTransition] = useTransition();
30
+ const [showSaved, setShowSaved] = useState(false);
31
+ const prevPendingRef = useRef(false);
32
+ useEffect(() => {
33
+ if (prevPendingRef.current && !isPending) {
34
+ setShowSaved(true);
35
+ const timer = setTimeout(() => setShowSaved(false), 2000);
36
+ return () => clearTimeout(timer);
37
+ }
38
+ prevPendingRef.current = isPending;
39
+ }, [isPending]);
40
+ function save(payload) {
41
+ startTransition(async () => {
42
+ const result = await updateSettingsAction(payload);
43
+ if (!result.success) {
44
+ toast.error(result.error ?? 'Failed to save notification settings');
45
+ }
46
+ });
47
+ }
48
+ function buildFullPayload(overrides = {}) {
49
+ return {
50
+ notifications: {
51
+ inApp: { enabled: overrides.inApp ?? inApp },
52
+ browser: { enabled: overrides.browser ?? browser },
53
+ desktop: { enabled: overrides.desktop ?? desktop },
54
+ events: overrides.events ?? events,
55
+ },
56
+ };
57
+ }
58
+ function handleChannelChange(channel, setter, value) {
59
+ setter(value);
60
+ save(buildFullPayload({ [channel]: value }));
61
+ }
62
+ function handleEventChange(key, value) {
63
+ const newEvents = { ...events, [key]: value };
64
+ setEvents(newEvents);
65
+ save(buildFullPayload({ events: newEvents }));
66
+ }
67
+ return (_jsxs(Card, { id: "notifications", className: "scroll-mt-6", "data-testid": "notification-settings-section", children: [_jsxs(CardHeader, { children: [_jsxs("div", { className: "flex items-center justify-between", children: [_jsxs("div", { className: "flex items-center gap-2", children: [_jsx(Bell, { className: "text-muted-foreground h-4 w-4" }), _jsx(CardTitle, { children: "Notifications" })] }), isPending ? _jsx("span", { className: "text-muted-foreground text-xs", children: "Saving..." }) : null, showSaved && !isPending ? (_jsxs("span", { className: "flex items-center gap-1 text-xs text-green-600", children: [_jsx(Check, { className: "h-3 w-3" }), "Saved"] })) : null] }), _jsx(CardDescription, { children: "Configure notification channels and event preferences" })] }), _jsxs(CardContent, { className: "space-y-4", children: [_jsxs("div", { className: "space-y-3", children: [_jsx("h3", { className: "text-sm font-semibold", children: "Channels" }), _jsxs("div", { className: "flex items-center justify-between", children: [_jsx(Label, { htmlFor: "notif-in-app", children: "In-App" }), _jsx(Switch, { id: "notif-in-app", "data-testid": "switch-in-app", checked: inApp, onCheckedChange: (v) => handleChannelChange('inApp', setInApp, v) })] }), _jsxs("div", { className: "flex items-center justify-between", children: [_jsx(Label, { htmlFor: "notif-browser", children: "Browser" }), _jsx(Switch, { id: "notif-browser", "data-testid": "switch-browser", checked: browser, onCheckedChange: (v) => handleChannelChange('browser', setBrowser, v) })] }), _jsxs("div", { className: "flex items-center justify-between", children: [_jsx(Label, { htmlFor: "notif-desktop", children: "Desktop" }), _jsx(Switch, { id: "notif-desktop", "data-testid": "switch-desktop", checked: desktop, onCheckedChange: (v) => handleChannelChange('desktop', setDesktop, v) })] })] }), _jsx(Separator, {}), _jsxs("div", { className: "space-y-3", children: [_jsx("h3", { className: "text-sm font-semibold", children: "Agent Events" }), AGENT_EVENT_TOGGLES.map(({ key, label }) => (_jsxs("div", { className: "flex items-center justify-between", children: [_jsx(Label, { htmlFor: `notif-event-${key}`, children: label }), _jsx(Switch, { id: `notif-event-${key}`, "data-testid": `switch-event-${key}`, checked: events[key], onCheckedChange: (v) => handleEventChange(key, v) })] }, key)))] }), _jsx(Separator, {}), _jsxs("div", { className: "space-y-3", children: [_jsx("h3", { className: "text-sm font-semibold", children: "PR Events" }), PR_EVENT_TOGGLES.map(({ key, label }) => (_jsxs("div", { className: "flex items-center justify-between", children: [_jsx(Label, { htmlFor: `notif-event-${key}`, children: label }), _jsx(Switch, { id: `notif-event-${key}`, "data-testid": `switch-event-${key}`, checked: events[key], onCheckedChange: (v) => handleEventChange(key, v) })] }, key)))] })] })] }));
68
+ }
@@ -0,0 +1,16 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import { NotificationSettingsSection } from './notification-settings-section.js';
3
+ declare const meta: {
4
+ title: string;
5
+ component: typeof NotificationSettingsSection;
6
+ tags: string[];
7
+ parameters: {
8
+ layout: string;
9
+ };
10
+ };
11
+ export default meta;
12
+ type Story = StoryObj<typeof meta>;
13
+ export declare const Default: Story;
14
+ export declare const AllEnabled: Story;
15
+ export declare const AllDisabled: Story;
16
+ //# sourceMappingURL=notification-settings-section.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notification-settings-section.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/notification-settings-section.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAE9E,QAAA,MAAM,IAAI;;;;;;;CAO0C,CAAC;AAErD,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AA0BnC,eAAO,MAAM,OAAO,EAAE,KASrB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,KASxB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KASzB,CAAC"}
@@ -0,0 +1,62 @@
1
+ import { NotificationSettingsSection } from './notification-settings-section.js';
2
+ const meta = {
3
+ title: 'Features/Settings/NotificationSettingsSection',
4
+ component: NotificationSettingsSection,
5
+ tags: ['autodocs'],
6
+ parameters: {
7
+ layout: 'padded',
8
+ },
9
+ };
10
+ export default meta;
11
+ const allEvents = {
12
+ agentStarted: true,
13
+ phaseCompleted: true,
14
+ waitingApproval: true,
15
+ agentCompleted: true,
16
+ agentFailed: true,
17
+ prMerged: true,
18
+ prClosed: true,
19
+ prChecksPassed: true,
20
+ prChecksFailed: true,
21
+ };
22
+ const noEvents = {
23
+ agentStarted: false,
24
+ phaseCompleted: false,
25
+ waitingApproval: false,
26
+ agentCompleted: false,
27
+ agentFailed: false,
28
+ prMerged: false,
29
+ prClosed: false,
30
+ prChecksPassed: false,
31
+ prChecksFailed: false,
32
+ };
33
+ export const Default = {
34
+ args: {
35
+ notifications: {
36
+ inApp: { enabled: true },
37
+ browser: { enabled: true },
38
+ desktop: { enabled: false },
39
+ events: allEvents,
40
+ },
41
+ },
42
+ };
43
+ export const AllEnabled = {
44
+ args: {
45
+ notifications: {
46
+ inApp: { enabled: true },
47
+ browser: { enabled: true },
48
+ desktop: { enabled: true },
49
+ events: allEvents,
50
+ },
51
+ },
52
+ };
53
+ export const AllDisabled = {
54
+ args: {
55
+ notifications: {
56
+ inApp: { enabled: false },
57
+ browser: { enabled: false },
58
+ desktop: { enabled: false },
59
+ events: noEvents,
60
+ },
61
+ },
62
+ };
@@ -0,0 +1,8 @@
1
+ import type { Settings } from '../../../../../../packages/core/src/domain/generated/output.js';
2
+ export interface SettingsPageClientProps {
3
+ settings: Settings;
4
+ shepHome: string;
5
+ dbFileSize: string;
6
+ }
7
+ export declare function SettingsPageClient({ settings, shepHome, dbFileSize }: SettingsPageClientProps): import("react/jsx-runtime").JSX.Element;
8
+ //# sourceMappingURL=settings-page-client.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"settings-page-client.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/settings-page-client.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAC;AAWrE,MAAM,WAAW,uBAAuB;IACtC,QAAQ,EAAE,QAAQ,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,kBAAkB,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,UAAU,EAAE,EAAE,uBAAuB,2CAiC7F"}
@@ -0,0 +1,21 @@
1
+ 'use client';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import { Bot, Terminal, GitBranch, Bell, Flag, Database } from 'lucide-react';
4
+ import { AgentSettingsSection } from './agent-settings-section.js';
5
+ import { EnvironmentSettingsSection } from './environment-settings-section.js';
6
+ import { WorkflowSettingsSection } from './workflow-settings-section.js';
7
+ import { NotificationSettingsSection } from './notification-settings-section.js';
8
+ import { FeatureFlagsSettingsSection } from './feature-flags-settings-section.js';
9
+ import { DatabaseSettingsSection } from './database-settings-section.js';
10
+ const SECTIONS = [
11
+ { id: 'agent', label: 'Agent', icon: Bot },
12
+ { id: 'environment', label: 'IDE & Terminal', icon: Terminal },
13
+ { id: 'workflow', label: 'Workflow', icon: GitBranch },
14
+ { id: 'notifications', label: 'Notifications', icon: Bell },
15
+ { id: 'feature-flags', label: 'Feature Flags', icon: Flag },
16
+ { id: 'database', label: 'Database', icon: Database },
17
+ ];
18
+ export function SettingsPageClient({ settings, shepHome, dbFileSize }) {
19
+ const featureFlags = settings.featureFlags ?? { skills: false, envDeploy: false, debug: false };
20
+ return (_jsxs("div", { "data-testid": "settings-page-client", className: "space-y-6", children: [_jsxs("div", { children: [_jsx("h1", { className: "text-lg font-semibold tracking-tight", children: "Settings" }), _jsx("p", { className: "text-muted-foreground text-sm", children: "Manage your preferences and configuration" })] }), _jsx("nav", { className: "flex flex-wrap gap-1", "aria-label": "Settings sections", children: SECTIONS.map(({ id, label, icon: Icon }) => (_jsxs("a", { href: `#${id}`, className: "text-muted-foreground hover:text-foreground hover:bg-muted inline-flex items-center gap-1.5 rounded-md px-3 py-1.5 text-xs font-medium transition-colors", children: [_jsx(Icon, { className: "h-3 w-3" }), label] }, id))) }), _jsxs("div", { className: "max-w-2xl space-y-6", children: [_jsx(AgentSettingsSection, { agent: settings.agent }), _jsx(EnvironmentSettingsSection, { environment: settings.environment }), _jsx(WorkflowSettingsSection, { workflow: settings.workflow }), _jsx(NotificationSettingsSection, { notifications: settings.notifications }), _jsx(FeatureFlagsSettingsSection, { featureFlags: featureFlags }), _jsx(DatabaseSettingsSection, { shepHome: shepHome, dbFileSize: dbFileSize })] })] }));
21
+ }
@@ -0,0 +1,15 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import { SettingsPageClient } from './settings-page-client.js';
3
+ declare const meta: {
4
+ title: string;
5
+ component: typeof SettingsPageClient;
6
+ tags: string[];
7
+ parameters: {
8
+ layout: string;
9
+ };
10
+ };
11
+ export default meta;
12
+ type Story = StoryObj<typeof meta>;
13
+ export declare const Default: Story;
14
+ export declare const AllSections: Story;
15
+ //# sourceMappingURL=settings-page-client.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"settings-page-client.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/settings-page-client.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAM5D,QAAA,MAAM,IAAI;;;;;;;CAOiC,CAAC;AAE5C,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAMrB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,KAkBzB,CAAC"}
@@ -0,0 +1,39 @@
1
+ import { SettingsPageClient } from './settings-page-client.js';
2
+ import { createDefaultSettings } from '../../../../../../packages/core/src/domain/factories/settings-defaults.factory.js';
3
+ import { AgentType, AgentAuthMethod } from '../../../../../../packages/core/src/domain/generated/output.js';
4
+ const defaultSettings = createDefaultSettings();
5
+ const meta = {
6
+ title: 'Features/Settings/SettingsPageClient',
7
+ component: SettingsPageClient,
8
+ tags: ['autodocs'],
9
+ parameters: {
10
+ layout: 'padded',
11
+ },
12
+ };
13
+ export default meta;
14
+ export const Default = {
15
+ args: {
16
+ settings: defaultSettings,
17
+ shepHome: '/home/user/.shep',
18
+ dbFileSize: '2.4 MB',
19
+ },
20
+ };
21
+ export const AllSections = {
22
+ args: {
23
+ settings: {
24
+ ...defaultSettings,
25
+ agent: {
26
+ type: AgentType.GeminiCli,
27
+ authMethod: AgentAuthMethod.Token,
28
+ token: 'sk-test-token-12345',
29
+ },
30
+ featureFlags: {
31
+ skills: true,
32
+ envDeploy: true,
33
+ debug: false,
34
+ },
35
+ },
36
+ shepHome: '/opt/shep',
37
+ dbFileSize: '12.8 MB',
38
+ },
39
+ };
@@ -0,0 +1,6 @@
1
+ import type { WorkflowConfig } from '../../../../../../packages/core/src/domain/generated/output.js';
2
+ export interface WorkflowSettingsSectionProps {
3
+ workflow: WorkflowConfig;
4
+ }
5
+ export declare function WorkflowSettingsSection({ workflow }: WorkflowSettingsSectionProps): import("react/jsx-runtime").JSX.Element;
6
+ //# sourceMappingURL=workflow-settings-section.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workflow-settings-section.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/workflow-settings-section.tsx"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sCAAsC,CAAC;AAE3E,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,EAAE,cAAc,CAAC;CAC1B;AAED,wBAAgB,uBAAuB,CAAC,EAAE,QAAQ,EAAE,EAAE,4BAA4B,2CAgQjF"}
@@ -0,0 +1,76 @@
1
+ 'use client';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import { useState, useTransition, useRef, useEffect } from 'react';
4
+ import { GitBranch, Check } from 'lucide-react';
5
+ import { toast } from 'sonner';
6
+ import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '../../ui/card.js';
7
+ import { Label } from '../../ui/label.js';
8
+ import { Input } from '../../ui/input.js';
9
+ import { Switch } from '../../ui/switch.js';
10
+ import { Separator } from '../../ui/separator.js';
11
+ import { updateSettingsAction } from '../../../app/actions/update-settings.js';
12
+ export function WorkflowSettingsSection({ workflow }) {
13
+ const [openPr, setOpenPr] = useState(workflow.openPrOnImplementationComplete);
14
+ const [pushOnComplete, setPushOnComplete] = useState(workflow.approvalGateDefaults.pushOnImplementationComplete);
15
+ const [allowPrd, setAllowPrd] = useState(workflow.approvalGateDefaults.allowPrd);
16
+ const [allowPlan, setAllowPlan] = useState(workflow.approvalGateDefaults.allowPlan);
17
+ const [allowMerge, setAllowMerge] = useState(workflow.approvalGateDefaults.allowMerge);
18
+ const [ciMaxFix, setCiMaxFix] = useState(workflow.ciMaxFixAttempts != null ? String(workflow.ciMaxFixAttempts) : '');
19
+ const [ciTimeout, setCiTimeout] = useState(workflow.ciWatchTimeoutMs != null ? String(Math.round(workflow.ciWatchTimeoutMs / 1000)) : '');
20
+ const [ciLogMax, setCiLogMax] = useState(workflow.ciLogMaxChars != null ? String(workflow.ciLogMaxChars) : '');
21
+ const [isPending, startTransition] = useTransition();
22
+ const [showSaved, setShowSaved] = useState(false);
23
+ const prevPendingRef = useRef(false);
24
+ useEffect(() => {
25
+ if (prevPendingRef.current && !isPending) {
26
+ setShowSaved(true);
27
+ const timer = setTimeout(() => setShowSaved(false), 2000);
28
+ return () => clearTimeout(timer);
29
+ }
30
+ prevPendingRef.current = isPending;
31
+ }, [isPending]);
32
+ function parseOptionalInt(value) {
33
+ if (value === '')
34
+ return undefined;
35
+ const n = parseInt(value, 10);
36
+ return Number.isNaN(n) || n <= 0 ? undefined : n;
37
+ }
38
+ function buildPayload(overrides = {}) {
39
+ const timeoutSeconds = parseOptionalInt(overrides.ciTimeout ?? ciTimeout);
40
+ return {
41
+ workflow: {
42
+ openPrOnImplementationComplete: overrides.openPr ?? openPr,
43
+ approvalGateDefaults: {
44
+ pushOnImplementationComplete: overrides.pushOnComplete ?? pushOnComplete,
45
+ allowPrd: overrides.allowPrd ?? allowPrd,
46
+ allowPlan: overrides.allowPlan ?? allowPlan,
47
+ allowMerge: overrides.allowMerge ?? allowMerge,
48
+ },
49
+ ciMaxFixAttempts: parseOptionalInt(overrides.ciMaxFix ?? ciMaxFix),
50
+ ciWatchTimeoutMs: timeoutSeconds != null ? timeoutSeconds * 1000 : undefined,
51
+ ciLogMaxChars: parseOptionalInt(overrides.ciLogMax ?? ciLogMax),
52
+ },
53
+ };
54
+ }
55
+ function save(overrides = {}) {
56
+ startTransition(async () => {
57
+ const result = await updateSettingsAction(buildPayload(overrides));
58
+ if (!result.success) {
59
+ toast.error(result.error ?? 'Failed to save workflow settings');
60
+ }
61
+ });
62
+ }
63
+ function handleSwitchChange(key, setter, value) {
64
+ setter(value);
65
+ save({ [key]: value });
66
+ }
67
+ function handleCiFieldBlur(key, currentValue, originalValue) {
68
+ if (currentValue !== originalValue) {
69
+ save({ [key]: currentValue });
70
+ }
71
+ }
72
+ const originalCiMaxFix = workflow.ciMaxFixAttempts != null ? String(workflow.ciMaxFixAttempts) : '';
73
+ const originalCiTimeout = workflow.ciWatchTimeoutMs != null ? String(Math.round(workflow.ciWatchTimeoutMs / 1000)) : '';
74
+ const originalCiLogMax = workflow.ciLogMaxChars != null ? String(workflow.ciLogMaxChars) : '';
75
+ return (_jsxs(Card, { id: "workflow", className: "scroll-mt-6", "data-testid": "workflow-settings-section", children: [_jsxs(CardHeader, { children: [_jsxs("div", { className: "flex items-center justify-between", children: [_jsxs("div", { className: "flex items-center gap-2", children: [_jsx(GitBranch, { className: "text-muted-foreground h-4 w-4" }), _jsx(CardTitle, { children: "Workflow" })] }), isPending ? _jsx("span", { className: "text-muted-foreground text-xs", children: "Saving..." }) : null, showSaved && !isPending ? (_jsxs("span", { className: "flex items-center gap-1 text-xs text-green-600", children: [_jsx(Check, { className: "h-3 w-3" }), "Saved"] })) : null] }), _jsx(CardDescription, { children: "Configure PR behavior, approval gates, and CI settings" })] }), _jsxs(CardContent, { className: "space-y-4", children: [_jsxs("div", { className: "space-y-3", children: [_jsxs("div", { className: "flex items-center justify-between gap-4", children: [_jsxs("div", { className: "space-y-0.5", children: [_jsx(Label, { htmlFor: "open-pr", children: "Open PR on implementation complete" }), _jsx("p", { className: "text-muted-foreground text-xs", children: "Automatically create a pull request when the agent finishes" })] }), _jsx(Switch, { id: "open-pr", "data-testid": "switch-open-pr", checked: openPr, onCheckedChange: (v) => handleSwitchChange('openPr', setOpenPr, v) })] }), _jsxs("div", { className: "flex items-center justify-between gap-4", children: [_jsxs("div", { className: "space-y-0.5", children: [_jsx(Label, { htmlFor: "push-on-complete", children: "Push on implementation complete" }), _jsx("p", { className: "text-muted-foreground text-xs", children: "Push the branch to remote when implementation is done" })] }), _jsx(Switch, { id: "push-on-complete", "data-testid": "switch-push-on-complete", checked: pushOnComplete, onCheckedChange: (v) => handleSwitchChange('pushOnComplete', setPushOnComplete, v) })] })] }), _jsx(Separator, {}), _jsxs("div", { className: "space-y-3", children: [_jsx("h3", { className: "text-sm font-semibold", children: "Approval Gates" }), _jsxs("div", { className: "flex items-center justify-between gap-4", children: [_jsxs("div", { className: "space-y-0.5", children: [_jsx(Label, { htmlFor: "allow-prd", children: "PRD auto-approval" }), _jsx("p", { className: "text-muted-foreground text-xs", children: "Skip manual approval for product requirement documents" })] }), _jsx(Switch, { id: "allow-prd", "data-testid": "switch-allow-prd", checked: allowPrd, onCheckedChange: (v) => handleSwitchChange('allowPrd', setAllowPrd, v) })] }), _jsxs("div", { className: "flex items-center justify-between gap-4", children: [_jsxs("div", { className: "space-y-0.5", children: [_jsx(Label, { htmlFor: "allow-plan", children: "Plan auto-approval" }), _jsx("p", { className: "text-muted-foreground text-xs", children: "Skip manual approval for implementation plans" })] }), _jsx(Switch, { id: "allow-plan", "data-testid": "switch-allow-plan", checked: allowPlan, onCheckedChange: (v) => handleSwitchChange('allowPlan', setAllowPlan, v) })] }), _jsxs("div", { className: "flex items-center justify-between gap-4", children: [_jsxs("div", { className: "space-y-0.5", children: [_jsx(Label, { htmlFor: "allow-merge", children: "Merge auto-approval" }), _jsx("p", { className: "text-muted-foreground text-xs", children: "Skip manual approval for PR merges" })] }), _jsx(Switch, { id: "allow-merge", "data-testid": "switch-allow-merge", checked: allowMerge, onCheckedChange: (v) => handleSwitchChange('allowMerge', setAllowMerge, v) })] })] }), _jsx(Separator, {}), _jsxs("div", { className: "space-y-3", children: [_jsx("h3", { className: "text-sm font-semibold", children: "CI Settings" }), _jsxs("div", { className: "space-y-1.5", children: [_jsx(Label, { htmlFor: "ci-max-fix", children: "Max fix attempts" }), _jsx(Input, { id: "ci-max-fix", "data-testid": "ci-max-fix-input", type: "text", inputMode: "numeric", pattern: "[0-9]*", min: 1, max: 10, placeholder: "e.g., 3", value: ciMaxFix, onChange: (e) => setCiMaxFix(e.target.value), onBlur: () => handleCiFieldBlur('ciMaxFix', ciMaxFix, originalCiMaxFix) }), _jsx("p", { className: "text-muted-foreground text-xs", children: "How many times the agent retries fixing CI failures" })] }), _jsxs("div", { className: "space-y-1.5", children: [_jsx(Label, { htmlFor: "ci-timeout", children: "Watch timeout (seconds)" }), _jsx(Input, { id: "ci-timeout", "data-testid": "ci-timeout-input", type: "text", inputMode: "numeric", pattern: "[0-9]*", placeholder: "e.g., 300", value: ciTimeout, onChange: (e) => setCiTimeout(e.target.value), onBlur: () => handleCiFieldBlur('ciTimeout', ciTimeout, originalCiTimeout) }), _jsx("p", { className: "text-muted-foreground text-xs", children: "How long to wait for CI to complete before timing out" })] }), _jsxs("div", { className: "space-y-1.5", children: [_jsx(Label, { htmlFor: "ci-log-max", children: "Max log characters" }), _jsx(Input, { id: "ci-log-max", "data-testid": "ci-log-max-input", type: "text", inputMode: "numeric", pattern: "[0-9]*", placeholder: "e.g., 50000", value: ciLogMax, onChange: (e) => setCiLogMax(e.target.value), onBlur: () => handleCiFieldBlur('ciLogMax', ciLogMax, originalCiLogMax) }), _jsx("p", { className: "text-muted-foreground text-xs", children: "Maximum characters to capture from CI logs" })] })] })] })] }));
76
+ }
@@ -0,0 +1,16 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import { WorkflowSettingsSection } from './workflow-settings-section.js';
3
+ declare const meta: {
4
+ title: string;
5
+ component: typeof WorkflowSettingsSection;
6
+ tags: string[];
7
+ parameters: {
8
+ layout: string;
9
+ };
10
+ };
11
+ export default meta;
12
+ type Story = StoryObj<typeof meta>;
13
+ export declare const Default: Story;
14
+ export declare const AllEnabled: Story;
15
+ export declare const WithCiSettings: Story;
16
+ //# sourceMappingURL=workflow-settings-section.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workflow-settings-section.stories.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/features/settings/workflow-settings-section.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAEtE,QAAA,MAAM,IAAI;;;;;;;CAOsC,CAAC;AAEjD,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAEnC,eAAO,MAAM,OAAO,EAAE,KAYrB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,KAexB,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,KAe5B,CAAC"}
@@ -0,0 +1,55 @@
1
+ import { WorkflowSettingsSection } from './workflow-settings-section.js';
2
+ const meta = {
3
+ title: 'Features/Settings/WorkflowSettingsSection',
4
+ component: WorkflowSettingsSection,
5
+ tags: ['autodocs'],
6
+ parameters: {
7
+ layout: 'padded',
8
+ },
9
+ };
10
+ export default meta;
11
+ export const Default = {
12
+ args: {
13
+ workflow: {
14
+ openPrOnImplementationComplete: false,
15
+ approvalGateDefaults: {
16
+ allowPrd: false,
17
+ allowPlan: false,
18
+ allowMerge: false,
19
+ pushOnImplementationComplete: false,
20
+ },
21
+ },
22
+ },
23
+ };
24
+ export const AllEnabled = {
25
+ args: {
26
+ workflow: {
27
+ openPrOnImplementationComplete: true,
28
+ approvalGateDefaults: {
29
+ allowPrd: true,
30
+ allowPlan: true,
31
+ allowMerge: true,
32
+ pushOnImplementationComplete: true,
33
+ },
34
+ ciMaxFixAttempts: 3,
35
+ ciWatchTimeoutMs: 300000,
36
+ ciLogMaxChars: 50000,
37
+ },
38
+ },
39
+ };
40
+ export const WithCiSettings = {
41
+ args: {
42
+ workflow: {
43
+ openPrOnImplementationComplete: false,
44
+ approvalGateDefaults: {
45
+ allowPrd: false,
46
+ allowPlan: false,
47
+ allowMerge: false,
48
+ pushOnImplementationComplete: false,
49
+ },
50
+ ciMaxFixAttempts: 5,
51
+ ciWatchTimeoutMs: 600000,
52
+ ciLogMaxChars: 100000,
53
+ },
54
+ },
55
+ };
@@ -1 +1 @@
1
- {"version":3,"file":"app-sidebar.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/layouts/app-sidebar/app-sidebar.tsx"],"names":[],"mappings":"AAuBA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAI/E,MAAM,WAAW,WAAW;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,aAAa,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,eAAe;IAC9B,QAAQ,EAAE,WAAW,EAAE,CAAC;IACxB,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1B,cAAc,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;CAC9C;AAED,wBAAgB,UAAU,CAAC,EAAE,QAAQ,EAAE,YAAY,EAAE,cAAc,EAAE,EAAE,eAAe,2CAqGrF"}
1
+ {"version":3,"file":"app-sidebar.d.ts","sourceRoot":"","sources":["../../../../../../../src/presentation/web/components/layouts/app-sidebar/app-sidebar.tsx"],"names":[],"mappings":"AAuBA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAI/E,MAAM,WAAW,WAAW;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,aAAa,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,eAAe;IAC9B,QAAQ,EAAE,WAAW,EAAE,CAAC;IACxB,YAAY,CAAC,EAAE,MAAM,IAAI,CAAC;IAC1B,cAAc,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;CAC9C;AAED,wBAAgB,UAAU,CAAC,EAAE,QAAQ,EAAE,YAAY,EAAE,cAAc,EAAE,EAAE,eAAe,2CA2GrF"}
@@ -1,7 +1,7 @@
1
1
  'use client';
2
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  import { usePathname } from 'next/navigation';
4
- import { Home, Wrench, Puzzle, Plus } from 'lucide-react';
4
+ import { Home, Wrench, Puzzle, Plus, Settings } from 'lucide-react';
5
5
  import { Sidebar, SidebarHeader, SidebarContent, SidebarFooter, SidebarMenu, SidebarMenuItem, SidebarMenuButton, SidebarRail, useSidebar, } from '../../ui/sidebar.js';
6
6
  import { ScrollArea } from '../../ui/scroll-area.js';
7
7
  import { SidebarNavItem } from '../../common/sidebar-nav-item/index.js';
@@ -27,7 +27,7 @@ export function AppSidebar({ features, onNewFeature, onFeatureClick }) {
27
27
  'flex min-w-0 flex-1 items-center gap-2 overflow-hidden px-2',
28
28
  'transition-opacity duration-200 ease-out',
29
29
  expandedVisible ? 'opacity-100' : 'opacity-0',
30
- ].join(' '), "aria-hidden": !expandedVisible, children: [_jsx(ShepLogo, { className: "shrink-0", size: 20 }), _jsx("span", { className: "truncate text-sm font-semibold tracking-tight", children: "Shep" })] })) : null, _jsx(SidebarCollapseToggle, { className: "shrink-0 transition-all duration-200" })] }) }), _jsx(SidebarNavItem, { icon: Home, label: "Control Center", href: "/", active: pathname === '/' }), _jsx(SidebarNavItem, { icon: Wrench, label: "Tools", href: "/tools", active: pathname === '/tools' }), featureFlags.skills ? (_jsx(SidebarNavItem, { icon: Puzzle, label: "Skills", href: "/skills", active: pathname === '/skills' })) : null] }) }), _jsx(SidebarContent, { children: showExpanded ? (_jsxs("div", { className: [
30
+ ].join(' '), "aria-hidden": !expandedVisible, children: [_jsx(ShepLogo, { className: "shrink-0", size: 20 }), _jsx("span", { className: "truncate text-sm font-semibold tracking-tight", children: "Shep" })] })) : null, _jsx(SidebarCollapseToggle, { className: "shrink-0 transition-all duration-200" })] }) }), _jsx(SidebarNavItem, { icon: Home, label: "Control Center", href: "/", active: pathname === '/' }), _jsx(SidebarNavItem, { icon: Wrench, label: "Tools", href: "/tools", active: pathname === '/tools' }), featureFlags.skills ? (_jsx(SidebarNavItem, { icon: Puzzle, label: "Skills", href: "/skills", active: pathname === '/skills' })) : null, _jsx(SidebarNavItem, { icon: Settings, label: "Settings", href: "/settings", active: pathname === '/settings' })] }) }), _jsx(SidebarContent, { children: showExpanded ? (_jsxs("div", { className: [
31
31
  'min-w-0 overflow-hidden transition-opacity duration-200 ease-out',
32
32
  '[&_[data-sidebar=group-label]]:!mt-0 [&_[data-sidebar=group-label]]:!opacity-100 [&_[data-sidebar=group-label]]:!transition-none',
33
33
  expandedVisible ? 'opacity-100' : 'opacity-0',
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ import { Switch as SwitchPrimitive } from 'radix-ui';
3
+ declare function Switch({ className, size, ...props }: React.ComponentProps<typeof SwitchPrimitive.Root> & {
4
+ size?: 'sm' | 'default';
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ export { Switch };
7
+ //# sourceMappingURL=switch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"switch.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/web/components/ui/switch.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,UAAU,CAAC;AAIrD,iBAAS,MAAM,CAAC,EACd,SAAS,EACT,IAAgB,EAChB,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,GAAG;IACrD,IAAI,CAAC,EAAE,IAAI,GAAG,SAAS,CAAC;CACzB,2CAmBA;AAED,OAAO,EAAE,MAAM,EAAE,CAAC"}
@@ -0,0 +1,8 @@
1
+ 'use client';
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ import { Switch as SwitchPrimitive } from 'radix-ui';
4
+ import { cn } from '../../lib/utils.js';
5
+ function Switch({ className, size = 'default', ...props }) {
6
+ return (_jsx(SwitchPrimitive.Root, { "data-slot": "switch", "data-size": size, className: cn('peer group/switch focus-visible:border-ring focus-visible:ring-ring/50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input dark:data-[state=unchecked]:bg-input/80 inline-flex shrink-0 items-center rounded-full border border-transparent shadow-xs transition-all outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50 data-[size=default]:h-[1.15rem] data-[size=default]:w-8 data-[size=sm]:h-3.5 data-[size=sm]:w-6', className), ...props, children: _jsx(SwitchPrimitive.Thumb, { "data-slot": "switch-thumb", className: cn('bg-background dark:data-[state=checked]:bg-primary-foreground dark:data-[state=unchecked]:bg-foreground pointer-events-none block rounded-full ring-0 transition-transform group-data-[size=default]/switch:size-4 group-data-[size=sm]/switch:size-3 data-[state=checked]:translate-x-[calc(100%-2px)] data-[state=unchecked]:translate-x-0') }) }));
7
+ }
8
+ export { Switch };
@@ -34,6 +34,8 @@ export interface UseGraphStateReturn {
34
34
  getFeatureRepositoryPath: (featureNodeId: string) => string | undefined;
35
35
  /** Stable lookup: get repository node data by nodeId. */
36
36
  getRepositoryData: (nodeId: string) => RepositoryNodeData | undefined;
37
+ /** Stable lookup: get the current number of repositories in the domain Map. */
38
+ getRepoMapSize: () => number;
37
39
  /** Update callbacks injected into node data (does NOT trigger re-render). */
38
40
  setCallbacks: (callbacks: GraphCallbacks) => void;
39
41
  }