@shepai/cli 1.177.0-pr538.cd394e5 → 1.177.0-pr540.38f1c8c

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 (384) hide show
  1. package/apis/json-schema/Language.yaml +1 -0
  2. package/dist/packages/core/src/application/ports/output/services/agent-auth-detector.interface.d.ts +23 -0
  3. package/dist/packages/core/src/application/ports/output/services/agent-auth-detector.interface.d.ts.map +1 -0
  4. package/dist/packages/core/src/application/ports/output/services/agent-auth-detector.interface.js +13 -0
  5. package/dist/packages/core/src/application/ports/output/services/file-system-service.interface.d.ts +18 -0
  6. package/dist/packages/core/src/application/ports/output/services/file-system-service.interface.d.ts.map +1 -0
  7. package/dist/packages/core/src/application/ports/output/services/file-system-service.interface.js +7 -0
  8. package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts +0 -15
  9. package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts.map +1 -1
  10. package/dist/packages/core/src/application/ports/output/services/index.d.ts +3 -0
  11. package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
  12. package/dist/packages/core/src/application/ports/output/services/project-scaffold-service.interface.d.ts +33 -0
  13. package/dist/packages/core/src/application/ports/output/services/project-scaffold-service.interface.d.ts.map +1 -0
  14. package/dist/packages/core/src/application/ports/output/services/project-scaffold-service.interface.js +9 -0
  15. package/dist/packages/core/src/application/use-cases/agents/check-agent-auth.use-case.d.ts +42 -0
  16. package/dist/packages/core/src/application/use-cases/agents/check-agent-auth.use-case.d.ts.map +1 -0
  17. package/dist/packages/core/src/application/use-cases/agents/check-agent-auth.use-case.js +134 -0
  18. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts +3 -46
  19. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
  20. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +5 -153
  21. package/dist/packages/core/src/application/use-cases/projects/create-project.use-case.d.ts +43 -0
  22. package/dist/packages/core/src/application/use-cases/projects/create-project.use-case.d.ts.map +1 -0
  23. package/dist/packages/core/src/application/use-cases/projects/create-project.use-case.js +84 -0
  24. package/dist/packages/core/src/application/use-cases/repositories/delete-repository.use-case.d.ts +13 -2
  25. package/dist/packages/core/src/application/use-cases/repositories/delete-repository.use-case.d.ts.map +1 -1
  26. package/dist/packages/core/src/application/use-cases/repositories/delete-repository.use-case.js +14 -3
  27. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  28. package/dist/packages/core/src/infrastructure/di/container.js +16 -5
  29. package/dist/packages/core/src/infrastructure/services/agent-auth-detector/platform-agent-auth-detector.service.d.ts +35 -0
  30. package/dist/packages/core/src/infrastructure/services/agent-auth-detector/platform-agent-auth-detector.service.d.ts.map +1 -0
  31. package/dist/packages/core/src/infrastructure/services/agent-auth-detector/platform-agent-auth-detector.service.js +165 -0
  32. package/dist/packages/core/src/infrastructure/services/file-system.service.d.ts +10 -0
  33. package/dist/packages/core/src/infrastructure/services/file-system.service.d.ts.map +1 -0
  34. package/dist/packages/core/src/infrastructure/services/file-system.service.js +22 -0
  35. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts +0 -1
  36. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts.map +1 -1
  37. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.js +0 -53
  38. package/dist/packages/core/src/infrastructure/services/project-scaffold/fs-project-scaffold.service.d.ts +22 -0
  39. package/dist/packages/core/src/infrastructure/services/project-scaffold/fs-project-scaffold.service.d.ts.map +1 -0
  40. package/dist/packages/core/src/infrastructure/services/project-scaffold/fs-project-scaffold.service.js +74 -0
  41. package/dist/src/presentation/web/app/actions/check-agent-auth.d.ts +10 -2
  42. package/dist/src/presentation/web/app/actions/check-agent-auth.d.ts.map +1 -1
  43. package/dist/src/presentation/web/app/actions/check-agent-auth.js +7 -199
  44. package/dist/src/presentation/web/app/actions/create-project-folder.d.ts +16 -0
  45. package/dist/src/presentation/web/app/actions/create-project-folder.d.ts.map +1 -0
  46. package/dist/src/presentation/web/app/actions/create-project-folder.js +18 -0
  47. package/dist/src/presentation/web/app/actions/delete-repository.d.ts +4 -1
  48. package/dist/src/presentation/web/app/actions/delete-repository.d.ts.map +1 -1
  49. package/dist/src/presentation/web/app/actions/delete-repository.js +2 -2
  50. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  51. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +4 -4
  52. package/dist/src/presentation/web/components/common/repository-node/repository-node-config.d.ts +3 -1
  53. package/dist/src/presentation/web/components/common/repository-node/repository-node-config.d.ts.map +1 -1
  54. package/dist/src/presentation/web/components/common/repository-node/repository-node.d.ts.map +1 -1
  55. package/dist/src/presentation/web/components/common/repository-node/repository-node.js +13 -4
  56. package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.d.ts.map +1 -1
  57. package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.js +5 -3
  58. package/dist/src/presentation/web/components/features/control-center/control-center-inner.d.ts.map +1 -1
  59. package/dist/src/presentation/web/components/features/control-center/control-center-inner.js +135 -125
  60. package/dist/src/presentation/web/components/features/control-center/new-project-dialog.d.ts +8 -0
  61. package/dist/src/presentation/web/components/features/control-center/new-project-dialog.d.ts.map +1 -0
  62. package/dist/src/presentation/web/components/features/control-center/new-project-dialog.js +43 -0
  63. package/dist/src/presentation/web/components/features/control-center/use-canvas-event-listeners.d.ts +27 -0
  64. package/dist/src/presentation/web/components/features/control-center/use-canvas-event-listeners.d.ts.map +1 -0
  65. package/dist/src/presentation/web/components/features/control-center/use-canvas-event-listeners.js +84 -0
  66. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts +3 -2
  67. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.d.ts.map +1 -1
  68. package/dist/src/presentation/web/components/features/control-center/use-control-center-state.js +8 -49
  69. package/dist/src/presentation/web/components/features/control-center/use-fab-actions.d.ts +21 -0
  70. package/dist/src/presentation/web/components/features/control-center/use-fab-actions.d.ts.map +1 -0
  71. package/dist/src/presentation/web/components/features/control-center/use-fab-actions.js +70 -0
  72. package/dist/src/presentation/web/components/features/control-center/use-workspace-fit-view.d.ts +27 -0
  73. package/dist/src/presentation/web/components/features/control-center/use-workspace-fit-view.d.ts.map +1 -0
  74. package/dist/src/presentation/web/components/features/control-center/use-workspace-fit-view.js +48 -0
  75. package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.d.ts.map +1 -1
  76. package/dist/src/presentation/web/components/features/control-center/welcome-agent-setup.js +8 -1
  77. package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.d.ts +3 -1
  78. package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.d.ts.map +1 -1
  79. package/dist/src/presentation/web/components/features/features-canvas/canvas-toolbar.js +3 -3
  80. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.d.ts +0 -1
  81. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.d.ts.map +1 -1
  82. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.js +6 -18
  83. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.stories.d.ts +0 -3
  84. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.stories.d.ts.map +1 -1
  85. package/dist/src/presentation/web/components/features/features-canvas/dependency-edge.stories.js +1 -27
  86. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts +1 -2
  87. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
  88. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +3 -14
  89. package/dist/src/presentation/web/components/features/features-canvas/manage-workspace-dialog.d.ts +15 -0
  90. package/dist/src/presentation/web/components/features/features-canvas/manage-workspace-dialog.d.ts.map +1 -0
  91. package/dist/src/presentation/web/components/features/features-canvas/manage-workspace-dialog.js +74 -0
  92. package/dist/src/presentation/web/components/features/features-canvas/workspace-name-dialog.d.ts +11 -0
  93. package/dist/src/presentation/web/components/features/features-canvas/workspace-name-dialog.d.ts.map +1 -0
  94. package/dist/src/presentation/web/components/features/features-canvas/workspace-name-dialog.js +22 -0
  95. package/dist/src/presentation/web/components/features/features-canvas/workspace-selector.d.ts +13 -0
  96. package/dist/src/presentation/web/components/features/features-canvas/workspace-selector.d.ts.map +1 -0
  97. package/dist/src/presentation/web/components/features/features-canvas/workspace-selector.js +21 -0
  98. package/dist/src/presentation/web/hooks/use-graph-state.d.ts +0 -7
  99. package/dist/src/presentation/web/hooks/use-graph-state.d.ts.map +1 -1
  100. package/dist/src/presentation/web/hooks/use-graph-state.js +0 -74
  101. package/dist/src/presentation/web/hooks/use-workspaces.d.ts +37 -0
  102. package/dist/src/presentation/web/hooks/use-workspaces.d.ts.map +1 -0
  103. package/dist/src/presentation/web/hooks/use-workspaces.js +219 -0
  104. package/dist/src/presentation/web/lib/derive-graph.d.ts +3 -1
  105. package/dist/src/presentation/web/lib/derive-graph.d.ts.map +1 -1
  106. package/dist/src/presentation/web/lib/derive-graph.js +1 -5
  107. package/dist/translations/ar/web.json +4 -1
  108. package/dist/translations/de/web.json +4 -1
  109. package/dist/translations/en/web.json +4 -1
  110. package/dist/translations/es/web.json +4 -1
  111. package/dist/translations/fr/web.json +4 -1
  112. package/dist/translations/he/web.json +4 -1
  113. package/dist/translations/pt/web.json +4 -1
  114. package/dist/translations/ru/web.json +4 -1
  115. package/dist/translations/uk/web.json +3 -0
  116. package/dist/tsconfig.build.tsbuildinfo +1 -1
  117. package/package.json +1 -1
  118. package/web/.next/BUILD_ID +1 -1
  119. package/web/.next/build-manifest.json +2 -2
  120. package/web/.next/fallback-build-manifest.json +2 -2
  121. package/web/.next/prerender-manifest.json +3 -3
  122. package/web/.next/required-server-files.js +1 -1
  123. package/web/.next/required-server-files.json +1 -1
  124. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +73 -73
  125. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +1 -2
  126. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  127. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  128. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +69 -69
  129. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +1 -2
  130. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  131. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  132. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +75 -75
  133. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -2
  134. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  135. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  136. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +91 -91
  137. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +1 -2
  138. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  139. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  140. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +91 -91
  141. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -2
  142. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  143. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  144. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +71 -71
  145. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +1 -2
  146. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  147. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  148. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +71 -71
  149. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -2
  150. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  151. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  152. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +69 -69
  153. package/web/.next/server/app/(dashboard)/chat/page.js +1 -2
  154. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  155. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  156. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +75 -75
  157. package/web/.next/server/app/(dashboard)/create/page.js +1 -2
  158. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  159. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  160. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +91 -91
  161. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +1 -2
  162. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  163. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  164. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +91 -91
  165. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -2
  166. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  167. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  168. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +69 -69
  169. package/web/.next/server/app/(dashboard)/page.js +1 -2
  170. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  171. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  172. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +71 -71
  173. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +1 -2
  174. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  175. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  176. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +71 -71
  177. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -2
  178. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  179. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  180. package/web/.next/server/app/_global-error.html +2 -2
  181. package/web/.next/server/app/_global-error.rsc +1 -1
  182. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  183. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  184. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  185. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  186. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  187. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
  188. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  189. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  190. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  191. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  192. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  193. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  194. package/web/.next/server/app/features/page/server-reference-manifest.json +6 -6
  195. package/web/.next/server/app/features/page.js.nft.json +1 -1
  196. package/web/.next/server/app/features/page_client-reference-manifest.js +1 -1
  197. package/web/.next/server/app/settings/page/server-reference-manifest.json +9 -9
  198. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  199. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  200. package/web/.next/server/app/skills/page/server-reference-manifest.json +13 -13
  201. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  202. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  203. package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
  204. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  205. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  206. package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
  207. package/web/.next/server/app/version/page.js.nft.json +1 -1
  208. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  209. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  210. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +1 -1
  211. package/web/.next/server/chunks/[root-of-the-server]__0866d2b5._.js +1 -1
  212. package/web/.next/server/chunks/[root-of-the-server]__10852c5c._.js +1 -1
  213. package/web/.next/server/chunks/[root-of-the-server]__2b1074db._.js +1 -1
  214. package/web/.next/server/chunks/[root-of-the-server]__2b71641f._.js +1 -1
  215. package/web/.next/server/chunks/[root-of-the-server]__2bb675ff._.js +1 -1
  216. package/web/.next/server/chunks/[root-of-the-server]__31598852._.js +1 -1
  217. package/web/.next/server/chunks/[root-of-the-server]__31944fa2._.js +1 -1
  218. package/web/.next/server/chunks/[root-of-the-server]__32b04219._.js +1 -1
  219. package/web/.next/server/chunks/[root-of-the-server]__4408a5ba._.js +1 -1
  220. package/web/.next/server/chunks/[root-of-the-server]__6565a045._.js +1 -1
  221. package/web/.next/server/chunks/[root-of-the-server]__8a281f8d._.js +1 -1
  222. package/web/.next/server/chunks/[root-of-the-server]__8f8d6afe._.js +1 -1
  223. package/web/.next/server/chunks/[root-of-the-server]__9191749c._.js +1 -1
  224. package/web/.next/server/chunks/[root-of-the-server]__9a136c79._.js +1 -1
  225. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  226. package/web/.next/server/chunks/[root-of-the-server]__ab4951b1._.js +1 -1
  227. package/web/.next/server/chunks/[root-of-the-server]__b2f9a412._.js +1 -1
  228. package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js +1 -1
  229. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js +1 -1
  230. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  231. package/web/.next/server/chunks/[root-of-the-server]__d2c18946._.js +1 -1
  232. package/web/.next/server/chunks/[root-of-the-server]__d9d410a8._.js +1 -1
  233. package/web/.next/server/chunks/[root-of-the-server]__e247a485._.js +1 -1
  234. package/web/.next/server/chunks/[root-of-the-server]__ea653642._.js +1 -1
  235. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  236. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  237. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +2 -2
  238. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  239. package/web/.next/server/chunks/ssr/[root-of-the-server]__1cd4327c._.js +1 -1
  240. package/web/.next/server/chunks/ssr/[root-of-the-server]__1cd4327c._.js.map +1 -1
  241. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js +1 -1
  242. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js.map +1 -1
  243. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  244. package/web/.next/server/chunks/ssr/[root-of-the-server]__46b10380._.js +3 -0
  245. package/web/.next/server/chunks/ssr/[root-of-the-server]__46b10380._.js.map +1 -0
  246. package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js +2 -2
  247. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js +1 -1
  248. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js.map +1 -1
  249. package/web/.next/server/chunks/ssr/[root-of-the-server]__8b512877._.js +3 -0
  250. package/web/.next/server/chunks/ssr/[root-of-the-server]__8b512877._.js.map +1 -0
  251. package/web/.next/server/chunks/ssr/[root-of-the-server]__990dba2d._.js +3 -0
  252. package/web/.next/server/chunks/ssr/[root-of-the-server]__990dba2d._.js.map +1 -0
  253. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js +1 -1
  254. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js.map +1 -1
  255. package/web/.next/server/chunks/ssr/[root-of-the-server]__cc9c7bbb._.js +3 -0
  256. package/web/.next/server/chunks/ssr/[root-of-the-server]__cc9c7bbb._.js.map +1 -0
  257. package/web/.next/server/chunks/ssr/_02fd22b2._.js +3 -0
  258. package/web/.next/server/chunks/ssr/_02fd22b2._.js.map +1 -0
  259. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  260. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  261. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  262. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  263. package/web/.next/server/chunks/ssr/_35b56ded._.js +3 -0
  264. package/web/.next/server/chunks/ssr/_35b56ded._.js.map +1 -0
  265. package/web/.next/server/chunks/ssr/{_4cbb7f95._.js → _496c9117._.js} +2 -2
  266. package/web/.next/server/chunks/ssr/{_4cbb7f95._.js.map → _496c9117._.js.map} +1 -1
  267. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  268. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  269. package/web/.next/server/chunks/ssr/_6abfa39e._.js +1 -1
  270. package/web/.next/server/chunks/ssr/{_29b58b98._.js → _7c457a33._.js} +2 -2
  271. package/web/.next/server/chunks/ssr/{_29b58b98._.js.map → _7c457a33._.js.map} +1 -1
  272. package/web/.next/server/chunks/ssr/_806df937._.js +4 -0
  273. package/web/.next/server/chunks/ssr/_806df937._.js.map +1 -0
  274. package/web/.next/server/chunks/ssr/_f8c55130._.js +1 -1
  275. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  276. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  277. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  278. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
  279. package/web/.next/server/chunks/ssr/src_presentation_web_06109d28._.js +5 -0
  280. package/web/.next/server/chunks/ssr/src_presentation_web_06109d28._.js.map +1 -0
  281. package/web/.next/server/chunks/ssr/src_presentation_web_0bca70f8._.js +3 -0
  282. package/web/.next/server/chunks/ssr/src_presentation_web_0bca70f8._.js.map +1 -0
  283. package/web/.next/server/chunks/ssr/src_presentation_web_367cdbe0._.js +3 -0
  284. package/web/.next/server/chunks/ssr/src_presentation_web_367cdbe0._.js.map +1 -0
  285. package/web/.next/server/chunks/ssr/src_presentation_web_57fed7fd._.js +3 -0
  286. package/web/.next/server/chunks/ssr/src_presentation_web_57fed7fd._.js.map +1 -0
  287. package/web/.next/server/chunks/ssr/src_presentation_web_7f567f6d._.js +3 -0
  288. package/web/.next/server/chunks/ssr/src_presentation_web_7f567f6d._.js.map +1 -0
  289. package/web/.next/server/chunks/ssr/src_presentation_web_972f58d5._.js +3 -0
  290. package/web/.next/server/chunks/ssr/src_presentation_web_972f58d5._.js.map +1 -0
  291. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js +1 -1
  292. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js.map +1 -1
  293. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js +1 -1
  294. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js.map +1 -1
  295. package/web/.next/server/chunks/ssr/src_presentation_web_a71b18a2._.js +3 -0
  296. package/web/.next/server/chunks/ssr/src_presentation_web_a71b18a2._.js.map +1 -0
  297. package/web/.next/server/chunks/ssr/src_presentation_web_app_features_feature-tree-page-client_tsx_34c5cbbf._.js +2 -2
  298. package/web/.next/server/chunks/ssr/src_presentation_web_app_features_feature-tree-page-client_tsx_34c5cbbf._.js.map +1 -1
  299. package/web/.next/server/chunks/ssr/src_presentation_web_bebe675e._.js +3 -0
  300. package/web/.next/server/chunks/ssr/src_presentation_web_bebe675e._.js.map +1 -0
  301. package/web/.next/server/chunks/ssr/src_presentation_web_c93e8bc6._.js +3 -0
  302. package/web/.next/server/chunks/ssr/src_presentation_web_c93e8bc6._.js.map +1 -0
  303. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +1 -1
  304. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -1
  305. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  306. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  307. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js +1 -1
  308. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js.map +1 -1
  309. package/web/.next/server/chunks/ssr/src_presentation_web_e729f44a._.js +5 -0
  310. package/web/.next/server/chunks/ssr/src_presentation_web_e729f44a._.js.map +1 -0
  311. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +1 -1
  312. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -1
  313. package/web/.next/server/pages/500.html +2 -2
  314. package/web/.next/server/server-reference-manifest.js +1 -1
  315. package/web/.next/server/server-reference-manifest.json +590 -590
  316. package/web/.next/static/chunks/124b79a5d2a760fb.css +1 -0
  317. package/web/.next/static/chunks/{192e523a9f0e5071.js → 1545e8313e9332bf.js} +1 -1
  318. package/web/.next/static/chunks/{3c66e37dc702475b.js → 26f23df6f2d5c93b.js} +1 -1
  319. package/web/.next/static/chunks/{1d3a8dcbc3f5858e.js → 3812b5ffbdb71036.js} +3 -3
  320. package/web/.next/static/chunks/{73021cde734ba397.js → 3da844a199eb47ba.js} +1 -1
  321. package/web/.next/static/chunks/4052a4971fbbac9c.js +1 -0
  322. package/web/.next/static/chunks/{47cf01554e63af3a.js → 405aa6d885767e6c.js} +1 -1
  323. package/web/.next/static/chunks/{97cfe3feade884be.js → 445b94b64b6b04f4.js} +3 -3
  324. package/web/.next/static/chunks/{241d94501b25fcd6.js → 4bc608dc6b6b4df3.js} +1 -1
  325. package/web/.next/static/chunks/{913b92e59d050146.js → 67c9b5f3f25d4b65.js} +1 -1
  326. package/web/.next/static/chunks/{bb479c31b5b53bac.js → 74c37f189bc83156.js} +2 -2
  327. package/web/.next/static/chunks/8057357cf1f9b4ef.js +1 -0
  328. package/web/.next/static/chunks/8ccba4398e23ab92.js +1 -0
  329. package/web/.next/static/chunks/98a6820ed2bf99f7.js +2 -0
  330. package/web/.next/static/chunks/ad87595a0da986d1.js +1 -0
  331. package/web/.next/static/chunks/{08c621958e83175b.js → bbeb821a2af5c193.js} +1 -1
  332. package/web/.next/static/chunks/{7bb4a040c1567f10.js → e69c1468a1228b59.js} +1 -1
  333. package/web/.next/static/chunks/{6a21973d4b1df590.js → e8768e3ae842d13c.js} +1 -1
  334. package/dist/packages/core/src/application/use-cases/features/reparent-feature.use-case.d.ts +0 -31
  335. package/dist/packages/core/src/application/use-cases/features/reparent-feature.use-case.d.ts.map +0 -1
  336. package/dist/packages/core/src/application/use-cases/features/reparent-feature.use-case.js +0 -127
  337. package/dist/src/presentation/web/app/actions/reparent-feature.d.ts +0 -5
  338. package/dist/src/presentation/web/app/actions/reparent-feature.d.ts.map +0 -1
  339. package/dist/src/presentation/web/app/actions/reparent-feature.js +0 -16
  340. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4869a7bb.js +0 -3
  341. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_4869a7bb.js.map +0 -1
  342. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_d92cb436.js +0 -3
  343. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_d92cb436.js.map +0 -1
  344. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_16dd74be.js +0 -3
  345. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_16dd74be.js.map +0 -1
  346. package/web/.next/server/chunks/ssr/[root-of-the-server]__000567d1._.js +0 -3
  347. package/web/.next/server/chunks/ssr/[root-of-the-server]__000567d1._.js.map +0 -1
  348. package/web/.next/server/chunks/ssr/[root-of-the-server]__466d5d10._.js +0 -3
  349. package/web/.next/server/chunks/ssr/[root-of-the-server]__466d5d10._.js.map +0 -1
  350. package/web/.next/server/chunks/ssr/[root-of-the-server]__60b640ad._.js +0 -3
  351. package/web/.next/server/chunks/ssr/[root-of-the-server]__60b640ad._.js.map +0 -1
  352. package/web/.next/server/chunks/ssr/[root-of-the-server]__e68e2b52._.js +0 -3
  353. package/web/.next/server/chunks/ssr/[root-of-the-server]__e68e2b52._.js.map +0 -1
  354. package/web/.next/server/chunks/ssr/_073183f4._.js +0 -3
  355. package/web/.next/server/chunks/ssr/_073183f4._.js.map +0 -1
  356. package/web/.next/server/chunks/ssr/_1cfd3f35._.js +0 -3
  357. package/web/.next/server/chunks/ssr/_1cfd3f35._.js.map +0 -1
  358. package/web/.next/server/chunks/ssr/_a0b8e0f8._.js +0 -4
  359. package/web/.next/server/chunks/ssr/_a0b8e0f8._.js.map +0 -1
  360. package/web/.next/server/chunks/ssr/src_presentation_web_06387c54._.js +0 -3
  361. package/web/.next/server/chunks/ssr/src_presentation_web_06387c54._.js.map +0 -1
  362. package/web/.next/server/chunks/ssr/src_presentation_web_1ccf607e._.js +0 -3
  363. package/web/.next/server/chunks/ssr/src_presentation_web_1ccf607e._.js.map +0 -1
  364. package/web/.next/server/chunks/ssr/src_presentation_web_2c992e9f._.js +0 -5
  365. package/web/.next/server/chunks/ssr/src_presentation_web_2c992e9f._.js.map +0 -1
  366. package/web/.next/server/chunks/ssr/src_presentation_web_476ed91c._.js +0 -5
  367. package/web/.next/server/chunks/ssr/src_presentation_web_476ed91c._.js.map +0 -1
  368. package/web/.next/server/chunks/ssr/src_presentation_web_5b78146e._.js +0 -3
  369. package/web/.next/server/chunks/ssr/src_presentation_web_5b78146e._.js.map +0 -1
  370. package/web/.next/server/chunks/ssr/src_presentation_web_796d2fd5._.js +0 -3
  371. package/web/.next/server/chunks/ssr/src_presentation_web_796d2fd5._.js.map +0 -1
  372. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_3a934437.js +0 -3
  373. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_3a934437.js.map +0 -1
  374. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +0 -3
  375. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +0 -1
  376. package/web/.next/static/chunks/0cf210e5b787a08b.css +0 -1
  377. package/web/.next/static/chunks/0e94e80dd774bdd6.js +0 -2
  378. package/web/.next/static/chunks/62074389c31b349c.js +0 -1
  379. package/web/.next/static/chunks/89666a357f21bc6e.js +0 -1
  380. package/web/.next/static/chunks/f9d948464ed409cb.js +0 -1
  381. package/web/.next/static/chunks/fc0232384ec2b48d.js +0 -1
  382. /package/web/.next/static/{MhvJOx7d-0XyZcYlYxyG7 → k9Ba_bAPumQCPUYFrxLYE}/_buildManifest.js +0 -0
  383. /package/web/.next/static/{MhvJOx7d-0XyZcYlYxyG7 → k9Ba_bAPumQCPUYFrxLYE}/_clientMiddlewareManifest.json +0 -0
  384. /package/web/.next/static/{MhvJOx7d-0XyZcYlYxyG7 → k9Ba_bAPumQCPUYFrxLYE}/_ssgManifest.js +0 -0
@@ -3,6 +3,7 @@ $id: Language.yaml
3
3
  type: string
4
4
  enum:
5
5
  - en
6
+ - uk
6
7
  - ru
7
8
  - pt
8
9
  - es
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Agent Auth Detector Service Interface
3
+ *
4
+ * Output port for detecting whether the user is authenticated with a given
5
+ * AI coding agent (Claude Code, Cursor, Gemini CLI, Copilot CLI, etc.).
6
+ *
7
+ * Implementations are platform-specific: they may inspect environment
8
+ * variables, credentials files, the macOS Keychain, or call agent-specific
9
+ * `auth status` subcommands. Keeping this behind an output port keeps the
10
+ * application layer free of node:fs / child_process / keychain imports and
11
+ * lets tests substitute a fake.
12
+ */
13
+ import type { AgentType } from '../../../../domain/generated/output.js';
14
+ export interface IAgentAuthDetectorService {
15
+ /**
16
+ * Returns true if the user appears to be authenticated with the given
17
+ * agent. Implementations should be best-effort and conservative: prefer
18
+ * fast heuristics (env vars, file existence) over slow subprocess calls,
19
+ * and tolerate detection failures by returning false rather than throwing.
20
+ */
21
+ isAuthenticated(agentType: AgentType, binaryName: string | null): Promise<boolean>;
22
+ }
23
+ //# sourceMappingURL=agent-auth-detector.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"agent-auth-detector.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/agent-auth-detector.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAC;AAExE,MAAM,WAAW,yBAAyB;IACxC;;;;;OAKG;IACH,eAAe,CAAC,SAAS,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,GAAG,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;CACpF"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Agent Auth Detector Service Interface
3
+ *
4
+ * Output port for detecting whether the user is authenticated with a given
5
+ * AI coding agent (Claude Code, Cursor, Gemini CLI, Copilot CLI, etc.).
6
+ *
7
+ * Implementations are platform-specific: they may inspect environment
8
+ * variables, credentials files, the macOS Keychain, or call agent-specific
9
+ * `auth status` subcommands. Keeping this behind an output port keeps the
10
+ * application layer free of node:fs / child_process / keychain imports and
11
+ * lets tests substitute a fake.
12
+ */
13
+ export {};
@@ -0,0 +1,18 @@
1
+ /**
2
+ * File System Service Interface
3
+ *
4
+ * Output port for filesystem mutations performed by use cases.
5
+ * Keeps the application layer free of direct `node:fs` imports.
6
+ */
7
+ export interface IFileSystemService {
8
+ /**
9
+ * Recursively remove a directory and all its contents.
10
+ *
11
+ * Idempotent: succeeds silently if the path does not exist.
12
+ *
13
+ * @param dirPath - Absolute path to the directory to remove
14
+ * @throws Error if removal fails for reasons other than non-existence
15
+ */
16
+ removeDirectory(dirPath: string): Promise<void>;
17
+ }
18
+ //# sourceMappingURL=file-system-service.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-system-service.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/file-system-service.interface.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,WAAW,kBAAkB;IACjC;;;;;;;OAOG;IACH,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CACjD"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * File System Service Interface
3
+ *
4
+ * Output port for filesystem mutations performed by use cases.
5
+ * Keeps the application layer free of direct `node:fs` imports.
6
+ */
7
+ export {};
@@ -381,21 +381,6 @@ export interface IGitPrService {
381
381
  * @throws GitPrError with BRANCH_NOT_FOUND code if a branch does not exist
382
382
  */
383
383
  rebaseOnMain(cwd: string, featureBranch: string, baseBranch: string): Promise<void>;
384
- /**
385
- * Rebase the feature branch onto `origin/<targetBranch>`.
386
- * Fetches the target branch from the remote first to ensure the
387
- * remote-tracking ref is up-to-date, then rebases the feature branch
388
- * onto it. Similar to {@link rebaseOnMain} but targets an arbitrary
389
- * branch instead of the repository's default branch.
390
- *
391
- * @param cwd - Working directory path
392
- * @param featureBranch - The feature branch to rebase
393
- * @param targetBranch - The target branch name (rebase target will be origin/<targetBranch>)
394
- * @throws GitPrError with GIT_ERROR code if the worktree is dirty
395
- * @throws GitPrError with REBASE_CONFLICT code if conflicts are detected
396
- * @throws GitPrError with BRANCH_NOT_FOUND code if a branch does not exist
397
- */
398
- rebaseOnBranch(cwd: string, featureBranch: string, targetBranch: string): Promise<void>;
399
384
  /**
400
385
  * Get the list of files with unresolved conflicts (unmerged paths).
401
386
  * Uses `git diff --name-only --diff-filter=U` to identify conflicted files.
@@ -1 +1 @@
1
- {"version":3,"file":"git-pr-service.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/git-pr-service.interface.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"git-pr-service.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/git-pr-service.interface.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,wCAAwC,CAAC;AAEvE;;GAEG;AACH,oBAAY,cAAc;IACxB,YAAY,iBAAiB;IAC7B,gBAAgB,qBAAqB;IACrC,UAAU,eAAe;IACzB,YAAY,iBAAiB;IAC7B,SAAS,cAAc;IACvB,cAAc,mBAAmB;IACjC,YAAY,iBAAiB;IAC7B,aAAa,kBAAkB;IAC/B,YAAY,iBAAiB;IAC7B,qBAAqB,0BAA0B;IAC/C,kBAAkB,uBAAuB;IACzC,eAAe,oBAAoB;IACnC,WAAW,gBAAgB;CAC5B;AAED;;GAEG;AACH,qBAAa,UAAW,SAAQ,KAAK;aAGjB,IAAI,EAAE,cAAc;aACpB,KAAK,CAAC,EAAE,KAAK;gBAF7B,OAAO,EAAE,MAAM,EACC,IAAI,EAAE,cAAc,EACpB,KAAK,CAAC,EAAE,KAAK,YAAA;CAKhC;AAED;;GAEG;AACH,MAAM,MAAM,QAAQ,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,CAAC;AAEzD;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,wBAAwB;IACxB,MAAM,EAAE,QAAQ,CAAC;IACjB,uDAAuD;IACvD,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,kDAAkD;IAClD,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,8BAA8B;IAC9B,YAAY,EAAE,MAAM,CAAC;IACrB,4BAA4B;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,8BAA8B;IAC9B,SAAS,EAAE,MAAM,CAAC;IAClB,oCAAoC;IACpC,WAAW,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB,2CAA2C;IAC3C,MAAM,EAAE,MAAM,CAAC;IACf,qDAAqD;IACrD,KAAK,EAAE,QAAQ,EAAE,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB,6DAA6D;IAC7D,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,CAAC;IACtC,uDAAuD;IACvD,OAAO,EAAE,MAAM,CAAC;IAChB,uDAAuD;IACvD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,yDAAyD;IACzD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB,uCAAuC;IACvC,IAAI,EAAE,MAAM,CAAC;IACb,4CAA4C;IAC5C,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,4BAA4B;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,8BAA8B;IAC9B,SAAS,EAAE,MAAM,CAAC;IAClB,kBAAkB;IAClB,MAAM,EAAE,OAAO,GAAG,UAAU,GAAG,SAAS,GAAG,SAAS,CAAC;IACrD,0CAA0C;IAC1C,KAAK,EAAE,QAAQ,EAAE,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,4BAA4B;IAC5B,GAAG,EAAE,MAAM,CAAC;IACZ,gBAAgB;IAChB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,gBAAgB;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,iDAAiD;IACjD,KAAK,EAAE,QAAQ,CAAC;IAChB,8BAA8B;IAC9B,GAAG,EAAE,MAAM,CAAC;IACZ,iCAAiC;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,mFAAmF;IACnF,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,CAAC;AAE1D;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B;;;;;OAKG;IACH,SAAS,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAEzC;;;;;;;OAOG;IACH,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAElD;;;;;;;;;;;;OAYG;IACH,gBAAgB,CACd,GAAG,EAAE,MAAM,EACX,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE;QAAE,SAAS,EAAE,OAAO,CAAC;QAAC,GAAG,CAAC,EAAE,MAAM,CAAA;KAAE,GAC5C,OAAO,CAAC,MAAM,CAAC,CAAC;IAEnB;;;;;;;OAOG;IACH,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE7E;;;;;;;;OAQG;IACH,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAE/C;;;;;;OAMG;IACH,QAAQ,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAEpD;;;;;;OAMG;IACH,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAErD;;;;;;;OAOG;IACH,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAEzD;;;;;;;OAOG;IACH,IAAI,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAExE;;;;;;;OAOG;IACH,QAAQ,CAAC,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC;IAEnE;;;;;;;;;;OAUG;IACH,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEhF;;;;;;;OAOG;IACH,WAAW,CAAC,GAAG,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEpF;;;;;;;OAOG;IACH,WAAW,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC;IAElE;;;;;;;;;OASG;IACH,OAAO,CACL,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,MAAM,EACd,SAAS,CAAC,EAAE,MAAM,EAClB,eAAe,CAAC,EAAE,MAAM,GACvB,OAAO,CAAC,cAAc,CAAC,CAAC;IAE3B;;;;;;;OAOG;IACH,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjF;;;;;;;OAOG;IACH,gBAAgB,CAAC,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC,CAAC;IAExE;;;;;;;OAOG;IACH,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC;IAEnE;;;;;;OAMG;IACH,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,EAAE,CAAC,CAAC;IAErD;;;;;;;;;;;;OAYG;IACH,WAAW,CACT,GAAG,EAAE,MAAM,EACX,aAAa,EAAE,MAAM,EACrB,UAAU,EAAE,MAAM,EAClB,eAAe,CAAC,EAAE,MAAM,GACvB,OAAO,CAAC,OAAO,CAAC,CAAC;IAEpB;;;;;;;;;;;;OAYG;IACH,gBAAgB,CACd,GAAG,EAAE,MAAM,EACX,aAAa,EAAE,MAAM,EACrB,UAAU,EAAE,MAAM,EAClB,aAAa,EAAE,MAAM,EACrB,SAAS,CAAC,EAAE,OAAO,GAClB,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;;;;;OAOG;IACH,kBAAkB,CAAC,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAEhF;;;;;;;;;;;OAWG;IACH,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IAIlG;;;;;;;;;;;;OAYG;IACH,QAAQ,CAAC,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEzD;;;;;;;;;;;;;;OAcG;IACH,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEpF;;;;;;;OAOG;IACH,kBAAkB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;IAEnD;;;;;;;OAOG;IACH,UAAU,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAExD;;;;;;;;OAQG;IACH,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE3C;;;;;;OAMG;IACH,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAExC;;;;;;;;OAQG;IACH,KAAK,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAEvD;;;;;;OAMG;IACH,QAAQ,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAErC;;;;;;OAMG;IACH,SAAS,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEtC;;;;;;;;;;;;;OAaG;IACH,mBAAmB,CACjB,GAAG,EAAE,MAAM,EACX,aAAa,EAAE,MAAM,EACrB,UAAU,EAAE,MAAM,GACjB,OAAO,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CAC/C"}
@@ -21,6 +21,9 @@ export type { IGitHubRepositoryService, GitHubRepo, GitHubOrganization, ListUser
21
21
  export { GitHubAuthError, GitHubCloneError, GitHubUrlParseError, GitHubRepoListError, } from './github-repository-service.interface.js';
22
22
  export type { IInteractiveSessionService, StreamChunk, UnsubscribeFn, ChatState, } from './interactive-session-service.interface.js';
23
23
  export type { ISkillInjectorService, SkillInjectionResult } from './skill-injector.interface.js';
24
+ export type { IFileSystemService } from './file-system-service.interface.js';
25
+ export type { IProjectScaffoldService, ScaffoldProjectInput, ScaffoldProjectResult, } from './project-scaffold-service.interface.js';
26
+ export type { IAgentAuthDetectorService } from './agent-auth-detector.interface.js';
24
27
  export type { IDesktopNotifier } from './i-desktop-notifier.js';
25
28
  export type { IBrowserOpener } from './i-browser-opener.js';
26
29
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,YAAY,EAAE,qBAAqB,EAAE,aAAa,EAAE,MAAM,uCAAuC,CAAC;AAClG,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,wBAAwB,EACxB,4BAA4B,GAC7B,MAAM,uCAAuC,CAAC;AAC/C,YAAY,EACV,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,iCAAiC,CAAC;AACzC,YAAY,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AACtE,YAAY,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AAC3E,YAAY,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AACtF,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACnF,YAAY,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACjG,YAAY,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAChF,YAAY,EACV,aAAa,EACb,QAAQ,EACR,cAAc,EACd,WAAW,EACX,aAAa,EACb,cAAc,GACf,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC3E,YAAY,EACV,mBAAmB,EACnB,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,eAAe,GAChB,MAAM,qCAAqC,CAAC;AAC7C,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AACjF,YAAY,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AAC9F,YAAY,EACV,wBAAwB,EACxB,UAAU,EACV,kBAAkB,EAClB,2BAA2B,EAC3B,YAAY,EACZ,eAAe,GAChB,MAAM,0CAA0C,CAAC;AAClD,OAAO,EACL,eAAe,EACf,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,GACpB,MAAM,0CAA0C,CAAC;AAClD,YAAY,EACV,0BAA0B,EAC1B,WAAW,EACX,aAAa,EACb,SAAS,GACV,MAAM,4CAA4C,CAAC;AACpD,YAAY,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACjG,YAAY,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAChE,YAAY,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,YAAY,EAAE,qBAAqB,EAAE,aAAa,EAAE,MAAM,uCAAuC,CAAC;AAClG,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,wBAAwB,EACxB,4BAA4B,GAC7B,MAAM,uCAAuC,CAAC;AAC/C,YAAY,EACV,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,iCAAiC,CAAC;AACzC,YAAY,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAC;AACtE,YAAY,EAAE,iBAAiB,EAAE,MAAM,mCAAmC,CAAC;AAC3E,YAAY,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,iCAAiC,CAAC;AACtF,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACnF,YAAY,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACjG,YAAY,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAChF,YAAY,EACV,aAAa,EACb,QAAQ,EACR,cAAc,EACd,WAAW,EACX,aAAa,EACb,cAAc,GACf,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC3E,YAAY,EACV,mBAAmB,EACnB,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,eAAe,GAChB,MAAM,qCAAqC,CAAC;AAC7C,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AACjF,YAAY,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AAC9F,YAAY,EACV,wBAAwB,EACxB,UAAU,EACV,kBAAkB,EAClB,2BAA2B,EAC3B,YAAY,EACZ,eAAe,GAChB,MAAM,0CAA0C,CAAC;AAClD,OAAO,EACL,eAAe,EACf,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,GACpB,MAAM,0CAA0C,CAAC;AAClD,YAAY,EACV,0BAA0B,EAC1B,WAAW,EACX,aAAa,EACb,SAAS,GACV,MAAM,4CAA4C,CAAC;AACpD,YAAY,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AACjG,YAAY,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AAC7E,YAAY,EACV,uBAAuB,EACvB,oBAAoB,EACpB,qBAAqB,GACtB,MAAM,yCAAyC,CAAC;AACjD,YAAY,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AACpF,YAAY,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAChE,YAAY,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC"}
@@ -0,0 +1,33 @@
1
+ /**
2
+ * Project Scaffold Service Interface
3
+ *
4
+ * Output port for creating brand-new project folders on the filesystem.
5
+ * The adapter owns "where projects live" (e.g. $SHEP_HOME/projects) and
6
+ * how they are bootstrapped (mkdir + git init + initial commit) so the
7
+ * application layer stays free of node:fs / child_process imports.
8
+ */
9
+ export interface ScaffoldProjectInput {
10
+ /** Filesystem-safe slug derived from the user-supplied project name. */
11
+ slug: string;
12
+ }
13
+ export interface ScaffoldProjectResult {
14
+ /** Absolute path to the created folder, normalized to forward slashes. */
15
+ path: string;
16
+ }
17
+ export interface IProjectScaffoldService {
18
+ /**
19
+ * Check whether a project folder with the given slug already exists.
20
+ * Used by the use case to fail fast without overwriting user data.
21
+ */
22
+ projectExists(slug: string): Promise<boolean>;
23
+ /**
24
+ * Create the project folder under the configured projects root, initialise
25
+ * git, and commit an empty initial commit so the canvas can resolve a real
26
+ * HEAD immediately. Implementations should be cross-platform safe.
27
+ *
28
+ * @throws Error if the directory cannot be created. Git init failures
29
+ * should be tolerated (the folder still exists) but logged.
30
+ */
31
+ scaffoldProject(input: ScaffoldProjectInput): Promise<ScaffoldProjectResult>;
32
+ }
33
+ //# sourceMappingURL=project-scaffold-service.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"project-scaffold-service.interface.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/application/ports/output/services/project-scaffold-service.interface.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,MAAM,WAAW,oBAAoB;IACnC,wEAAwE;IACxE,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,qBAAqB;IACpC,0EAA0E;IAC1E,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,uBAAuB;IACtC;;;OAGG;IACH,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAE9C;;;;;;;OAOG;IACH,eAAe,CAAC,KAAK,EAAE,oBAAoB,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAAC;CAC9E"}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Project Scaffold Service Interface
3
+ *
4
+ * Output port for creating brand-new project folders on the filesystem.
5
+ * The adapter owns "where projects live" (e.g. $SHEP_HOME/projects) and
6
+ * how they are bootstrapped (mkdir + git init + initial commit) so the
7
+ * application layer stays free of node:fs / child_process imports.
8
+ */
9
+ export {};
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Check Agent Auth Use Case
3
+ *
4
+ * Reports the install + auth status of the currently selected AI coding
5
+ * agent. Used by the onboarding empty state to drive the "Ready / Not
6
+ * installed / Needs auth" checklist.
7
+ *
8
+ * Owns:
9
+ * - Reading the active agent type from settings
10
+ * - Mapping agent type → user-facing label, tool id, binary name
11
+ * - Looking up tool installation status via ListToolsUseCase
12
+ * - Delegating credential detection to IAgentAuthDetectorService
13
+ *
14
+ * Presentation-agnostic: callable from CLI, TUI, and Web identically.
15
+ * The shape returned mirrors what the web UI consumes today; CLI/TUI may
16
+ * project a subset.
17
+ */
18
+ import type { IAgentAuthDetectorService } from '../../ports/output/services/agent-auth-detector.interface.js';
19
+ import { ListToolsUseCase } from '../tools/list-tools.use-case.js';
20
+ export interface CheckAgentAuthResult {
21
+ /** Raw agent type string (matches AgentType enum values, or 'unknown'). */
22
+ agentType: string;
23
+ /** Whether the CLI tool binary is installed. */
24
+ installed: boolean;
25
+ /** Whether credentials / auth appear valid. */
26
+ authenticated: boolean;
27
+ /** Human-readable label for the agent (e.g. "Claude Code"). */
28
+ label: string;
29
+ /** CLI binary name (e.g. "claude", "gemini"). */
30
+ binaryName: string | null;
31
+ /** Shell command to install the tool, resolved for the current platform. */
32
+ installCommand: string | null;
33
+ /** Hint to show the user when not authenticated (typically the binary name). */
34
+ authCommand: string | null;
35
+ }
36
+ export declare class CheckAgentAuthUseCase {
37
+ private readonly listToolsUseCase;
38
+ private readonly authDetector;
39
+ constructor(listToolsUseCase: ListToolsUseCase, authDetector: IAgentAuthDetectorService);
40
+ execute(): Promise<CheckAgentAuthResult>;
41
+ }
42
+ //# sourceMappingURL=check-agent-auth.use-case.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"check-agent-auth.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/application/use-cases/agents/check-agent-auth.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAMH,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,8DAA8D,CAAC;AAC9G,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAC;AAEnE,MAAM,WAAW,oBAAoB;IACnC,2EAA2E;IAC3E,SAAS,EAAE,MAAM,CAAC;IAClB,gDAAgD;IAChD,SAAS,EAAE,OAAO,CAAC;IACnB,+CAA+C;IAC/C,aAAa,EAAE,OAAO,CAAC;IACvB,+DAA+D;IAC/D,KAAK,EAAE,MAAM,CAAC;IACd,iDAAiD;IACjD,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,4EAA4E;IAC5E,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,gFAAgF;IAChF,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5B;AAuCD,qBACa,qBAAqB;IAEJ,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IAE3D,OAAO,CAAC,QAAQ,CAAC,YAAY;gBAFc,gBAAgB,EAAE,gBAAgB,EAE5D,YAAY,EAAE,yBAAyB;IAGpD,OAAO,IAAI,OAAO,CAAC,oBAAoB,CAAC;CAkE/C"}
@@ -0,0 +1,134 @@
1
+ /**
2
+ * Check Agent Auth Use Case
3
+ *
4
+ * Reports the install + auth status of the currently selected AI coding
5
+ * agent. Used by the onboarding empty state to drive the "Ready / Not
6
+ * installed / Needs auth" checklist.
7
+ *
8
+ * Owns:
9
+ * - Reading the active agent type from settings
10
+ * - Mapping agent type → user-facing label, tool id, binary name
11
+ * - Looking up tool installation status via ListToolsUseCase
12
+ * - Delegating credential detection to IAgentAuthDetectorService
13
+ *
14
+ * Presentation-agnostic: callable from CLI, TUI, and Web identically.
15
+ * The shape returned mirrors what the web UI consumes today; CLI/TUI may
16
+ * project a subset.
17
+ */
18
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
19
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
20
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
21
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
22
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
23
+ };
24
+ var __metadata = (this && this.__metadata) || function (k, v) {
25
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
26
+ };
27
+ var __param = (this && this.__param) || function (paramIndex, decorator) {
28
+ return function (target, key) { decorator(target, key, paramIndex); }
29
+ };
30
+ import { injectable, inject } from 'tsyringe';
31
+ import { AgentType } from '../../../domain/generated/output.js';
32
+ import { getSettings } from '../../../infrastructure/services/settings.service.js';
33
+ import { ListToolsUseCase } from '../tools/list-tools.use-case.js';
34
+ /**
35
+ * Co-located metadata table — pure facts about each AgentType. Lives in
36
+ * the use case because it is the only consumer that needs all three pieces
37
+ * (label + tool id + binary) wired together.
38
+ */
39
+ const AGENT_METADATA = {
40
+ [AgentType.ClaudeCode]: {
41
+ label: 'Claude Code',
42
+ toolId: 'claude-code',
43
+ binaryName: 'claude',
44
+ },
45
+ [AgentType.Cursor]: { label: 'Cursor Agent', toolId: 'cursor-cli', binaryName: 'cursor-agent' },
46
+ [AgentType.GeminiCli]: { label: 'Gemini CLI', toolId: 'gemini-cli', binaryName: 'gemini' },
47
+ [AgentType.CopilotCli]: { label: 'Copilot CLI', toolId: 'copilot-cli', binaryName: 'copilot' },
48
+ [AgentType.Aider]: { label: 'Aider', toolId: null, binaryName: null },
49
+ [AgentType.Continue]: { label: 'Continue', toolId: null, binaryName: null },
50
+ [AgentType.Dev]: { label: 'Demo', toolId: null, binaryName: null },
51
+ };
52
+ const UNKNOWN_RESULT = {
53
+ agentType: 'unknown',
54
+ installed: false,
55
+ authenticated: false,
56
+ label: 'Unknown',
57
+ binaryName: null,
58
+ installCommand: null,
59
+ authCommand: null,
60
+ };
61
+ let CheckAgentAuthUseCase = class CheckAgentAuthUseCase {
62
+ listToolsUseCase;
63
+ authDetector;
64
+ constructor(listToolsUseCase, authDetector) {
65
+ this.listToolsUseCase = listToolsUseCase;
66
+ this.authDetector = authDetector;
67
+ }
68
+ async execute() {
69
+ let agentType;
70
+ try {
71
+ agentType = getSettings().agent.type;
72
+ }
73
+ catch {
74
+ return UNKNOWN_RESULT;
75
+ }
76
+ const metadata = AGENT_METADATA[agentType];
77
+ if (!metadata) {
78
+ return { ...UNKNOWN_RESULT, agentType };
79
+ }
80
+ // Agents with no associated tool (dev/demo, aider, continue) — assume ready.
81
+ if (!metadata.toolId) {
82
+ return {
83
+ agentType,
84
+ installed: true,
85
+ authenticated: true,
86
+ label: metadata.label,
87
+ binaryName: metadata.binaryName,
88
+ installCommand: null,
89
+ authCommand: null,
90
+ };
91
+ }
92
+ // Resolve installation status from the tool catalogue.
93
+ let installed = false;
94
+ let installCommand = null;
95
+ try {
96
+ const tools = await this.listToolsUseCase.execute();
97
+ const tool = tools.find((t) => t.id === metadata.toolId);
98
+ installed = tool?.status.status === 'available';
99
+ installCommand = tool?.installCommand ?? null;
100
+ }
101
+ catch {
102
+ installed = false;
103
+ }
104
+ if (!installed) {
105
+ return {
106
+ agentType,
107
+ installed: false,
108
+ authenticated: false,
109
+ label: metadata.label,
110
+ binaryName: metadata.binaryName,
111
+ installCommand,
112
+ authCommand: metadata.binaryName ? `Install ${metadata.label} first` : null,
113
+ };
114
+ }
115
+ // Tool is installed — defer credential detection to the platform adapter.
116
+ const authenticated = await this.authDetector.isAuthenticated(agentType, metadata.binaryName);
117
+ return {
118
+ agentType,
119
+ installed: true,
120
+ authenticated,
121
+ label: metadata.label,
122
+ binaryName: metadata.binaryName,
123
+ installCommand,
124
+ authCommand: authenticated ? null : metadata.binaryName,
125
+ };
126
+ }
127
+ };
128
+ CheckAgentAuthUseCase = __decorate([
129
+ injectable(),
130
+ __param(0, inject(ListToolsUseCase)),
131
+ __param(1, inject('IAgentAuthDetectorService')),
132
+ __metadata("design:paramtypes", [ListToolsUseCase, Object])
133
+ ], CheckAgentAuthUseCase);
134
+ export { CheckAgentAuthUseCase };
@@ -2,8 +2,8 @@
2
2
  * CheckAndUnblockFeaturesUseCase
3
3
  *
4
4
  * Evaluates whether blocked direct children of a parent feature are now
5
- * eligible to start, and if so transitions them to Started, rebases their
6
- * branches onto the parent branch, and spawns their agents.
5
+ * eligible to start, and if so transitions them to Started and spawns their
6
+ * agents.
7
7
  *
8
8
  * Business Rules:
9
9
  * - Only direct children of parentFeatureId are evaluated (no recursive traversal).
@@ -11,63 +11,20 @@
11
11
  * - Gate: parent lifecycle must be in POST_IMPLEMENTATION (Implementation, Review, Maintain).
12
12
  * - Idempotent: already-Started children are not touched; calling execute() twice is safe.
13
13
  * - spawn() is skipped for children missing agentRunId or specPath (defensive guard).
14
- * - Auto-rebase: each blocked child's branch is rebased onto the parent branch
15
- * before spawning the agent. Rebase failures are isolated per-child and recorded
16
- * in the activity timeline. Agent spawns regardless of rebase outcome.
17
- * - NFR-3: rebase is skipped if the child has an active (running) agent run.
18
14
  *
19
15
  * Called from: UpdateFeatureLifecycleUseCase after every lifecycle transition.
20
16
  */
21
17
  import type { IFeatureRepository } from '../../ports/output/repositories/feature-repository.interface.js';
22
18
  import type { IFeatureAgentProcessService } from '../../ports/output/agents/feature-agent-process.interface.js';
23
- import type { IGitPrService } from '../../ports/output/services/git-pr-service.interface.js';
24
- import type { IWorktreeService } from '../../ports/output/services/worktree-service.interface.js';
25
- import type { ConflictResolutionService } from '../../../infrastructure/services/agents/conflict-resolution/conflict-resolution.service.js';
26
- import type { IAgentRunRepository } from '../../ports/output/agents/agent-run-repository.interface.js';
27
- import type { IPhaseTimingRepository } from '../../ports/output/agents/phase-timing-repository.interface.js';
28
19
  export declare class CheckAndUnblockFeaturesUseCase {
29
20
  private readonly featureRepo;
30
21
  private readonly agentProcess;
31
- private readonly gitPrService;
32
- private readonly worktreeService;
33
- private readonly conflictResolutionService;
34
- private readonly agentRunRepo;
35
- private readonly phaseTimingRepo;
36
- constructor(featureRepo: IFeatureRepository, agentProcess: IFeatureAgentProcessService, gitPrService: IGitPrService, worktreeService: IWorktreeService, conflictResolutionService: ConflictResolutionService, agentRunRepo: IAgentRunRepository, phaseTimingRepo: IPhaseTimingRepository);
22
+ constructor(featureRepo: IFeatureRepository, agentProcess: IFeatureAgentProcessService);
37
23
  /**
38
24
  * Check and unblock direct children of the given parent feature.
39
25
  *
40
26
  * @param parentFeatureId - ID of the feature whose children should be evaluated.
41
27
  */
42
28
  execute(parentFeatureId: string): Promise<void>;
43
- /**
44
- * Rebase a child feature branch onto the parent feature branch.
45
- *
46
- * Creates an agent run + phase timing for activity timeline tracking.
47
- * Stashes uncommitted changes before rebase and restores in finally block.
48
- * Delegates to ConflictResolutionService on conflicts.
49
- * Failures are recorded but do not prevent agent spawn.
50
- *
51
- * Skips rebase if the child has an active (running) agent run (NFR-3).
52
- */
53
- private rebaseChildOntoParent;
54
- /**
55
- * Perform the rebase with conflict resolution.
56
- */
57
- private performRebase;
58
- /**
59
- * Create a timeout promise that rejects after the specified duration.
60
- */
61
- private createTimeout;
62
- /**
63
- * Complete the phase timing and update agent run status.
64
- */
65
- private completeTiming;
66
- /**
67
- * Resolve the correct working directory for the child feature.
68
- * Uses the worktree path if a worktree exists for this branch,
69
- * otherwise falls back to the repository root.
70
- */
71
- private resolveCwd;
72
29
  }
73
30
  //# sourceMappingURL=check-and-unblock-features.use-case.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"check-and-unblock-features.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAMH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,iEAAiE,CAAC;AAC1G,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,8DAA8D,CAAC;AAChH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yDAAyD,CAAC;AAK7F,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,2DAA2D,CAAC;AAClG,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,4FAA4F,CAAC;AAC5I,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6DAA6D,CAAC;AACvG,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gEAAgE,CAAC;AAM7G,qBACa,8BAA8B;IAET,OAAO,CAAC,QAAQ,CAAC,WAAW;IAE1D,OAAO,CAAC,QAAQ,CAAC,YAAY;IAE7B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAE7B,OAAO,CAAC,QAAQ,CAAC,eAAe;IAEhC,OAAO,CAAC,QAAQ,CAAC,yBAAyB;IAE1C,OAAO,CAAC,QAAQ,CAAC,YAAY;IAE7B,OAAO,CAAC,QAAQ,CAAC,eAAe;gBAZe,WAAW,EAAE,kBAAkB,EAE7D,YAAY,EAAE,2BAA2B,EAEzC,YAAY,EAAE,aAAa,EAE3B,eAAe,EAAE,gBAAgB,EAEjC,yBAAyB,EAAE,yBAAyB,EAEpD,YAAY,EAAE,mBAAmB,EAEjC,eAAe,EAAE,sBAAsB;IAG1D;;;;OAIG;IACG,OAAO,CAAC,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAgDrD;;;;;;;;;OASG;YACW,qBAAqB;IAwEnC;;OAEG;YACW,aAAa;IAiB3B;;OAEG;IACH,OAAO,CAAC,aAAa;IAMrB;;OAEG;YACW,cAAc;IAwB5B;;;;OAIG;YACW,UAAU;CAOzB"}
1
+ {"version":3,"file":"check-and-unblock-features.use-case.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAIH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,iEAAiE,CAAC;AAC1G,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,8DAA8D,CAAC;AAGhH,qBACa,8BAA8B;IAET,OAAO,CAAC,QAAQ,CAAC,WAAW;IAE1D,OAAO,CAAC,QAAQ,CAAC,YAAY;gBAFkB,WAAW,EAAE,kBAAkB,EAE7D,YAAY,EAAE,2BAA2B;IAG5D;;;;OAIG;IACG,OAAO,CAAC,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;CA4CtD"}