@shepai/cli 1.72.6 → 1.72.7-pr187.86f6440

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 (462) hide show
  1. package/dist/packages/core/src/application/use-cases/features/delete-feature.use-case.d.ts +4 -0
  2. package/dist/packages/core/src/application/use-cases/features/delete-feature.use-case.d.ts.map +1 -1
  3. package/dist/packages/core/src/application/use-cases/features/delete-feature.use-case.js +20 -12
  4. package/dist/packages/core/src/application/use-cases/repositories/delete-repository.use-case.d.ts +8 -3
  5. package/dist/packages/core/src/application/use-cases/repositories/delete-repository.use-case.d.ts.map +1 -1
  6. package/dist/packages/core/src/application/use-cases/repositories/delete-repository.use-case.js +17 -4
  7. package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.js +1 -1
  8. package/dist/packages/core/src/infrastructure/services/tool-installer/tool-installer.service.d.ts.map +1 -1
  9. package/dist/packages/core/src/infrastructure/services/tool-installer/tool-installer.service.js +9 -1
  10. package/dist/packages/core/src/infrastructure/services/tool-installer/tool-metadata.d.ts.map +1 -1
  11. package/dist/packages/core/src/infrastructure/services/tool-installer/tool-metadata.js +5 -0
  12. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/alacritty.json +2 -2
  13. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/kitty.json +2 -2
  14. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/tmux.json +1 -1
  15. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/vscode.json +1 -1
  16. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/windsurf.json +1 -1
  17. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
  18. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +2 -6
  19. package/dist/src/presentation/web/app/api/tools/[id]/install/route.d.ts.map +1 -1
  20. package/dist/src/presentation/web/app/api/tools/[id]/install/route.js +9 -4
  21. package/dist/src/presentation/web/app/api/tools/[id]/install/stream/route.d.ts +7 -0
  22. package/dist/src/presentation/web/app/api/tools/[id]/install/stream/route.d.ts.map +1 -0
  23. package/dist/src/presentation/web/app/api/tools/[id]/install/stream/route.js +32 -0
  24. package/dist/src/presentation/web/app/build-graph-nodes.js +11 -1
  25. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts +3 -1
  26. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts.map +1 -1
  27. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +8 -4
  28. package/dist/src/presentation/web/components/common/control-center-drawer/create-drawer-client.d.ts.map +1 -1
  29. package/dist/src/presentation/web/components/common/control-center-drawer/create-drawer-client.js +12 -3
  30. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts.map +1 -1
  31. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.js +6 -2
  32. package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.d.ts.map +1 -1
  33. package/dist/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.js +1 -1
  34. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
  35. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +1 -1
  36. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  37. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +7 -2
  38. package/dist/src/presentation/web/components/common/repository-node/repository-node.d.ts.map +1 -1
  39. package/dist/src/presentation/web/components/common/repository-node/repository-node.js +6 -2
  40. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  41. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +14 -2
  42. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +3 -5
  43. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  44. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +131 -196
  45. package/dist/src/presentation/web/components/features/index.d.ts +1 -1
  46. package/dist/src/presentation/web/components/features/index.d.ts.map +1 -1
  47. package/dist/src/presentation/web/components/features/index.js +1 -1
  48. package/dist/src/presentation/web/components/features/tools/index.d.ts +1 -1
  49. package/dist/src/presentation/web/components/features/tools/index.d.ts.map +1 -1
  50. package/dist/src/presentation/web/components/features/tools/index.js +1 -1
  51. package/dist/src/presentation/web/components/features/tools/tool-card.d.ts.map +1 -1
  52. package/dist/src/presentation/web/components/features/tools/tool-card.js +11 -12
  53. package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.d.ts +10 -0
  54. package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.d.ts.map +1 -0
  55. package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.js +88 -0
  56. package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.stories.d.ts +12 -0
  57. package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.stories.d.ts.map +1 -0
  58. package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.stories.js +116 -0
  59. package/dist/src/presentation/web/components/ui/alert-dialog.d.ts +1 -1
  60. package/dist/src/presentation/web/components/ui/alert-dialog.d.ts.map +1 -1
  61. package/dist/src/presentation/web/components/ui/alert-dialog.js +7 -2
  62. package/dist/src/presentation/web/components/ui/dialog.d.ts.map +1 -1
  63. package/dist/src/presentation/web/components/ui/dialog.js +6 -1
  64. package/dist/src/presentation/web/hooks/use-tool-install-stream.d.ts +10 -0
  65. package/dist/src/presentation/web/hooks/use-tool-install-stream.d.ts.map +1 -0
  66. package/dist/src/presentation/web/hooks/use-tool-install-stream.js +38 -0
  67. package/dist/src/presentation/web/lib/layout-with-dagre.d.ts +2 -0
  68. package/dist/src/presentation/web/lib/layout-with-dagre.d.ts.map +1 -1
  69. package/dist/src/presentation/web/lib/layout-with-dagre.js +86 -4
  70. package/dist/tsconfig.build.tsbuildinfo +1 -1
  71. package/package.json +1 -1
  72. package/web/.next/BUILD_ID +1 -1
  73. package/web/.next/app-path-routes-manifest.json +1 -0
  74. package/web/.next/build-manifest.json +7 -7
  75. package/web/.next/cache/.previewinfo +1 -1
  76. package/web/.next/cache/.rscinfo +1 -1
  77. package/web/.next/cache/.tsbuildinfo +1 -1
  78. package/web/.next/cache/config.json +3 -3
  79. package/web/.next/fallback-build-manifest.json +2 -2
  80. package/web/.next/prerender-manifest.json +3 -3
  81. package/web/.next/required-server-files.js +1 -1
  82. package/web/.next/required-server-files.json +1 -1
  83. package/web/.next/routes-manifest.json +8 -0
  84. package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +5 -5
  85. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +14 -14
  86. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -1
  87. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  88. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  89. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +5 -5
  90. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +17 -17
  91. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -1
  92. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  93. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  94. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +5 -5
  95. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +12 -12
  96. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -1
  97. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  98. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  99. package/web/.next/server/app/(dashboard)/create/page/build-manifest.json +5 -5
  100. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +14 -14
  101. package/web/.next/server/app/(dashboard)/create/page.js +1 -1
  102. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  103. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  104. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +5 -5
  105. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +17 -17
  106. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -1
  107. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  108. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  109. package/web/.next/server/app/(dashboard)/page/build-manifest.json +5 -5
  110. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +12 -12
  111. package/web/.next/server/app/(dashboard)/page.js +1 -1
  112. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  113. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  114. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +5 -5
  115. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +12 -12
  116. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -1
  117. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  118. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  119. package/web/.next/server/app/_global-error/page/build-manifest.json +5 -5
  120. package/web/.next/server/app/_global-error.html +2 -2
  121. package/web/.next/server/app/_global-error.rsc +1 -1
  122. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  123. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  124. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  125. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  126. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  127. package/web/.next/server/app/_not-found/page/build-manifest.json +5 -5
  128. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  129. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  130. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  131. package/web/.next/server/app/api/tools/[id]/install/route.js +1 -1
  132. package/web/.next/server/app/api/tools/[id]/install/route.js.nft.json +1 -1
  133. package/web/.next/server/app/api/tools/[id]/install/stream/route/app-paths-manifest.json +3 -0
  134. package/web/.next/server/app/api/tools/[id]/install/stream/route/build-manifest.json +11 -0
  135. package/web/.next/server/app/api/tools/[id]/install/stream/route/server-reference-manifest.json +4 -0
  136. package/web/.next/server/app/api/tools/[id]/install/stream/route.js +6 -0
  137. package/web/.next/server/app/api/tools/[id]/install/stream/route.js.map +5 -0
  138. package/web/.next/server/app/api/tools/[id]/install/stream/route.js.nft.json +1 -0
  139. package/web/.next/server/app/api/tools/[id]/install/stream/route_client-reference-manifest.js +2 -0
  140. package/web/.next/server/app/skills/page/build-manifest.json +5 -5
  141. package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  142. package/web/.next/server/app/skills/page.js +1 -1
  143. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  144. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  145. package/web/.next/server/app/tools/page/build-manifest.json +5 -5
  146. package/web/.next/server/app/tools/page/server-reference-manifest.json +77 -2
  147. package/web/.next/server/app/tools/page.js +2 -2
  148. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  149. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  150. package/web/.next/server/app/version/page/build-manifest.json +5 -5
  151. package/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  152. package/web/.next/server/app/version/page.js.nft.json +1 -1
  153. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  154. package/web/.next/server/app-paths-manifest.json +1 -0
  155. package/web/.next/server/chunks/[root-of-the-server]__0866d2b5._.js +3 -0
  156. package/web/.next/server/chunks/[root-of-the-server]__0866d2b5._.js.map +1 -0
  157. package/web/.next/server/chunks/[root-of-the-server]__e247a485._.js +11 -0
  158. package/web/.next/server/chunks/[root-of-the-server]__e247a485._.js.map +1 -0
  159. package/web/.next/server/chunks/f3a1f__next-internal_server_app_api_tools_[id]_install_stream_route_actions_1fe5bd5d.js +3 -0
  160. package/web/.next/server/chunks/f3a1f__next-internal_server_app_api_tools_[id]_install_stream_route_actions_1fe5bd5d.js.map +1 -0
  161. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  162. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  163. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_2b7834f6.js +1 -1
  164. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_2b7834f6.js.map +1 -1
  165. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_6923c575.js +1 -1
  166. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_6923c575.js.map +1 -1
  167. package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +4 -0
  168. package/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js.map +1 -0
  169. package/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +1 -1
  170. package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__07385073._.js → server/chunks/ssr/[root-of-the-server]__45dbf93d._.js} +3 -3
  171. package/web/.next/server/chunks/ssr/{[root-of-the-server]__07385073._.js.map → [root-of-the-server]__45dbf93d._.js.map} +1 -1
  172. package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +1 -1
  173. package/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js.map +1 -1
  174. package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__8fcb9132._.js → server/chunks/ssr/[root-of-the-server]__6cbc1149._.js} +3 -3
  175. package/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js.map +1 -0
  176. package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +1 -1
  177. package/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js.map +1 -1
  178. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +3 -0
  179. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -0
  180. package/web/.next/server/chunks/ssr/[root-of-the-server]__aef6b3cd._.js +3 -0
  181. package/web/.next/server/chunks/ssr/{[root-of-the-server]__8c1a3d66._.js.map → [root-of-the-server]__aef6b3cd._.js.map} +1 -1
  182. package/web/.next/server/chunks/ssr/[root-of-the-server]__c04c8ff2._.js +3 -0
  183. package/web/.next/server/chunks/ssr/[root-of-the-server]__c04c8ff2._.js.map +1 -0
  184. package/web/.next/server/chunks/ssr/[root-of-the-server]__c134fc13._.js +3 -0
  185. package/web/.next/server/chunks/ssr/[root-of-the-server]__c134fc13._.js.map +1 -0
  186. package/web/.next/server/chunks/ssr/[root-of-the-server]__c18f84a4._.js +3 -0
  187. package/web/.next/server/chunks/ssr/[root-of-the-server]__c18f84a4._.js.map +1 -0
  188. package/web/.next/server/chunks/ssr/_07c2a32a._.js +1 -1
  189. package/web/.next/server/chunks/ssr/_07c2a32a._.js.map +1 -1
  190. package/web/.next/server/chunks/ssr/_0e9d6bf7._.js +3 -0
  191. package/web/.next/server/chunks/ssr/_0e9d6bf7._.js.map +1 -0
  192. package/web/.next/server/chunks/ssr/_3197d5cb._.js +3 -0
  193. package/web/.next/server/chunks/ssr/_3197d5cb._.js.map +1 -0
  194. package/web/.next/server/chunks/ssr/_4e5db14b._.js +7 -0
  195. package/web/.next/server/chunks/ssr/_4e5db14b._.js.map +1 -0
  196. package/web/.next/server/chunks/ssr/_61351ed3._.js +3 -0
  197. package/web/.next/server/chunks/ssr/_61351ed3._.js.map +1 -0
  198. package/web/.next/server/chunks/ssr/_797dbf60._.js +3 -0
  199. package/web/.next/server/chunks/ssr/_797dbf60._.js.map +1 -0
  200. package/web/.next/server/chunks/ssr/_8400c8bb._.js +3 -0
  201. package/web/.next/server/chunks/ssr/_8400c8bb._.js.map +1 -0
  202. package/web/.next/server/chunks/ssr/_a29296f0._.js +3 -0
  203. package/web/.next/server/chunks/ssr/_a29296f0._.js.map +1 -0
  204. package/web/.next/{standalone/src/presentation/web/.next/server/chunks/ssr/_e50484ec._.js → server/chunks/ssr/_a2a86eed._.js} +2 -2
  205. package/web/.next/server/chunks/ssr/{_e50484ec._.js.map → _a2a86eed._.js.map} +1 -1
  206. package/web/.next/server/chunks/ssr/_dd1c549f._.js +3 -0
  207. package/web/.next/server/chunks/ssr/_dd1c549f._.js.map +1 -0
  208. package/web/.next/server/chunks/ssr/src_presentation_web_1a32dbcb._.js +2 -2
  209. package/web/.next/server/chunks/ssr/src_presentation_web_1a32dbcb._.js.map +1 -1
  210. package/web/.next/server/chunks/ssr/src_presentation_web_398553b0._.js +1 -1
  211. package/web/.next/server/chunks/ssr/src_presentation_web_398553b0._.js.map +1 -1
  212. package/web/.next/server/chunks/ssr/src_presentation_web_5c87e8e4._.js +1 -1
  213. package/web/.next/server/chunks/ssr/src_presentation_web_5c87e8e4._.js.map +1 -1
  214. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_f4952172.js +1 -1
  215. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_f4952172.js.map +1 -1
  216. package/web/.next/server/chunks/ssr/src_presentation_web_c1bc6240._.js +2 -2
  217. package/web/.next/server/chunks/ssr/src_presentation_web_c1bc6240._.js.map +1 -1
  218. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  219. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  220. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  221. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  222. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js +3 -0
  223. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js.map +1 -0
  224. package/web/.next/server/middleware-build-manifest.js +5 -5
  225. package/web/.next/server/pages/500.html +2 -2
  226. package/web/.next/server/server-reference-manifest.js +1 -1
  227. package/web/.next/server/server-reference-manifest.json +61 -26
  228. package/web/.next/standalone/src/presentation/web/.next/BUILD_ID +1 -1
  229. package/web/.next/standalone/src/presentation/web/.next/app-path-routes-manifest.json +1 -0
  230. package/web/.next/standalone/src/presentation/web/.next/build-manifest.json +7 -7
  231. package/web/.next/standalone/src/presentation/web/.next/prerender-manifest.json +3 -3
  232. package/web/.next/standalone/src/presentation/web/.next/required-server-files.json +1 -1
  233. package/web/.next/standalone/src/presentation/web/.next/routes-manifest.json +8 -0
  234. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +5 -5
  235. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +14 -14
  236. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -1
  237. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  238. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  239. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +5 -5
  240. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +17 -17
  241. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -1
  242. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  243. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  244. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +5 -5
  245. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +12 -12
  246. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -1
  247. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  248. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  249. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/build-manifest.json +5 -5
  250. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +14 -14
  251. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js +1 -1
  252. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  253. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  254. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +5 -5
  255. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +17 -17
  256. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -1
  257. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  258. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  259. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/build-manifest.json +5 -5
  260. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +12 -12
  261. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js +1 -1
  262. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  263. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  264. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +5 -5
  265. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +12 -12
  266. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -1
  267. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  268. package/web/.next/standalone/src/presentation/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  269. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error/page/build-manifest.json +5 -5
  270. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.html +2 -2
  271. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.rsc +1 -1
  272. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  273. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  274. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  275. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  276. package/web/.next/standalone/src/presentation/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  277. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/build-manifest.json +5 -5
  278. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  279. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  280. package/web/.next/standalone/src/presentation/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  281. package/web/.next/standalone/src/presentation/web/.next/server/app/api/tools/[id]/install/route.js +1 -1
  282. package/web/.next/standalone/src/presentation/web/.next/server/app/api/tools/[id]/install/route.js.nft.json +1 -1
  283. package/web/.next/standalone/src/presentation/web/.next/server/app/api/tools/[id]/install/stream/route/app-paths-manifest.json +3 -0
  284. package/web/.next/standalone/src/presentation/web/.next/server/app/api/tools/[id]/install/stream/route/build-manifest.json +11 -0
  285. package/web/.next/standalone/src/presentation/web/.next/server/app/api/tools/[id]/install/stream/route/server-reference-manifest.json +4 -0
  286. package/web/.next/standalone/src/presentation/web/.next/server/app/api/tools/[id]/install/stream/route.js +6 -0
  287. package/web/.next/standalone/src/presentation/web/.next/server/app/api/tools/[id]/install/stream/route.js.map +5 -0
  288. package/web/.next/standalone/src/presentation/web/.next/server/app/api/tools/[id]/install/stream/route.js.nft.json +1 -0
  289. package/web/.next/standalone/src/presentation/web/.next/server/app/api/tools/[id]/install/stream/route_client-reference-manifest.js +2 -0
  290. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/build-manifest.json +5 -5
  291. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  292. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page.js +1 -1
  293. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page.js.nft.json +1 -1
  294. package/web/.next/standalone/src/presentation/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  295. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/build-manifest.json +5 -5
  296. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page/server-reference-manifest.json +77 -2
  297. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page.js +2 -2
  298. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page.js.nft.json +1 -1
  299. package/web/.next/standalone/src/presentation/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  300. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/build-manifest.json +5 -5
  301. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page/server-reference-manifest.json +1 -1
  302. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page.js.nft.json +1 -1
  303. package/web/.next/standalone/src/presentation/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  304. package/web/.next/standalone/src/presentation/web/.next/server/app-paths-manifest.json +1 -0
  305. package/web/.next/standalone/src/presentation/web/.next/server/chunks/[root-of-the-server]__0866d2b5._.js +3 -0
  306. package/web/.next/standalone/src/presentation/web/.next/server/chunks/[root-of-the-server]__e247a485._.js +11 -0
  307. package/web/.next/standalone/src/presentation/web/.next/server/chunks/f3a1f__next-internal_server_app_api_tools_[id]_install_stream_route_actions_1fe5bd5d.js +3 -0
  308. 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
  309. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_2b7834f6.js +1 -1
  310. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_6923c575.js +1 -1
  311. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__17a611f0._.js +4 -0
  312. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__249c74f6._.js +1 -1
  313. package/web/.next/{server/chunks/ssr/[root-of-the-server]__07385073._.js → standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__45dbf93d._.js} +3 -3
  314. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6b17a22d._.js +1 -1
  315. package/web/.next/{server/chunks/ssr/[root-of-the-server]__8fcb9132._.js → standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6cbc1149._.js} +3 -3
  316. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__804c006d._.js +1 -1
  317. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +3 -0
  318. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__aef6b3cd._.js +3 -0
  319. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c04c8ff2._.js +3 -0
  320. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c134fc13._.js +3 -0
  321. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__c18f84a4._.js +3 -0
  322. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_07c2a32a._.js +1 -1
  323. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_0e9d6bf7._.js +3 -0
  324. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_3197d5cb._.js +3 -0
  325. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_4e5db14b._.js +7 -0
  326. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_61351ed3._.js +3 -0
  327. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_797dbf60._.js +3 -0
  328. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_8400c8bb._.js +3 -0
  329. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_a29296f0._.js +3 -0
  330. package/web/.next/{server/chunks/ssr/_e50484ec._.js → standalone/src/presentation/web/.next/server/chunks/ssr/_a2a86eed._.js} +2 -2
  331. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_dd1c549f._.js +3 -0
  332. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_1a32dbcb._.js +2 -2
  333. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_398553b0._.js +1 -1
  334. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_5c87e8e4._.js +1 -1
  335. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_f4952172.js +1 -1
  336. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_c1bc6240._.js +2 -2
  337. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  338. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  339. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js +3 -0
  340. package/web/.next/standalone/src/presentation/web/.next/server/middleware-build-manifest.js +5 -5
  341. package/web/.next/standalone/src/presentation/web/.next/server/pages/500.html +2 -2
  342. package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.js +1 -1
  343. package/web/.next/standalone/src/presentation/web/.next/server/server-reference-manifest.json +61 -26
  344. package/web/.next/standalone/src/presentation/web/app/(dashboard)/get-graph-data.ts +2 -6
  345. package/web/.next/standalone/src/presentation/web/app/api/tools/[id]/install/route.ts +14 -6
  346. package/web/.next/standalone/src/presentation/web/app/api/tools/[id]/install/stream/route.ts +42 -0
  347. package/web/.next/standalone/src/presentation/web/app/build-graph-nodes.ts +14 -1
  348. package/web/.next/standalone/src/presentation/web/components/common/base-drawer/base-drawer.tsx +10 -8
  349. package/web/.next/standalone/src/presentation/web/components/common/control-center-drawer/create-drawer-client.tsx +13 -3
  350. package/web/.next/standalone/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.tsx +6 -2
  351. package/web/.next/standalone/src/presentation/web/components/common/drawer-action-bar/drawer-action-bar.tsx +2 -0
  352. package/web/.next/standalone/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.tsx +8 -5
  353. package/web/.next/standalone/src/presentation/web/components/common/feature-node/feature-node.tsx +30 -24
  354. package/web/.next/standalone/src/presentation/web/components/common/repository-node/repository-node.tsx +33 -25
  355. package/web/.next/standalone/src/presentation/web/components/features/control-center/control-center-inner.tsx +25 -3
  356. package/web/.next/standalone/src/presentation/web/components/features/control-center/use-control-center-state.ts +184 -230
  357. package/web/.next/standalone/src/presentation/web/components/features/index.ts +1 -1
  358. package/web/.next/standalone/src/presentation/web/components/features/tools/index.ts +1 -1
  359. package/web/.next/standalone/src/presentation/web/components/features/tools/tool-card.tsx +52 -56
  360. package/web/.next/standalone/src/presentation/web/components/features/tools/tool-detail-drawer.stories.tsx +129 -0
  361. package/web/.next/standalone/src/presentation/web/components/features/tools/tool-detail-drawer.tsx +277 -0
  362. package/web/.next/standalone/src/presentation/web/components/ui/alert-dialog.tsx +7 -0
  363. package/web/.next/standalone/src/presentation/web/components/ui/dialog.tsx +7 -1
  364. package/web/.next/standalone/src/presentation/web/hooks/use-tool-install-stream.ts +58 -0
  365. package/web/.next/standalone/src/presentation/web/lib/layout-with-dagre.ts +93 -4
  366. package/web/.next/standalone/src/presentation/web/server.js +1 -1
  367. package/web/.next/static/chunks/0c54314c8c9c9739.js +7 -0
  368. package/web/.next/static/chunks/3969f00d871743f5.js +1 -0
  369. package/web/.next/static/chunks/5d0a6417c4e4e545.js +1 -0
  370. package/web/.next/static/chunks/603dfc7302d69eea.js +1 -0
  371. package/web/.next/static/chunks/6059a88955f582cc.js +1 -0
  372. package/web/.next/static/chunks/6a97d80f8c80abea.js +5 -0
  373. package/web/.next/static/chunks/84a181ff3270fd9f.js +1 -0
  374. package/web/.next/static/chunks/b1ac668fe8c3cfe7.css +2 -0
  375. package/web/.next/static/chunks/bc08901495944d5d.js +1 -0
  376. package/web/.next/static/chunks/bfa8014b2e37a6e3.js +1 -0
  377. package/web/.next/static/chunks/{d4ecce2ac7795bd9.js → c81a2c46730b4afb.js} +1 -1
  378. package/web/.next/static/chunks/{8b36e07129a1471f.js → ccdb4b72cf686304.js} +1 -1
  379. package/web/.next/static/chunks/edbd674102e897b4.js +1 -0
  380. package/web/.next/static/chunks/{412a3ac70c529c5b.js → f089dd8f35a6d79c.js} +1 -1
  381. package/web/.next/static/chunks/f5a543a8ccb7e8b9.js +1 -0
  382. package/web/.next/static/chunks/{fc07834e422b1caa.js → fe2a7112664de6d7.js} +1 -1
  383. package/web/.next/static/chunks/{turbopack-3a8fe0e18e69b0ab.js → turbopack-05820f781f3ffc22.js} +1 -1
  384. package/web/.next/trace +1 -1
  385. package/web/.next/trace-build +1 -1
  386. package/web/.next/types/link.d.ts +1 -0
  387. package/web/.next/types/routes.d.ts +2 -1
  388. package/web/.next/types/validator.ts +9 -0
  389. package/dist/src/presentation/web/components/features/tools/install-instructions.d.ts +0 -9
  390. package/dist/src/presentation/web/components/features/tools/install-instructions.d.ts.map +0 -1
  391. package/dist/src/presentation/web/components/features/tools/install-instructions.js +0 -19
  392. package/dist/src/presentation/web/components/features/tools/install-instructions.stories.d.ts +0 -12
  393. package/dist/src/presentation/web/components/features/tools/install-instructions.stories.d.ts.map +0 -1
  394. package/dist/src/presentation/web/components/features/tools/install-instructions.stories.js +0 -77
  395. package/web/.next/server/chunks/[root-of-the-server]__b1f03347._.js +0 -3
  396. package/web/.next/server/chunks/[root-of-the-server]__b1f03347._.js.map +0 -1
  397. package/web/.next/server/chunks/ssr/[root-of-the-server]__08ba9bd3._.js +0 -4
  398. package/web/.next/server/chunks/ssr/[root-of-the-server]__08ba9bd3._.js.map +0 -1
  399. package/web/.next/server/chunks/ssr/[root-of-the-server]__6bb00d90._.js +0 -3
  400. package/web/.next/server/chunks/ssr/[root-of-the-server]__6bb00d90._.js.map +0 -1
  401. package/web/.next/server/chunks/ssr/[root-of-the-server]__6db85a66._.js +0 -4
  402. package/web/.next/server/chunks/ssr/[root-of-the-server]__6db85a66._.js.map +0 -1
  403. package/web/.next/server/chunks/ssr/[root-of-the-server]__8c1a3d66._.js +0 -3
  404. package/web/.next/server/chunks/ssr/[root-of-the-server]__8fcb9132._.js.map +0 -1
  405. package/web/.next/server/chunks/ssr/[root-of-the-server]__9d14479b._.js +0 -3
  406. package/web/.next/server/chunks/ssr/[root-of-the-server]__9d14479b._.js.map +0 -1
  407. package/web/.next/server/chunks/ssr/[root-of-the-server]__d4e51258._.js +0 -3
  408. package/web/.next/server/chunks/ssr/[root-of-the-server]__d4e51258._.js.map +0 -1
  409. package/web/.next/server/chunks/ssr/[root-of-the-server]__fe2a7deb._.js +0 -3
  410. package/web/.next/server/chunks/ssr/[root-of-the-server]__fe2a7deb._.js.map +0 -1
  411. package/web/.next/server/chunks/ssr/_00e6c698._.js +0 -3
  412. package/web/.next/server/chunks/ssr/_00e6c698._.js.map +0 -1
  413. package/web/.next/server/chunks/ssr/_13566ff3._.js +0 -3
  414. package/web/.next/server/chunks/ssr/_13566ff3._.js.map +0 -1
  415. package/web/.next/server/chunks/ssr/_26129e04._.js +0 -3
  416. package/web/.next/server/chunks/ssr/_26129e04._.js.map +0 -1
  417. package/web/.next/server/chunks/ssr/_34a58db8._.js +0 -3
  418. package/web/.next/server/chunks/ssr/_34a58db8._.js.map +0 -1
  419. package/web/.next/server/chunks/ssr/_37259405._.js +0 -3
  420. package/web/.next/server/chunks/ssr/_37259405._.js.map +0 -1
  421. package/web/.next/server/chunks/ssr/_85d0351b._.js +0 -3
  422. package/web/.next/server/chunks/ssr/_85d0351b._.js.map +0 -1
  423. package/web/.next/server/chunks/ssr/_cb5b3951._.js +0 -3
  424. package/web/.next/server/chunks/ssr/_cb5b3951._.js.map +0 -1
  425. package/web/.next/server/chunks/ssr/_fc3a6895._.js +0 -3
  426. package/web/.next/server/chunks/ssr/_fc3a6895._.js.map +0 -1
  427. package/web/.next/server/chunks/ssr/node_modules__pnpm_3288606c._.js +0 -7
  428. package/web/.next/server/chunks/ssr/node_modules__pnpm_3288606c._.js.map +0 -1
  429. package/web/.next/standalone/src/presentation/web/.next/server/chunks/[root-of-the-server]__b1f03347._.js +0 -3
  430. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__08ba9bd3._.js +0 -4
  431. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6bb00d90._.js +0 -3
  432. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__6db85a66._.js +0 -4
  433. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__8c1a3d66._.js +0 -3
  434. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__9d14479b._.js +0 -3
  435. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__d4e51258._.js +0 -3
  436. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/[root-of-the-server]__fe2a7deb._.js +0 -3
  437. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_00e6c698._.js +0 -3
  438. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_13566ff3._.js +0 -3
  439. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_26129e04._.js +0 -3
  440. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_34a58db8._.js +0 -3
  441. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_37259405._.js +0 -3
  442. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_85d0351b._.js +0 -3
  443. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_cb5b3951._.js +0 -3
  444. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/_fc3a6895._.js +0 -3
  445. package/web/.next/standalone/src/presentation/web/.next/server/chunks/ssr/node_modules__pnpm_3288606c._.js +0 -7
  446. package/web/.next/standalone/src/presentation/web/components/features/tools/install-instructions.stories.tsx +0 -89
  447. package/web/.next/standalone/src/presentation/web/components/features/tools/install-instructions.tsx +0 -109
  448. package/web/.next/static/chunks/06b6b02bab76aee7.js +0 -1
  449. package/web/.next/static/chunks/06dfd668334ffb4e.js +0 -7
  450. package/web/.next/static/chunks/07fcc6d17357e905.js +0 -1
  451. package/web/.next/static/chunks/224ed5f5dbd33154.css +0 -2
  452. package/web/.next/static/chunks/32957ff277daec59.js +0 -1
  453. package/web/.next/static/chunks/3e1227e02ef8bcc6.js +0 -5
  454. package/web/.next/static/chunks/550bf3cb8220cbf0.js +0 -1
  455. package/web/.next/static/chunks/5f5c607ffae8b918.js +0 -1
  456. package/web/.next/static/chunks/64d73952a0291431.js +0 -1
  457. package/web/.next/static/chunks/c7e793951b20a67f.js +0 -1
  458. package/web/.next/static/chunks/e44849eb58a3335f.js +0 -1
  459. package/web/.next/static/chunks/ecb2130572a7fbe7.js +0 -1
  460. /package/web/.next/static/{7K6dTYQIJ7__PLUYLLfZV → 5-_wERRI1P-m4Tl0xR0UI}/_buildManifest.js +0 -0
  461. /package/web/.next/static/{7K6dTYQIJ7__PLUYLLfZV → 5-_wERRI1P-m4Tl0xR0UI}/_clientMiddlewareManifest.json +0 -0
  462. /package/web/.next/static/{7K6dTYQIJ7__PLUYLLfZV → 5-_wERRI1P-m4Tl0xR0UI}/_ssgManifest.js +0 -0
@@ -1 +1 @@
1
- self.__RSC_SERVER_MANIFEST="{\n \"node\": {\n \"00365f5b179e13e6bb4616593d6f3b4d15a4a82e4e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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\": 19036,\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 \"40512991bebb6aff8054d66d8a66c75ff3cd3df37e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\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\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 },\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 },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\",\n \"exportedName\": \"getDeploymentLogs\"\n },\n \"4002f24123c812bbde52103ab4c9896641ec712093\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 },\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 },\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\",\n \"exportedName\": \"deployFeature\"\n },\n \"4084d20a10c50999fda1abc79d5071db97eb469aae\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 },\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 },\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\",\n \"exportedName\": \"deployRepository\"\n },\n \"4006e38da5561739000f5578b783b3d7df52b311e3\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 },\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 },\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\",\n \"exportedName\": \"stopDeployment\"\n },\n \"40ace7a87569f698a76c3cf3adfa70c658402edda6\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\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\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 },\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 },\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\",\n \"exportedName\": \"getDeploymentStatus\"\n },\n \"40955fa9ff30f22d451898f2a071f2c8174c6d8ff0\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"40b2414a15048c04b7de3c696face8fb064ea53092\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"401a0c8bb23c0d542d16aafa66b2a9d737467e8440\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"40f79c7fc9a54d8cca27c016252b0c7e1192e74280\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"403e365832bb3a5401687ab46fc3454edadf003676\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"40aefca144e3fcc160a4af92e4fa3f0ef3578641e4\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"00e0d3403a2b28b97a7890748e9abad2e2ee74d68b\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 15434,\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 \"4041ed47b64ab039614115ccb211998816d040582d\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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 \"604885d48eab1d8641cb5af07bcca2ae9255557f5e\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 53432,\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\": 24734,\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 \"606392fc4a5a2bcd34ea36d87987364377da973da5\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 53432,\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\": 24734,\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 \"40e20322b0c5bcc20820ae4d5913440a26e5b27557\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 53432,\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\": 24734,\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 \"40834419e6e7f3b6c77e8b0cebe456782ff41ba622\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 53432,\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\": 24734,\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 \"40d3c758b61ceb7305366077e78478a3e237de5635\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 53432,\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\": 24734,\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\": \"SsFvtVRb5Wur3hcwuO+mCwVwprObFIyWwIaZI8BZdNA=\"\n}"
1
+ self.__RSC_SERVER_MANIFEST="{\n \"node\": {\n \"00ae70bfe7e00149d21886db1618cef48af9b9fb9a\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"pickFolder\",\n \"filename\": \"src/presentation/web/app/actions/pick-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"4032061694d58ab5e622127982d2fc49b496c5d678\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\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\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"getDeploymentLogs\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-logs.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"40417a31b2fd522b4c59efbf0f7ded6a310fa828ba\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"deployFeature\",\n \"filename\": \"src/presentation/web/app/actions/deploy-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"4082829ca4c31244967eb5ca0ec9ecbfecdf37213f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"deployRepository\",\n \"filename\": \"src/presentation/web/app/actions/deploy-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"400cfbcf5f3aa3beb2c14bbbc011e2d34741e97503\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"stopDeployment\",\n \"filename\": \"src/presentation/web/app/actions/stop-deployment.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"4081f656db826ef9b77e6b12344e7c87a3bf2695d9\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\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\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"getDeploymentStatus\",\n \"filename\": \"src/presentation/web/app/actions/get-deployment-status.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"40bf722e02958bdc4270dd7f8070990b06a519cc75\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"openIde\",\n \"filename\": \"src/presentation/web/app/actions/open-ide.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"404ba987e40074b30bb1704d8abfbdd9bea9bbcf6c\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"openShell\",\n \"filename\": \"src/presentation/web/app/actions/open-shell.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"407e5155624d9d2f404ecef65cd988d87a7fff433d\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"openFolder\",\n \"filename\": \"src/presentation/web/app/actions/open-folder.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"40276c5f5c7b277941b21055a5874185bd6c23d62a\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"deleteFeature\",\n \"filename\": \"src/presentation/web/app/actions/delete-feature.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"409939b6e475e4f33d35416f7610d6ac0f54871616\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"addRepository\",\n \"filename\": \"src/presentation/web/app/actions/add-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"40b81571464a7b6c2c3473872b9314e7a16b5a31a2\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 53432,\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\": 12834,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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\": 24734,\n \"async\": false,\n \"exportedName\": \"deleteRepository\",\n \"filename\": \"src/presentation/web/app/actions/delete-repository.ts\"\n },\n \"app/(dashboard)/page\": {\n \"moduleId\": 21365,\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\": 43068,\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 \"00bc4e1df12ce2e7c82c43396433ce185b2200a666\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\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\": 15434,\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 \"40a97a4fd715b710440f40286ceed5c335ed531ef5\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/create/page\": {\n \"moduleId\": 42016,\n \"async\": false,\n \"exportedName\": \"createFeature\",\n \"filename\": \"src/presentation/web/app/actions/create-feature.ts\"\n },\n \"app/(dashboard)/create/page\": {\n \"moduleId\": 15434,\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 \"601df9c3b5ffc6f4fefaebeca2386b0a76602f0b4f\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 53432,\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\": 24734,\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 \"6041471a233f5cfca41bed8f2f9d3c9c1c3eddae79\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 53432,\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\": 24734,\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 \"40f37a7b3218422435f0e938de55e9a2bd600a5fa7\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 53432,\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\": 24734,\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 \"4063b8a1f55b4395906954cc8b1cba0186616c5224\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 53432,\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\": 24734,\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 \"4048e44b59c2dc682e885573856fe1b97944f27345\": {\n \"workers\": {\n \"app/(dashboard)/@drawer/feature/[featureId]/page\": {\n \"moduleId\": 53432,\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\": 24734,\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\": \"9QUU6QbgGkYx3jvfxteFLAMFN8vhSUoW6dqwTtMYMw4=\"\n}"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "00365f5b179e13e6bb4616593d6f3b4d15a4a82e4e": {
3
+ "00ae70bfe7e00149d21886db1618cef48af9b9fb9a": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/create/page": {
6
6
  "moduleId": 42016,
@@ -57,7 +57,7 @@
57
57
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
58
58
  },
59
59
  "app/tools/page": {
60
- "moduleId": 19036,
60
+ "moduleId": 90322,
61
61
  "async": false,
62
62
  "exportedName": "pickFolder",
63
63
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -85,7 +85,7 @@
85
85
  "filename": "src/presentation/web/app/actions/pick-folder.ts",
86
86
  "exportedName": "pickFolder"
87
87
  },
88
- "40512991bebb6aff8054d66d8a66c75ff3cd3df37e": {
88
+ "4032061694d58ab5e622127982d2fc49b496c5d678": {
89
89
  "workers": {
90
90
  "app/(dashboard)/@drawer/create/page": {
91
91
  "moduleId": 42016,
@@ -134,6 +134,12 @@
134
134
  "async": false,
135
135
  "exportedName": "getDeploymentLogs",
136
136
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
137
+ },
138
+ "app/tools/page": {
139
+ "moduleId": 90322,
140
+ "async": false,
141
+ "exportedName": "getDeploymentLogs",
142
+ "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
137
143
  }
138
144
  },
139
145
  "layer": {
@@ -144,12 +150,13 @@
144
150
  "app/(dashboard)/feature/[featureId]/page": "action-browser",
145
151
  "app/(dashboard)/page": "action-browser",
146
152
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
147
- "app/skills/page": "action-browser"
153
+ "app/skills/page": "action-browser",
154
+ "app/tools/page": "action-browser"
148
155
  },
149
156
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts",
150
157
  "exportedName": "getDeploymentLogs"
151
158
  },
152
- "4002f24123c812bbde52103ab4c9896641ec712093": {
159
+ "40417a31b2fd522b4c59efbf0f7ded6a310fa828ba": {
153
160
  "workers": {
154
161
  "app/(dashboard)/@drawer/create/page": {
155
162
  "moduleId": 42016,
@@ -198,6 +205,12 @@
198
205
  "async": false,
199
206
  "exportedName": "deployFeature",
200
207
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
208
+ },
209
+ "app/tools/page": {
210
+ "moduleId": 90322,
211
+ "async": false,
212
+ "exportedName": "deployFeature",
213
+ "filename": "src/presentation/web/app/actions/deploy-feature.ts"
201
214
  }
202
215
  },
203
216
  "layer": {
@@ -208,12 +221,13 @@
208
221
  "app/(dashboard)/feature/[featureId]/page": "action-browser",
209
222
  "app/(dashboard)/page": "action-browser",
210
223
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
211
- "app/skills/page": "action-browser"
224
+ "app/skills/page": "action-browser",
225
+ "app/tools/page": "action-browser"
212
226
  },
213
227
  "filename": "src/presentation/web/app/actions/deploy-feature.ts",
214
228
  "exportedName": "deployFeature"
215
229
  },
216
- "4084d20a10c50999fda1abc79d5071db97eb469aae": {
230
+ "4082829ca4c31244967eb5ca0ec9ecbfecdf37213f": {
217
231
  "workers": {
218
232
  "app/(dashboard)/@drawer/create/page": {
219
233
  "moduleId": 42016,
@@ -262,6 +276,12 @@
262
276
  "async": false,
263
277
  "exportedName": "deployRepository",
264
278
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
279
+ },
280
+ "app/tools/page": {
281
+ "moduleId": 90322,
282
+ "async": false,
283
+ "exportedName": "deployRepository",
284
+ "filename": "src/presentation/web/app/actions/deploy-repository.ts"
265
285
  }
266
286
  },
267
287
  "layer": {
@@ -272,12 +292,13 @@
272
292
  "app/(dashboard)/feature/[featureId]/page": "action-browser",
273
293
  "app/(dashboard)/page": "action-browser",
274
294
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
275
- "app/skills/page": "action-browser"
295
+ "app/skills/page": "action-browser",
296
+ "app/tools/page": "action-browser"
276
297
  },
277
298
  "filename": "src/presentation/web/app/actions/deploy-repository.ts",
278
299
  "exportedName": "deployRepository"
279
300
  },
280
- "4006e38da5561739000f5578b783b3d7df52b311e3": {
301
+ "400cfbcf5f3aa3beb2c14bbbc011e2d34741e97503": {
281
302
  "workers": {
282
303
  "app/(dashboard)/@drawer/create/page": {
283
304
  "moduleId": 42016,
@@ -326,6 +347,12 @@
326
347
  "async": false,
327
348
  "exportedName": "stopDeployment",
328
349
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
350
+ },
351
+ "app/tools/page": {
352
+ "moduleId": 90322,
353
+ "async": false,
354
+ "exportedName": "stopDeployment",
355
+ "filename": "src/presentation/web/app/actions/stop-deployment.ts"
329
356
  }
330
357
  },
331
358
  "layer": {
@@ -336,12 +363,13 @@
336
363
  "app/(dashboard)/feature/[featureId]/page": "action-browser",
337
364
  "app/(dashboard)/page": "action-browser",
338
365
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
339
- "app/skills/page": "action-browser"
366
+ "app/skills/page": "action-browser",
367
+ "app/tools/page": "action-browser"
340
368
  },
341
369
  "filename": "src/presentation/web/app/actions/stop-deployment.ts",
342
370
  "exportedName": "stopDeployment"
343
371
  },
344
- "40ace7a87569f698a76c3cf3adfa70c658402edda6": {
372
+ "4081f656db826ef9b77e6b12344e7c87a3bf2695d9": {
345
373
  "workers": {
346
374
  "app/(dashboard)/@drawer/create/page": {
347
375
  "moduleId": 42016,
@@ -390,6 +418,12 @@
390
418
  "async": false,
391
419
  "exportedName": "getDeploymentStatus",
392
420
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
421
+ },
422
+ "app/tools/page": {
423
+ "moduleId": 90322,
424
+ "async": false,
425
+ "exportedName": "getDeploymentStatus",
426
+ "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
393
427
  }
394
428
  },
395
429
  "layer": {
@@ -400,12 +434,13 @@
400
434
  "app/(dashboard)/feature/[featureId]/page": "action-browser",
401
435
  "app/(dashboard)/page": "action-browser",
402
436
  "app/(dashboard)/repository/[repositoryId]/page": "action-browser",
403
- "app/skills/page": "action-browser"
437
+ "app/skills/page": "action-browser",
438
+ "app/tools/page": "action-browser"
404
439
  },
405
440
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts",
406
441
  "exportedName": "getDeploymentStatus"
407
442
  },
408
- "40955fa9ff30f22d451898f2a071f2c8174c6d8ff0": {
443
+ "40bf722e02958bdc4270dd7f8070990b06a519cc75": {
409
444
  "workers": {
410
445
  "app/(dashboard)/@drawer/create/page": {
411
446
  "moduleId": 42016,
@@ -462,7 +497,7 @@
462
497
  "filename": "src/presentation/web/app/actions/open-ide.ts",
463
498
  "exportedName": "openIde"
464
499
  },
465
- "40b2414a15048c04b7de3c696face8fb064ea53092": {
500
+ "404ba987e40074b30bb1704d8abfbdd9bea9bbcf6c": {
466
501
  "workers": {
467
502
  "app/(dashboard)/@drawer/create/page": {
468
503
  "moduleId": 42016,
@@ -519,7 +554,7 @@
519
554
  "filename": "src/presentation/web/app/actions/open-shell.ts",
520
555
  "exportedName": "openShell"
521
556
  },
522
- "401a0c8bb23c0d542d16aafa66b2a9d737467e8440": {
557
+ "407e5155624d9d2f404ecef65cd988d87a7fff433d": {
523
558
  "workers": {
524
559
  "app/(dashboard)/@drawer/create/page": {
525
560
  "moduleId": 42016,
@@ -576,7 +611,7 @@
576
611
  "filename": "src/presentation/web/app/actions/open-folder.ts",
577
612
  "exportedName": "openFolder"
578
613
  },
579
- "40f79c7fc9a54d8cca27c016252b0c7e1192e74280": {
614
+ "40276c5f5c7b277941b21055a5874185bd6c23d62a": {
580
615
  "workers": {
581
616
  "app/(dashboard)/@drawer/create/page": {
582
617
  "moduleId": 42016,
@@ -633,7 +668,7 @@
633
668
  "filename": "src/presentation/web/app/actions/delete-feature.ts",
634
669
  "exportedName": "deleteFeature"
635
670
  },
636
- "403e365832bb3a5401687ab46fc3454edadf003676": {
671
+ "409939b6e475e4f33d35416f7610d6ac0f54871616": {
637
672
  "workers": {
638
673
  "app/(dashboard)/@drawer/create/page": {
639
674
  "moduleId": 42016,
@@ -690,7 +725,7 @@
690
725
  "filename": "src/presentation/web/app/actions/add-repository.ts",
691
726
  "exportedName": "addRepository"
692
727
  },
693
- "40aefca144e3fcc160a4af92e4fa3f0ef3578641e4": {
728
+ "40b81571464a7b6c2c3473872b9314e7a16b5a31a2": {
694
729
  "workers": {
695
730
  "app/(dashboard)/@drawer/create/page": {
696
731
  "moduleId": 42016,
@@ -747,7 +782,7 @@
747
782
  "filename": "src/presentation/web/app/actions/delete-repository.ts",
748
783
  "exportedName": "deleteRepository"
749
784
  },
750
- "00e0d3403a2b28b97a7890748e9abad2e2ee74d68b": {
785
+ "00bc4e1df12ce2e7c82c43396433ce185b2200a666": {
751
786
  "workers": {
752
787
  "app/(dashboard)/@drawer/create/page": {
753
788
  "moduleId": 42016,
@@ -769,7 +804,7 @@
769
804
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts",
770
805
  "exportedName": "getWorkflowDefaults"
771
806
  },
772
- "4041ed47b64ab039614115ccb211998816d040582d": {
807
+ "40a97a4fd715b710440f40286ceed5c335ed531ef5": {
773
808
  "workers": {
774
809
  "app/(dashboard)/@drawer/create/page": {
775
810
  "moduleId": 42016,
@@ -791,7 +826,7 @@
791
826
  "filename": "src/presentation/web/app/actions/create-feature.ts",
792
827
  "exportedName": "createFeature"
793
828
  },
794
- "604885d48eab1d8641cb5af07bcca2ae9255557f5e": {
829
+ "601df9c3b5ffc6f4fefaebeca2386b0a76602f0b4f": {
795
830
  "workers": {
796
831
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
797
832
  "moduleId": 53432,
@@ -813,7 +848,7 @@
813
848
  "filename": "src/presentation/web/app/actions/approve-feature.ts",
814
849
  "exportedName": "approveFeature"
815
850
  },
816
- "606392fc4a5a2bcd34ea36d87987364377da973da5": {
851
+ "6041471a233f5cfca41bed8f2f9d3c9c1c3eddae79": {
817
852
  "workers": {
818
853
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
819
854
  "moduleId": 53432,
@@ -835,7 +870,7 @@
835
870
  "filename": "src/presentation/web/app/actions/reject-feature.ts",
836
871
  "exportedName": "rejectFeature"
837
872
  },
838
- "40e20322b0c5bcc20820ae4d5913440a26e5b27557": {
873
+ "40f37a7b3218422435f0e938de55e9a2bd600a5fa7": {
839
874
  "workers": {
840
875
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
841
876
  "moduleId": 53432,
@@ -857,7 +892,7 @@
857
892
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts",
858
893
  "exportedName": "getFeatureArtifact"
859
894
  },
860
- "40834419e6e7f3b6c77e8b0cebe456782ff41ba622": {
895
+ "4063b8a1f55b4395906954cc8b1cba0186616c5224": {
861
896
  "workers": {
862
897
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
863
898
  "moduleId": 53432,
@@ -879,7 +914,7 @@
879
914
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts",
880
915
  "exportedName": "getResearchArtifact"
881
916
  },
882
- "40d3c758b61ceb7305366077e78478a3e237de5635": {
917
+ "4048e44b59c2dc682e885573856fe1b97944f27345": {
883
918
  "workers": {
884
919
  "app/(dashboard)/@drawer/feature/[featureId]/page": {
885
920
  "moduleId": 53432,
@@ -903,5 +938,5 @@
903
938
  }
904
939
  },
905
940
  "edge": {},
906
- "encryptionKey": "SsFvtVRb5Wur3hcwuO+mCwVwprObFIyWwIaZI8BZdNA="
941
+ "encryptionKey": "9QUU6QbgGkYx3jvfxteFLAMFN8vhSUoW6dqwTtMYMw4="
907
942
  }
@@ -2,7 +2,7 @@ import { resolve } from '@/lib/server-container';
2
2
  import type { ListFeaturesUseCase } from '@shepai/core/application/use-cases/features/list-features.use-case';
3
3
  import type { ListRepositoriesUseCase } from '@shepai/core/application/use-cases/repositories/list-repositories.use-case';
4
4
  import type { IAgentRunRepository } from '@shepai/core/application/ports/output/agents/agent-run-repository.interface';
5
- import { layoutWithDagre } from '@/lib/layout-with-dagre';
5
+ import { layoutWithDagre, CANVAS_LAYOUT_DEFAULTS } from '@/lib/layout-with-dagre';
6
6
  import { buildGraphNodes } from '@/app/build-graph-nodes';
7
7
  import type { CanvasNodeType } from '@/components/features/features-canvas';
8
8
  import type { Edge } from '@xyflow/react';
@@ -23,9 +23,5 @@ export async function getGraphData(): Promise<{ nodes: CanvasNodeType[]; edges:
23
23
 
24
24
  const { nodes, edges } = buildGraphNodes(repositories, featuresWithRuns);
25
25
 
26
- return layoutWithDagre(nodes, edges, {
27
- direction: 'LR',
28
- ranksep: 200,
29
- nodesep: 15,
30
- });
26
+ return layoutWithDagre(nodes, edges, CANVAS_LAYOUT_DEFAULTS);
31
27
  }
@@ -1,7 +1,14 @@
1
1
  import { NextResponse } from 'next/server';
2
2
  import { resolve } from '@/lib/server-container';
3
3
  import type { InstallToolUseCase } from '@shepai/core/application/use-cases/tools/install-tool.use-case';
4
- import { TOOL_METADATA } from '@shepai/core/infrastructure/services/tool-installer/tool-metadata';
4
+ import type { ToolInstallationStatus } from '@shepai/core/domain/generated/output';
5
+
6
+ // NOTE: Do NOT import TOOL_METADATA directly in API routes.
7
+ // The module uses import.meta.url + fs.readdirSync to load JSON files,
8
+ // which breaks when Turbopack bundles it (import.meta.url resolves to
9
+ // the bundled chunk location where the tools/ directory doesn't exist).
10
+ // Tool validation is delegated to the use case via the DI container,
11
+ // where the module loads correctly in the Node.js CLI bootstrap context.
5
12
 
6
13
  export async function POST(
7
14
  _request: Request,
@@ -9,13 +16,14 @@ export async function POST(
9
16
  ): Promise<NextResponse> {
10
17
  const { id } = await params;
11
18
 
12
- if (!TOOL_METADATA[id]) {
13
- return NextResponse.json({ error: 'Tool not found' }, { status: 404 });
14
- }
15
-
16
19
  try {
17
20
  const useCase = resolve<InstallToolUseCase>('InstallToolUseCase');
18
- const status = await useCase.execute(id);
21
+ const status: ToolInstallationStatus = await useCase.execute(id);
22
+
23
+ if (status.status === 'error') {
24
+ return NextResponse.json({ error: status.errorMessage }, { status: 500 });
25
+ }
26
+
19
27
  return NextResponse.json({ status });
20
28
  } catch (error: unknown) {
21
29
  const message = error instanceof Error ? error.message : 'Failed to install tool';