@shepai/cli 1.136.0-pr437.9f802f1 → 1.136.0-pr440.bb6800a

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 (304) hide show
  1. package/apis/json-schema/Feature.yaml +3 -0
  2. package/apis/json-schema/FeatureFlags.yaml +0 -5
  3. package/apis/json-schema/SdlcLifecycle.yaml +1 -0
  4. package/dist/packages/core/src/application/ports/output/repositories/feature-repository.interface.d.ts +2 -0
  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/index.d.ts +0 -1
  7. package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
  8. package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.d.ts +20 -0
  9. package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.d.ts.map +1 -0
  10. package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.js +74 -0
  11. package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.d.ts +20 -0
  12. package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.d.ts.map +1 -0
  13. package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.js +65 -0
  14. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  15. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +0 -1
  16. package/dist/packages/core/src/domain/generated/output.d.ts +6 -5
  17. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  18. package/dist/packages/core/src/domain/generated/output.js +1 -0
  19. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  20. package/dist/packages/core/src/infrastructure/di/container.js +10 -10
  21. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts +1 -0
  22. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts.map +1 -1
  23. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.js +6 -0
  24. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +0 -1
  25. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  26. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +0 -2
  27. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.d.ts +12 -0
  28. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.d.ts.map +1 -0
  29. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.js +16 -0
  30. package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.d.ts.map +1 -1
  31. package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.js +7 -2
  32. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  33. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +2 -3
  34. package/dist/src/presentation/cli/commands/feat/archive.command.d.ts +18 -0
  35. package/dist/src/presentation/cli/commands/feat/archive.command.d.ts.map +1 -0
  36. package/dist/src/presentation/cli/commands/feat/archive.command.js +54 -0
  37. package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
  38. package/dist/src/presentation/cli/commands/feat/index.js +5 -1
  39. package/dist/src/presentation/cli/commands/feat/ls.command.d.ts.map +1 -1
  40. package/dist/src/presentation/cli/commands/feat/ls.command.js +5 -0
  41. package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts +17 -0
  42. package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts.map +1 -0
  43. package/dist/src/presentation/cli/commands/feat/unarchive.command.js +42 -0
  44. package/dist/src/presentation/cli/index.js +0 -2
  45. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
  46. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +6 -1
  47. package/dist/src/presentation/web/app/actions/archive-feature.d.ts +6 -0
  48. package/dist/src/presentation/web/app/actions/archive-feature.d.ts.map +1 -0
  49. package/dist/src/presentation/web/app/actions/archive-feature.js +16 -0
  50. package/dist/src/presentation/web/app/actions/unarchive-feature.d.ts +6 -0
  51. package/dist/src/presentation/web/app/actions/unarchive-feature.d.ts.map +1 -0
  52. package/dist/src/presentation/web/app/actions/unarchive-feature.js +16 -0
  53. package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -1
  54. package/dist/src/presentation/web/app/api/agent-events/route.js +1 -0
  55. package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.d.ts.map +1 -1
  56. package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.js +6 -0
  57. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +3 -1
  58. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  59. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.js +11 -1
  60. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  61. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +16 -2
  62. package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts +5 -0
  63. package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts.map +1 -1
  64. package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.js +75 -1
  65. package/dist/src/presentation/web/components/common/repository-node/repository-node.d.ts.map +1 -1
  66. package/dist/src/presentation/web/components/common/repository-node/repository-node.js +2 -9
  67. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  68. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +13 -4
  69. package/dist/src/presentation/web/components/features/control-center/control-center.stories.d.ts +6 -0
  70. package/dist/src/presentation/web/components/features/control-center/control-center.stories.d.ts.map +1 -1
  71. package/dist/src/presentation/web/components/features/control-center/control-center.stories.js +70 -0
  72. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +6 -0
  73. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  74. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +43 -2
  75. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
  76. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +0 -3
  77. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
  78. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +0 -3
  79. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  80. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +0 -5
  81. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
  82. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +0 -1
  83. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
  84. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +0 -1
  85. package/dist/src/presentation/web/dev-server.js +1 -62
  86. package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
  87. package/dist/src/presentation/web/hooks/feature-flags-context.js +0 -1
  88. package/dist/src/presentation/web/hooks/sidebar-features-context.d.ts.map +1 -1
  89. package/dist/src/presentation/web/hooks/sidebar-features-context.js +1 -0
  90. package/dist/src/presentation/web/hooks/use-graph-state.d.ts +1 -1
  91. package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
  92. package/dist/src/presentation/web/hooks/use-graph-state.js +17 -2
  93. package/dist/src/presentation/web/lib/derive-graph.d.ts +4 -0
  94. package/dist/src/presentation/web/lib/derive-graph.d.ts.map +1 -1
  95. package/dist/src/presentation/web/lib/derive-graph.js +12 -0
  96. package/dist/src/presentation/web/lib/feature-flags.d.ts +0 -2
  97. package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
  98. package/dist/src/presentation/web/lib/feature-flags.js +0 -5
  99. package/dist/tsconfig.build.tsbuildinfo +1 -1
  100. package/package.json +1 -2
  101. package/web/.next/BUILD_ID +1 -1
  102. package/web/.next/build-manifest.json +2 -2
  103. package/web/.next/fallback-build-manifest.json +2 -2
  104. package/web/.next/prerender-manifest.json +3 -3
  105. package/web/.next/required-server-files.js +1 -1
  106. package/web/.next/required-server-files.json +1 -1
  107. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +80 -80
  108. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +1 -1
  109. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  110. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  111. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +80 -80
  112. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -1
  113. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  114. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  115. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +92 -92
  116. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +1 -1
  117. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  118. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  119. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +92 -92
  120. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -1
  121. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  122. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  123. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +76 -76
  124. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -1
  125. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  126. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  127. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +80 -80
  128. package/web/.next/server/app/(dashboard)/create/page.js +1 -1
  129. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  130. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  131. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +92 -92
  132. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +1 -1
  133. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  134. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  135. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +92 -92
  136. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -1
  137. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  138. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  139. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +76 -76
  140. package/web/.next/server/app/(dashboard)/page.js +1 -1
  141. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  142. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  143. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +76 -76
  144. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -1
  145. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  146. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  147. package/web/.next/server/app/_global-error.html +2 -2
  148. package/web/.next/server/app/_global-error.rsc +1 -1
  149. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  150. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  151. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  152. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  153. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  154. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +3 -3
  155. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  156. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  157. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  158. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  159. package/web/.next/server/app/settings/page/server-reference-manifest.json +8 -8
  160. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  161. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  162. package/web/.next/server/app/skills/page/server-reference-manifest.json +8 -8
  163. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  164. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  165. package/web/.next/server/app/tools/page/server-reference-manifest.json +8 -8
  166. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  167. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  168. package/web/.next/server/app/version/page/server-reference-manifest.json +3 -3
  169. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  170. package/web/.next/server/chunks/403f9_next_567de315._.js +2 -2
  171. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  172. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
  173. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +2 -2
  174. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
  175. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  176. package/web/.next/server/chunks/[root-of-the-server]__c6e32a23._.js +1 -1
  177. package/web/.next/server/chunks/[root-of-the-server]__c6e32a23._.js.map +1 -1
  178. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  179. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  180. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  181. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  182. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  183. package/web/.next/server/chunks/ssr/[root-of-the-server]__3ef34e4c._.js +1 -1
  184. package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js +1 -1
  185. package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js.map +1 -1
  186. package/web/.next/server/chunks/ssr/{[root-of-the-server]__a9079247._.js → [root-of-the-server]__61564698._.js} +2 -2
  187. package/web/.next/server/chunks/ssr/{[root-of-the-server]__944b653f._.js.map → [root-of-the-server]__61564698._.js.map} +1 -1
  188. package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.js +1 -1
  189. package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.js.map +1 -1
  190. package/web/.next/server/chunks/ssr/{[root-of-the-server]__1cf9161b._.js → [root-of-the-server]__74ab160c._.js} +2 -2
  191. package/web/.next/server/chunks/ssr/{[root-of-the-server]__a9079247._.js.map → [root-of-the-server]__74ab160c._.js.map} +1 -1
  192. package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js +1 -1
  193. package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js.map +1 -1
  194. package/web/.next/server/chunks/ssr/[root-of-the-server]__a5f9c6e5._.js +2 -2
  195. package/web/.next/server/chunks/ssr/[root-of-the-server]__a5f9c6e5._.js.map +1 -1
  196. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +2 -2
  197. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
  198. package/web/.next/server/chunks/ssr/{[root-of-the-server]__71b5d4e8._.js → [root-of-the-server]__bd16cded._.js} +2 -2
  199. package/web/.next/server/chunks/ssr/{[root-of-the-server]__71b5d4e8._.js.map → [root-of-the-server]__bd16cded._.js.map} +1 -1
  200. package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js +1 -1
  201. package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js.map +1 -1
  202. package/web/.next/server/chunks/ssr/{[root-of-the-server]__944b653f._.js → [root-of-the-server]__f14fffe1._.js} +2 -2
  203. package/web/.next/server/chunks/ssr/{[root-of-the-server]__1cf9161b._.js.map → [root-of-the-server]__f14fffe1._.js.map} +1 -1
  204. package/web/.next/server/chunks/ssr/_0020fddd._.js +1 -1
  205. package/web/.next/server/chunks/ssr/_0020fddd._.js.map +1 -1
  206. package/web/.next/server/chunks/ssr/_02ec1aea._.js +1 -1
  207. package/web/.next/server/chunks/ssr/_02ec1aea._.js.map +1 -1
  208. package/web/.next/server/chunks/ssr/{_7dd6c393._.js → _2fdfd9ab._.js} +2 -2
  209. package/web/.next/server/chunks/ssr/{_7dd6c393._.js.map → _2fdfd9ab._.js.map} +1 -1
  210. package/web/.next/server/chunks/ssr/_36059d08._.js +4 -0
  211. package/web/.next/server/chunks/ssr/_36059d08._.js.map +1 -0
  212. package/web/.next/server/chunks/ssr/{_7a4bfe44._.js → _65f6e0e0._.js} +3 -3
  213. package/web/.next/server/chunks/ssr/{_7a4bfe44._.js.map → _65f6e0e0._.js.map} +1 -1
  214. package/web/.next/server/chunks/ssr/_7dca1882._.js +1 -1
  215. package/web/.next/server/chunks/ssr/_7dca1882._.js.map +1 -1
  216. package/web/.next/server/chunks/ssr/_913fb649._.js +3 -0
  217. package/web/.next/server/chunks/ssr/{_7bc4a733._.js.map → _913fb649._.js.map} +1 -1
  218. package/web/.next/server/chunks/ssr/_a37f5f18._.js +1 -1
  219. package/web/.next/server/chunks/ssr/_a37f5f18._.js.map +1 -1
  220. package/web/.next/server/chunks/ssr/{_01383b12._.js → _a51673dd._.js} +2 -2
  221. package/web/.next/server/chunks/ssr/{_82cc1fcf._.js.map → _a51673dd._.js.map} +1 -1
  222. package/web/.next/server/chunks/ssr/_a9f57758._.js +1 -1
  223. package/web/.next/server/chunks/ssr/{_82cc1fcf._.js → _ae587066._.js} +2 -2
  224. package/web/.next/server/chunks/ssr/{_01383b12._.js.map → _ae587066._.js.map} +1 -1
  225. package/web/.next/server/chunks/ssr/{_3b9ec2d7._.js → _d162e30d._.js} +2 -2
  226. package/web/.next/server/chunks/ssr/{_3b9ec2d7._.js.map → _d162e30d._.js.map} +1 -1
  227. package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +1 -1
  228. package/web/.next/server/chunks/ssr/{_112b6fbf._.js → _d763f022._.js} +3 -3
  229. package/web/.next/server/chunks/ssr/{_112b6fbf._.js.map → _d763f022._.js.map} +1 -1
  230. package/web/.next/server/chunks/ssr/_d8575088._.js +1 -1
  231. package/web/.next/server/chunks/ssr/_d8575088._.js.map +1 -1
  232. package/web/.next/server/chunks/ssr/_f39a1adb._.js +1 -1
  233. package/web/.next/server/chunks/ssr/_f39a1adb._.js.map +1 -1
  234. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  235. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  236. package/web/.next/server/chunks/ssr/{src_presentation_web_99db45e9._.js → src_presentation_web_97dc2fb0._.js} +2 -2
  237. package/web/.next/server/chunks/ssr/{src_presentation_web_99db45e9._.js.map → src_presentation_web_97dc2fb0._.js.map} +1 -1
  238. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js +1 -1
  239. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js.map +1 -1
  240. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js +1 -1
  241. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js.map +1 -1
  242. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  243. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +1 -1
  244. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  245. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  246. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
  247. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
  248. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  249. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  250. package/web/.next/server/pages/500.html +2 -2
  251. package/web/.next/server/server-reference-manifest.js +1 -1
  252. package/web/.next/server/server-reference-manifest.json +463 -463
  253. package/web/.next/static/chunks/{18616dda443b7ed1.js → 0b7fe2ac4f078f54.js} +7 -7
  254. package/web/.next/static/chunks/{ac7469534efcc3b0.js → 2d6eb4409cc6324d.js} +1 -1
  255. package/web/.next/static/chunks/{acd8d06ded15d1ed.js → 3a7ff215d6a2c489.js} +2 -2
  256. package/web/.next/static/chunks/{dc8683ddff12ef38.js → 4b3e7454c2b07877.js} +1 -1
  257. package/web/.next/static/chunks/{745234c95baaf6df.js → 791e64500a080d4f.js} +1 -1
  258. package/web/.next/static/chunks/79c9871d46b22bf8.css +1 -0
  259. package/web/.next/static/chunks/7ee0606f698b032c.js +1 -0
  260. package/web/.next/static/chunks/87640f53f3bff3a6.js +1 -0
  261. package/web/.next/static/chunks/bb5bd1b5aafc70cd.js +1 -0
  262. package/web/.next/static/chunks/{cfcc46c87d712da6.js → bf0a401666f990e2.js} +1 -1
  263. package/web/.next/static/chunks/c4c3fcf18262b386.js +2 -0
  264. package/web/.next/static/chunks/{12511f976fedf4cb.js → cd14232b3d8f5052.js} +1 -1
  265. package/web/.next/static/chunks/{08d0fd276fa7ac89.js → dd8f2197640aea64.js} +1 -1
  266. package/web/.next/static/chunks/{47d110d7472840fd.js → fc442d957b35bd5e.js} +1 -1
  267. package/dist/packages/core/src/application/ports/output/services/coasts-service.interface.d.ts +0 -132
  268. package/dist/packages/core/src/application/ports/output/services/coasts-service.interface.d.ts.map +0 -1
  269. package/dist/packages/core/src/application/ports/output/services/coasts-service.interface.js +0 -12
  270. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-feature-flag-coasts-dev-server.d.ts +0 -11
  271. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-feature-flag-coasts-dev-server.d.ts.map +0 -1
  272. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-feature-flag-coasts-dev-server.js +0 -17
  273. package/dist/packages/core/src/infrastructure/services/coasts.service.d.ts +0 -42
  274. package/dist/packages/core/src/infrastructure/services/coasts.service.d.ts.map +0 -1
  275. package/dist/packages/core/src/infrastructure/services/coasts.service.js +0 -185
  276. package/dist/src/presentation/cli/commands/coasts/index.d.ts +0 -3
  277. package/dist/src/presentation/cli/commands/coasts/index.d.ts.map +0 -1
  278. package/dist/src/presentation/cli/commands/coasts/index.js +0 -7
  279. package/dist/src/presentation/cli/commands/coasts/init.command.d.ts +0 -3
  280. package/dist/src/presentation/cli/commands/coasts/init.command.d.ts.map +0 -1
  281. package/dist/src/presentation/cli/commands/coasts/init.command.js +0 -40
  282. package/dist/src/presentation/web/app/actions/check-coastfile.d.ts +0 -5
  283. package/dist/src/presentation/web/app/actions/check-coastfile.d.ts.map +0 -1
  284. package/dist/src/presentation/web/app/actions/check-coastfile.js +0 -16
  285. package/dist/src/presentation/web/app/actions/generate-coastfile.d.ts +0 -7
  286. package/dist/src/presentation/web/app/actions/generate-coastfile.d.ts.map +0 -1
  287. package/dist/src/presentation/web/app/actions/generate-coastfile.js +0 -22
  288. package/dist/src/presentation/web/coasts-dev-server.d.ts +0 -34
  289. package/dist/src/presentation/web/coasts-dev-server.d.ts.map +0 -1
  290. package/dist/src/presentation/web/coasts-dev-server.js +0 -69
  291. package/dist/src/presentation/web/components/common/repository-node/use-coasts-actions.d.ts +0 -12
  292. package/dist/src/presentation/web/components/common/repository-node/use-coasts-actions.d.ts.map +0 -1
  293. package/dist/src/presentation/web/components/common/repository-node/use-coasts-actions.js +0 -76
  294. package/web/.next/server/chunks/ssr/_12282083._.js +0 -4
  295. package/web/.next/server/chunks/ssr/_12282083._.js.map +0 -1
  296. package/web/.next/server/chunks/ssr/_7bc4a733._.js +0 -3
  297. package/web/.next/static/chunks/0d4f2f0257e78c06.css +0 -1
  298. package/web/.next/static/chunks/1f321d18af8d8b30.js +0 -1
  299. package/web/.next/static/chunks/891d57985c5f3a0b.js +0 -1
  300. package/web/.next/static/chunks/dfe1ea2ffdc06c44.js +0 -2
  301. package/web/.next/static/chunks/fe54542759c9fd27.js +0 -1
  302. /package/web/.next/static/{YPdE95T5GezMRcw-C6nfC → JaRBeVSDLWZLQIl_k7ChK}/_buildManifest.js +0 -0
  303. /package/web/.next/static/{YPdE95T5GezMRcw-C6nfC → JaRBeVSDLWZLQIl_k7ChK}/_clientMiddlewareManifest.json +0 -0
  304. /package/web/.next/static/{YPdE95T5GezMRcw-C6nfC → JaRBeVSDLWZLQIl_k7ChK}/_ssgManifest.js +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shepai/cli",
3
- "version": "1.136.0-pr437.9f802f1",
3
+ "version": "1.136.0-pr440.bb6800a",
4
4
  "description": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -44,7 +44,6 @@
44
44
  "dev:cli": "tsx src/presentation/cli/index.ts",
45
45
  "dev:web": "tsx --tsconfig tsconfig.json src/presentation/web/dev-server.ts",
46
46
  "dev:storybook": "storybook dev -p 6006",
47
- "dev:coasts": "NEXT_PUBLIC_FLAG_COASTS_DEV_SERVER=true pnpm dev:web",
48
47
  "generate": "pnpm tsp:codegen",
49
48
  "tsp:codegen": "tsp compile tsp/ --emit @typespec-tools/emitter-typescript && prettier --write packages/core/src/domain/generated/",
50
49
  "build:cli": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json --resolve-full-paths && shx mkdir -p dist/packages/core/src/infrastructure/services/tool-installer && shx rm -rf dist/packages/core/src/infrastructure/services/tool-installer/tools && shx cp -r packages/core/src/infrastructure/services/tool-installer/tools dist/packages/core/src/infrastructure/services/tool-installer/tools",
@@ -1 +1 @@
1
- YPdE95T5GezMRcw-C6nfC
1
+ JaRBeVSDLWZLQIl_k7ChK
@@ -7,8 +7,8 @@
7
7
  "static/chunks/a6dad97d9634a72d.js"
8
8
  ],
9
9
  "lowPriorityFiles": [
10
- "static/YPdE95T5GezMRcw-C6nfC/_ssgManifest.js",
11
- "static/YPdE95T5GezMRcw-C6nfC/_buildManifest.js"
10
+ "static/JaRBeVSDLWZLQIl_k7ChK/_ssgManifest.js",
11
+ "static/JaRBeVSDLWZLQIl_k7ChK/_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/YPdE95T5GezMRcw-C6nfC/_ssgManifest.js",
9
- "static/YPdE95T5GezMRcw-C6nfC/_buildManifest.js"
8
+ "static/JaRBeVSDLWZLQIl_k7ChK/_ssgManifest.js",
9
+ "static/JaRBeVSDLWZLQIl_k7ChK/_buildManifest.js"
10
10
  ],
11
11
  "rootMainFiles": []
12
12
  }
@@ -29,8 +29,8 @@
29
29
  "dynamicRoutes": {},
30
30
  "notFoundRoutes": [],
31
31
  "preview": {
32
- "previewModeId": "a1f6fc3fa24f86e977d8f05e4d34341e",
33
- "previewModeSigningKey": "0f9b84f85c30943fc24dc2c7f0976190b4536de12640294afccbbb45f6a4efbb",
34
- "previewModeEncryptionKey": "da1f0099c982a998fcb14ad13410ca4e9c2d98438a325cc15d092566c8e0e303"
32
+ "previewModeId": "884baefb84f7fa944c060b39056d7293",
33
+ "previewModeSigningKey": "e543cdb2f7012ba6e00b9eab0ab172577dcc73a8796ec88d63e182a44850cf2c",
34
+ "previewModeEncryptionKey": "c2c4723988d284932cdf2cb3f782723003d1d7b3e5d1abe698738547f3223335"
35
35
  }
36
36
  }
@@ -6,7 +6,7 @@ self.__SERVER_FILES_MANIFEST={
6
6
  "NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
7
7
  "NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
8
8
  "NEXT_PUBLIC_SHEP_BRANCH": "HEAD",
9
- "NEXT_PUBLIC_SHEP_COMMIT": "9f802f118258e960ac60da6e554e0ef08d23a426",
9
+ "NEXT_PUBLIC_SHEP_COMMIT": "bb6800a98d4fba0802dbbdf9de1be27cb465a71a",
10
10
  "NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/cli/cli/src/presentation/web"
11
11
  },
12
12
  "webpack": null,
@@ -6,7 +6,7 @@
6
6
  "NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
7
7
  "NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
8
8
  "NEXT_PUBLIC_SHEP_BRANCH": "HEAD",
9
- "NEXT_PUBLIC_SHEP_COMMIT": "9f802f118258e960ac60da6e554e0ef08d23a426",
9
+ "NEXT_PUBLIC_SHEP_COMMIT": "bb6800a98d4fba0802dbbdf9de1be27cb465a71a",
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
- "00f4c0510b7896bf7f6909487e56e442fb6f4bfd1d": {
3
+ "00071368ecec7e095a7322ae738a166761a24638b7": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/adopt/page": {
6
- "moduleId": 14765,
6
+ "moduleId": 90191,
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
- "406e2b4208364a359a0d0ec773746cc6a71f13fca3": {
18
+ "40eecf3f9e755160a22929db838e7e841e7736c7be": {
19
19
  "workers": {
20
20
  "app/(dashboard)/@drawer/adopt/page": {
21
- "moduleId": 14765,
21
+ "moduleId": 90191,
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
- "4009c2d064d135006be612d5d66241df7d8c819705": {
33
+ "4085dc7531dbffb7ce94b3f6cf25fa6d3dded27af2": {
34
34
  "workers": {
35
35
  "app/(dashboard)/@drawer/adopt/page": {
36
- "moduleId": 14765,
36
+ "moduleId": 90191,
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
- "403a0515ffb69760680d84f162f15a26fb9954e9a7": {
48
+ "408ed13a22592b679b32422b3fda53265488b6edbc": {
49
49
  "workers": {
50
50
  "app/(dashboard)/@drawer/adopt/page": {
51
- "moduleId": 14765,
51
+ "moduleId": 90191,
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
- "401d82ec540939c4973dd8dba45c12284dbaa3b022": {
63
+ "404d08d76635e4bb7531e52ed98a675498a4674525": {
64
64
  "workers": {
65
65
  "app/(dashboard)/@drawer/adopt/page": {
66
- "moduleId": 14765,
66
+ "moduleId": 90191,
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
- "406e3e20054d678ee9a4b02cee97e70590b71cf4f8": {
78
+ "401fe2ed6769139e86d0032a8dd2ea8e09d897da74": {
79
79
  "workers": {
80
80
  "app/(dashboard)/@drawer/adopt/page": {
81
- "moduleId": 14765,
81
+ "moduleId": 90191,
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
- "409b9ea74c13c9bb37076705587b972a7321da7d17": {
93
+ "40484da9a0a8ef60730bc55986c1d77bc45467cf43": {
94
94
  "workers": {
95
95
  "app/(dashboard)/@drawer/adopt/page": {
96
- "moduleId": 14765,
96
+ "moduleId": 90191,
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
- "401b8cf69f3dd5ced3c3817e27322f35ce7fd3e4a5": {
108
+ "40798a97d4baa4404df781010acdef0841a2b8141e": {
109
109
  "workers": {
110
110
  "app/(dashboard)/@drawer/adopt/page": {
111
- "moduleId": 14765,
111
+ "moduleId": 90191,
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
- "408d6b2869ca50a3b1d042a34e20f97cd392a1dd81": {
123
+ "407c0f52f4999a18bc3ff124feaaa7faa3ad9c2e59": {
124
124
  "workers": {
125
125
  "app/(dashboard)/@drawer/adopt/page": {
126
- "moduleId": 14765,
126
+ "moduleId": 90191,
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
- "403fa20172ad2174a7e6df9ff250848d9df45c8ded": {
138
+ "40dc5fcc31c5259df5c27878a3a56723d14f7a9440": {
139
139
  "workers": {
140
140
  "app/(dashboard)/@drawer/adopt/page": {
141
- "moduleId": 14765,
141
+ "moduleId": 90191,
142
142
  "async": false,
143
143
  "exportedName": "openFolder",
144
144
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -150,40 +150,10 @@
150
150
  "exportedName": "openFolder",
151
151
  "filename": "src/presentation/web/app/actions/open-folder.ts"
152
152
  },
153
- "40ec3a7d01cc9b423a747b4107dd76c1bf9da539e2": {
153
+ "40fd098583a9785b4fa8af2e7c7ff2e38a593ef803": {
154
154
  "workers": {
155
155
  "app/(dashboard)/@drawer/adopt/page": {
156
- "moduleId": 14765,
157
- "async": false,
158
- "exportedName": "generateCoastfileAction",
159
- "filename": "src/presentation/web/app/actions/generate-coastfile.ts"
160
- }
161
- },
162
- "layer": {
163
- "app/(dashboard)/@drawer/adopt/page": "action-browser"
164
- },
165
- "exportedName": "generateCoastfileAction",
166
- "filename": "src/presentation/web/app/actions/generate-coastfile.ts"
167
- },
168
- "407e9a9dd1e5b4c3a7a946b6ff8ef42e8df7fb73e1": {
169
- "workers": {
170
- "app/(dashboard)/@drawer/adopt/page": {
171
- "moduleId": 14765,
172
- "async": false,
173
- "exportedName": "checkCoastfileAction",
174
- "filename": "src/presentation/web/app/actions/check-coastfile.ts"
175
- }
176
- },
177
- "layer": {
178
- "app/(dashboard)/@drawer/adopt/page": "action-browser"
179
- },
180
- "exportedName": "checkCoastfileAction",
181
- "filename": "src/presentation/web/app/actions/check-coastfile.ts"
182
- },
183
- "40452888ec6490296d9cbb563432fc89e230a574fd": {
184
- "workers": {
185
- "app/(dashboard)/@drawer/adopt/page": {
186
- "moduleId": 14765,
156
+ "moduleId": 90191,
187
157
  "async": false,
188
158
  "exportedName": "getDeploymentLogs",
189
159
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
@@ -195,10 +165,10 @@
195
165
  "exportedName": "getDeploymentLogs",
196
166
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
197
167
  },
198
- "0098548827b07c16f76527f9d924de133d6ecf816a": {
168
+ "005483df114746b70dd31daae1c7a706ea7fac13e2": {
199
169
  "workers": {
200
170
  "app/(dashboard)/@drawer/adopt/page": {
201
- "moduleId": 14765,
171
+ "moduleId": 90191,
202
172
  "async": false,
203
173
  "exportedName": "isAgentSetupComplete",
204
174
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
@@ -210,10 +180,10 @@
210
180
  "exportedName": "isAgentSetupComplete",
211
181
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
212
182
  },
213
- "00539f0d0216832a0b08e0d71f2511cae01725c328": {
183
+ "000548acd5be67eeff67bce406a7cbf3f8f9c8614f": {
214
184
  "workers": {
215
185
  "app/(dashboard)/@drawer/adopt/page": {
216
- "moduleId": 14765,
186
+ "moduleId": 90191,
217
187
  "async": false,
218
188
  "exportedName": "checkAgentAuth",
219
189
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
@@ -225,10 +195,10 @@
225
195
  "exportedName": "checkAgentAuth",
226
196
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
227
197
  },
228
- "00724cccffcfa9c6a0bf487119943cf2629c0aa445": {
198
+ "00665e4726e4a206a48902b68f17a643495c308ede": {
229
199
  "workers": {
230
200
  "app/(dashboard)/@drawer/adopt/page": {
231
- "moduleId": 14765,
201
+ "moduleId": 90191,
232
202
  "async": false,
233
203
  "exportedName": "checkToolStatus",
234
204
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
@@ -240,10 +210,10 @@
240
210
  "exportedName": "checkToolStatus",
241
211
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
242
212
  },
243
- "009ec7c52cfebfb7642b8da08eb19a7d3dd4494aba": {
213
+ "00b6aaa63acccbf1a77db62d8b4ff85f9dc4fe7b0a": {
244
214
  "workers": {
245
215
  "app/(dashboard)/@drawer/adopt/page": {
246
- "moduleId": 14765,
216
+ "moduleId": 90191,
247
217
  "async": false,
248
218
  "exportedName": "getAllAgentModels",
249
219
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -255,10 +225,10 @@
255
225
  "exportedName": "getAllAgentModels",
256
226
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
257
227
  },
258
- "60835b3e1b32b8e071881bff77721d386067d666c4": {
228
+ "60f3a382947bf150bfea448e11c59bcd42b6884929": {
259
229
  "workers": {
260
230
  "app/(dashboard)/@drawer/adopt/page": {
261
- "moduleId": 14765,
231
+ "moduleId": 90191,
262
232
  "async": false,
263
233
  "exportedName": "updateAgentAndModel",
264
234
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -270,10 +240,25 @@
270
240
  "exportedName": "updateAgentAndModel",
271
241
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
272
242
  },
273
- "78d2071c86fa115ebe9d9c9bc427190f48bd89ecbb": {
243
+ "400aaeef828b97f8f457b2677f4d47373080f13fc2": {
274
244
  "workers": {
275
245
  "app/(dashboard)/@drawer/adopt/page": {
276
- "moduleId": 14765,
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
+ "781b2e1aa9eb838886be29cfd62f103950119cad07": {
259
+ "workers": {
260
+ "app/(dashboard)/@drawer/adopt/page": {
261
+ "moduleId": 90191,
277
262
  "async": false,
278
263
  "exportedName": "deleteFeature",
279
264
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
@@ -285,10 +270,10 @@
285
270
  "exportedName": "deleteFeature",
286
271
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
287
272
  },
288
- "408f7d325b25274c0208657fbcea9e1d532343af7a": {
273
+ "40a806ba726721253704f38a8116db438be5d86686": {
289
274
  "workers": {
290
275
  "app/(dashboard)/@drawer/adopt/page": {
291
- "moduleId": 14765,
276
+ "moduleId": 90191,
292
277
  "async": false,
293
278
  "exportedName": "resumeFeature",
294
279
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
@@ -300,10 +285,10 @@
300
285
  "exportedName": "resumeFeature",
301
286
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
302
287
  },
303
- "400709c3ddc8521504d83f671d6d260f69af4aa1af": {
288
+ "40aa612a01ba3e3ba1f5bf3bdce3b2c7c9980ea082": {
304
289
  "workers": {
305
290
  "app/(dashboard)/@drawer/adopt/page": {
306
- "moduleId": 14765,
291
+ "moduleId": 90191,
307
292
  "async": false,
308
293
  "exportedName": "startFeature",
309
294
  "filename": "src/presentation/web/app/actions/start-feature.ts"
@@ -315,10 +300,10 @@
315
300
  "exportedName": "startFeature",
316
301
  "filename": "src/presentation/web/app/actions/start-feature.ts"
317
302
  },
318
- "403090eb8658e660266389962391b1665ecd5f7740": {
303
+ "4073def04302b678d33af6dfacfd05213406a9b87e": {
319
304
  "workers": {
320
305
  "app/(dashboard)/@drawer/adopt/page": {
321
- "moduleId": 14765,
306
+ "moduleId": 90191,
322
307
  "async": false,
323
308
  "exportedName": "stopFeature",
324
309
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
@@ -330,10 +315,25 @@
330
315
  "exportedName": "stopFeature",
331
316
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
332
317
  },
333
- "40e8c748900a60c807f1b9470f14bcfd3ddf5b7e90": {
318
+ "40af54b841c595719d9b1c40db7e8d594587188f5a": {
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
+ "40195b3d4421d6c26d8b964939f11978c94fd5ec29": {
334
334
  "workers": {
335
335
  "app/(dashboard)/@drawer/adopt/page": {
336
- "moduleId": 14765,
336
+ "moduleId": 90191,
337
337
  "async": false,
338
338
  "exportedName": "addRepository",
339
339
  "filename": "src/presentation/web/app/actions/add-repository.ts"
@@ -345,10 +345,10 @@
345
345
  "exportedName": "addRepository",
346
346
  "filename": "src/presentation/web/app/actions/add-repository.ts"
347
347
  },
348
- "404296d3e2e70145d9edf5253e1fd325d8aef80144": {
348
+ "404ba1838d447a97052dd5b3609ce4594f5ae0a3d3": {
349
349
  "workers": {
350
350
  "app/(dashboard)/@drawer/adopt/page": {
351
- "moduleId": 14765,
351
+ "moduleId": 90191,
352
352
  "async": false,
353
353
  "exportedName": "deleteRepository",
354
354
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
@@ -360,10 +360,10 @@
360
360
  "exportedName": "deleteRepository",
361
361
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
362
362
  },
363
- "409cdfc75ad498d847b11b92cdcca157a373fc4c62": {
363
+ "4069671f37adf8a653708fb55e355e29c8bd12f5de": {
364
364
  "workers": {
365
365
  "app/(dashboard)/@drawer/adopt/page": {
366
- "moduleId": 14765,
366
+ "moduleId": 90191,
367
367
  "async": false,
368
368
  "exportedName": "getFeatureMetadata",
369
369
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
@@ -375,10 +375,10 @@
375
375
  "exportedName": "getFeatureMetadata",
376
376
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
377
377
  },
378
- "401022a79d402cb199e97649185f8523396b3ac00d": {
378
+ "4039c0be49c0aef16bfdc8103a67155f13dc56ee4a": {
379
379
  "workers": {
380
380
  "app/(dashboard)/@drawer/adopt/page": {
381
- "moduleId": 14765,
381
+ "moduleId": 90191,
382
382
  "async": false,
383
383
  "exportedName": "adoptBranch",
384
384
  "filename": "src/presentation/web/app/actions/adopt-branch.ts"
@@ -390,10 +390,10 @@
390
390
  "exportedName": "adoptBranch",
391
391
  "filename": "src/presentation/web/app/actions/adopt-branch.ts"
392
392
  },
393
- "40fac57bdecd48cab725bf06890fa400239a68747f": {
393
+ "407f224081f66c551494bfa91df384cc6de9645d19": {
394
394
  "workers": {
395
395
  "app/(dashboard)/@drawer/adopt/page": {
396
- "moduleId": 14765,
396
+ "moduleId": 90191,
397
397
  "async": false,
398
398
  "exportedName": "listBranches",
399
399
  "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/_3b9ec2d7._.js")
18
+ R.c("server/chunks/ssr/_d162e30d._.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