@shepai/cli 1.136.1-pr440.ded6b06 → 1.137.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 (362) hide show
  1. package/apis/json-schema/Feature.yaml +0 -3
  2. package/apis/json-schema/FeatureFlags.yaml +5 -0
  3. package/apis/json-schema/SdlcLifecycle.yaml +0 -1
  4. package/dist/packages/core/src/application/ports/output/repositories/feature-repository.interface.d.ts +0 -2
  5. package/dist/packages/core/src/application/ports/output/repositories/feature-repository.interface.d.ts.map +1 -1
  6. package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts +91 -5
  7. package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts.map +1 -1
  8. package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.js +6 -4
  9. package/dist/packages/core/src/application/use-cases/features/get-branch-sync-status.use-case.d.ts +25 -0
  10. package/dist/packages/core/src/application/use-cases/features/get-branch-sync-status.use-case.d.ts.map +1 -0
  11. package/dist/packages/core/src/application/use-cases/features/get-branch-sync-status.use-case.js +62 -0
  12. package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.d.ts +34 -0
  13. package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.d.ts.map +1 -0
  14. package/dist/packages/core/src/application/use-cases/features/rebase-feature-on-main.use-case.js +139 -0
  15. package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.d.ts +16 -0
  16. package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.d.ts.map +1 -0
  17. package/dist/packages/core/src/application/use-cases/repositories/sync-repository-main.use-case.js +43 -0
  18. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  19. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -0
  20. package/dist/packages/core/src/domain/generated/output.d.ts +5 -6
  21. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  22. package/dist/packages/core/src/domain/generated/output.js +0 -1
  23. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  24. package/dist/packages/core/src/infrastructure/di/container.js +20 -10
  25. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts +0 -1
  26. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts.map +1 -1
  27. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.js +0 -6
  28. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +1 -0
  29. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  30. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +2 -0
  31. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/042-add-feature-flag-git-rebase-sync.d.ts +11 -0
  32. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/042-add-feature-flag-git-rebase-sync.d.ts.map +1 -0
  33. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/042-add-feature-flag-git-rebase-sync.js +17 -0
  34. package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.d.ts.map +1 -1
  35. package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.js +2 -7
  36. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  37. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -2
  38. package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.d.ts +35 -0
  39. package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.d.ts.map +1 -0
  40. package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.prompt.js +66 -0
  41. package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts +42 -0
  42. package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.d.ts.map +1 -0
  43. package/dist/packages/core/src/infrastructure/services/agents/conflict-resolution/conflict-resolution.service.js +169 -0
  44. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts +10 -0
  45. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts.map +1 -1
  46. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.js +150 -0
  47. package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
  48. package/dist/src/presentation/cli/commands/feat/index.js +1 -5
  49. package/dist/src/presentation/cli/commands/feat/ls.command.d.ts.map +1 -1
  50. package/dist/src/presentation/cli/commands/feat/ls.command.js +0 -5
  51. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
  52. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +6 -18
  53. package/dist/src/presentation/web/app/actions/get-branch-sync-status.d.ts +11 -0
  54. package/dist/src/presentation/web/app/actions/get-branch-sync-status.d.ts.map +1 -0
  55. package/dist/src/presentation/web/app/actions/get-branch-sync-status.js +22 -0
  56. package/dist/src/presentation/web/app/actions/rebase-feature.d.ts +5 -0
  57. package/dist/src/presentation/web/app/actions/rebase-feature.d.ts.map +1 -0
  58. package/dist/src/presentation/web/app/actions/rebase-feature.js +16 -0
  59. package/dist/src/presentation/web/app/actions/sync-repository.d.ts +5 -0
  60. package/dist/src/presentation/web/app/actions/sync-repository.d.ts.map +1 -0
  61. package/dist/src/presentation/web/app/actions/sync-repository.js +16 -0
  62. package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -1
  63. package/dist/src/presentation/web/app/api/agent-events/route.js +0 -1
  64. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts.map +1 -1
  65. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.js +16 -1
  66. package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.d.ts.map +1 -1
  67. package/dist/src/presentation/web/components/common/control-center-drawer/repository-drawer-client.js +4 -4
  68. package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.d.ts +4 -0
  69. package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.d.ts.map +1 -1
  70. package/dist/src/presentation/web/components/common/feature-drawer/use-feature-actions.js +32 -1
  71. package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.d.ts.map +1 -1
  72. package/dist/src/presentation/web/components/common/feature-drawer-tabs/activity-tab.js +1 -0
  73. package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.d.ts +12 -0
  74. package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.d.ts.map +1 -0
  75. package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.js +13 -0
  76. package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.stories.d.ts +15 -0
  77. package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.stories.d.ts.map +1 -0
  78. package/dist/src/presentation/web/components/common/feature-drawer-tabs/branch-sync-status.stories.js +86 -0
  79. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts +9 -1
  80. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts.map +1 -1
  81. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.js +2 -2
  82. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts +9 -1
  83. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.d.ts.map +1 -1
  84. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.js +3 -2
  85. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts +6 -0
  86. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.d.ts.map +1 -1
  87. package/dist/src/presentation/web/components/common/feature-drawer-tabs/overview-tab.stories.js +34 -0
  88. package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.d.ts.map +1 -1
  89. package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.js +0 -6
  90. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +1 -3
  91. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  92. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.js +1 -11
  93. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  94. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +2 -16
  95. package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts +0 -5
  96. package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts.map +1 -1
  97. package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.js +1 -75
  98. package/dist/src/presentation/web/components/common/open-action-menu/open-action-menu.stories.d.ts.map +1 -1
  99. package/dist/src/presentation/web/components/common/open-action-menu/open-action-menu.stories.js +3 -0
  100. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts.map +1 -1
  101. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.js +5 -3
  102. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.d.ts +2 -0
  103. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.d.ts.map +1 -1
  104. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.js +21 -0
  105. package/dist/src/presentation/web/components/common/repository-node/repository-node.js +1 -1
  106. package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.d.ts +4 -0
  107. package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.d.ts.map +1 -1
  108. package/dist/src/presentation/web/components/common/repository-node/use-repository-actions.js +11 -0
  109. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  110. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +4 -13
  111. package/dist/src/presentation/web/components/features/control-center/control-center.stories.d.ts +0 -6
  112. package/dist/src/presentation/web/components/features/control-center/control-center.stories.d.ts.map +1 -1
  113. package/dist/src/presentation/web/components/features/control-center/control-center.stories.js +0 -70
  114. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +0 -6
  115. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  116. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +2 -43
  117. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
  118. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +3 -0
  119. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
  120. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +3 -0
  121. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  122. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +5 -0
  123. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
  124. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +1 -0
  125. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
  126. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +1 -0
  127. package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
  128. package/dist/src/presentation/web/hooks/feature-flags-context.js +1 -0
  129. package/dist/src/presentation/web/hooks/sidebar-features-context.d.ts.map +1 -1
  130. package/dist/src/presentation/web/hooks/sidebar-features-context.js +0 -1
  131. package/dist/src/presentation/web/hooks/use-branch-sync-status.d.ts +14 -0
  132. package/dist/src/presentation/web/hooks/use-branch-sync-status.d.ts.map +1 -0
  133. package/dist/src/presentation/web/hooks/use-branch-sync-status.js +67 -0
  134. package/dist/src/presentation/web/hooks/use-graph-state.d.ts +1 -1
  135. package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
  136. package/dist/src/presentation/web/hooks/use-graph-state.js +2 -17
  137. package/dist/src/presentation/web/lib/derive-graph.d.ts +0 -4
  138. package/dist/src/presentation/web/lib/derive-graph.d.ts.map +1 -1
  139. package/dist/src/presentation/web/lib/derive-graph.js +0 -12
  140. package/dist/src/presentation/web/lib/feature-flags.d.ts +2 -0
  141. package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
  142. package/dist/src/presentation/web/lib/feature-flags.js +5 -0
  143. package/dist/tsconfig.build.tsbuildinfo +1 -1
  144. package/package.json +1 -1
  145. package/web/.next/BUILD_ID +1 -1
  146. package/web/.next/build-manifest.json +2 -2
  147. package/web/.next/fallback-build-manifest.json +2 -2
  148. package/web/.next/prerender-manifest.json +3 -3
  149. package/web/.next/required-server-files.js +2 -2
  150. package/web/.next/required-server-files.json +2 -2
  151. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +65 -80
  152. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +1 -1
  153. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  154. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  155. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +65 -80
  156. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -1
  157. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  158. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  159. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +107 -92
  160. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +1 -1
  161. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  162. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  163. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +107 -92
  164. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -1
  165. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  166. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  167. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +61 -76
  168. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -1
  169. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  170. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  171. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +65 -80
  172. package/web/.next/server/app/(dashboard)/create/page.js +1 -1
  173. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  174. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  175. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +107 -92
  176. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +1 -1
  177. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  178. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  179. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +107 -92
  180. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -1
  181. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  182. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  183. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +61 -76
  184. package/web/.next/server/app/(dashboard)/page.js +1 -1
  185. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  186. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  187. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +61 -76
  188. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -1
  189. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  190. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  191. package/web/.next/server/app/_global-error.html +2 -2
  192. package/web/.next/server/app/_global-error.rsc +1 -1
  193. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  194. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  195. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  196. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  197. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  198. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +3 -3
  199. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  200. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  201. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  202. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  203. package/web/.next/server/app/settings/page/server-reference-manifest.json +8 -8
  204. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  205. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  206. package/web/.next/server/app/skills/page/server-reference-manifest.json +8 -8
  207. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  208. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  209. package/web/.next/server/app/tools/page/server-reference-manifest.json +8 -8
  210. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  211. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  212. package/web/.next/server/app/version/page/server-reference-manifest.json +3 -3
  213. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  214. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  215. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
  216. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +2 -2
  217. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
  218. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  219. package/web/.next/server/chunks/[root-of-the-server]__c6e32a23._.js +1 -1
  220. package/web/.next/server/chunks/[root-of-the-server]__c6e32a23._.js.map +1 -1
  221. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  222. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  223. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  224. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  225. package/web/.next/server/chunks/ssr/[root-of-the-server]__1626f5d7._.js +4 -0
  226. package/web/.next/server/chunks/ssr/[root-of-the-server]__1626f5d7._.js.map +1 -0
  227. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  228. package/web/.next/server/chunks/ssr/[root-of-the-server]__3ef34e4c._.js +1 -1
  229. package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js +1 -1
  230. package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js.map +1 -1
  231. package/web/.next/server/chunks/ssr/[root-of-the-server]__49557873._.js +4 -0
  232. package/web/.next/server/chunks/ssr/[root-of-the-server]__49557873._.js.map +1 -0
  233. package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.js +1 -1
  234. package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.js.map +1 -1
  235. package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js +1 -1
  236. package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js.map +1 -1
  237. package/web/.next/server/chunks/ssr/[root-of-the-server]__90fdc0ee._.js +4 -0
  238. package/web/.next/server/chunks/ssr/[root-of-the-server]__90fdc0ee._.js.map +1 -0
  239. package/web/.next/server/chunks/ssr/[root-of-the-server]__a5f9c6e5._.js +2 -2
  240. package/web/.next/server/chunks/ssr/[root-of-the-server]__a5f9c6e5._.js.map +1 -1
  241. package/web/.next/server/chunks/ssr/[root-of-the-server]__a7259d16._.js +4 -0
  242. package/web/.next/server/chunks/ssr/[root-of-the-server]__a7259d16._.js.map +1 -0
  243. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +2 -2
  244. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
  245. package/web/.next/server/chunks/ssr/[root-of-the-server]__cb850066._.js +3 -0
  246. package/web/.next/server/chunks/ssr/[root-of-the-server]__cb850066._.js.map +1 -0
  247. package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js +1 -1
  248. package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js.map +1 -1
  249. package/web/.next/server/chunks/ssr/_0020fddd._.js +1 -1
  250. package/web/.next/server/chunks/ssr/_0020fddd._.js.map +1 -1
  251. package/web/.next/server/chunks/ssr/_02ec1aea._.js +1 -1
  252. package/web/.next/server/chunks/ssr/_02ec1aea._.js.map +1 -1
  253. package/web/.next/server/chunks/ssr/_037421b9._.js +3 -0
  254. package/web/.next/server/chunks/ssr/_037421b9._.js.map +1 -0
  255. package/web/.next/server/chunks/ssr/{_a51673dd._.js → _149f6559._.js} +2 -2
  256. package/web/.next/server/chunks/ssr/{_2fdfd9ab._.js.map → _149f6559._.js.map} +1 -1
  257. package/web/.next/server/chunks/ssr/{_2fdfd9ab._.js → _1a09002f._.js} +2 -2
  258. package/web/.next/server/chunks/ssr/{_a51673dd._.js.map → _1a09002f._.js.map} +1 -1
  259. package/web/.next/server/chunks/ssr/{_65f6e0e0._.js → _48a8ee28._.js} +3 -3
  260. package/web/.next/server/chunks/ssr/{_d763f022._.js.map → _48a8ee28._.js.map} +1 -1
  261. package/web/.next/server/chunks/ssr/{_d763f022._.js → _6e8c85b1._.js} +3 -3
  262. package/web/.next/server/chunks/ssr/{_65f6e0e0._.js.map → _6e8c85b1._.js.map} +1 -1
  263. package/web/.next/server/chunks/ssr/_7dca1882._.js +1 -1
  264. package/web/.next/server/chunks/ssr/_7dca1882._.js.map +1 -1
  265. package/web/.next/server/chunks/ssr/{_d162e30d._.js → _83220ba0._.js} +2 -2
  266. package/web/.next/server/chunks/ssr/{_d162e30d._.js.map → _83220ba0._.js.map} +1 -1
  267. package/web/.next/server/chunks/ssr/{_ae587066._.js → _939287c5._.js} +2 -2
  268. package/web/.next/server/chunks/ssr/{_ae587066._.js.map → _939287c5._.js.map} +1 -1
  269. package/web/.next/server/chunks/ssr/_9cb5f6e3._.js +4 -0
  270. package/web/.next/server/chunks/ssr/_9cb5f6e3._.js.map +1 -0
  271. package/web/.next/server/chunks/ssr/_a37f5f18._.js +1 -1
  272. package/web/.next/server/chunks/ssr/_a37f5f18._.js.map +1 -1
  273. package/web/.next/server/chunks/ssr/_a9f57758._.js +1 -1
  274. package/web/.next/server/chunks/ssr/_a9f57758._.js.map +1 -1
  275. package/web/.next/server/chunks/ssr/_cfbd1d7e._.js +3 -0
  276. package/web/.next/server/chunks/ssr/_cfbd1d7e._.js.map +1 -0
  277. package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +1 -1
  278. package/web/.next/server/chunks/ssr/_d8575088._.js +1 -1
  279. package/web/.next/server/chunks/ssr/_d8575088._.js.map +1 -1
  280. package/web/.next/server/chunks/ssr/_f39a1adb._.js +1 -1
  281. package/web/.next/server/chunks/ssr/_f39a1adb._.js.map +1 -1
  282. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  283. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  284. package/web/.next/server/chunks/ssr/src_presentation_web_951640a3._.js +3 -0
  285. package/web/.next/server/chunks/ssr/{src_presentation_web_eb026892._.js.map → src_presentation_web_951640a3._.js.map} +1 -1
  286. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js +1 -1
  287. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js.map +1 -1
  288. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js +1 -1
  289. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js.map +1 -1
  290. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  291. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +1 -1
  292. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  293. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  294. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
  295. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
  296. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  297. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  298. package/web/.next/server/pages/500.html +2 -2
  299. package/web/.next/server/server-reference-manifest.js +1 -1
  300. package/web/.next/server/server-reference-manifest.json +457 -463
  301. package/web/.next/static/chunks/{bcc1bf1b0cd74b2d.js → 0bd451437bb30264.js} +1 -1
  302. package/web/.next/static/chunks/{b02f266e89ba1dd8.js → 29fe67f664ff2dc6.js} +1 -1
  303. package/web/.next/static/chunks/{57802507d72b99ee.js → 5aa808c7bec008f3.js} +1 -1
  304. package/web/.next/static/chunks/{232c8fb39d55eb0c.js → 5fe8c723c668f1ef.js} +2 -2
  305. package/web/.next/static/chunks/6a370f2709c81d83.js +1 -0
  306. package/web/.next/static/chunks/{16b41271842fdbc1.js → 92d66288f6e5f235.js} +1 -1
  307. package/web/.next/static/chunks/ab3afb0b942c1eb2.css +1 -0
  308. package/web/.next/static/chunks/{f3da449e6cc5524e.js → c17f8118fc760923.js} +1 -1
  309. package/web/.next/static/chunks/{35c8485fb1995cf7.js → c473e2924fbd8fd1.js} +1 -1
  310. package/web/.next/static/chunks/{2f0f60603e6a6ad3.js → d73ad54d54cd7e1d.js} +1 -1
  311. package/web/.next/static/chunks/db80bb0df7318fac.js +2 -0
  312. package/web/.next/static/chunks/{a0072880b46edce7.js → e4024647334fa56f.js} +1 -1
  313. package/web/.next/static/chunks/{0b7fe2ac4f078f54.js → f070c67389a686ff.js} +1 -1
  314. package/web/.next/static/chunks/{94f12c16e8804d19.js → f3e37f559952d6a1.js} +1 -1
  315. package/web/.next/static/chunks/f66c996402a430f5.js +1 -0
  316. package/web/.next/static/chunks/fa89e48e0d67e4dc.js +1 -0
  317. package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.d.ts +0 -20
  318. package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.d.ts.map +0 -1
  319. package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.js +0 -74
  320. package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.d.ts +0 -20
  321. package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.d.ts.map +0 -1
  322. package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.js +0 -65
  323. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.d.ts +0 -12
  324. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.d.ts.map +0 -1
  325. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.js +0 -16
  326. package/dist/src/presentation/cli/commands/feat/archive.command.d.ts +0 -18
  327. package/dist/src/presentation/cli/commands/feat/archive.command.d.ts.map +0 -1
  328. package/dist/src/presentation/cli/commands/feat/archive.command.js +0 -54
  329. package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts +0 -17
  330. package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts.map +0 -1
  331. package/dist/src/presentation/cli/commands/feat/unarchive.command.js +0 -42
  332. package/dist/src/presentation/web/app/actions/archive-feature.d.ts +0 -6
  333. package/dist/src/presentation/web/app/actions/archive-feature.d.ts.map +0 -1
  334. package/dist/src/presentation/web/app/actions/archive-feature.js +0 -16
  335. package/dist/src/presentation/web/app/actions/unarchive-feature.d.ts +0 -6
  336. package/dist/src/presentation/web/app/actions/unarchive-feature.d.ts.map +0 -1
  337. package/dist/src/presentation/web/app/actions/unarchive-feature.js +0 -16
  338. package/web/.next/server/chunks/ssr/[root-of-the-server]__61564698._.js +0 -4
  339. package/web/.next/server/chunks/ssr/[root-of-the-server]__61564698._.js.map +0 -1
  340. package/web/.next/server/chunks/ssr/[root-of-the-server]__74ab160c._.js +0 -4
  341. package/web/.next/server/chunks/ssr/[root-of-the-server]__74ab160c._.js.map +0 -1
  342. package/web/.next/server/chunks/ssr/[root-of-the-server]__b3dbadca._.js +0 -3
  343. package/web/.next/server/chunks/ssr/[root-of-the-server]__b3dbadca._.js.map +0 -1
  344. package/web/.next/server/chunks/ssr/[root-of-the-server]__bd16cded._.js +0 -4
  345. package/web/.next/server/chunks/ssr/[root-of-the-server]__bd16cded._.js.map +0 -1
  346. package/web/.next/server/chunks/ssr/[root-of-the-server]__f14fffe1._.js +0 -4
  347. package/web/.next/server/chunks/ssr/[root-of-the-server]__f14fffe1._.js.map +0 -1
  348. package/web/.next/server/chunks/ssr/_0f5e9205._.js +0 -3
  349. package/web/.next/server/chunks/ssr/_0f5e9205._.js.map +0 -1
  350. package/web/.next/server/chunks/ssr/_29c444f1._.js +0 -4
  351. package/web/.next/server/chunks/ssr/_29c444f1._.js.map +0 -1
  352. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +0 -3
  353. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +0 -1
  354. package/web/.next/server/chunks/ssr/src_presentation_web_eb026892._.js +0 -3
  355. package/web/.next/static/chunks/24d61546fc6aa030.css +0 -1
  356. package/web/.next/static/chunks/5edd0e2e784ee069.js +0 -2
  357. package/web/.next/static/chunks/60f80d39976c5086.js +0 -1
  358. package/web/.next/static/chunks/d0dff217a94d4ee1.js +0 -1
  359. package/web/.next/static/chunks/eb9841ec4d80af01.js +0 -1
  360. /package/web/.next/static/{3V1jKEnSKFjbSLn1ERPdV → i847vZGPwgKFPH7P5kTBl}/_buildManifest.js +0 -0
  361. /package/web/.next/static/{3V1jKEnSKFjbSLn1ERPdV → i847vZGPwgKFPH7P5kTBl}/_clientMiddlewareManifest.json +0 -0
  362. /package/web/.next/static/{3V1jKEnSKFjbSLn1ERPdV → i847vZGPwgKFPH7P5kTBl}/_ssgManifest.js +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shepai/cli",
3
- "version": "1.136.1-pr440.ded6b06",
3
+ "version": "1.137.0",
4
4
  "description": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -1 +1 @@
1
- 3V1jKEnSKFjbSLn1ERPdV
1
+ i847vZGPwgKFPH7P5kTBl
@@ -7,8 +7,8 @@
7
7
  "static/chunks/a6dad97d9634a72d.js"
8
8
  ],
9
9
  "lowPriorityFiles": [
10
- "static/3V1jKEnSKFjbSLn1ERPdV/_ssgManifest.js",
11
- "static/3V1jKEnSKFjbSLn1ERPdV/_buildManifest.js"
10
+ "static/i847vZGPwgKFPH7P5kTBl/_ssgManifest.js",
11
+ "static/i847vZGPwgKFPH7P5kTBl/_buildManifest.js"
12
12
  ],
13
13
  "rootMainFiles": [
14
14
  "static/chunks/4cec255f2754e5ec.js",
@@ -5,8 +5,8 @@
5
5
  "devFiles": [],
6
6
  "polyfillFiles": [],
7
7
  "lowPriorityFiles": [
8
- "static/3V1jKEnSKFjbSLn1ERPdV/_ssgManifest.js",
9
- "static/3V1jKEnSKFjbSLn1ERPdV/_buildManifest.js"
8
+ "static/i847vZGPwgKFPH7P5kTBl/_ssgManifest.js",
9
+ "static/i847vZGPwgKFPH7P5kTBl/_buildManifest.js"
10
10
  ],
11
11
  "rootMainFiles": []
12
12
  }
@@ -29,8 +29,8 @@
29
29
  "dynamicRoutes": {},
30
30
  "notFoundRoutes": [],
31
31
  "preview": {
32
- "previewModeId": "f98402c9367fb870e64984a99b45178e",
33
- "previewModeSigningKey": "2c3b01b4d464ca22b08d67a19ebc41ada6174109054e0485375a6165700ff227",
34
- "previewModeEncryptionKey": "7d9bf436dd225e7b002a88a661dda3576b16bde8b7d15fa6fbc19b2b4067a642"
32
+ "previewModeId": "615b41fb3323ad65ad692114a64ac724",
33
+ "previewModeSigningKey": "70fd9584c19e4e1847b2af5542eef214ed421cf0747a276a0ae5fdd46fbad76a",
34
+ "previewModeEncryptionKey": "19f339e3dc637ca8c9448ef9fd6d7a31774642a83ef6bfd43cb57f49856513e2"
35
35
  }
36
36
  }
@@ -5,8 +5,8 @@ self.__SERVER_FILES_MANIFEST={
5
5
  "NEXT_PUBLIC_SHEP_VERSION": "1.136.1",
6
6
  "NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
7
7
  "NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
8
- "NEXT_PUBLIC_SHEP_BRANCH": "HEAD",
9
- "NEXT_PUBLIC_SHEP_COMMIT": "ded6b0693225f2211c39f04bf69c27cf2a80b61c",
8
+ "NEXT_PUBLIC_SHEP_BRANCH": "main",
9
+ "NEXT_PUBLIC_SHEP_COMMIT": "d4cfb7254d715e198487b1844f1bdb19dfa84a50",
10
10
  "NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/cli/cli/src/presentation/web"
11
11
  },
12
12
  "webpack": null,
@@ -5,8 +5,8 @@
5
5
  "NEXT_PUBLIC_SHEP_VERSION": "1.136.1",
6
6
  "NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
7
7
  "NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
8
- "NEXT_PUBLIC_SHEP_BRANCH": "HEAD",
9
- "NEXT_PUBLIC_SHEP_COMMIT": "ded6b0693225f2211c39f04bf69c27cf2a80b61c",
8
+ "NEXT_PUBLIC_SHEP_BRANCH": "main",
9
+ "NEXT_PUBLIC_SHEP_COMMIT": "d4cfb7254d715e198487b1844f1bdb19dfa84a50",
10
10
  "NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/cli/cli/src/presentation/web"
11
11
  },
12
12
  "webpack": null,
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "node": {
3
- "001cb2f353fa962fbe7e7edadc39a282e123a890da": {
3
+ "00e086cc458c45ec9027fa28edb05fd6eac687cbc8": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/adopt/page": {
6
- "moduleId": 90191,
6
+ "moduleId": 15675,
7
7
  "async": false,
8
8
  "exportedName": "pickFolder",
9
9
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -15,10 +15,10 @@
15
15
  "exportedName": "pickFolder",
16
16
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
17
17
  },
18
- "402f51b3dbe7d573cd61c2876c8cc561f82422affa": {
18
+ "407181c95b80da4de451a2bdcd86f76479fde3880f": {
19
19
  "workers": {
20
20
  "app/(dashboard)/@drawer/adopt/page": {
21
- "moduleId": 90191,
21
+ "moduleId": 15675,
22
22
  "async": false,
23
23
  "exportedName": "listGitHubRepositories",
24
24
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
@@ -30,10 +30,10 @@
30
30
  "exportedName": "listGitHubRepositories",
31
31
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
32
32
  },
33
- "40204cabe2763fa6d152fd6b439db8fa5aca884c63": {
33
+ "40edd5ff61e736bd47673f9e214f782d127ab7c153": {
34
34
  "workers": {
35
35
  "app/(dashboard)/@drawer/adopt/page": {
36
- "moduleId": 90191,
36
+ "moduleId": 15675,
37
37
  "async": false,
38
38
  "exportedName": "importGitHubRepository",
39
39
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
@@ -45,10 +45,10 @@
45
45
  "exportedName": "importGitHubRepository",
46
46
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
47
47
  },
48
- "40a441297d132f417266f72943f3044f364f12cd5f": {
48
+ "4076eec7663afff5abf7428847a1f335a32ac3e2a5": {
49
49
  "workers": {
50
50
  "app/(dashboard)/@drawer/adopt/page": {
51
- "moduleId": 90191,
51
+ "moduleId": 15675,
52
52
  "async": false,
53
53
  "exportedName": "deployFeature",
54
54
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
@@ -60,10 +60,10 @@
60
60
  "exportedName": "deployFeature",
61
61
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
62
62
  },
63
- "40070361aa2a2fcc1c85d27286aeef026be6f8efd6": {
63
+ "40a6b00f66be8fa33980f558cc79887aa5443c5d3d": {
64
64
  "workers": {
65
65
  "app/(dashboard)/@drawer/adopt/page": {
66
- "moduleId": 90191,
66
+ "moduleId": 15675,
67
67
  "async": false,
68
68
  "exportedName": "deployRepository",
69
69
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
@@ -75,10 +75,10 @@
75
75
  "exportedName": "deployRepository",
76
76
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
77
77
  },
78
- "40314a3f501c4ab7d638488e7dcd9a1f95989e5271": {
78
+ "4012fbe6e19c0335de5fe04f447eb172ffc167ddf8": {
79
79
  "workers": {
80
80
  "app/(dashboard)/@drawer/adopt/page": {
81
- "moduleId": 90191,
81
+ "moduleId": 15675,
82
82
  "async": false,
83
83
  "exportedName": "stopDeployment",
84
84
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
@@ -90,10 +90,10 @@
90
90
  "exportedName": "stopDeployment",
91
91
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
92
92
  },
93
- "4097ea979d4895965782eacc0d78312fc6722fb190": {
93
+ "40bf46a40f5cb14b0a43bf965deb5de27a85b3d491": {
94
94
  "workers": {
95
95
  "app/(dashboard)/@drawer/adopt/page": {
96
- "moduleId": 90191,
96
+ "moduleId": 15675,
97
97
  "async": false,
98
98
  "exportedName": "getDeploymentStatus",
99
99
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
@@ -105,10 +105,10 @@
105
105
  "exportedName": "getDeploymentStatus",
106
106
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
107
107
  },
108
- "40b6f51ace122b5e461ad6f47b67439e6037868fa6": {
108
+ "40e45779718083cc31e4bedadb0f531646373849dc": {
109
109
  "workers": {
110
110
  "app/(dashboard)/@drawer/adopt/page": {
111
- "moduleId": 90191,
111
+ "moduleId": 15675,
112
112
  "async": false,
113
113
  "exportedName": "openIde",
114
114
  "filename": "src/presentation/web/app/actions/open-ide.ts"
@@ -120,10 +120,10 @@
120
120
  "exportedName": "openIde",
121
121
  "filename": "src/presentation/web/app/actions/open-ide.ts"
122
122
  },
123
- "4040ec5dd669aafe7c5e2410060f0509d71dd21fb8": {
123
+ "40817bf2c0a073858b1feecc366a55669f958252e8": {
124
124
  "workers": {
125
125
  "app/(dashboard)/@drawer/adopt/page": {
126
- "moduleId": 90191,
126
+ "moduleId": 15675,
127
127
  "async": false,
128
128
  "exportedName": "openShell",
129
129
  "filename": "src/presentation/web/app/actions/open-shell.ts"
@@ -135,10 +135,10 @@
135
135
  "exportedName": "openShell",
136
136
  "filename": "src/presentation/web/app/actions/open-shell.ts"
137
137
  },
138
- "40fd9f11755d5bc654ee50d1ebd4ba91897da79d1f": {
138
+ "40d62d2d7c10a00a8583f2f1098e726845fb18f959": {
139
139
  "workers": {
140
140
  "app/(dashboard)/@drawer/adopt/page": {
141
- "moduleId": 90191,
141
+ "moduleId": 15675,
142
142
  "async": false,
143
143
  "exportedName": "openFolder",
144
144
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -150,10 +150,25 @@
150
150
  "exportedName": "openFolder",
151
151
  "filename": "src/presentation/web/app/actions/open-folder.ts"
152
152
  },
153
- "4082da0ef62ce49866163c26a8607d5887bfda7957": {
153
+ "400284a07fca9fc21141b4fa8721219441e047193c": {
154
154
  "workers": {
155
155
  "app/(dashboard)/@drawer/adopt/page": {
156
- "moduleId": 90191,
156
+ "moduleId": 15675,
157
+ "async": false,
158
+ "exportedName": "syncRepository",
159
+ "filename": "src/presentation/web/app/actions/sync-repository.ts"
160
+ }
161
+ },
162
+ "layer": {
163
+ "app/(dashboard)/@drawer/adopt/page": "action-browser"
164
+ },
165
+ "exportedName": "syncRepository",
166
+ "filename": "src/presentation/web/app/actions/sync-repository.ts"
167
+ },
168
+ "4021ab67087beaecb2592795a5a1077e31236bef1f": {
169
+ "workers": {
170
+ "app/(dashboard)/@drawer/adopt/page": {
171
+ "moduleId": 15675,
157
172
  "async": false,
158
173
  "exportedName": "getDeploymentLogs",
159
174
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
@@ -165,10 +180,10 @@
165
180
  "exportedName": "getDeploymentLogs",
166
181
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
167
182
  },
168
- "0066eacdaf2740b2c4471358356faa26964a88e9ff": {
183
+ "005b2d235697eb385e948c3122bd9a51a1db817b60": {
169
184
  "workers": {
170
185
  "app/(dashboard)/@drawer/adopt/page": {
171
- "moduleId": 90191,
186
+ "moduleId": 15675,
172
187
  "async": false,
173
188
  "exportedName": "isAgentSetupComplete",
174
189
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
@@ -180,10 +195,10 @@
180
195
  "exportedName": "isAgentSetupComplete",
181
196
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
182
197
  },
183
- "00d3aa7a9fae23319dc2a42f569be5dedca1c6d791": {
198
+ "0005c733d0f3266487deb0fb05e3ff41ddb9fc4d36": {
184
199
  "workers": {
185
200
  "app/(dashboard)/@drawer/adopt/page": {
186
- "moduleId": 90191,
201
+ "moduleId": 15675,
187
202
  "async": false,
188
203
  "exportedName": "checkAgentAuth",
189
204
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
@@ -195,10 +210,10 @@
195
210
  "exportedName": "checkAgentAuth",
196
211
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
197
212
  },
198
- "00e37375304b0a7744a14a077a967461a1f58ec451": {
213
+ "0056d87b9022bba7ea5ce73fdacdf4c072869e2cfb": {
199
214
  "workers": {
200
215
  "app/(dashboard)/@drawer/adopt/page": {
201
- "moduleId": 90191,
216
+ "moduleId": 15675,
202
217
  "async": false,
203
218
  "exportedName": "checkToolStatus",
204
219
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
@@ -210,10 +225,10 @@
210
225
  "exportedName": "checkToolStatus",
211
226
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
212
227
  },
213
- "00443fc13c044c063c38ca50a0b04382fac99c2f81": {
228
+ "00627a945cd25b91a1350355bc2b8d7569fd52acc5": {
214
229
  "workers": {
215
230
  "app/(dashboard)/@drawer/adopt/page": {
216
- "moduleId": 90191,
231
+ "moduleId": 15675,
217
232
  "async": false,
218
233
  "exportedName": "getAllAgentModels",
219
234
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -225,10 +240,10 @@
225
240
  "exportedName": "getAllAgentModels",
226
241
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
227
242
  },
228
- "6066ced661efb44e617f357d185f6ad50fb848984c": {
243
+ "608fd75292eec8016a1c4ebf5522e400090f4375c8": {
229
244
  "workers": {
230
245
  "app/(dashboard)/@drawer/adopt/page": {
231
- "moduleId": 90191,
246
+ "moduleId": 15675,
232
247
  "async": false,
233
248
  "exportedName": "updateAgentAndModel",
234
249
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -240,25 +255,10 @@
240
255
  "exportedName": "updateAgentAndModel",
241
256
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
242
257
  },
243
- "40549f0ebc4cd8236dac4de3a86a1bbcf421a2620e": {
258
+ "78954564ef624b86a0a3e112dcc4df1b45769db9f7": {
244
259
  "workers": {
245
260
  "app/(dashboard)/@drawer/adopt/page": {
246
- "moduleId": 90191,
247
- "async": false,
248
- "exportedName": "archiveFeature",
249
- "filename": "src/presentation/web/app/actions/archive-feature.ts"
250
- }
251
- },
252
- "layer": {
253
- "app/(dashboard)/@drawer/adopt/page": "action-browser"
254
- },
255
- "exportedName": "archiveFeature",
256
- "filename": "src/presentation/web/app/actions/archive-feature.ts"
257
- },
258
- "78e9ae38665863c2f08c123309b8347ca02ce33c99": {
259
- "workers": {
260
- "app/(dashboard)/@drawer/adopt/page": {
261
- "moduleId": 90191,
261
+ "moduleId": 15675,
262
262
  "async": false,
263
263
  "exportedName": "deleteFeature",
264
264
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
@@ -270,10 +270,10 @@
270
270
  "exportedName": "deleteFeature",
271
271
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
272
272
  },
273
- "40a046099fec912188c4497b533046887b5bdf3245": {
273
+ "40800d836fafe9b1b47eedc2ad700358e96ed73455": {
274
274
  "workers": {
275
275
  "app/(dashboard)/@drawer/adopt/page": {
276
- "moduleId": 90191,
276
+ "moduleId": 15675,
277
277
  "async": false,
278
278
  "exportedName": "resumeFeature",
279
279
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
@@ -285,10 +285,10 @@
285
285
  "exportedName": "resumeFeature",
286
286
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
287
287
  },
288
- "409cb5d14d6accab943719ef098603cae2e7f698e4": {
288
+ "40007ca2e9130d6cccb524f365aa2b01f64568a00d": {
289
289
  "workers": {
290
290
  "app/(dashboard)/@drawer/adopt/page": {
291
- "moduleId": 90191,
291
+ "moduleId": 15675,
292
292
  "async": false,
293
293
  "exportedName": "startFeature",
294
294
  "filename": "src/presentation/web/app/actions/start-feature.ts"
@@ -300,10 +300,10 @@
300
300
  "exportedName": "startFeature",
301
301
  "filename": "src/presentation/web/app/actions/start-feature.ts"
302
302
  },
303
- "40a690d13581bd65bce5d7233a9af8db0860c7c555": {
303
+ "40753e90280dc4edfed76b0940a98c52694b107fe8": {
304
304
  "workers": {
305
305
  "app/(dashboard)/@drawer/adopt/page": {
306
- "moduleId": 90191,
306
+ "moduleId": 15675,
307
307
  "async": false,
308
308
  "exportedName": "stopFeature",
309
309
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
@@ -315,25 +315,10 @@
315
315
  "exportedName": "stopFeature",
316
316
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
317
317
  },
318
- "4002e23a139c1ac4abb8143ddc653eb9d5fc5a1ac9": {
319
- "workers": {
320
- "app/(dashboard)/@drawer/adopt/page": {
321
- "moduleId": 90191,
322
- "async": false,
323
- "exportedName": "unarchiveFeature",
324
- "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
325
- }
326
- },
327
- "layer": {
328
- "app/(dashboard)/@drawer/adopt/page": "action-browser"
329
- },
330
- "exportedName": "unarchiveFeature",
331
- "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
332
- },
333
- "40933ba40ddfb647bdbd0b953da5f52e0dc2cb36f7": {
318
+ "40f8685a6aeeaf3ab24b69c675ab5f4feebeb18249": {
334
319
  "workers": {
335
320
  "app/(dashboard)/@drawer/adopt/page": {
336
- "moduleId": 90191,
321
+ "moduleId": 15675,
337
322
  "async": false,
338
323
  "exportedName": "addRepository",
339
324
  "filename": "src/presentation/web/app/actions/add-repository.ts"
@@ -345,10 +330,10 @@
345
330
  "exportedName": "addRepository",
346
331
  "filename": "src/presentation/web/app/actions/add-repository.ts"
347
332
  },
348
- "401548f71869b5a5b4769ff3581ff9c5b16b034dc7": {
333
+ "40ed6a706b272a6885e410fbee5e8dacb0b4b07cd8": {
349
334
  "workers": {
350
335
  "app/(dashboard)/@drawer/adopt/page": {
351
- "moduleId": 90191,
336
+ "moduleId": 15675,
352
337
  "async": false,
353
338
  "exportedName": "deleteRepository",
354
339
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
@@ -360,10 +345,10 @@
360
345
  "exportedName": "deleteRepository",
361
346
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
362
347
  },
363
- "4061f90b3c05cc15d21b1b1e00806de17d735247a7": {
348
+ "40ed6b621ed6d02c11e309aac0af8a8d9fe5b364f2": {
364
349
  "workers": {
365
350
  "app/(dashboard)/@drawer/adopt/page": {
366
- "moduleId": 90191,
351
+ "moduleId": 15675,
367
352
  "async": false,
368
353
  "exportedName": "getFeatureMetadata",
369
354
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
@@ -375,10 +360,10 @@
375
360
  "exportedName": "getFeatureMetadata",
376
361
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
377
362
  },
378
- "40969b9553b922f471a460afca3630a621e0d87987": {
363
+ "40c3948ad76a7dae7a806ab8703f678f784b0da160": {
379
364
  "workers": {
380
365
  "app/(dashboard)/@drawer/adopt/page": {
381
- "moduleId": 90191,
366
+ "moduleId": 15675,
382
367
  "async": false,
383
368
  "exportedName": "adoptBranch",
384
369
  "filename": "src/presentation/web/app/actions/adopt-branch.ts"
@@ -390,10 +375,10 @@
390
375
  "exportedName": "adoptBranch",
391
376
  "filename": "src/presentation/web/app/actions/adopt-branch.ts"
392
377
  },
393
- "4030e146bf915e92599a20d8098d2985a6f57c5942": {
378
+ "40b6c1f7a09e18b6536a2f9aee2796690d335221b6": {
394
379
  "workers": {
395
380
  "app/(dashboard)/@drawer/adopt/page": {
396
- "moduleId": 90191,
381
+ "moduleId": 15675,
397
382
  "async": false,
398
383
  "exportedName": "listBranches",
399
384
  "filename": "src/presentation/web/app/actions/list-branches.ts"
@@ -15,7 +15,7 @@ R.c("server/chunks/ssr/403f9_next_dist_client_components_builtin_unauthorized_a2
15
15
  R.c("server/chunks/ssr/[root-of-the-server]__6ec59045._.js")
16
16
  R.c("server/chunks/ssr/src_presentation_web_ca99d62d._.js")
17
17
  R.c("server/chunks/ssr/403f9_next_dist_client_components_94d75bc3._.js")
18
- R.c("server/chunks/ssr/_d162e30d._.js")
18
+ R.c("server/chunks/ssr/_83220ba0._.js")
19
19
  R.c("server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js")
20
20
  R.m(40778)
21
21
  module.exports=R.m(40778).exports