@shepai/cli 1.137.0 → 1.138.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 (252) hide show
  1. package/apis/json-schema/Feature.yaml +3 -0
  2. package/apis/json-schema/SdlcLifecycle.yaml +1 -0
  3. package/dist/packages/core/src/application/ports/output/repositories/feature-repository.interface.d.ts +2 -0
  4. package/dist/packages/core/src/application/ports/output/repositories/feature-repository.interface.d.ts.map +1 -1
  5. package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.d.ts +20 -0
  6. package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.d.ts.map +1 -0
  7. package/dist/packages/core/src/application/use-cases/features/archive-feature.use-case.js +73 -0
  8. package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.d.ts +20 -0
  9. package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.d.ts.map +1 -0
  10. package/dist/packages/core/src/application/use-cases/features/unarchive-feature.use-case.js +65 -0
  11. package/dist/packages/core/src/domain/generated/output.d.ts +6 -1
  12. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  13. package/dist/packages/core/src/domain/generated/output.js +1 -0
  14. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  15. package/dist/packages/core/src/infrastructure/di/container.js +10 -0
  16. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts +1 -0
  17. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts.map +1 -1
  18. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.js +6 -0
  19. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.d.ts +12 -0
  20. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.d.ts.map +1 -0
  21. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/044-add-previous-lifecycle.js +16 -0
  22. package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.d.ts.map +1 -1
  23. package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.js +7 -2
  24. package/dist/src/presentation/cli/commands/feat/archive.command.d.ts +18 -0
  25. package/dist/src/presentation/cli/commands/feat/archive.command.d.ts.map +1 -0
  26. package/dist/src/presentation/cli/commands/feat/archive.command.js +54 -0
  27. package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
  28. package/dist/src/presentation/cli/commands/feat/index.js +5 -1
  29. package/dist/src/presentation/cli/commands/feat/ls.command.d.ts.map +1 -1
  30. package/dist/src/presentation/cli/commands/feat/ls.command.js +5 -0
  31. package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts +17 -0
  32. package/dist/src/presentation/cli/commands/feat/unarchive.command.d.ts.map +1 -0
  33. package/dist/src/presentation/cli/commands/feat/unarchive.command.js +42 -0
  34. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
  35. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +6 -1
  36. package/dist/src/presentation/web/app/actions/archive-feature.d.ts +6 -0
  37. package/dist/src/presentation/web/app/actions/archive-feature.d.ts.map +1 -0
  38. package/dist/src/presentation/web/app/actions/archive-feature.js +16 -0
  39. package/dist/src/presentation/web/app/actions/unarchive-feature.d.ts +6 -0
  40. package/dist/src/presentation/web/app/actions/unarchive-feature.d.ts.map +1 -0
  41. package/dist/src/presentation/web/app/actions/unarchive-feature.js +16 -0
  42. package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -1
  43. package/dist/src/presentation/web/app/api/agent-events/route.js +1 -0
  44. package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.d.ts.map +1 -1
  45. package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.js +6 -0
  46. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +3 -1
  47. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  48. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.js +11 -1
  49. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  50. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +25 -8
  51. package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts +5 -0
  52. package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.d.ts.map +1 -1
  53. package/dist/src/presentation/web/components/common/feature-node/feature-node.stories.js +75 -1
  54. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  55. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +13 -4
  56. package/dist/src/presentation/web/components/features/control-center/control-center.stories.d.ts +6 -0
  57. package/dist/src/presentation/web/components/features/control-center/control-center.stories.d.ts.map +1 -1
  58. package/dist/src/presentation/web/components/features/control-center/control-center.stories.js +70 -0
  59. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +6 -0
  60. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  61. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +50 -2
  62. package/dist/src/presentation/web/components/layouts/app-shell/app-shell.d.ts.map +1 -1
  63. package/dist/src/presentation/web/components/layouts/app-shell/app-shell.js +1 -3
  64. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  65. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +45 -5
  66. package/dist/src/presentation/web/hooks/sidebar-features-context.d.ts.map +1 -1
  67. package/dist/src/presentation/web/hooks/sidebar-features-context.js +1 -0
  68. package/dist/src/presentation/web/hooks/use-graph-state.d.ts +1 -1
  69. package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
  70. package/dist/src/presentation/web/hooks/use-graph-state.js +17 -2
  71. package/dist/src/presentation/web/hooks/use-sound-action.d.ts +4 -4
  72. package/dist/src/presentation/web/hooks/use-sound-action.js +2 -2
  73. package/dist/src/presentation/web/lib/derive-graph.d.ts +4 -0
  74. package/dist/src/presentation/web/lib/derive-graph.d.ts.map +1 -1
  75. package/dist/src/presentation/web/lib/derive-graph.js +11 -0
  76. package/dist/tsconfig.build.tsbuildinfo +1 -1
  77. package/package.json +1 -1
  78. package/web/.next/BUILD_ID +1 -1
  79. package/web/.next/build-manifest.json +2 -2
  80. package/web/.next/fallback-build-manifest.json +2 -2
  81. package/web/.next/prerender-manifest.json +3 -3
  82. package/web/.next/required-server-files.js +2 -2
  83. package/web/.next/required-server-files.json +2 -2
  84. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +82 -52
  85. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +1 -1
  86. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  87. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  88. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +82 -52
  89. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -1
  90. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  91. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  92. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +98 -68
  93. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +1 -1
  94. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  95. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  96. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +98 -68
  97. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -1
  98. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  99. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  100. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +78 -48
  101. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -1
  102. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  103. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  104. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +82 -52
  105. package/web/.next/server/app/(dashboard)/create/page.js +1 -1
  106. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  107. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  108. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +98 -68
  109. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +1 -1
  110. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  111. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  112. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +98 -68
  113. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -1
  114. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  115. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  116. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +78 -48
  117. package/web/.next/server/app/(dashboard)/page.js +1 -1
  118. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  119. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  120. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +78 -48
  121. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -1
  122. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  123. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  124. package/web/.next/server/app/_global-error.html +2 -2
  125. package/web/.next/server/app/_global-error.rsc +1 -1
  126. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  127. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  128. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  129. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  130. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  131. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +3 -3
  132. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  133. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  134. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  135. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  136. package/web/.next/server/app/settings/page/server-reference-manifest.json +8 -8
  137. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  138. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  139. package/web/.next/server/app/skills/page/server-reference-manifest.json +8 -8
  140. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  141. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  142. package/web/.next/server/app/tools/page/server-reference-manifest.json +8 -8
  143. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  144. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  145. package/web/.next/server/app/version/page/server-reference-manifest.json +3 -3
  146. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  147. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  148. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
  149. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +2 -2
  150. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
  151. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  152. package/web/.next/server/chunks/[root-of-the-server]__c6e32a23._.js +1 -1
  153. package/web/.next/server/chunks/[root-of-the-server]__c6e32a23._.js.map +1 -1
  154. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  155. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  156. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  157. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  158. package/web/.next/server/chunks/ssr/{[root-of-the-server]__90fdc0ee._.js → [root-of-the-server]__2c703b78._.js} +2 -2
  159. package/web/.next/server/chunks/ssr/{[root-of-the-server]__90fdc0ee._.js.map → [root-of-the-server]__2c703b78._.js.map} +1 -1
  160. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  161. package/web/.next/server/chunks/ssr/[root-of-the-server]__3ef34e4c._.js +1 -1
  162. package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js +1 -1
  163. package/web/.next/server/chunks/ssr/[root-of-the-server]__43f51aa6._.js.map +1 -1
  164. package/web/.next/server/chunks/ssr/{[root-of-the-server]__1626f5d7._.js → [root-of-the-server]__59a3897b._.js} +2 -2
  165. package/web/.next/server/chunks/ssr/{[root-of-the-server]__1626f5d7._.js.map → [root-of-the-server]__59a3897b._.js.map} +1 -1
  166. package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.js +1 -1
  167. package/web/.next/server/chunks/ssr/[root-of-the-server]__6ec59045._.js.map +1 -1
  168. package/web/.next/server/chunks/ssr/{[root-of-the-server]__49557873._.js → [root-of-the-server]__78aecdd5._.js} +2 -2
  169. package/web/.next/server/chunks/ssr/{[root-of-the-server]__a7259d16._.js.map → [root-of-the-server]__78aecdd5._.js.map} +1 -1
  170. package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js +1 -1
  171. package/web/.next/server/chunks/ssr/[root-of-the-server]__815546bd._.js.map +1 -1
  172. package/web/.next/server/chunks/ssr/[root-of-the-server]__a5f9c6e5._.js +2 -2
  173. package/web/.next/server/chunks/ssr/[root-of-the-server]__a5f9c6e5._.js.map +1 -1
  174. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +2 -2
  175. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +1 -1
  176. package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js +1 -1
  177. package/web/.next/server/chunks/ssr/[root-of-the-server]__d48c5b11._.js.map +1 -1
  178. package/web/.next/server/chunks/ssr/{[root-of-the-server]__a7259d16._.js → [root-of-the-server]__f222995d._.js} +2 -2
  179. package/web/.next/server/chunks/ssr/{[root-of-the-server]__49557873._.js.map → [root-of-the-server]__f222995d._.js.map} +1 -1
  180. package/web/.next/server/chunks/ssr/_0020fddd._.js +1 -1
  181. package/web/.next/server/chunks/ssr/_0020fddd._.js.map +1 -1
  182. package/web/.next/server/chunks/ssr/_02ec1aea._.js +1 -1
  183. package/web/.next/server/chunks/ssr/_02ec1aea._.js.map +1 -1
  184. package/web/.next/server/chunks/ssr/{_48a8ee28._.js → _0c5f56e3._.js} +3 -3
  185. package/web/.next/server/chunks/ssr/{_6e8c85b1._.js.map → _0c5f56e3._.js.map} +1 -1
  186. package/web/.next/server/chunks/ssr/{_1a09002f._.js → _1b719e7f._.js} +2 -2
  187. package/web/.next/server/chunks/ssr/{_939287c5._.js.map → _1b719e7f._.js.map} +1 -1
  188. package/web/.next/server/chunks/ssr/_1c296899._.js +4 -0
  189. package/web/.next/server/chunks/ssr/_1c296899._.js.map +1 -0
  190. package/web/.next/server/chunks/ssr/_2119691d._.js +3 -0
  191. package/web/.next/server/chunks/ssr/{_037421b9._.js.map → _2119691d._.js.map} +1 -1
  192. package/web/.next/server/chunks/ssr/{_939287c5._.js → _37e8548b._.js} +2 -2
  193. package/web/.next/server/chunks/ssr/{_149f6559._.js.map → _37e8548b._.js.map} +1 -1
  194. package/web/.next/server/chunks/ssr/{_149f6559._.js → _55d763e2._.js} +2 -2
  195. package/web/.next/server/chunks/ssr/{_1a09002f._.js.map → _55d763e2._.js.map} +1 -1
  196. package/web/.next/server/chunks/ssr/{_6e8c85b1._.js → _64bdfc6f._.js} +3 -3
  197. package/web/.next/server/chunks/ssr/{_48a8ee28._.js.map → _64bdfc6f._.js.map} +1 -1
  198. package/web/.next/server/chunks/ssr/_7dca1882._.js +1 -1
  199. package/web/.next/server/chunks/ssr/_7dca1882._.js.map +1 -1
  200. package/web/.next/server/chunks/ssr/_a9f57758._.js +1 -1
  201. package/web/.next/server/chunks/ssr/_a9f57758._.js.map +1 -1
  202. package/web/.next/server/chunks/ssr/{_83220ba0._.js → _b71645b4._.js} +2 -2
  203. package/web/.next/server/chunks/ssr/{_83220ba0._.js.map → _b71645b4._.js.map} +1 -1
  204. package/web/.next/server/chunks/ssr/_d4b20e29._.js.map +1 -1
  205. package/web/.next/server/chunks/ssr/_d8575088._.js +1 -1
  206. package/web/.next/server/chunks/ssr/_d8575088._.js.map +1 -1
  207. package/web/.next/server/chunks/ssr/_f39a1adb._.js +1 -1
  208. package/web/.next/server/chunks/ssr/_f39a1adb._.js.map +1 -1
  209. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  210. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  211. package/web/.next/server/chunks/ssr/{src_presentation_web_951640a3._.js → src_presentation_web_844c9657._.js} +2 -2
  212. package/web/.next/server/chunks/ssr/{src_presentation_web_951640a3._.js.map → src_presentation_web_844c9657._.js.map} +1 -1
  213. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js +1 -1
  214. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1b176e3c.js.map +1 -1
  215. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js +1 -1
  216. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_bd9f0dda.js.map +1 -1
  217. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  218. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +1 -1
  219. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  220. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  221. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
  222. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
  223. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  224. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  225. package/web/.next/server/pages/500.html +2 -2
  226. package/web/.next/server/server-reference-manifest.js +1 -1
  227. package/web/.next/server/server-reference-manifest.json +484 -328
  228. package/web/.next/static/chunks/0e9ca746aadf6c8d.js +1 -0
  229. package/web/.next/static/chunks/{92d66288f6e5f235.js → 2e9491b73bcb5948.js} +1 -1
  230. package/web/.next/static/chunks/{5fe8c723c668f1ef.js → 3722a9f53d9069d1.js} +2 -2
  231. package/web/.next/static/chunks/47ae402c9d3ad1ca.js +1 -0
  232. package/web/.next/static/chunks/4c760047d0972f96.js +2 -0
  233. package/web/.next/static/chunks/{f3e37f559952d6a1.js → 6c097d096a289e07.js} +1 -1
  234. package/web/.next/static/chunks/{f070c67389a686ff.js → 7e7537ab107a5ed5.js} +1 -1
  235. package/web/.next/static/chunks/{e4024647334fa56f.js → a2a9cfdc7ff45d62.js} +1 -1
  236. package/web/.next/static/chunks/{0bd451437bb30264.js → ad74ee85368e7d04.js} +1 -1
  237. package/web/.next/static/chunks/{5aa808c7bec008f3.js → c581e1010c5c217e.js} +1 -1
  238. package/web/.next/static/chunks/{29fe67f664ff2dc6.js → ce8197531c98b4ea.js} +1 -1
  239. package/web/.next/static/chunks/eb35e98c31806836.css +1 -0
  240. package/web/.next/static/chunks/{d73ad54d54cd7e1d.js → ec01c627aae92366.js} +1 -1
  241. package/web/.next/static/chunks/f15f1f16948e7263.js +1 -0
  242. package/web/.next/server/chunks/ssr/_037421b9._.js +0 -3
  243. package/web/.next/server/chunks/ssr/_9cb5f6e3._.js +0 -4
  244. package/web/.next/server/chunks/ssr/_9cb5f6e3._.js.map +0 -1
  245. package/web/.next/static/chunks/ab3afb0b942c1eb2.css +0 -1
  246. package/web/.next/static/chunks/c17f8118fc760923.js +0 -1
  247. package/web/.next/static/chunks/c473e2924fbd8fd1.js +0 -1
  248. package/web/.next/static/chunks/db80bb0df7318fac.js +0 -2
  249. package/web/.next/static/chunks/fa89e48e0d67e4dc.js +0 -1
  250. /package/web/.next/static/{i847vZGPwgKFPH7P5kTBl → 0zlf5ntHpnR5YfkgEsA-1}/_buildManifest.js +0 -0
  251. /package/web/.next/static/{i847vZGPwgKFPH7P5kTBl → 0zlf5ntHpnR5YfkgEsA-1}/_clientMiddlewareManifest.json +0 -0
  252. /package/web/.next/static/{i847vZGPwgKFPH7P5kTBl → 0zlf5ntHpnR5YfkgEsA-1}/_ssgManifest.js +0 -0
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "node": {
3
- "00e086cc458c45ec9027fa28edb05fd6eac687cbc8": {
3
+ "00c0d515fcc1c3f74384831ddf204132b3d99a05e7": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/create/page": {
6
- "moduleId": 9488,
6
+ "moduleId": 37633,
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
- "407181c95b80da4de451a2bdcd86f76479fde3880f": {
18
+ "40fafcaec4ebd44a59035385fc00e086706fd923e2": {
19
19
  "workers": {
20
20
  "app/(dashboard)/@drawer/create/page": {
21
- "moduleId": 9488,
21
+ "moduleId": 37633,
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
- "40edd5ff61e736bd47673f9e214f782d127ab7c153": {
33
+ "40d064732988b84d2c7b0f387f57f176aa5b91a906": {
34
34
  "workers": {
35
35
  "app/(dashboard)/@drawer/create/page": {
36
- "moduleId": 9488,
36
+ "moduleId": 37633,
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
- "4076eec7663afff5abf7428847a1f335a32ac3e2a5": {
48
+ "40e34b1ef40ef7e0ef74262f0bf9bef0beb6a99489": {
49
49
  "workers": {
50
50
  "app/(dashboard)/@drawer/create/page": {
51
- "moduleId": 9488,
51
+ "moduleId": 37633,
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
- "40a6b00f66be8fa33980f558cc79887aa5443c5d3d": {
63
+ "404a3e6f2f3941b1d26b522ffb2ddde7c429d61c43": {
64
64
  "workers": {
65
65
  "app/(dashboard)/@drawer/create/page": {
66
- "moduleId": 9488,
66
+ "moduleId": 37633,
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
- "4012fbe6e19c0335de5fe04f447eb172ffc167ddf8": {
78
+ "40b5c525be8729d1d0018f2a7453a1066f27b8ce23": {
79
79
  "workers": {
80
80
  "app/(dashboard)/@drawer/create/page": {
81
- "moduleId": 9488,
81
+ "moduleId": 37633,
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
- "40bf46a40f5cb14b0a43bf965deb5de27a85b3d491": {
93
+ "40ad6b758fd6e78517e68b25d48d97a2c7afc62507": {
94
94
  "workers": {
95
95
  "app/(dashboard)/@drawer/create/page": {
96
- "moduleId": 9488,
96
+ "moduleId": 37633,
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
- "40e45779718083cc31e4bedadb0f531646373849dc": {
108
+ "40c859aff5ef8f1bd2eb375b0f08ef8717ae902c4d": {
109
109
  "workers": {
110
110
  "app/(dashboard)/@drawer/create/page": {
111
- "moduleId": 9488,
111
+ "moduleId": 37633,
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
- "40817bf2c0a073858b1feecc366a55669f958252e8": {
123
+ "40ba739cb34672de03c4084431cee02aaad67357fe": {
124
124
  "workers": {
125
125
  "app/(dashboard)/@drawer/create/page": {
126
- "moduleId": 9488,
126
+ "moduleId": 37633,
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
- "40d62d2d7c10a00a8583f2f1098e726845fb18f959": {
138
+ "402d5432eccd6d6a34bf1c1959b20fcba35d523a29": {
139
139
  "workers": {
140
140
  "app/(dashboard)/@drawer/create/page": {
141
- "moduleId": 9488,
141
+ "moduleId": 37633,
142
142
  "async": false,
143
143
  "exportedName": "openFolder",
144
144
  "filename": "src/presentation/web/app/actions/open-folder.ts"
@@ -150,10 +150,10 @@
150
150
  "exportedName": "openFolder",
151
151
  "filename": "src/presentation/web/app/actions/open-folder.ts"
152
152
  },
153
- "400284a07fca9fc21141b4fa8721219441e047193c": {
153
+ "40d62ccb8de5e70e1d03add26d58c03e9595967394": {
154
154
  "workers": {
155
155
  "app/(dashboard)/@drawer/create/page": {
156
- "moduleId": 9488,
156
+ "moduleId": 37633,
157
157
  "async": false,
158
158
  "exportedName": "syncRepository",
159
159
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
@@ -165,10 +165,10 @@
165
165
  "exportedName": "syncRepository",
166
166
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
167
167
  },
168
- "4021ab67087beaecb2592795a5a1077e31236bef1f": {
168
+ "40855893234bad5e9bdd77a967776e71aad9d8d30b": {
169
169
  "workers": {
170
170
  "app/(dashboard)/@drawer/create/page": {
171
- "moduleId": 9488,
171
+ "moduleId": 37633,
172
172
  "async": false,
173
173
  "exportedName": "getDeploymentLogs",
174
174
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
@@ -180,10 +180,10 @@
180
180
  "exportedName": "getDeploymentLogs",
181
181
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
182
182
  },
183
- "005b2d235697eb385e948c3122bd9a51a1db817b60": {
183
+ "00c3414466786d95418d63eaf735ac95e14c0bd3fa": {
184
184
  "workers": {
185
185
  "app/(dashboard)/@drawer/create/page": {
186
- "moduleId": 9488,
186
+ "moduleId": 37633,
187
187
  "async": false,
188
188
  "exportedName": "isAgentSetupComplete",
189
189
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
@@ -195,10 +195,10 @@
195
195
  "exportedName": "isAgentSetupComplete",
196
196
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
197
197
  },
198
- "0005c733d0f3266487deb0fb05e3ff41ddb9fc4d36": {
198
+ "005d6d8512045fbb3dd28c75df4087a5fd3d1634ca": {
199
199
  "workers": {
200
200
  "app/(dashboard)/@drawer/create/page": {
201
- "moduleId": 9488,
201
+ "moduleId": 37633,
202
202
  "async": false,
203
203
  "exportedName": "checkAgentAuth",
204
204
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
@@ -210,10 +210,10 @@
210
210
  "exportedName": "checkAgentAuth",
211
211
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
212
212
  },
213
- "0056d87b9022bba7ea5ce73fdacdf4c072869e2cfb": {
213
+ "00d808c902f4ad8d7e80119e7d9b301e9dc86fedfc": {
214
214
  "workers": {
215
215
  "app/(dashboard)/@drawer/create/page": {
216
- "moduleId": 9488,
216
+ "moduleId": 37633,
217
217
  "async": false,
218
218
  "exportedName": "checkToolStatus",
219
219
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
@@ -225,10 +225,10 @@
225
225
  "exportedName": "checkToolStatus",
226
226
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
227
227
  },
228
- "00627a945cd25b91a1350355bc2b8d7569fd52acc5": {
228
+ "00319dbf441fcb160b42abb3b22cd7b34f5a1dd1dd": {
229
229
  "workers": {
230
230
  "app/(dashboard)/@drawer/create/page": {
231
- "moduleId": 9488,
231
+ "moduleId": 37633,
232
232
  "async": false,
233
233
  "exportedName": "getAllAgentModels",
234
234
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -240,10 +240,10 @@
240
240
  "exportedName": "getAllAgentModels",
241
241
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
242
242
  },
243
- "608fd75292eec8016a1c4ebf5522e400090f4375c8": {
243
+ "601f0d109c7864b31dc21d77b19a7d6927f43df360": {
244
244
  "workers": {
245
245
  "app/(dashboard)/@drawer/create/page": {
246
- "moduleId": 9488,
246
+ "moduleId": 37633,
247
247
  "async": false,
248
248
  "exportedName": "updateAgentAndModel",
249
249
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -255,10 +255,25 @@
255
255
  "exportedName": "updateAgentAndModel",
256
256
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
257
257
  },
258
- "78954564ef624b86a0a3e112dcc4df1b45769db9f7": {
258
+ "40dde0f91a3faa98b5805970dcf432693c1a891dca": {
259
259
  "workers": {
260
260
  "app/(dashboard)/@drawer/create/page": {
261
- "moduleId": 9488,
261
+ "moduleId": 37633,
262
+ "async": false,
263
+ "exportedName": "archiveFeature",
264
+ "filename": "src/presentation/web/app/actions/archive-feature.ts"
265
+ }
266
+ },
267
+ "layer": {
268
+ "app/(dashboard)/@drawer/create/page": "action-browser"
269
+ },
270
+ "exportedName": "archiveFeature",
271
+ "filename": "src/presentation/web/app/actions/archive-feature.ts"
272
+ },
273
+ "78413ad7ef066ece0a237690d5125aabc63351cc6d": {
274
+ "workers": {
275
+ "app/(dashboard)/@drawer/create/page": {
276
+ "moduleId": 37633,
262
277
  "async": false,
263
278
  "exportedName": "deleteFeature",
264
279
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
@@ -270,10 +285,10 @@
270
285
  "exportedName": "deleteFeature",
271
286
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
272
287
  },
273
- "40800d836fafe9b1b47eedc2ad700358e96ed73455": {
288
+ "4065304553fa7a4f1920cd39b3cb56bd961fd1d8bf": {
274
289
  "workers": {
275
290
  "app/(dashboard)/@drawer/create/page": {
276
- "moduleId": 9488,
291
+ "moduleId": 37633,
277
292
  "async": false,
278
293
  "exportedName": "resumeFeature",
279
294
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
@@ -285,10 +300,10 @@
285
300
  "exportedName": "resumeFeature",
286
301
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
287
302
  },
288
- "40007ca2e9130d6cccb524f365aa2b01f64568a00d": {
303
+ "403324e3c0d4a893da45499a7cc31be0b733429f53": {
289
304
  "workers": {
290
305
  "app/(dashboard)/@drawer/create/page": {
291
- "moduleId": 9488,
306
+ "moduleId": 37633,
292
307
  "async": false,
293
308
  "exportedName": "startFeature",
294
309
  "filename": "src/presentation/web/app/actions/start-feature.ts"
@@ -300,10 +315,10 @@
300
315
  "exportedName": "startFeature",
301
316
  "filename": "src/presentation/web/app/actions/start-feature.ts"
302
317
  },
303
- "40753e90280dc4edfed76b0940a98c52694b107fe8": {
318
+ "40a1d43a5827f68f53237c6b7618371d6f4e0be9b5": {
304
319
  "workers": {
305
320
  "app/(dashboard)/@drawer/create/page": {
306
- "moduleId": 9488,
321
+ "moduleId": 37633,
307
322
  "async": false,
308
323
  "exportedName": "stopFeature",
309
324
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
@@ -315,10 +330,25 @@
315
330
  "exportedName": "stopFeature",
316
331
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
317
332
  },
318
- "40f8685a6aeeaf3ab24b69c675ab5f4feebeb18249": {
333
+ "40747afa26881d576f3fcc59b3dce9f127053b9318": {
334
+ "workers": {
335
+ "app/(dashboard)/@drawer/create/page": {
336
+ "moduleId": 37633,
337
+ "async": false,
338
+ "exportedName": "unarchiveFeature",
339
+ "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
340
+ }
341
+ },
342
+ "layer": {
343
+ "app/(dashboard)/@drawer/create/page": "action-browser"
344
+ },
345
+ "exportedName": "unarchiveFeature",
346
+ "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
347
+ },
348
+ "40b92a1525c0082d9b616898e392cc6a89cade6776": {
319
349
  "workers": {
320
350
  "app/(dashboard)/@drawer/create/page": {
321
- "moduleId": 9488,
351
+ "moduleId": 37633,
322
352
  "async": false,
323
353
  "exportedName": "addRepository",
324
354
  "filename": "src/presentation/web/app/actions/add-repository.ts"
@@ -330,10 +360,10 @@
330
360
  "exportedName": "addRepository",
331
361
  "filename": "src/presentation/web/app/actions/add-repository.ts"
332
362
  },
333
- "40ed6a706b272a6885e410fbee5e8dacb0b4b07cd8": {
363
+ "4021f90bb64f58d8fcf5451b7b2f704016227b486d": {
334
364
  "workers": {
335
365
  "app/(dashboard)/@drawer/create/page": {
336
- "moduleId": 9488,
366
+ "moduleId": 37633,
337
367
  "async": false,
338
368
  "exportedName": "deleteRepository",
339
369
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
@@ -345,10 +375,10 @@
345
375
  "exportedName": "deleteRepository",
346
376
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
347
377
  },
348
- "40ed6b621ed6d02c11e309aac0af8a8d9fe5b364f2": {
378
+ "40fc8d5e057b9037ed85703a9655c983efd12605a0": {
349
379
  "workers": {
350
380
  "app/(dashboard)/@drawer/create/page": {
351
- "moduleId": 9488,
381
+ "moduleId": 37633,
352
382
  "async": false,
353
383
  "exportedName": "getFeatureMetadata",
354
384
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
@@ -360,10 +390,10 @@
360
390
  "exportedName": "getFeatureMetadata",
361
391
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
362
392
  },
363
- "0062e7e852959717d9b450888a68ff57bd881490e8": {
393
+ "008ab39faf40e41edb9598743810b3c51020ea9303": {
364
394
  "workers": {
365
395
  "app/(dashboard)/@drawer/create/page": {
366
- "moduleId": 9488,
396
+ "moduleId": 37633,
367
397
  "async": false,
368
398
  "exportedName": "getWorkflowDefaults",
369
399
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
@@ -375,10 +405,10 @@
375
405
  "exportedName": "getWorkflowDefaults",
376
406
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts"
377
407
  },
378
- "406b2290921956fb2f62c2867b37cbb06e2629ab48": {
408
+ "40cd1ff4926ec6c52f609dad9d3a9098de3df52ab5": {
379
409
  "workers": {
380
410
  "app/(dashboard)/@drawer/create/page": {
381
- "moduleId": 9488,
411
+ "moduleId": 37633,
382
412
  "async": false,
383
413
  "exportedName": "createFeature",
384
414
  "filename": "src/presentation/web/app/actions/create-feature.ts"
@@ -15,6 +15,6 @@ R.c("server/chunks/ssr/[root-of-the-server]__6ec59045._.js")
15
15
  R.c("server/chunks/ssr/src_presentation_web_ca99d62d._.js")
16
16
  R.c("server/chunks/ssr/src_presentation_web_app_(dashboard)_create_page_tsx_c60c859a._.js")
17
17
  R.c("server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js")
18
- R.c("server/chunks/ssr/_48a8ee28._.js")
18
+ R.c("server/chunks/ssr/_64bdfc6f._.js")
19
19
  R.m(26467)
20
20
  module.exports=R.m(26467).exports