@shepai/cli 1.77.0 → 1.77.1-pr244.c979f34

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 (665) 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/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  4. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +7 -2
  5. package/dist/packages/core/src/domain/generated/output.d.ts +21 -0
  6. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  7. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  8. package/dist/packages/core/src/infrastructure/di/container.js +6 -0
  9. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +6 -0
  10. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  11. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +17 -0
  12. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.d.ts.map +1 -1
  13. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.js +27 -0
  14. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  15. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +13 -3
  16. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  17. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +1 -2
  18. package/dist/packages/core/src/infrastructure/services/settings.service.d.ts +10 -0
  19. package/dist/packages/core/src/infrastructure/services/settings.service.d.ts.map +1 -1
  20. package/dist/packages/core/src/infrastructure/services/settings.service.js +15 -0
  21. package/dist/src/presentation/web/app/actions/load-settings.d.ts +9 -0
  22. package/dist/src/presentation/web/app/actions/load-settings.d.ts.map +1 -0
  23. package/dist/src/presentation/web/app/actions/load-settings.js +33 -0
  24. package/dist/src/presentation/web/app/actions/update-settings.d.ts +11 -0
  25. package/dist/src/presentation/web/app/actions/update-settings.d.ts.map +1 -0
  26. package/dist/src/presentation/web/app/actions/update-settings.js +45 -0
  27. package/dist/src/presentation/web/app/global-error.d.ts +7 -0
  28. package/dist/src/presentation/web/app/global-error.d.ts.map +1 -0
  29. package/dist/src/presentation/web/app/global-error.js +5 -0
  30. package/dist/src/presentation/web/app/layout.d.ts.map +1 -1
  31. package/dist/src/presentation/web/app/layout.js +3 -1
  32. package/dist/src/presentation/web/app/settings/page.d.ts +4 -0
  33. package/dist/src/presentation/web/app/settings/page.d.ts.map +1 -0
  34. package/dist/src/presentation/web/app/settings/page.js +12 -0
  35. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts.map +1 -1
  36. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +2 -1
  37. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts.map +1 -1
  38. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.js +2 -1
  39. package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.d.ts.map +1 -1
  40. package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.js +2 -1
  41. package/dist/src/presentation/web/components/common/editor-type-icons.d.ts +8 -0
  42. package/dist/src/presentation/web/components/common/editor-type-icons.d.ts.map +1 -0
  43. package/dist/src/presentation/web/components/common/editor-type-icons.js +42 -0
  44. package/dist/src/presentation/web/components/common/repository-node/repository-node.d.ts.map +1 -1
  45. package/dist/src/presentation/web/components/common/repository-node/repository-node.js +2 -1
  46. package/dist/src/presentation/web/components/common/review-drawer-shell/review-drawer-shell.d.ts.map +1 -1
  47. package/dist/src/presentation/web/components/common/review-drawer-shell/review-drawer-shell.js +2 -1
  48. package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts +6 -0
  49. package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -0
  50. package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +75 -0
  51. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +16 -0
  52. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -0
  53. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +36 -0
  54. package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts +6 -0
  55. package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts.map +1 -0
  56. package/dist/src/presentation/web/components/features/settings/database-settings-section.js +8 -0
  57. package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.d.ts +15 -0
  58. package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.d.ts.map +1 -0
  59. package/dist/src/presentation/web/components/features/settings/database-settings-section.stories.js +22 -0
  60. package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts +6 -0
  61. package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts.map +1 -0
  62. package/dist/src/presentation/web/components/features/settings/environment-settings-section.js +54 -0
  63. package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts +15 -0
  64. package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts.map +1 -0
  65. package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.js +27 -0
  66. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts +6 -0
  67. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -0
  68. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +45 -0
  69. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts +16 -0
  70. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -0
  71. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +37 -0
  72. package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts +6 -0
  73. package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts.map +1 -0
  74. package/dist/src/presentation/web/components/features/settings/notification-settings-section.js +68 -0
  75. package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts +16 -0
  76. package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts.map +1 -0
  77. package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.js +62 -0
  78. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts +8 -0
  79. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -0
  80. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +245 -0
  81. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts +15 -0
  82. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -0
  83. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +39 -0
  84. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts +6 -0
  85. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts.map +1 -0
  86. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.js +76 -0
  87. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts +16 -0
  88. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts.map +1 -0
  89. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js +55 -0
  90. package/dist/src/presentation/web/components/layouts/app-shell/app-shell.d.ts.map +1 -1
  91. package/dist/src/presentation/web/components/layouts/app-shell/app-shell.js +3 -1
  92. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts +3 -1
  93. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  94. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +3 -4
  95. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
  96. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +4 -0
  97. package/dist/src/presentation/web/components/ui/switch.d.ts +7 -0
  98. package/dist/src/presentation/web/components/ui/switch.d.ts.map +1 -0
  99. package/dist/src/presentation/web/components/ui/switch.js +8 -0
  100. package/dist/src/presentation/web/hooks/feature-flags-context.d.ts +19 -0
  101. package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -0
  102. package/dist/src/presentation/web/hooks/feature-flags-context.js +20 -0
  103. package/dist/src/presentation/web/lib/feature-flags.d.ts +14 -2
  104. package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
  105. package/dist/src/presentation/web/lib/feature-flags.js +39 -4
  106. package/dist/tsconfig.build.tsbuildinfo +1 -1
  107. package/package.json +2 -2
  108. package/web/.next/BUILD_ID +1 -1
  109. package/web/.next/app-path-routes-manifest.json +1 -0
  110. package/web/.next/build-manifest.json +5 -5
  111. package/web/.next/cache/.previewinfo +1 -1
  112. package/web/.next/cache/.rscinfo +1 -1
  113. package/web/.next/cache/.tsbuildinfo +1 -1
  114. package/web/.next/cache/config.json +3 -3
  115. package/web/.next/fallback-build-manifest.json +2 -2
  116. package/web/.next/prerender-manifest.json +3 -3
  117. package/web/.next/required-server-files.js +1 -1
  118. package/web/.next/required-server-files.json +1 -1
  119. package/web/.next/routes-manifest.json +6 -0
  120. package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +3 -3
  121. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +16 -16
  122. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +9 -8
  123. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  124. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  125. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +3 -3
  126. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +19 -19
  127. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +9 -8
  128. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  129. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  130. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +3 -3
  131. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  132. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +9 -8
  133. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  134. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  135. package/web/.next/server/app/(dashboard)/create/page/build-manifest.json +3 -3
  136. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +16 -16
  137. package/web/.next/server/app/(dashboard)/create/page.js +9 -8
  138. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  139. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  140. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +3 -3
  141. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +19 -19
  142. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +9 -8
  143. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  144. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  145. package/web/.next/server/app/(dashboard)/page/build-manifest.json +3 -3
  146. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +14 -14
  147. package/web/.next/server/app/(dashboard)/page.js +9 -8
  148. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  149. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  150. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +3 -3
  151. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  152. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +9 -8
  153. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  154. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  155. package/web/.next/server/app/_global-error/page/build-manifest.json +3 -3
  156. package/web/.next/server/app/_global-error/page.js +4 -3
  157. package/web/.next/server/app/_global-error/page.js.nft.json +1 -1
  158. package/web/.next/server/app/_global-error.html +2 -2
  159. package/web/.next/server/app/_global-error.rsc +1 -1
  160. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  161. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  162. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  163. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  164. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  165. package/web/.next/server/app/_not-found/page/build-manifest.json +3 -3
  166. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  167. package/web/.next/server/app/_not-found/page.js +10 -8
  168. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  169. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  170. package/web/.next/server/app/settings/page/app-paths-manifest.json +3 -0
  171. package/web/.next/server/app/settings/page/build-manifest.json +18 -0
  172. package/web/.next/server/app/settings/page/next-font-manifest.json +6 -0
  173. package/web/.next/server/app/settings/page/react-loadable-manifest.json +1 -0
  174. package/web/.next/server/app/settings/page/server-reference-manifest.json +50 -0
  175. package/web/.next/server/app/settings/page.js +18 -0
  176. package/web/.next/server/app/settings/page.js.map +5 -0
  177. package/web/.next/server/app/settings/page.js.nft.json +1 -0
  178. package/web/.next/server/app/settings/page_client-reference-manifest.js +2 -0
  179. package/web/.next/server/app/skills/page/build-manifest.json +3 -3
  180. package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  181. package/web/.next/server/app/skills/page.js +12 -9
  182. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  183. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  184. package/web/.next/server/app/tools/page/build-manifest.json +3 -3
  185. package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
  186. package/web/.next/server/app/tools/page.js +10 -8
  187. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  188. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  189. package/web/.next/server/app/version/page/build-manifest.json +3 -3
  190. package/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  191. package/web/.next/server/app/version/page.js +9 -8
  192. package/web/.next/server/app/version/page.js.nft.json +1 -1
  193. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  194. package/web/.next/server/app-paths-manifest.json +1 -0
  195. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
  196. package/web/.next/server/chunks/ssr/403f9_next_dist_190bdc35._.js +4 -0
  197. package/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js.map → 403f9_next_dist_190bdc35._.js.map} +1 -1
  198. package/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js +6 -0
  199. package/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js.map +1 -0
  200. package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +6 -0
  201. package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js.map +1 -0
  202. package/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js +3 -0
  203. package/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js.map +1 -0
  204. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js +3 -0
  205. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js.map +1 -0
  206. 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
  207. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_2eacac96.js.map +1 -0
  208. 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
  209. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_46d6bf1b.js.map +1 -0
  210. 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
  211. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_54b1e179.js.map +1 -0
  212. 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
  213. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_6c70ecca.js.map +1 -0
  214. 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
  215. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c9978986.js.map +1 -0
  216. 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
  217. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_ce6dae5d.js.map +1 -0
  218. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d82f78f0.js +4 -0
  219. package/web/.next/server/chunks/ssr/{_884ddade._.js.map → 403f9_next_dist_esm_build_templates_app-page_d82f78f0.js.map} +1 -1
  220. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  221. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  222. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js +1 -1
  223. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js.map +1 -1
  224. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js +1 -1
  225. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js.map +1 -1
  226. package/web/.next/server/chunks/ssr/[root-of-the-server]__0880ff0e._.js +3 -0
  227. package/web/.next/server/chunks/ssr/{[root-of-the-server]__8a947500._.js.map → [root-of-the-server]__0880ff0e._.js.map} +1 -1
  228. package/web/.next/server/chunks/ssr/{[root-of-the-server]__c37779e6._.js → [root-of-the-server]__09af7f56._.js} +2 -2
  229. package/web/.next/server/chunks/ssr/{[root-of-the-server]__c37779e6._.js.map → [root-of-the-server]__09af7f56._.js.map} +1 -1
  230. package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +4 -0
  231. package/web/.next/server/chunks/ssr/{[root-of-the-server]__6b17a22d._.js.map → [root-of-the-server]__11033878._.js.map} +1 -1
  232. package/web/.next/server/chunks/ssr/[root-of-the-server]__1c870feb._.js +3 -0
  233. package/web/.next/server/chunks/ssr/[root-of-the-server]__1c870feb._.js.map +1 -0
  234. package/web/.next/server/chunks/ssr/[root-of-the-server]__23b5ca2c._.js +3 -0
  235. package/web/.next/server/chunks/ssr/{[root-of-the-server]__6ee2450e._.js.map → [root-of-the-server]__23b5ca2c._.js.map} +1 -1
  236. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +3 -0
  237. package/web/.next/server/chunks/ssr/{[root-of-the-server]__249c74f6._.js.map → [root-of-the-server]__357d99f9._.js.map} +1 -1
  238. package/web/.next/server/chunks/ssr/[root-of-the-server]__4be9a9bb._.js +4 -0
  239. package/web/.next/server/chunks/ssr/[root-of-the-server]__4be9a9bb._.js.map +1 -0
  240. package/web/.next/server/chunks/ssr/[root-of-the-server]__52485955._.js +3 -0
  241. package/web/.next/server/chunks/ssr/[root-of-the-server]__5edfc56b._.js +3 -0
  242. package/web/.next/server/chunks/ssr/{[root-of-the-server]__c18f84a4._.js.map → [root-of-the-server]__5edfc56b._.js.map} +1 -1
  243. package/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js +3 -0
  244. package/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js.map +1 -0
  245. package/web/.next/server/chunks/ssr/[root-of-the-server]__8c88ef55._.js +3 -0
  246. package/web/.next/server/chunks/ssr/{[root-of-the-server]__fa87595c._.js.map → [root-of-the-server]__8c88ef55._.js.map} +1 -1
  247. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
  248. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
  249. package/web/.next/server/chunks/ssr/[root-of-the-server]__ad2b2a3c._.js +3 -0
  250. package/web/.next/server/chunks/ssr/[root-of-the-server]__ad2b2a3c._.js.map +1 -0
  251. package/web/.next/server/chunks/ssr/[root-of-the-server]__aea328fd._.js +3 -0
  252. package/web/.next/server/chunks/ssr/[root-of-the-server]__aea328fd._.js.map +1 -0
  253. package/web/.next/server/chunks/ssr/[root-of-the-server]__c3c963c6._.js +3 -0
  254. package/web/.next/server/chunks/ssr/{[root-of-the-server]__2018e25f._.js.map → [root-of-the-server]__c3c963c6._.js.map} +1 -1
  255. package/web/.next/server/chunks/ssr/[root-of-the-server]__c9777776._.js +3 -0
  256. package/web/.next/server/chunks/ssr/{[root-of-the-server]__3b4af5ae._.js.map → [root-of-the-server]__c9777776._.js.map} +1 -1
  257. package/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js +4 -0
  258. package/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js.map +1 -0
  259. package/web/.next/server/chunks/ssr/[root-of-the-server]__fd36b8bf._.js +4 -0
  260. package/web/.next/server/chunks/ssr/[root-of-the-server]__fd36b8bf._.js.map +1 -0
  261. package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +4 -0
  262. package/web/.next/server/chunks/ssr/{[root-of-the-server]__804c006d._.js.map → [root-of-the-server]__fdc75809._.js.map} +1 -1
  263. package/web/.next/server/chunks/ssr/_0e9d6bf7._.js +1 -1
  264. package/web/.next/server/chunks/ssr/_0e9d6bf7._.js.map +1 -1
  265. 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
  266. package/web/.next/server/chunks/ssr/_16235e5e._.js.map +1 -0
  267. package/web/.next/server/chunks/ssr/_3a4c94e3._.js +3 -0
  268. package/web/.next/server/chunks/ssr/_3a4c94e3._.js.map +1 -0
  269. package/web/.next/server/chunks/ssr/_4093a637._.js +5 -0
  270. package/web/.next/server/chunks/ssr/_4093a637._.js.map +1 -0
  271. package/web/.next/server/chunks/ssr/_5428b384._.js +3 -0
  272. package/web/.next/server/chunks/ssr/_5428b384._.js.map +1 -0
  273. package/web/.next/server/chunks/ssr/_61351ed3._.js +1 -1
  274. package/web/.next/server/chunks/ssr/_61351ed3._.js.map +1 -1
  275. package/web/.next/server/chunks/ssr/_6645f218._.js +21 -0
  276. package/web/.next/server/chunks/ssr/_6645f218._.js.map +1 -0
  277. package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_ad8a094f._.js → server/chunks/ssr/_6887cba3._.js} +3 -3
  278. package/web/.next/server/chunks/ssr/_6887cba3._.js.map +1 -0
  279. package/web/.next/server/chunks/ssr/_6e08ce21._.js.map +1 -1
  280. package/web/.next/server/chunks/ssr/_8400c8bb._.js +1 -1
  281. package/web/.next/server/chunks/ssr/_8400c8bb._.js.map +1 -1
  282. package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_3197d5cb._.js → server/chunks/ssr/_88c4dab8._.js} +2 -2
  283. package/web/.next/server/chunks/ssr/_88c4dab8._.js.map +1 -0
  284. package/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js → _8eeee4db._.js} +3 -3
  285. package/web/.next/server/chunks/ssr/_8eeee4db._.js.map +1 -0
  286. package/web/.next/server/chunks/ssr/_956601a1._.js +9 -0
  287. package/web/.next/server/chunks/ssr/_956601a1._.js.map +1 -0
  288. package/web/.next/server/chunks/ssr/_9d11d025._.js +7 -0
  289. package/web/.next/server/chunks/ssr/_9d11d025._.js.map +1 -0
  290. package/web/.next/server/chunks/ssr/_a37f5f18._.js +13 -0
  291. package/web/.next/server/chunks/ssr/_a37f5f18._.js.map +1 -0
  292. package/web/.next/server/chunks/ssr/_a445a23e._.js +4 -0
  293. package/web/.next/server/chunks/ssr/_a445a23e._.js.map +1 -0
  294. package/web/.next/server/chunks/ssr/_c26c679f._.js +3 -0
  295. package/web/.next/server/chunks/ssr/_c26c679f._.js.map +1 -0
  296. package/web/.next/server/chunks/ssr/_caf6533c._.js +3 -0
  297. package/web/.next/server/chunks/ssr/_caf6533c._.js.map +1 -0
  298. package/web/.next/server/chunks/ssr/_d4b20e29._.js +3 -0
  299. package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +1 -0
  300. package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_884ddade._.js → server/chunks/ssr/_ed11dcd6._.js} +3 -3
  301. package/web/.next/server/chunks/ssr/_ed11dcd6._.js.map +1 -0
  302. package/web/.next/server/chunks/ssr/_f38b49fe._.js +3 -0
  303. package/web/.next/server/chunks/ssr/_f38b49fe._.js.map +1 -0
  304. 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
  305. package/web/.next/server/chunks/ssr/_f4d222d6._.js.map +1 -0
  306. package/web/.next/server/chunks/ssr/_f7f6173c._.js +3 -0
  307. package/web/.next/server/chunks/ssr/_f7f6173c._.js.map +1 -0
  308. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +3 -0
  309. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -0
  310. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  311. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
  312. package/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js +3 -0
  313. package/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js.map +1 -0
  314. package/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js +2 -2
  315. package/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js.map +1 -1
  316. package/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js +1 -1
  317. package/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js.map +1 -1
  318. package/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js +2 -2
  319. package/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js.map +1 -1
  320. package/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js +1 -1
  321. package/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js.map +1 -1
  322. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js +1 -1
  323. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_021a05f2.js.map +1 -1
  324. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +3 -0
  325. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js.map +1 -0
  326. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +3 -0
  327. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js.map +1 -0
  328. package/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js +3 -0
  329. package/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js.map +1 -0
  330. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
  331. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
  332. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  333. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  334. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js +1 -1
  335. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js.map +1 -1
  336. package/web/.next/server/middleware-build-manifest.js +3 -3
  337. package/web/.next/server/pages/500.html +2 -2
  338. package/web/.next/server/server-reference-manifest.js +1 -1
  339. package/web/.next/server/server-reference-manifest.json +59 -22
  340. package/web/.next/standalone/src/presentation/web/.next/BUILD_ID +1 -1
  341. package/web/.next/standalone/src/presentation/web/.next/app-path-routes-manifest.json +1 -0
  342. package/web/.next/standalone/src/presentation/web/.next/build-manifest.json +5 -5
  343. package/web/.next/standalone/src/presentation/web/.next/prerender-manifest.json +3 -3
  344. package/web/.next/standalone/src/presentation/web/.next/required-server-files.json +1 -1
  345. package/web/.next/standalone/src/presentation/web/.next/routes-manifest.json +6 -0
  346. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +3 -3
  347. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +16 -16
  348. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js +9 -8
  349. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  350. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  351. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +3 -3
  352. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +19 -19
  353. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +9 -8
  354. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  355. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  356. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +3 -3
  357. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  358. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +9 -8
  359. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  360. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  361. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/build-manifest.json +3 -3
  362. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +16 -16
  363. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js +9 -8
  364. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  365. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  366. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +3 -3
  367. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +19 -19
  368. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +9 -8
  369. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  370. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  371. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/build-manifest.json +3 -3
  372. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +14 -14
  373. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js +9 -8
  374. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  375. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  376. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +3 -3
  377. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +14 -14
  378. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +9 -8
  379. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  380. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  381. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page/build-manifest.json +3 -3
  382. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page.js +4 -3
  383. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page.js.nft.json +1 -1
  384. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.html +2 -2
  385. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.rsc +1 -1
  386. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  387. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  388. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  389. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  390. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  391. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/build-manifest.json +3 -3
  392. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  393. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page.js +10 -8
  394. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  395. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  396. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/app-paths-manifest.json +3 -0
  397. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/build-manifest.json +18 -0
  398. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/next-font-manifest.json +6 -0
  399. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/react-loadable-manifest.json +1 -0
  400. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page/server-reference-manifest.json +50 -0
  401. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js +18 -0
  402. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js.map +5 -0
  403. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page.js.nft.json +1 -0
  404. package/web/.next/standalone/src/presentation/web/.next/server/app/settings/page_client-reference-manifest.js +2 -0
  405. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/build-manifest.json +3 -3
  406. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  407. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page.js +12 -9
  408. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page.js.nft.json +1 -1
  409. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  410. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/build-manifest.json +3 -3
  411. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
  412. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page.js +10 -8
  413. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page.js.nft.json +1 -1
  414. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  415. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/build-manifest.json +3 -3
  416. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  417. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page.js +9 -8
  418. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page.js.nft.json +1 -1
  419. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  420. package/web/.next/standalone/src/presentation/web/.next/server/app-paths-manifest.json +1 -0
  421. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_190bdc35._.js +4 -0
  422. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js +6 -0
  423. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +6 -0
  424. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_compiled_dc550646._.js +3 -0
  425. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_3981ee1d._.js +3 -0
  426. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_2eacac96.js +4 -0
  427. 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
  428. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_54b1e179.js +4 -0
  429. 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
  430. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c9978986.js +4 -0
  431. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_ce6dae5d.js +4 -0
  432. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d82f78f0.js +4 -0
  433. 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
  434. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_da7eef33.js +1 -1
  435. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_0a9251aa.js +1 -1
  436. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__0880ff0e._.js +3 -0
  437. 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
  438. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +4 -0
  439. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__1c870feb._.js +3 -0
  440. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__23b5ca2c._.js +3 -0
  441. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +3 -0
  442. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__4be9a9bb._.js +4 -0
  443. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__52485955._.js +3 -0
  444. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__5edfc56b._.js +3 -0
  445. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6eb2a2b0._.js +3 -0
  446. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__8c88ef55._.js +3 -0
  447. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +1 -1
  448. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__ad2b2a3c._.js +3 -0
  449. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__aea328fd._.js +3 -0
  450. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c3c963c6._.js +3 -0
  451. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c9777776._.js +3 -0
  452. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__f0d8d054._.js +4 -0
  453. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fd36b8bf._.js +4 -0
  454. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +4 -0
  455. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_0e9d6bf7._.js +1 -1
  456. 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
  457. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_3a4c94e3._.js +3 -0
  458. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_4093a637._.js +5 -0
  459. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_5428b384._.js +3 -0
  460. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_61351ed3._.js +1 -1
  461. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_6645f218._.js +21 -0
  462. package/web/.next/{server/chunks/ssr/_ad8a094f._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_6887cba3._.js} +3 -3
  463. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_8400c8bb._.js +1 -1
  464. package/web/.next/{server/chunks/ssr/_3197d5cb._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_88c4dab8._.js} +2 -2
  465. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/{403f9_next_dist_6c821c12._.js → _8eeee4db._.js} +3 -3
  466. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_956601a1._.js +9 -0
  467. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9d11d025._.js +7 -0
  468. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_a37f5f18._.js +13 -0
  469. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_a445a23e._.js +4 -0
  470. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_c26c679f._.js +3 -0
  471. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_caf6533c._.js +3 -0
  472. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_d4b20e29._.js +3 -0
  473. package/web/.next/{server/chunks/ssr/_884ddade._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_ed11dcd6._.js} +3 -3
  474. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_f38b49fe._.js +3 -0
  475. 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
  476. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_f7f6173c._.js +3 -0
  477. 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
  478. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  479. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js +3 -0
  480. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_163038ba._.js +2 -2
  481. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_30d7eeda._.js +1 -1
  482. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_459cb687._.js +2 -2
  483. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_565a14f8._.js +1 -1
  484. 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
  485. 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
  486. 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
  487. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_app_global-error_tsx_14c389b5._.js +3 -0
  488. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
  489. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  490. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js +1 -1
  491. package/web/.next/standalone/src/presentation/web/.next/server/middleware-build-manifest.js +3 -3
  492. package/web/.next/standalone/src/presentation/web/.next/server/pages/500.html +2 -2
  493. package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.js +1 -1
  494. package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.json +59 -22
  495. package/web/.next/standalone/src/presentation/web/app/actions/load-settings.ts +43 -0
  496. package/web/.next/standalone/src/presentation/web/app/actions/update-settings.ts +73 -0
  497. package/web/.next/standalone/src/presentation/web/app/global-error.tsx +23 -0
  498. package/web/.next/standalone/src/presentation/web/app/layout.tsx +5 -1
  499. package/web/.next/standalone/src/presentation/web/app/settings/page.tsx +27 -0
  500. package/web/.next/standalone/src/presentation/web/components/common/base-drawer/base-drawer.tsx +2 -1
  501. package/web/.next/standalone/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.tsx +2 -1
  502. package/web/.next/standalone/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.tsx +2 -1
  503. package/web/.next/standalone/src/presentation/web/components/common/editor-type-icons.tsx +84 -0
  504. package/web/.next/standalone/src/presentation/web/components/common/repository-node/repository-node.tsx +2 -1
  505. package/web/.next/standalone/src/presentation/web/components/common/review-drawer-shell/review-drawer-shell.tsx +2 -1
  506. package/web/.next/standalone/src/presentation/web/components/features/settings/agent-settings-section.stories.tsx +43 -0
  507. package/web/.next/standalone/src/presentation/web/components/features/settings/agent-settings-section.tsx +183 -0
  508. package/web/.next/standalone/src/presentation/web/components/features/settings/database-settings-section.stories.tsx +28 -0
  509. package/web/.next/standalone/src/presentation/web/components/features/settings/database-settings-section.tsx +43 -0
  510. package/web/.next/standalone/src/presentation/web/components/features/settings/environment-settings-section.stories.tsx +33 -0
  511. package/web/.next/standalone/src/presentation/web/components/features/settings/environment-settings-section.tsx +125 -0
  512. package/web/.next/standalone/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.tsx +44 -0
  513. package/web/.next/standalone/src/presentation/web/components/features/settings/feature-flags-settings-section.tsx +94 -0
  514. package/web/.next/standalone/src/presentation/web/components/features/settings/notification-settings-section.stories.tsx +71 -0
  515. package/web/.next/standalone/src/presentation/web/components/features/settings/notification-settings-section.tsx +178 -0
  516. package/web/.next/standalone/src/presentation/web/components/features/settings/settings-page-client.stories.tsx +46 -0
  517. package/web/.next/standalone/src/presentation/web/components/features/settings/settings-page-client.tsx +706 -0
  518. package/web/.next/standalone/src/presentation/web/components/features/settings/workflow-settings-section.stories.tsx +62 -0
  519. package/web/.next/standalone/src/presentation/web/components/features/settings/workflow-settings-section.tsx +274 -0
  520. package/web/.next/standalone/src/presentation/web/components/layouts/app-shell/app-shell.tsx +3 -0
  521. package/web/.next/standalone/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.tsx +5 -0
  522. package/web/.next/standalone/src/presentation/web/components/layouts/app-sidebar/app-sidebar.tsx +15 -3
  523. package/web/.next/standalone/src/presentation/web/components/ui/switch.tsx +35 -0
  524. package/web/.next/standalone/src/presentation/web/hooks/feature-flags-context.tsx +30 -0
  525. package/web/.next/standalone/src/presentation/web/lib/feature-flags.ts +47 -4
  526. package/web/.next/standalone/src/presentation/web/public/icons/editors/vscode.svg +3 -0
  527. package/web/.next/standalone/src/presentation/web/public/icons/editors/windsurf.svg +4 -0
  528. package/web/.next/standalone/src/presentation/web/public/icons/editors/zed.svg +4 -0
  529. package/web/.next/standalone/src/presentation/web/server.js +1 -1
  530. package/web/.next/static/chunks/{efaf0f0eb50be73f.js → 0b7bccc8f636dd5b.js} +1 -1
  531. package/web/.next/static/chunks/120e17fda1419d01.js +1 -0
  532. package/web/.next/static/chunks/3479d6ae297e5410.css +2 -0
  533. package/web/.next/static/chunks/356ebc89a2a97627.js +1 -0
  534. package/web/.next/static/chunks/36d88ff9f7db4eb9.js +1 -0
  535. package/web/.next/static/chunks/55c131b6fc504375.js +1 -0
  536. package/web/.next/static/chunks/6bc55aa5ad2095ac.js +3 -0
  537. package/web/.next/static/chunks/700501f5ac2bb320.js +1 -0
  538. package/web/.next/static/chunks/730cb306a35d6396.js +1 -0
  539. package/web/.next/static/chunks/7ea835cf2a6ae94b.js +1 -0
  540. package/web/.next/static/chunks/{7ea9e0b8236d5f48.js → 8530c7b12f46a61e.js} +1 -1
  541. package/web/.next/static/chunks/{6a45ff0fe9faf80e.js → 8946a56bec2830be.js} +1 -1
  542. package/web/.next/static/chunks/89aac43287d73b02.js +1 -0
  543. package/web/.next/static/chunks/8beb0ab10e6c953c.js +1 -0
  544. package/web/.next/static/chunks/907556417091ee06.js +11 -0
  545. package/web/.next/static/chunks/92ba0981701fda34.js +2 -0
  546. package/web/.next/static/chunks/{00adfce42dbbd5ef.js → 98e3a7cf58fc912a.js} +1 -1
  547. package/web/.next/static/chunks/aa6cc6df962a3fc0.js +3 -0
  548. package/web/.next/static/chunks/c17b075a71a85424.js +1 -0
  549. package/web/.next/static/chunks/{c558d0da468011b6.js → c596c91507fdc622.js} +1 -1
  550. package/web/.next/static/chunks/c63d1c145c5a07dc.js +1 -0
  551. package/web/.next/static/chunks/{07f00e2e73d322d2.js → d4d8f0a137bd2eb4.js} +3 -3
  552. package/web/.next/static/chunks/eb9841ec4d80af01.js +1 -0
  553. package/web/.next/static/chunks/fc00e1b83852da4e.js +1 -0
  554. package/web/.next/static/chunks/{turbopack-05820f781f3ffc22.js → turbopack-080e470ea902d0ba.js} +1 -1
  555. package/web/.next/trace +1 -1
  556. package/web/.next/trace-build +1 -1
  557. package/web/.next/types/link.d.ts +1 -0
  558. package/web/.next/types/routes.d.ts +2 -1
  559. package/web/.next/types/validator.ts +9 -0
  560. package/web/public/icons/editors/vscode.svg +3 -0
  561. package/web/public/icons/editors/windsurf.svg +4 -0
  562. package/web/public/icons/editors/zed.svg +4 -0
  563. package/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js +0 -3
  564. package/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js.map +0 -1
  565. package/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js +0 -3
  566. package/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js.map +0 -1
  567. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js +0 -4
  568. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js.map +0 -1
  569. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_8e8822d6.js.map +0 -1
  570. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_9d039634.js.map +0 -1
  571. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_bec3d8d3.js.map +0 -1
  572. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_c27615b6.js.map +0 -1
  573. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_d302115b.js.map +0 -1
  574. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_dbf21e04.js.map +0 -1
  575. package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +0 -4
  576. package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js.map +0 -1
  577. package/web/.next/server/chunks/ssr/[root-of-the-server]__2018e25f._.js +0 -3
  578. package/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +0 -3
  579. package/web/.next/server/chunks/ssr/[root-of-the-server]__3b4af5ae._.js +0 -3
  580. package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +0 -4
  581. package/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js.map +0 -1
  582. package/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js +0 -3
  583. package/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js.map +0 -1
  584. package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +0 -4
  585. package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +0 -4
  586. package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js.map +0 -1
  587. package/web/.next/server/chunks/ssr/[root-of-the-server]__6ee2450e._.js +0 -3
  588. package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +0 -4
  589. package/web/.next/server/chunks/ssr/[root-of-the-server]__80e5bed2._.js +0 -3
  590. package/web/.next/server/chunks/ssr/[root-of-the-server]__8a947500._.js +0 -3
  591. package/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js +0 -3
  592. package/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js.map +0 -1
  593. package/web/.next/server/chunks/ssr/[root-of-the-server]__c18f84a4._.js +0 -3
  594. package/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js +0 -3
  595. package/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js.map +0 -1
  596. package/web/.next/server/chunks/ssr/[root-of-the-server]__fa87595c._.js +0 -3
  597. package/web/.next/server/chunks/ssr/_07c2a32a._.js +0 -9
  598. package/web/.next/server/chunks/ssr/_07c2a32a._.js.map +0 -1
  599. package/web/.next/server/chunks/ssr/_2a862f34._.js +0 -6
  600. package/web/.next/server/chunks/ssr/_2a862f34._.js.map +0 -1
  601. package/web/.next/server/chunks/ssr/_3197d5cb._.js.map +0 -1
  602. package/web/.next/server/chunks/ssr/_380c6567._.js +0 -6
  603. package/web/.next/server/chunks/ssr/_380c6567._.js.map +0 -1
  604. package/web/.next/server/chunks/ssr/_44cce4e0._.js +0 -4
  605. package/web/.next/server/chunks/ssr/_44cce4e0._.js.map +0 -1
  606. package/web/.next/server/chunks/ssr/_5ee4f5a7._.js +0 -7
  607. package/web/.next/server/chunks/ssr/_5ee4f5a7._.js.map +0 -1
  608. package/web/.next/server/chunks/ssr/_9f940437._.js +0 -3
  609. package/web/.next/server/chunks/ssr/_9f940437._.js.map +0 -1
  610. package/web/.next/server/chunks/ssr/_ad8a094f._.js.map +0 -1
  611. package/web/.next/server/chunks/ssr/_dc379243._.js +0 -4
  612. package/web/.next/server/chunks/ssr/_dc379243._.js.map +0 -1
  613. package/web/.next/server/chunks/ssr/_e806976d._.js +0 -3
  614. package/web/.next/server/chunks/ssr/_e806976d._.js.map +0 -1
  615. package/web/.next/server/chunks/ssr/src_presentation_web_67178b88._.js +0 -13
  616. package/web/.next/server/chunks/ssr/src_presentation_web_67178b88._.js.map +0 -1
  617. package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js +0 -3
  618. package/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js.map +0 -1
  619. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_client_components_builtin_global-error_5fefc4d7.js +0 -3
  620. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_d738ab66._.js +0 -3
  621. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_0f115902.js +0 -4
  622. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +0 -4
  623. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__2018e25f._.js +0 -3
  624. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +0 -3
  625. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__3b4af5ae._.js +0 -3
  626. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js +0 -4
  627. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6258349c._.js +0 -3
  628. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +0 -4
  629. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js +0 -4
  630. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6ee2450e._.js +0 -3
  631. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +0 -4
  632. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__80e5bed2._.js +0 -3
  633. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__8a947500._.js +0 -3
  634. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__94a6d275._.js +0 -3
  635. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c18f84a4._.js +0 -3
  636. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__e062a6de._.js +0 -3
  637. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fa87595c._.js +0 -3
  638. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_07c2a32a._.js +0 -9
  639. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_2a862f34._.js +0 -6
  640. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_380c6567._.js +0 -6
  641. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_44cce4e0._.js +0 -4
  642. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_5ee4f5a7._.js +0 -7
  643. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_9f940437._.js +0 -3
  644. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_dc379243._.js +0 -4
  645. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_e806976d._.js +0 -3
  646. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_67178b88._.js +0 -13
  647. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_ui_tabs_tsx_b226ea9b._.js +0 -3
  648. package/web/.next/static/chunks/1f5c93a8b939416d.js +0 -5
  649. package/web/.next/static/chunks/3f205fd6adbfd20a.js +0 -7
  650. package/web/.next/static/chunks/424982cd78174a1a.js +0 -1
  651. package/web/.next/static/chunks/4a3b3cfcc85e7254.js +0 -1
  652. package/web/.next/static/chunks/5968047406179daf.js +0 -1
  653. package/web/.next/static/chunks/5d0a6417c4e4e545.js +0 -1
  654. package/web/.next/static/chunks/9215b6fb973482c5.js +0 -1
  655. package/web/.next/static/chunks/a3a1392c422107d6.js +0 -1
  656. package/web/.next/static/chunks/ab411f151f1b87cc.js +0 -1
  657. package/web/.next/static/chunks/b6c507fc42d9a277.js +0 -1
  658. package/web/.next/static/chunks/ce67a6fcc19c61dc.js +0 -4
  659. package/web/.next/static/chunks/d5b885838e1da36a.js +0 -1
  660. package/web/.next/static/chunks/e12fff3b57456bc2.css +0 -2
  661. package/web/.next/static/chunks/e8637d52f6093074.js +0 -1
  662. /package/web/.next/server/chunks/ssr/{[root-of-the-server]__80e5bed2._.js.map → [root-of-the-server]__52485955._.js.map} +0 -0
  663. /package/web/.next/static/{TkQduVaaKmOXMiLB6CK5h → YWzkM_I8raXDlPfEwO-Xo}/_buildManifest.js +0 -0
  664. /package/web/.next/static/{TkQduVaaKmOXMiLB6CK5h → YWzkM_I8raXDlPfEwO-Xo}/_clientMiddlewareManifest.json +0 -0
  665. /package/web/.next/static/{TkQduVaaKmOXMiLB6CK5h → YWzkM_I8raXDlPfEwO-Xo}/_ssgManifest.js +0 -0
@@ -1 +1 @@
1
- self.__RSC_SERVER_MANIFEST="{\n \"node\": {\n \"00f63013e24c0f4c85fa9c48c05c7b980f6845385f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 66973,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 86139,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\",\n \"exportedName\": \"pickFolder\"\n },\n \"4046268f4eac84e42295d9219aa55dd5d3e72069f2\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\",\n \"exportedName\": \"getDeploymentLogs\"\n },\n \"4087971ffdb024aa1e9bf4537dbad06f73e2c22abd\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\",\n \"exportedName\": \"deployFeature\"\n },\n \"4096c592e6d14515a7e28ec7e1da86832cb5a53804\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\",\n \"exportedName\": \"deployRepository\"\n },\n \"40601095152c777c8fdb17d32f64a18fe976fe160f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\",\n \"exportedName\": \"stopDeployment\"\n },\n \"402d14b33ea35698a8f77f17bd515021ce203acb26\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\",\n \"exportedName\": \"getDeploymentStatus\"\n },\n \"409f950233296bbbca099ed65ceef15572f2effccd\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\",\n \"exportedName\": \"openIde\"\n },\n \"40d9e03b87a087fa4d68f74c66ff20bb5e2c6abde7\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\",\n \"exportedName\": \"openShell\"\n },\n \"405f99cce98bbad391e66ce4a90d25bc2cb1f85629\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\",\n \"exportedName\": \"openFolder\"\n },\n \"40b6b95c3ef80fc012315b114831bea94edd7fe294\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\",\n \"exportedName\": \"deleteFeature\"\n },\n \"40fe1635f49f46f6b27346a370736b9df5834cfadf\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\",\n \"exportedName\": \"addRepository\"\n },\n \"404f564e8af7ba4e0c6c2db574d035f2a1243f541c\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\",\n \"exportedName\": \"deleteRepository\"\n },\n \"40a62752cb92ff4bef5c7ccc8ddaeaad0c9f2e8d14\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\",\n \"exportedName\": \"getFeatureMetadata\"\n },\n \"00cf9ccf3d8c7d228a8a10b515e7727370e0107dbe\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\",\n \"exportedName\": \"fetchGraphData\"\n },\n \"00f5928d1326269c0949ff76c217c4efd679f5f6fc\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"getWorkflowDefaults\",\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"getWorkflowDefaults\",\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"rsc\",\n \"app/(dashboard)/create/page\": \"rsc\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\",\n \"exportedName\": \"getWorkflowDefaults\"\n },\n \"40b375f34d6baa6de4a490c2a3b7590410ddfecb74\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\",\n \"exportedName\": \"createFeature\"\n },\n \"60f3a12a8db9be06c566c90156664c22dc9ba7a6d1\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\",\n \"exportedName\": \"approveFeature\"\n },\n \"6082b993c972ab87e9b40c40e3b79d6ff68af53da4\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\",\n \"exportedName\": \"rejectFeature\"\n },\n \"40fa270b46b6fdfb7224568fbd27e869ed28b90db5\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\",\n \"exportedName\": \"getFeatureArtifact\"\n },\n \"40f3b6c52c096385b15effff9fb161bf4adbafbdbe\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\",\n \"exportedName\": \"getResearchArtifact\"\n },\n \"40bcede26825f305ff96b86169780a8c4eebe14eff\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\",\n \"exportedName\": \"getMergeReviewData\"\n }\n },\n \"edge\": {},\n \"encryptionKey\": \"vBXD3mlGex3cWwApGosKONZ2UyxqCdVw2yyaBlQcuwM=\"\n}"
1
+ self.__RSC_SERVER_MANIFEST="{\n \"node\": {\n \"00ccd7284f0091bd27b1752bfa3ad139c36d859df8\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/_not-found/page\": {\n \"moduleId\": 66973,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/settings/page\": {\n \"moduleId\": 39169,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/version/page\": {\n \"moduleId\": 86139,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/_not-found/page\": \"action-browser\",\n \"app/settings/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\",\n \"app/version/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\",\n \"exportedName\": \"pickFolder\"\n },\n \"405436e6b914c4daa7629236712a73709534a1961e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\",\n \"exportedName\": \"getDeploymentLogs\"\n },\n \"4021ee1b527a765960826574a3177726ccc2a765d4\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\",\n \"exportedName\": \"deployFeature\"\n },\n \"40c335cc7d3a3a4fc9ddae8410fe93caad01d10e6f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\",\n \"exportedName\": \"deployRepository\"\n },\n \"4097a0e3ea500207e82252978e1ad8d7ce2ff53248\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\",\n \"exportedName\": \"stopDeployment\"\n },\n \"404062484992f3669231732d5d2403d66a5f9cc913\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/skills/page\": {\n \"moduleId\": 87596,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/tools/page\": {\n \"moduleId\": 90322,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\",\n \"app/skills/page\": \"action-browser\",\n \"app/tools/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\",\n \"exportedName\": \"getDeploymentStatus\"\n },\n \"40570a337ab2ae5ccfe9b79658f6aa475defa9f75d\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\",\n \"exportedName\": \"openIde\"\n },\n \"407b6c5befe5bfa90f1cd460ee45dac055d5d9d04f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\",\n \"exportedName\": \"openShell\"\n },\n \"406108ff10e594d3bfa57f99e768bf577318ba81d6\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\",\n \"exportedName\": \"openFolder\"\n },\n \"40e38cb9d2287bd9af8021104d0ecb47ccbfb18930\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\",\n \"exportedName\": \"deleteFeature\"\n },\n \"40a45c9fd82a5742a18a4df78a0068e1248b05087b\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\",\n \"exportedName\": \"addRepository\"\n },\n \"400e83140b93cac77053ea7a4ebd0b94a23406bf91\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\",\n \"exportedName\": \"deleteRepository\"\n },\n \"40c9934bd9dd5c71b0276fdc7f44bfd8bf28cdb815\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"getFeatureMetadata\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-metadata.ts\",\n \"exportedName\": \"getFeatureMetadata\"\n },\n \"008841e626b2a8f39062b34b3bd5902c8b5902c267\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": {\n \"moduleId\": 61199,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 78391,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n },\n \"app/(dashboard)/repository/[repositoryId]/page\": {\n \"moduleId\": 23956,\n \"async\": false,\n \"exportedName\": \"fetchGraphData\",\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/@drawer/repository/[repositoryId]/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/page\": \"action-browser\",\n \"app/(dashboard)/repository/[repositoryId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-graph-data.ts\",\n \"exportedName\": \"fetchGraphData\"\n },\n \"0042acc1e438456eb97e0802ed87cceb62c4096bf6\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"getWorkflowDefaults\",\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"getWorkflowDefaults\",\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"rsc\",\n \"app/(dashboard)/create/page\": \"rsc\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-workflow-defaults.ts\",\n \"exportedName\": \"getWorkflowDefaults\"\n },\n \"40ef9438d5bb2a4aba7d8dbbdf0c066f45155c5473\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 90842,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 80118,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/create/page\": \"action-browser\",\n \"app/(dashboard)/create/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\",\n \"exportedName\": \"createFeature\"\n },\n \"60860a77ac2286cbf7c9ce0a2a8e2b20379a9acd99\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"approveFeature\",\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/approve-feature.ts\",\n \"exportedName\": \"approveFeature\"\n },\n \"60ecb57333761270221a6667aaa9111913b87dc6da\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"rejectFeature\",\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/reject-feature.ts\",\n \"exportedName\": \"rejectFeature\"\n },\n \"40a99cbcb9cb4144bcc8be1f403bad8d01c7345cb2\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getFeatureArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-feature-artifact.ts\",\n \"exportedName\": \"getFeatureArtifact\"\n },\n \"40c86257bbe4cc2cd5b40b6ab6fffa3cd9f4a1c06a\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getResearchArtifact\",\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-research-artifact.ts\",\n \"exportedName\": \"getResearchArtifact\"\n },\n \"40e6bee7f959ab110d43683c33823577ce62d0e6e4\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 48839,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n },\n \"app/(dashboard)/feature/[featureId]/page\": {\n \"moduleId\": 10015,\n \"async\": false,\n \"exportedName\": \"getMergeReviewData\",\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\"\n }\n },\n \"layer\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": \"action-browser\",\n \"app/(dashboard)/feature/[featureId]/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/get-merge-review-data.ts\",\n \"exportedName\": \"getMergeReviewData\"\n },\n \"0022dd6695787277858a7910315ab4b5f1247af770\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 39169,\n \"async\": false,\n \"exportedName\": \"loadSettings\",\n \"filename\": \"src/presentation/web/app/actions/load-settings.ts\"\n }\n },\n \"layer\": {\n \"app/settings/page\": \"rsc\"\n },\n \"filename\": \"src/presentation/web/app/actions/load-settings.ts\",\n \"exportedName\": \"loadSettings\"\n },\n \"407e749fe0f446c93e8d8d654f927541da6c7c6b72\": {\n \"workers\": {\n \"app/settings/page\": {\n \"moduleId\": 39169,\n \"async\": false,\n \"exportedName\": \"updateSettingsAction\",\n \"filename\": \"src/presentation/web/app/actions/update-settings.ts\"\n }\n },\n \"layer\": {\n \"app/settings/page\": \"action-browser\"\n },\n \"filename\": \"src/presentation/web/app/actions/update-settings.ts\",\n \"exportedName\": \"updateSettingsAction\"\n }\n },\n \"edge\": {},\n \"encryptionKey\": \"LtzDyig+R7fvlKmrdg5aaDJdxSFsz+l0MR0CtHuYwSo=\"\n}"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "00f63013e24c0f4c85fa9c48c05c7b980f6845385f": {
3
+ "00ccd7284f0091bd27b1752bfa3ad139c36d859df8": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/create/page": {
6
6
  "moduleId": 90842,
@@ -50,6 +50,12 @@
50
50
  "exportedName": "pickFolder",
51
51
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
52
52
  },
53
+ "app/settings/page": {
54
+ "moduleId": 39169,
55
+ "async": false,
56
+ "exportedName": "pickFolder",
57
+ "filename": "src/presentation/web/app/actions/pick-folder.ts"
58
+ },
53
59
  "app/skills/page": {
54
60
  "moduleId": 87596,
55
61
  "async": false,
@@ -78,6 +84,7 @@
78
84
  "app/(dashboard)/page": "action-browser",
79
85
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
80
86
  "app/_not-found/page": "action-browser",
87
+ "app/settings/page": "action-browser",
81
88
  "app/skills/page": "action-browser",
82
89
  "app/tools/page": "action-browser",
83
90
  "app/version/page": "action-browser"
@@ -85,7 +92,7 @@
85
92
  "filename": "src/presentation/web/app/actions/pick-folder.ts",
86
93
  "exportedName": "pickFolder"
87
94
  },
88
- "4046268f4eac84e42295d9219aa55dd5d3e72069f2": {
95
+ "405436e6b914c4daa7629236712a73709534a1961e": {
89
96
  "workers": {
90
97
  "app/(dashboard)/@drawer/create/page": {
91
98
  "moduleId": 90842,
@@ -156,7 +163,7 @@
156
163
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts",
157
164
  "exportedName": "getDeploymentLogs"
158
165
  },
159
- "4087971ffdb024aa1e9bf4537dbad06f73e2c22abd": {
166
+ "4021ee1b527a765960826574a3177726ccc2a765d4": {
160
167
  "workers": {
161
168
  "app/(dashboard)/@drawer/create/page": {
162
169
  "moduleId": 90842,
@@ -227,7 +234,7 @@
227
234
  "filename": "src/presentation/web/app/actions/deploy-feature.ts",
228
235
  "exportedName": "deployFeature"
229
236
  },
230
- "4096c592e6d14515a7e28ec7e1da86832cb5a53804": {
237
+ "40c335cc7d3a3a4fc9ddae8410fe93caad01d10e6f": {
231
238
  "workers": {
232
239
  "app/(dashboard)/@drawer/create/page": {
233
240
  "moduleId": 90842,
@@ -298,7 +305,7 @@
298
305
  "filename": "src/presentation/web/app/actions/deploy-repository.ts",
299
306
  "exportedName": "deployRepository"
300
307
  },
301
- "40601095152c777c8fdb17d32f64a18fe976fe160f": {
308
+ "4097a0e3ea500207e82252978e1ad8d7ce2ff53248": {
302
309
  "workers": {
303
310
  "app/(dashboard)/@drawer/create/page": {
304
311
  "moduleId": 90842,
@@ -369,7 +376,7 @@
369
376
  "filename": "src/presentation/web/app/actions/stop-deployment.ts",
370
377
  "exportedName": "stopDeployment"
371
378
  },
372
- "402d14b33ea35698a8f77f17bd515021ce203acb26": {
379
+ "404062484992f3669231732d5d2403d66a5f9cc913": {
373
380
  "workers": {
374
381
  "app/(dashboard)/@drawer/create/page": {
375
382
  "moduleId": 90842,
@@ -440,7 +447,7 @@
440
447
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts",
441
448
  "exportedName": "getDeploymentStatus"
442
449
  },
443
- "409f950233296bbbca099ed65ceef15572f2effccd": {
450
+ "40570a337ab2ae5ccfe9b79658f6aa475defa9f75d": {
444
451
  "workers": {
445
452
  "app/(dashboard)/@drawer/create/page": {
446
453
  "moduleId": 90842,
@@ -497,7 +504,7 @@
497
504
  "filename": "src/presentation/web/app/actions/open-ide.ts",
498
505
  "exportedName": "openIde"
499
506
  },
500
- "40d9e03b87a087fa4d68f74c66ff20bb5e2c6abde7": {
507
+ "407b6c5befe5bfa90f1cd460ee45dac055d5d9d04f": {
501
508
  "workers": {
502
509
  "app/(dashboard)/@drawer/create/page": {
503
510
  "moduleId": 90842,
@@ -554,7 +561,7 @@
554
561
  "filename": "src/presentation/web/app/actions/open-shell.ts",
555
562
  "exportedName": "openShell"
556
563
  },
557
- "405f99cce98bbad391e66ce4a90d25bc2cb1f85629": {
564
+ "406108ff10e594d3bfa57f99e768bf577318ba81d6": {
558
565
  "workers": {
559
566
  "app/(dashboard)/@drawer/create/page": {
560
567
  "moduleId": 90842,
@@ -611,7 +618,7 @@
611
618
  "filename": "src/presentation/web/app/actions/open-folder.ts",
612
619
  "exportedName": "openFolder"
613
620
  },
614
- "40b6b95c3ef80fc012315b114831bea94edd7fe294": {
621
+ "40e38cb9d2287bd9af8021104d0ecb47ccbfb18930": {
615
622
  "workers": {
616
623
  "app/(dashboard)/@drawer/create/page": {
617
624
  "moduleId": 90842,
@@ -668,7 +675,7 @@
668
675
  "filename": "src/presentation/web/app/actions/delete-feature.ts",
669
676
  "exportedName": "deleteFeature"
670
677
  },
671
- "40fe1635f49f46f6b27346a370736b9df5834cfadf": {
678
+ "40a45c9fd82a5742a18a4df78a0068e1248b05087b": {
672
679
  "workers": {
673
680
  "app/(dashboard)/@drawer/create/page": {
674
681
  "moduleId": 90842,
@@ -725,7 +732,7 @@
725
732
  "filename": "src/presentation/web/app/actions/add-repository.ts",
726
733
  "exportedName": "addRepository"
727
734
  },
728
- "404f564e8af7ba4e0c6c2db574d035f2a1243f541c": {
735
+ "400e83140b93cac77053ea7a4ebd0b94a23406bf91": {
729
736
  "workers": {
730
737
  "app/(dashboard)/@drawer/create/page": {
731
738
  "moduleId": 90842,
@@ -782,7 +789,7 @@
782
789
  "filename": "src/presentation/web/app/actions/delete-repository.ts",
783
790
  "exportedName": "deleteRepository"
784
791
  },
785
- "40a62752cb92ff4bef5c7ccc8ddaeaad0c9f2e8d14": {
792
+ "40c9934bd9dd5c71b0276fdc7f44bfd8bf28cdb815": {
786
793
  "workers": {
787
794
  "app/(dashboard)/@drawer/create/page": {
788
795
  "moduleId": 90842,
@@ -839,7 +846,7 @@
839
846
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts",
840
847
  "exportedName": "getFeatureMetadata"
841
848
  },
842
- "00cf9ccf3d8c7d228a8a10b515e7727370e0107dbe": {
849
+ "008841e626b2a8f39062b34b3bd5902c8b5902c267": {
843
850
  "workers": {
844
851
  "app/(dashboard)/@drawer/create/page": {
845
852
  "moduleId": 90842,
@@ -896,7 +903,7 @@
896
903
  "filename": "src/presentation/web/app/actions/get-graph-data.ts",
897
904
  "exportedName": "fetchGraphData"
898
905
  },
899
- "00f5928d1326269c0949ff76c217c4efd679f5f6fc": {
906
+ "0042acc1e438456eb97e0802ed87cceb62c4096bf6": {
900
907
  "workers": {
901
908
  "app/(dashboard)/@drawer/create/page": {
902
909
  "moduleId": 90842,
@@ -918,7 +925,7 @@
918
925
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts",
919
926
  "exportedName": "getWorkflowDefaults"
920
927
  },
921
- "40b375f34d6baa6de4a490c2a3b7590410ddfecb74": {
928
+ "40ef9438d5bb2a4aba7d8dbbdf0c066f45155c5473": {
922
929
  "workers": {
923
930
  "app/(dashboard)/@drawer/create/page": {
924
931
  "moduleId": 90842,
@@ -940,7 +947,7 @@
940
947
  "filename": "src/presentation/web/app/actions/create-feature.ts",
941
948
  "exportedName": "createFeature"
942
949
  },
943
- "60f3a12a8db9be06c566c90156664c22dc9ba7a6d1": {
950
+ "60860a77ac2286cbf7c9ce0a2a8e2b20379a9acd99": {
944
951
  "workers": {
945
952
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
946
953
  "moduleId": 48839,
@@ -962,7 +969,7 @@
962
969
  "filename": "src/presentation/web/app/actions/approve-feature.ts",
963
970
  "exportedName": "approveFeature"
964
971
  },
965
- "6082b993c972ab87e9b40c40e3b79d6ff68af53da4": {
972
+ "60ecb57333761270221a6667aaa9111913b87dc6da": {
966
973
  "workers": {
967
974
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
968
975
  "moduleId": 48839,
@@ -984,7 +991,7 @@
984
991
  "filename": "src/presentation/web/app/actions/reject-feature.ts",
985
992
  "exportedName": "rejectFeature"
986
993
  },
987
- "40fa270b46b6fdfb7224568fbd27e869ed28b90db5": {
994
+ "40a99cbcb9cb4144bcc8be1f403bad8d01c7345cb2": {
988
995
  "workers": {
989
996
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
990
997
  "moduleId": 48839,
@@ -1006,7 +1013,7 @@
1006
1013
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts",
1007
1014
  "exportedName": "getFeatureArtifact"
1008
1015
  },
1009
- "40f3b6c52c096385b15effff9fb161bf4adbafbdbe": {
1016
+ "40c86257bbe4cc2cd5b40b6ab6fffa3cd9f4a1c06a": {
1010
1017
  "workers": {
1011
1018
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
1012
1019
  "moduleId": 48839,
@@ -1028,7 +1035,7 @@
1028
1035
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts",
1029
1036
  "exportedName": "getResearchArtifact"
1030
1037
  },
1031
- "40bcede26825f305ff96b86169780a8c4eebe14eff": {
1038
+ "40e6bee7f959ab110d43683c33823577ce62d0e6e4": {
1032
1039
  "workers": {
1033
1040
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
1034
1041
  "moduleId": 48839,
@@ -1049,8 +1056,38 @@
1049
1056
  },
1050
1057
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts",
1051
1058
  "exportedName": "getMergeReviewData"
1059
+ },
1060
+ "0022dd6695787277858a7910315ab4b5f1247af770": {
1061
+ "workers": {
1062
+ "app/settings/page": {
1063
+ "moduleId": 39169,
1064
+ "async": false,
1065
+ "exportedName": "loadSettings",
1066
+ "filename": "src/presentation/web/app/actions/load-settings.ts"
1067
+ }
1068
+ },
1069
+ "layer": {
1070
+ "app/settings/page": "rsc"
1071
+ },
1072
+ "filename": "src/presentation/web/app/actions/load-settings.ts",
1073
+ "exportedName": "loadSettings"
1074
+ },
1075
+ "407e749fe0f446c93e8d8d654f927541da6c7c6b72": {
1076
+ "workers": {
1077
+ "app/settings/page": {
1078
+ "moduleId": 39169,
1079
+ "async": false,
1080
+ "exportedName": "updateSettingsAction",
1081
+ "filename": "src/presentation/web/app/actions/update-settings.ts"
1082
+ }
1083
+ },
1084
+ "layer": {
1085
+ "app/settings/page": "action-browser"
1086
+ },
1087
+ "filename": "src/presentation/web/app/actions/update-settings.ts",
1088
+ "exportedName": "updateSettingsAction"
1052
1089
  }
1053
1090
  },
1054
1091
  "edge": {},
1055
- "encryptionKey": "vBXD3mlGex3cWwApGosKONZ2UyxqCdVw2yyaBlQcuwM="
1092
+ "encryptionKey": "LtzDyig+R7fvlKmrdg5aaDJdxSFsz+l0MR0CtHuYwSo="
1056
1093
  }
@@ -1 +1 @@
1
- TkQduVaaKmOXMiLB6CK5h
1
+ YWzkM_I8raXDlPfEwO-Xo
@@ -16,6 +16,7 @@
16
16
  "/api/tools/[id]/install/stream/route": "/api/tools/[id]/install/stream",
17
17
  "/api/tools/[id]/launch/route": "/api/tools/[id]/launch",
18
18
  "/api/tools/route": "/api/tools",
19
+ "/settings/page": "/settings",
19
20
  "/skills/page": "/skills",
20
21
  "/tools/page": "/tools",
21
22
  "/version/page": "/version"
@@ -7,15 +7,15 @@
7
7
  "static/chunks/a6dad97d9634a72d.js"
8
8
  ],
9
9
  "lowPriorityFiles": [
10
- "static/TkQduVaaKmOXMiLB6CK5h/_ssgManifest.js",
11
- "static/TkQduVaaKmOXMiLB6CK5h/_buildManifest.js"
10
+ "static/YWzkM_I8raXDlPfEwO-Xo/_ssgManifest.js",
11
+ "static/YWzkM_I8raXDlPfEwO-Xo/_buildManifest.js"
12
12
  ],
13
13
  "rootMainFiles": [
14
- "static/chunks/5d0a6417c4e4e545.js",
14
+ "static/chunks/89aac43287d73b02.js",
15
15
  "static/chunks/84a181ff3270fd9f.js",
16
- "static/chunks/07f00e2e73d322d2.js",
17
16
  "static/chunks/cfe4dc9904fcfddb.js",
18
17
  "static/chunks/4b6cc9f65260f2bd.js",
19
- "static/chunks/turbopack-05820f781f3ffc22.js"
18
+ "static/chunks/d4d8f0a137bd2eb4.js",
19
+ "static/chunks/turbopack-080e470ea902d0ba.js"
20
20
  ]
21
21
  }
@@ -29,8 +29,8 @@
29
29
  "dynamicRoutes": {},
30
30
  "notFoundRoutes": [],
31
31
  "preview": {
32
- "previewModeId": "830893de6971ff332984caebb50829e2",
33
- "previewModeSigningKey": "eb4f3b1508592feea43f0e3432eb5c77c43a38fc338932204239ce17b835d4fc",
34
- "previewModeEncryptionKey": "e805c09dfee4806c46ac8e16d203b6088c6f42c207b15048008e02df6f7b6397"
32
+ "previewModeId": "69479fa98fe2773ada0c7a9b5d84f01a",
33
+ "previewModeSigningKey": "25ca8dc11791bcf7b18977bb8ed8bfb4d7e8b73a21d32e0a8a3bbcca1330c50b",
34
+ "previewModeEncryptionKey": "caca92e97d94ca04295f080f045efe9250f573293d905d79509fc34ffa14ee11"
35
35
  }
36
36
  }
@@ -2,7 +2,7 @@
2
2
  "version": 1,
3
3
  "config": {
4
4
  "env": {
5
- "NEXT_PUBLIC_SHEP_VERSION": "1.76.0",
5
+ "NEXT_PUBLIC_SHEP_VERSION": "1.77.1",
6
6
  "NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
7
7
  "NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy"
8
8
  },