@shepai/cli 1.148.0 → 1.149.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (193) hide show
  1. package/dist/src/presentation/web/app/api/agent-events/route.js +1 -1
  2. package/dist/src/presentation/web/app/api/sessions/route.d.ts.map +1 -1
  3. package/dist/src/presentation/web/app/api/sessions/route.js +2 -268
  4. package/dist/src/presentation/web/app/api/sessions-batch/route.d.ts +17 -0
  5. package/dist/src/presentation/web/app/api/sessions-batch/route.d.ts.map +1 -0
  6. package/dist/src/presentation/web/app/api/sessions-batch/route.js +61 -0
  7. package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.d.ts +1 -1
  8. package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.d.ts.map +1 -1
  9. package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.js +15 -73
  10. package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.stories.d.ts.map +1 -1
  11. package/dist/src/presentation/web/components/common/feature-node/feature-sessions-dropdown.stories.js +18 -17
  12. package/dist/src/presentation/web/components/features/control-center/control-center.d.ts.map +1 -1
  13. package/dist/src/presentation/web/components/features/control-center/control-center.js +2 -1
  14. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  15. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +4 -1
  16. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  17. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +32 -33
  18. package/dist/src/presentation/web/hooks/sessions-provider.d.ts +12 -0
  19. package/dist/src/presentation/web/hooks/sessions-provider.d.ts.map +1 -0
  20. package/dist/src/presentation/web/hooks/sessions-provider.js +57 -0
  21. package/dist/src/presentation/web/hooks/use-deploy-action.d.ts.map +1 -1
  22. package/dist/src/presentation/web/hooks/use-deploy-action.js +8 -54
  23. package/dist/src/presentation/web/lib/session-scanner.d.ts +27 -0
  24. package/dist/src/presentation/web/lib/session-scanner.d.ts.map +1 -0
  25. package/dist/src/presentation/web/lib/session-scanner.js +255 -0
  26. package/dist/tsconfig.build.tsbuildinfo +1 -1
  27. package/package.json +1 -1
  28. package/web/.next/BUILD_ID +1 -1
  29. package/web/.next/app-path-routes-manifest.json +1 -0
  30. package/web/.next/build-manifest.json +2 -2
  31. package/web/.next/fallback-build-manifest.json +2 -2
  32. package/web/.next/prerender-manifest.json +3 -3
  33. package/web/.next/required-server-files.js +2 -2
  34. package/web/.next/required-server-files.json +2 -2
  35. package/web/.next/routes-manifest.json +6 -0
  36. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +28 -28
  37. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  38. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  39. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +28 -28
  40. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  41. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  42. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
  43. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  44. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  45. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +36 -36
  46. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  47. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  48. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +26 -26
  49. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  50. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  51. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +28 -28
  52. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  53. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  54. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +36 -36
  55. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  56. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  57. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +36 -36
  58. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  59. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  60. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +26 -26
  61. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  62. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  63. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +26 -26
  64. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  65. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  66. package/web/.next/server/app/_global-error.html +2 -2
  67. package/web/.next/server/app/_global-error.rsc +1 -1
  68. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  69. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  70. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  71. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  72. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  73. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +3 -3
  74. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  75. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  76. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  77. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  78. package/web/.next/server/app/api/sessions/route.js +2 -3
  79. package/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
  80. package/web/.next/server/app/api/sessions-batch/route/app-paths-manifest.json +3 -0
  81. package/web/.next/server/app/api/sessions-batch/route/build-manifest.json +11 -0
  82. package/web/.next/server/app/api/sessions-batch/route/server-reference-manifest.json +4 -0
  83. package/web/.next/server/app/api/sessions-batch/route.js +7 -0
  84. package/web/.next/server/app/api/sessions-batch/route.js.map +5 -0
  85. package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -0
  86. package/web/.next/server/app/api/sessions-batch/route_client-reference-manifest.js +2 -0
  87. package/web/.next/server/app/settings/page/server-reference-manifest.json +8 -8
  88. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  89. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  90. package/web/.next/server/app/skills/page/server-reference-manifest.json +8 -8
  91. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  92. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  93. package/web/.next/server/app/tools/page/server-reference-manifest.json +8 -8
  94. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  95. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  96. package/web/.next/server/app/version/page/server-reference-manifest.json +3 -3
  97. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  98. package/web/.next/server/app-paths-manifest.json +1 -0
  99. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +1 -1
  100. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
  101. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_sessions-batch_route_actions_4859f283.js +3 -0
  102. package/web/.next/server/chunks/[root-of-the-server]__0d33c29e._.js +3 -0
  103. package/web/.next/server/chunks/[root-of-the-server]__0d33c29e._.js.map +1 -0
  104. package/web/.next/server/chunks/[root-of-the-server]__2f61738a._.js +3 -0
  105. package/web/.next/server/chunks/[root-of-the-server]__2f61738a._.js.map +1 -0
  106. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  107. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  108. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  109. package/web/.next/server/chunks/ssr/[root-of-the-server]__2138fa7e._.js +2 -2
  110. package/web/.next/server/chunks/ssr/[root-of-the-server]__29580090._.js +1 -1
  111. package/web/.next/server/chunks/ssr/[root-of-the-server]__29580090._.js.map +1 -1
  112. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  113. package/web/.next/server/chunks/ssr/[root-of-the-server]__3ef34e4c._.js +1 -1
  114. package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js +1 -1
  115. package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js.map +1 -1
  116. package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js +1 -1
  117. package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js.map +1 -1
  118. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +2 -2
  119. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
  120. package/web/.next/server/chunks/ssr/[root-of-the-server]__c094882b._.js +1 -1
  121. package/web/.next/server/chunks/ssr/[root-of-the-server]__c094882b._.js.map +1 -1
  122. package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js +1 -1
  123. package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js.map +1 -1
  124. package/web/.next/server/chunks/ssr/[root-of-the-server]__dac5dbf1._.js +1 -1
  125. package/web/.next/server/chunks/ssr/[root-of-the-server]__dac5dbf1._.js.map +1 -1
  126. package/web/.next/server/chunks/ssr/[root-of-the-server]__fae8b355._.js +1 -1
  127. package/web/.next/server/chunks/ssr/[root-of-the-server]__fae8b355._.js.map +1 -1
  128. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  129. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  130. package/web/.next/server/chunks/ssr/_0c5f56e3._.js +2 -2
  131. package/web/.next/server/chunks/ssr/_0c5f56e3._.js.map +1 -1
  132. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  133. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  134. package/web/.next/server/chunks/ssr/_1b719e7f._.js +1 -1
  135. package/web/.next/server/chunks/ssr/_1b719e7f._.js.map +1 -1
  136. package/web/.next/server/chunks/ssr/_37e8548b._.js +1 -1
  137. package/web/.next/server/chunks/ssr/_37e8548b._.js.map +1 -1
  138. package/web/.next/server/chunks/ssr/{_fe63a7f9._.js → _458e9a64._.js} +2 -2
  139. package/web/.next/server/chunks/ssr/{_fe63a7f9._.js.map → _458e9a64._.js.map} +1 -1
  140. package/web/.next/server/chunks/ssr/_5022e2b1._.js +4 -0
  141. package/web/.next/server/chunks/ssr/_5022e2b1._.js.map +1 -0
  142. package/web/.next/server/chunks/ssr/_55d763e2._.js +1 -1
  143. package/web/.next/server/chunks/ssr/_55d763e2._.js.map +1 -1
  144. package/web/.next/server/chunks/ssr/_6256a985._.js +1 -1
  145. package/web/.next/server/chunks/ssr/_6256a985._.js.map +1 -1
  146. package/web/.next/server/chunks/ssr/_64bdfc6f._.js +2 -2
  147. package/web/.next/server/chunks/ssr/_64bdfc6f._.js.map +1 -1
  148. package/web/.next/server/chunks/ssr/_8fcc39d4._.js +1 -1
  149. package/web/.next/server/chunks/ssr/_b71645b4._.js +1 -1
  150. package/web/.next/server/chunks/ssr/_b71645b4._.js.map +1 -1
  151. package/web/.next/server/chunks/ssr/_d8575088._.js +1 -1
  152. package/web/.next/server/chunks/ssr/_d8575088._.js.map +1 -1
  153. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  154. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  155. package/web/.next/server/chunks/ssr/{src_presentation_web_7b2fda40._.js → src_presentation_web_35159458._.js} +2 -2
  156. package/web/.next/server/chunks/ssr/{src_presentation_web_7b2fda40._.js.map → src_presentation_web_35159458._.js.map} +1 -1
  157. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js +1 -1
  158. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js.map +1 -1
  159. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js +1 -1
  160. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js.map +1 -1
  161. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  162. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
  163. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
  164. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  165. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  166. package/web/.next/server/pages/500.html +2 -2
  167. package/web/.next/server/server-reference-manifest.js +1 -1
  168. package/web/.next/server/server-reference-manifest.json +44 -44
  169. package/web/.next/static/chunks/{0137d4850cab3c45.js → 24b1c1e60fd3b7b5.js} +2 -2
  170. package/web/.next/static/chunks/{c731682077fbac4f.js → 3e7a130816229439.js} +1 -1
  171. package/web/.next/static/chunks/{7c5131e33516a325.js → 3f1b33498b472b00.js} +1 -1
  172. package/web/.next/static/chunks/{04869f1d3f5d9071.js → 4ef564fb1174e497.js} +1 -1
  173. package/web/.next/static/chunks/75834e430247b325.js +1 -0
  174. package/web/.next/static/chunks/79dc2e2f1c2ff519.js +1 -0
  175. package/web/.next/static/chunks/{063a24b49d9818a0.js → a086f8dfef2c3325.js} +1 -1
  176. package/web/.next/static/chunks/{48850e202dd814ac.js → a6363f73e05ccf47.js} +1 -1
  177. package/web/.next/static/chunks/{6f76e63ead3fac2e.js → b7126c0b3a97e77e.js} +1 -1
  178. package/web/.next/static/chunks/d3df6e6434e16519.js +1 -0
  179. package/web/.next/static/chunks/eaca60cc3ab0bf9f.js +2 -0
  180. package/web/.next/static/chunks/{9dad6769d10a32df.js → fe5d48f8ca483935.js} +1 -1
  181. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_ff60e4a5.js +0 -3
  182. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_ff60e4a5.js.map +0 -1
  183. package/web/.next/server/chunks/[externals]__448264a3._.js +0 -3
  184. package/web/.next/server/chunks/ssr/_4533d6f8._.js +0 -4
  185. package/web/.next/server/chunks/ssr/_4533d6f8._.js.map +0 -1
  186. package/web/.next/static/chunks/21e82fee1a7e1668.js +0 -1
  187. package/web/.next/static/chunks/682563e4503cbd58.js +0 -1
  188. package/web/.next/static/chunks/683b1d85e789c2eb.js +0 -2
  189. package/web/.next/static/chunks/d62ae5e449d87057.js +0 -1
  190. /package/web/.next/server/chunks/{[externals]__448264a3._.js.map → 744ca_web__next-internal_server_app_api_sessions-batch_route_actions_4859f283.js.map} +0 -0
  191. /package/web/.next/static/{zYKuE1zbe1UWwAJv5EVwg → 1CQHYZVn3VajyhdvnsCaw}/_buildManifest.js +0 -0
  192. /package/web/.next/static/{zYKuE1zbe1UWwAJv5EVwg → 1CQHYZVn3VajyhdvnsCaw}/_clientMiddlewareManifest.json +0 -0
  193. /package/web/.next/static/{zYKuE1zbe1UWwAJv5EVwg → 1CQHYZVn3VajyhdvnsCaw}/_ssgManifest.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "0078a6c4a94b6c11932d9891cb3e033b153e53f741": {
3
+ "00b8e6b8b585532f3769ad522d4f256ab3d001f095": {
4
4
  "workers": {
5
5
  "app/(dashboard)/feature/[featureId]/page": {
6
6
  "moduleId": 17258,
@@ -15,7 +15,7 @@
15
15
  "exportedName": "pickFolder",
16
16
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
17
17
  },
18
- "40c8daccf6fd712e278ed7a2b897db0b52697e11a7": {
18
+ "40ae6a53efdda9fcb3d74ac20c07b0e378a6fcff17": {
19
19
  "workers": {
20
20
  "app/(dashboard)/feature/[featureId]/page": {
21
21
  "moduleId": 17258,
@@ -30,7 +30,7 @@
30
30
  "exportedName": "listGitHubRepositories",
31
31
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
32
32
  },
33
- "408a911977ed31ce34aebc3a067ec3329e22bc458c": {
33
+ "401b3dda79c49eed04643dccee6e97299804c68044": {
34
34
  "workers": {
35
35
  "app/(dashboard)/feature/[featureId]/page": {
36
36
  "moduleId": 17258,
@@ -45,7 +45,7 @@
45
45
  "exportedName": "importGitHubRepository",
46
46
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
47
47
  },
48
- "40603b438aa2d73733da93cc89bef3927e865462b3": {
48
+ "40eca9254e7c5104bbc2093521a63186873149956d": {
49
49
  "workers": {
50
50
  "app/(dashboard)/feature/[featureId]/page": {
51
51
  "moduleId": 17258,
@@ -60,7 +60,7 @@
60
60
  "exportedName": "deployFeature",
61
61
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
62
62
  },
63
- "40237402f3f2a85c176c04f885084c9ff898610bbd": {
63
+ "40d85396ffad17c52c96357bcaa7c2286b04828b1e": {
64
64
  "workers": {
65
65
  "app/(dashboard)/feature/[featureId]/page": {
66
66
  "moduleId": 17258,
@@ -75,7 +75,7 @@
75
75
  "exportedName": "deployRepository",
76
76
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
77
77
  },
78
- "40a678a82c8c190d95d1c90190f5b9ef3e2ceba155": {
78
+ "4056fe1b52f6bec9edd14941e8a8fcaa72919c9fca": {
79
79
  "workers": {
80
80
  "app/(dashboard)/feature/[featureId]/page": {
81
81
  "moduleId": 17258,
@@ -90,7 +90,7 @@
90
90
  "exportedName": "stopDeployment",
91
91
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
92
92
  },
93
- "4084085a8c1d27d8a025fbda2a970ed8d82df53d27": {
93
+ "40ac790c0d2099077f529f8d0988ac83b058e7b4cf": {
94
94
  "workers": {
95
95
  "app/(dashboard)/feature/[featureId]/page": {
96
96
  "moduleId": 17258,
@@ -105,7 +105,7 @@
105
105
  "exportedName": "getDeploymentStatus",
106
106
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
107
107
  },
108
- "40f6557862958dcd251435d81526757429e7abde79": {
108
+ "40e3f9bbeda7d42a0c3c76aba5144311e849b02cab": {
109
109
  "workers": {
110
110
  "app/(dashboard)/feature/[featureId]/page": {
111
111
  "moduleId": 17258,
@@ -120,7 +120,7 @@
120
120
  "exportedName": "openIde",
121
121
  "filename": "src/presentation/web/app/actions/open-ide.ts"
122
122
  },
123
- "40250297bcfddb1e2aaf117b7ec264d3338db5deaf": {
123
+ "40552ba137c04058016166e1d510370819a5110a33": {
124
124
  "workers": {
125
125
  "app/(dashboard)/feature/[featureId]/page": {
126
126
  "moduleId": 17258,
@@ -135,7 +135,7 @@
135
135
  "exportedName": "openShell",
136
136
  "filename": "src/presentation/web/app/actions/open-shell.ts"
137
137
  },
138
- "40333744b7e2130bd1a90d73e2cb662ba0d2c191d7": {
138
+ "40a44f15ea018af4060b0da42ab50d9b36357e4b7e": {
139
139
  "workers": {
140
140
  "app/(dashboard)/feature/[featureId]/page": {
141
141
  "moduleId": 17258,
@@ -150,7 +150,7 @@
150
150
  "exportedName": "openFolder",
151
151
  "filename": "src/presentation/web/app/actions/open-folder.ts"
152
152
  },
153
- "4022746422bfe7d50fed7aade198f285b4b4873e02": {
153
+ "40c77f510e8b9a0dc757983b690974dfa9c0655747": {
154
154
  "workers": {
155
155
  "app/(dashboard)/feature/[featureId]/page": {
156
156
  "moduleId": 17258,
@@ -165,7 +165,7 @@
165
165
  "exportedName": "syncRepository",
166
166
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
167
167
  },
168
- "40f1ed7792629c8ac17281ec35c2d6e91fe84739d7": {
168
+ "40768882f3386cf36fdc4f6a2d3327cc84338ba311": {
169
169
  "workers": {
170
170
  "app/(dashboard)/feature/[featureId]/page": {
171
171
  "moduleId": 17258,
@@ -180,7 +180,7 @@
180
180
  "exportedName": "getDeploymentLogs",
181
181
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
182
182
  },
183
- "00f224525de7f231b627391cc2056d9afb17d60cd5": {
183
+ "001b40d616af59443690542ee2b0e9539f1a575e72": {
184
184
  "workers": {
185
185
  "app/(dashboard)/feature/[featureId]/page": {
186
186
  "moduleId": 17258,
@@ -195,7 +195,7 @@
195
195
  "exportedName": "isAgentSetupComplete",
196
196
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
197
197
  },
198
- "006cfbf431186a10c2b253817642b66b5e73f00f4a": {
198
+ "0000ea920ab8f4943ddb5b45a114d8353ae5db0de9": {
199
199
  "workers": {
200
200
  "app/(dashboard)/feature/[featureId]/page": {
201
201
  "moduleId": 17258,
@@ -210,7 +210,7 @@
210
210
  "exportedName": "checkAgentAuth",
211
211
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
212
212
  },
213
- "00851e3ac39675fcda8b8d9b8f997e230a6e5dace9": {
213
+ "008ff93f7db16b101678d692c55ec013bcefe6ebf1": {
214
214
  "workers": {
215
215
  "app/(dashboard)/feature/[featureId]/page": {
216
216
  "moduleId": 17258,
@@ -225,7 +225,7 @@
225
225
  "exportedName": "checkToolStatus",
226
226
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
227
227
  },
228
- "005405e33a575fd7fef0856afab08d6908b311c095": {
228
+ "0022c168d9c2149bfa68de818c8056f41c4e9df818": {
229
229
  "workers": {
230
230
  "app/(dashboard)/feature/[featureId]/page": {
231
231
  "moduleId": 17258,
@@ -240,7 +240,7 @@
240
240
  "exportedName": "getAllAgentModels",
241
241
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
242
242
  },
243
- "60010c6015fae17dab78f4eaedcd652d8a425311c4": {
243
+ "60d308093d3cdb304e3ef50aeb1aa36d623c436fa0": {
244
244
  "workers": {
245
245
  "app/(dashboard)/feature/[featureId]/page": {
246
246
  "moduleId": 17258,
@@ -255,7 +255,7 @@
255
255
  "exportedName": "updateAgentAndModel",
256
256
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
257
257
  },
258
- "406a301c92ece4fa7d5b23c75d513d6ae8d260f443": {
258
+ "40750bb2a6e04d6c4ca38263b47cef8d672484d38c": {
259
259
  "workers": {
260
260
  "app/(dashboard)/feature/[featureId]/page": {
261
261
  "moduleId": 17258,
@@ -270,7 +270,7 @@
270
270
  "exportedName": "archiveFeature",
271
271
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
272
272
  },
273
- "7820052e1eb1b7361f888f5aad7637d7bca77f83e1": {
273
+ "784f71b2657acc2fd1763d79a3ea38066c47f9b721": {
274
274
  "workers": {
275
275
  "app/(dashboard)/feature/[featureId]/page": {
276
276
  "moduleId": 17258,
@@ -285,7 +285,7 @@
285
285
  "exportedName": "deleteFeature",
286
286
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
287
287
  },
288
- "402d6e615a4ba79c75ccfc5e9ed5f53983681707a1": {
288
+ "4062cd20aa728a6608d62468cbdf928efb089043c1": {
289
289
  "workers": {
290
290
  "app/(dashboard)/feature/[featureId]/page": {
291
291
  "moduleId": 17258,
@@ -300,7 +300,7 @@
300
300
  "exportedName": "resumeFeature",
301
301
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
302
302
  },
303
- "4078f9d509a0ca17dfba75e8ff01d73ae043618a00": {
303
+ "40522e6be5bf72773e33c5a93c86d4a2462fa3ef68": {
304
304
  "workers": {
305
305
  "app/(dashboard)/feature/[featureId]/page": {
306
306
  "moduleId": 17258,
@@ -315,7 +315,7 @@
315
315
  "exportedName": "startFeature",
316
316
  "filename": "src/presentation/web/app/actions/start-feature.ts"
317
317
  },
318
- "40072d87db816e1679db033d9fc8bd361cc665976f": {
318
+ "40f17ef2523b9dda4381e78ce0c727742ad6243c2b": {
319
319
  "workers": {
320
320
  "app/(dashboard)/feature/[featureId]/page": {
321
321
  "moduleId": 17258,
@@ -330,7 +330,7 @@
330
330
  "exportedName": "stopFeature",
331
331
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
332
332
  },
333
- "405ee01997eb4b6eaf52709119d57f6012f8683cd5": {
333
+ "4014beceb7934dbfd7a463dd6fb822f2b7bba4123d": {
334
334
  "workers": {
335
335
  "app/(dashboard)/feature/[featureId]/page": {
336
336
  "moduleId": 17258,
@@ -345,7 +345,7 @@
345
345
  "exportedName": "unarchiveFeature",
346
346
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
347
347
  },
348
- "400dfc2bc0c7e200128abc275421da2c4b7737108e": {
348
+ "400900dce1a0e8536176f5c48597606cf9a28fe43e": {
349
349
  "workers": {
350
350
  "app/(dashboard)/feature/[featureId]/page": {
351
351
  "moduleId": 17258,
@@ -360,7 +360,7 @@
360
360
  "exportedName": "addRepository",
361
361
  "filename": "src/presentation/web/app/actions/add-repository.ts"
362
362
  },
363
- "40488b5050ee87b5f049f6629f00666422045e6e1e": {
363
+ "40a0788825fd1281ab6017196494ead311fe74464f": {
364
364
  "workers": {
365
365
  "app/(dashboard)/feature/[featureId]/page": {
366
366
  "moduleId": 17258,
@@ -375,7 +375,7 @@
375
375
  "exportedName": "deleteRepository",
376
376
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
377
377
  },
378
- "40017b290b3678c89704799a03f282ab5603d4ec7e": {
378
+ "409025a84e2b7a541afb95013109cbb821e9b7ff3e": {
379
379
  "workers": {
380
380
  "app/(dashboard)/feature/[featureId]/page": {
381
381
  "moduleId": 17258,
@@ -390,7 +390,7 @@
390
390
  "exportedName": "getFeatureMetadata",
391
391
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
392
392
  },
393
- "602b6c5a9e6d52afe63150e717afa950e5e25b9f4a": {
393
+ "601add01582b1aa78884bc53b6e83ece2832d4abef": {
394
394
  "workers": {
395
395
  "app/(dashboard)/feature/[featureId]/page": {
396
396
  "moduleId": 17258,
@@ -405,7 +405,7 @@
405
405
  "exportedName": "approveFeature",
406
406
  "filename": "src/presentation/web/app/actions/approve-feature.ts"
407
407
  },
408
- "706f6b7411b8292a3580c4cbe33760d7479fc57565": {
408
+ "70b07ec6f2d57e7833e585bb9cab7ba92dbcf780a1": {
409
409
  "workers": {
410
410
  "app/(dashboard)/feature/[featureId]/page": {
411
411
  "moduleId": 17258,
@@ -420,7 +420,7 @@
420
420
  "exportedName": "rejectFeature",
421
421
  "filename": "src/presentation/web/app/actions/reject-feature.ts"
422
422
  },
423
- "40396254d38a6462da6d678573d3e7e5360d8acde9": {
423
+ "4042b8753e2425602beb5ef8df81f66b8e4531927a": {
424
424
  "workers": {
425
425
  "app/(dashboard)/feature/[featureId]/page": {
426
426
  "moduleId": 17258,
@@ -435,7 +435,7 @@
435
435
  "exportedName": "getFeatureArtifact",
436
436
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts"
437
437
  },
438
- "4000a6dcd3276a6b4c88ad85005089f943619c81c0": {
438
+ "408b58a4adf28db0ed38249400b865d17b7dd90f5f": {
439
439
  "workers": {
440
440
  "app/(dashboard)/feature/[featureId]/page": {
441
441
  "moduleId": 17258,
@@ -450,7 +450,7 @@
450
450
  "exportedName": "getResearchArtifact",
451
451
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts"
452
452
  },
453
- "405c4a4e2573c8c30ccea949daa2bda19a8d4c7087": {
453
+ "405b226fc478d1d14004d924ec7fddde40441ba3a4": {
454
454
  "workers": {
455
455
  "app/(dashboard)/feature/[featureId]/page": {
456
456
  "moduleId": 17258,
@@ -465,7 +465,7 @@
465
465
  "exportedName": "getMergeReviewData",
466
466
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts"
467
467
  },
468
- "40e23c25623c85b29c841baa543e62b1c5387983e0": {
468
+ "409e44d5bca1040351490dc8608cf408a328d887dc": {
469
469
  "workers": {
470
470
  "app/(dashboard)/feature/[featureId]/page": {
471
471
  "moduleId": 17258,
@@ -480,7 +480,7 @@
480
480
  "exportedName": "getFeaturePhaseTimings",
481
481
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts"
482
482
  },
483
- "407dc1202b0afa38a5995cf91729ed671bc98b1c4d": {
483
+ "40bf611ba18b63e09303b06141faef675f94ba2c84": {
484
484
  "workers": {
485
485
  "app/(dashboard)/feature/[featureId]/page": {
486
486
  "moduleId": 17258,
@@ -495,7 +495,7 @@
495
495
  "exportedName": "getFeaturePlan",
496
496
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts"
497
497
  },
498
- "40fa985fabafece2635f86e6e865cd984ecfa46a6f": {
498
+ "401eb6eec79639ca87e09f70a54da922d62a02393c": {
499
499
  "workers": {
500
500
  "app/(dashboard)/feature/[featureId]/page": {
501
501
  "moduleId": 17258,
@@ -510,7 +510,7 @@
510
510
  "exportedName": "rebaseFeature",
511
511
  "filename": "src/presentation/web/app/actions/rebase-feature.ts"
512
512
  },
513
- "408c3061b1b4d63b526b0b58e911a7bf5907d035ff": {
513
+ "406f2ddd625eef5a26bfbb946a853856cd89cb5949": {
514
514
  "workers": {
515
515
  "app/(dashboard)/feature/[featureId]/page": {
516
516
  "moduleId": 17258,
@@ -525,7 +525,7 @@
525
525
  "exportedName": "getFeatureDrawerData",
526
526
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts"
527
527
  },
528
- "40c244e58d6970627c5fa19bf95f21da09ea2f9834": {
528
+ "4093d1dfcee1531976f437916a383a58ff94cead9c": {
529
529
  "workers": {
530
530
  "app/(dashboard)/feature/[featureId]/page": {
531
531
  "moduleId": 17258,