@shepai/cli 1.165.0 → 1.166.0-pr513.7e8c227

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 (415) hide show
  1. package/apis/json-schema/Feature.yaml +17 -5
  2. package/apis/json-schema/FeatureMode.yaml +8 -0
  3. package/apis/json-schema/SdlcLifecycle.yaml +1 -0
  4. package/apis/json-schema/StageTimeouts.yaml +7 -2
  5. package/apis/json-schema/WorkflowConfig.yaml +10 -5
  6. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +2 -2
  7. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -1
  8. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts +4 -3
  9. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -1
  10. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +2 -2
  11. package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +2 -2
  12. package/dist/packages/core/src/application/use-cases/features/adopt-branch.use-case.d.ts.map +1 -1
  13. package/dist/packages/core/src/application/use-cases/features/adopt-branch.use-case.js +3 -2
  14. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +2 -2
  15. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
  16. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +18 -7
  17. package/dist/packages/core/src/application/use-cases/features/create/types.d.ts +3 -2
  18. package/dist/packages/core/src/application/use-cases/features/create/types.d.ts.map +1 -1
  19. package/dist/packages/core/src/application/use-cases/features/delete-feature.use-case.d.ts.map +1 -1
  20. package/dist/packages/core/src/application/use-cases/features/delete-feature.use-case.js +13 -0
  21. package/dist/packages/core/src/application/use-cases/features/promote/promote-exploration.use-case.d.ts +40 -0
  22. package/dist/packages/core/src/application/use-cases/features/promote/promote-exploration.use-case.d.ts.map +1 -0
  23. package/dist/packages/core/src/application/use-cases/features/promote/promote-exploration.use-case.js +125 -0
  24. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +2 -2
  25. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
  26. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +5 -3
  27. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  28. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +2 -1
  29. package/dist/packages/core/src/domain/generated/output.d.ts +28 -6
  30. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  31. package/dist/packages/core/src/domain/generated/output.js +7 -0
  32. package/dist/packages/core/src/domain/lifecycle-gates.d.ts +21 -6
  33. package/dist/packages/core/src/domain/lifecycle-gates.d.ts.map +1 -1
  34. package/dist/packages/core/src/domain/lifecycle-gates.js +25 -6
  35. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  36. package/dist/packages/core/src/infrastructure/di/container.js +5 -0
  37. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts +3 -1
  38. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.d.ts.map +1 -1
  39. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/feature.mapper.js +10 -4
  40. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +3 -1
  41. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  42. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +10 -2
  43. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/051-replace-fast-with-mode.d.ts +19 -0
  44. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/051-replace-fast-with-mode.d.ts.map +1 -0
  45. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/051-replace-fast-with-mode.js +46 -0
  46. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-stage-timeout-fast-implement-ms.d.ts +15 -0
  47. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-stage-timeout-fast-implement-ms.d.ts.map +1 -0
  48. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-add-stage-timeout-fast-implement-ms.js +22 -0
  49. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-replace-default-fast-mode-with-default-mode.d.ts +17 -0
  50. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-replace-default-fast-mode-with-default-mode.d.ts.map +1 -0
  51. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/052-replace-default-fast-mode-with-default-mode.js +37 -0
  52. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-exploration-max-iterations.d.ts +12 -0
  53. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-exploration-max-iterations.d.ts.map +1 -0
  54. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-exploration-max-iterations.js +17 -0
  55. package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.d.ts.map +1 -1
  56. package/dist/packages/core/src/infrastructure/repositories/sqlite-feature.repository.js +5 -3
  57. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -3
  58. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/exploration-agent-graph.d.ts +362 -0
  59. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/exploration-agent-graph.d.ts.map +1 -0
  60. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/exploration-agent-graph.js +72 -0
  61. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +20 -0
  62. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -1
  63. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +68 -0
  64. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
  65. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +2 -2
  66. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
  67. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +3 -3
  68. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +2 -2
  69. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
  70. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +19 -8
  71. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.d.ts.map +1 -1
  72. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.js +1 -0
  73. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/apply-feedback.node.d.ts +18 -0
  74. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/apply-feedback.node.d.ts.map +1 -0
  75. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/apply-feedback.node.js +52 -0
  76. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  77. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +3 -2
  78. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/apply-feedback.prompt.d.ts +24 -0
  79. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/apply-feedback.prompt.d.ts.map +1 -0
  80. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/apply-feedback.prompt.js +38 -0
  81. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/prototype-generate.prompt.d.ts +31 -0
  82. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/prototype-generate.prompt.d.ts.map +1 -0
  83. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/prototype-generate.prompt.js +240 -0
  84. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prototype-generate.node.d.ts +21 -0
  85. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prototype-generate.node.d.ts.map +1 -0
  86. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/prototype-generate.node.js +134 -0
  87. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts +4 -0
  88. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts.map +1 -1
  89. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.js +17 -0
  90. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts +1 -1
  91. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
  92. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.js +7 -4
  93. package/dist/src/presentation/cli/commands/feat/feedback.command.d.ts +12 -0
  94. package/dist/src/presentation/cli/commands/feat/feedback.command.d.ts.map +1 -0
  95. package/dist/src/presentation/cli/commands/feat/feedback.command.js +64 -0
  96. package/dist/src/presentation/cli/commands/feat/index.d.ts.map +1 -1
  97. package/dist/src/presentation/cli/commands/feat/index.js +5 -1
  98. package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
  99. package/dist/src/presentation/cli/commands/feat/new.command.js +18 -5
  100. package/dist/src/presentation/cli/commands/feat/promote.command.d.ts +13 -0
  101. package/dist/src/presentation/cli/commands/feat/promote.command.d.ts.map +1 -0
  102. package/dist/src/presentation/cli/commands/feat/promote.command.js +41 -0
  103. package/dist/src/presentation/web/app/actions/create-feature.d.ts +3 -2
  104. package/dist/src/presentation/web/app/actions/create-feature.d.ts.map +1 -1
  105. package/dist/src/presentation/web/app/actions/create-feature.js +3 -3
  106. package/dist/src/presentation/web/app/actions/discard-exploration.d.ts +9 -0
  107. package/dist/src/presentation/web/app/actions/discard-exploration.d.ts.map +1 -0
  108. package/dist/src/presentation/web/app/actions/discard-exploration.js +29 -0
  109. package/dist/src/presentation/web/app/actions/get-workflow-defaults.d.ts +2 -1
  110. package/dist/src/presentation/web/app/actions/get-workflow-defaults.d.ts.map +1 -1
  111. package/dist/src/presentation/web/app/actions/get-workflow-defaults.js +2 -1
  112. package/dist/src/presentation/web/app/actions/promote-exploration.d.ts +11 -0
  113. package/dist/src/presentation/web/app/actions/promote-exploration.d.ts.map +1 -0
  114. package/dist/src/presentation/web/app/actions/promote-exploration.js +21 -0
  115. package/dist/src/presentation/web/app/actions/submit-exploration-feedback.d.ts +12 -0
  116. package/dist/src/presentation/web/app/actions/submit-exploration-feedback.d.ts.map +1 -0
  117. package/dist/src/presentation/web/app/actions/submit-exploration-feedback.js +40 -0
  118. package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -1
  119. package/dist/src/presentation/web/app/api/agent-events/route.js +1 -0
  120. package/dist/src/presentation/web/app/build-feature-node-data.d.ts.map +1 -1
  121. package/dist/src/presentation/web/app/build-feature-node-data.js +4 -2
  122. package/dist/src/presentation/web/app/build-graph-nodes.js +4 -2
  123. package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.d.ts +1 -1
  124. package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.d.ts.map +1 -1
  125. package/dist/src/presentation/web/components/common/control-center-drawer/drawer-view.js +3 -0
  126. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.d.ts.map +1 -1
  127. package/dist/src/presentation/web/components/common/control-center-drawer/feature-drawer-client.js +65 -1
  128. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts +3 -2
  129. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
  130. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +15 -11
  131. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.d.ts.map +1 -1
  132. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.stories.js +2 -1
  133. package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.d.ts +8 -0
  134. package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.d.ts.map +1 -0
  135. package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.js +33 -0
  136. package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.stories.d.ts +10 -0
  137. package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.stories.d.ts.map +1 -0
  138. package/dist/src/presentation/web/components/common/feature-create-drawer/mode-selector.stories.js +33 -0
  139. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts +6 -1
  140. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.d.ts.map +1 -1
  141. package/dist/src/presentation/web/components/common/feature-drawer-tabs/feature-drawer-tabs.js +16 -4
  142. package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.d.ts +11 -0
  143. package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.d.ts.map +1 -0
  144. package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.js +34 -0
  145. package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.stories.d.ts +16 -0
  146. package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.stories.d.ts.map +1 -0
  147. package/dist/src/presentation/web/components/common/feature-drawer-tabs/prototype-tab.stories.js +70 -0
  148. package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.d.ts.map +1 -1
  149. package/dist/src/presentation/web/components/common/feature-node/derive-feature-state.js +2 -0
  150. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +6 -2
  151. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  152. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.js +12 -0
  153. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  154. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +7 -2
  155. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  156. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +14 -6
  157. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
  158. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +1 -0
  159. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts.map +1 -1
  160. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.js +11 -0
  161. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts.map +1 -1
  162. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js +5 -3
  163. package/dist/src/presentation/web/components/ui/toggle-group.d.ts +10 -0
  164. package/dist/src/presentation/web/components/ui/toggle-group.d.ts.map +1 -0
  165. package/dist/src/presentation/web/components/ui/toggle-group.js +22 -0
  166. package/dist/src/presentation/web/components/ui/toggle.d.ts +10 -0
  167. package/dist/src/presentation/web/components/ui/toggle.d.ts.map +1 -0
  168. package/dist/src/presentation/web/components/ui/toggle.js +26 -0
  169. package/dist/translations/ar/cli.json +24 -0
  170. package/dist/translations/ar/web.json +8 -2
  171. package/dist/translations/de/cli.json +24 -0
  172. package/dist/translations/de/web.json +8 -2
  173. package/dist/translations/en/cli.json +24 -0
  174. package/dist/translations/en/web.json +8 -2
  175. package/dist/translations/es/cli.json +24 -0
  176. package/dist/translations/es/web.json +8 -2
  177. package/dist/translations/fr/cli.json +24 -0
  178. package/dist/translations/fr/web.json +8 -2
  179. package/dist/translations/he/cli.json +24 -0
  180. package/dist/translations/he/web.json +8 -2
  181. package/dist/translations/pt/cli.json +24 -0
  182. package/dist/translations/pt/web.json +8 -2
  183. package/dist/translations/ru/cli.json +24 -0
  184. package/dist/translations/ru/web.json +8 -2
  185. package/dist/tsconfig.build.tsbuildinfo +1 -1
  186. package/package.json +1 -1
  187. package/web/.next/BUILD_ID +1 -1
  188. package/web/.next/build-manifest.json +2 -2
  189. package/web/.next/fallback-build-manifest.json +2 -2
  190. package/web/.next/prerender-manifest.json +3 -3
  191. package/web/.next/required-server-files.js +3 -3
  192. package/web/.next/required-server-files.json +3 -3
  193. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
  194. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  195. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  196. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
  197. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  198. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  199. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +30 -30
  200. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  201. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  202. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +119 -74
  203. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +2 -1
  204. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  205. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  206. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +119 -74
  207. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +2 -1
  208. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  209. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  210. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  211. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  212. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  213. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  214. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  215. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  216. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
  217. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  218. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  219. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +30 -30
  220. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  221. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  222. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +119 -74
  223. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +2 -1
  224. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  225. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  226. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +119 -74
  227. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +2 -1
  228. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  229. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  230. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
  231. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  232. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  233. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  234. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  235. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  236. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  237. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  238. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  239. package/web/.next/server/app/_global-error.html +2 -2
  240. package/web/.next/server/app/_global-error.rsc +1 -1
  241. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  242. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  243. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  244. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  245. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  246. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
  247. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  248. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  249. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  250. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  251. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  252. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  253. package/web/.next/server/app/settings/page/server-reference-manifest.json +9 -9
  254. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  255. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  256. package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
  257. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  258. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  259. package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
  260. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  261. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  262. package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
  263. package/web/.next/server/app/version/page.js.nft.json +1 -1
  264. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  265. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  266. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
  267. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +1 -1
  268. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +1 -1
  269. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  270. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js +1 -1
  271. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js.map +1 -1
  272. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  273. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  274. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  275. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  276. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +3 -3
  277. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  278. package/web/.next/server/chunks/ssr/[root-of-the-server]__1abe77bb._.js +2 -2
  279. package/web/.next/server/chunks/ssr/[root-of-the-server]__1abe77bb._.js.map +1 -1
  280. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js +1 -1
  281. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js.map +1 -1
  282. package/web/.next/server/chunks/ssr/[root-of-the-server]__2d0c3840._.js +1 -1
  283. package/web/.next/server/chunks/ssr/[root-of-the-server]__2d0c3840._.js.map +1 -1
  284. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  285. package/web/.next/server/chunks/ssr/[root-of-the-server]__4ed9b909._.js +1 -1
  286. package/web/.next/server/chunks/ssr/[root-of-the-server]__58a5b819._.js +4 -0
  287. package/web/.next/server/chunks/ssr/[root-of-the-server]__58a5b819._.js.map +1 -0
  288. package/web/.next/server/chunks/ssr/[root-of-the-server]__67a193c8._.js +4 -0
  289. package/web/.next/server/chunks/ssr/[root-of-the-server]__67a193c8._.js.map +1 -0
  290. package/web/.next/server/chunks/ssr/[root-of-the-server]__684a868c._.js +1 -1
  291. package/web/.next/server/chunks/ssr/[root-of-the-server]__684a868c._.js.map +1 -1
  292. package/web/.next/server/chunks/ssr/[root-of-the-server]__754fb18e._.js +4 -0
  293. package/web/.next/server/chunks/ssr/[root-of-the-server]__754fb18e._.js.map +1 -0
  294. package/web/.next/server/chunks/ssr/[root-of-the-server]__7562afc6._.js +2 -2
  295. package/web/.next/server/chunks/ssr/[root-of-the-server]__7562afc6._.js.map +1 -1
  296. package/web/.next/server/chunks/ssr/[root-of-the-server]__8b0aac03._.js +1 -1
  297. package/web/.next/server/chunks/ssr/[root-of-the-server]__96ba046b._.js +4 -0
  298. package/web/.next/server/chunks/ssr/[root-of-the-server]__96ba046b._.js.map +1 -0
  299. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js +1 -1
  300. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js.map +1 -1
  301. package/web/.next/server/chunks/ssr/[root-of-the-server]__c1262d08._.js +1 -1
  302. package/web/.next/server/chunks/ssr/[root-of-the-server]__c16bf5de._.js +1 -1
  303. package/web/.next/server/chunks/ssr/[root-of-the-server]__c16bf5de._.js.map +1 -1
  304. package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js +1 -1
  305. package/web/.next/server/chunks/ssr/[root-of-the-server]__dffa13c5._.js.map +1 -1
  306. package/web/.next/server/chunks/ssr/_02e01240._.js +1 -1
  307. package/web/.next/server/chunks/ssr/_02e01240._.js.map +1 -1
  308. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  309. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  310. package/web/.next/server/chunks/ssr/_0727935d._.js +1 -1
  311. package/web/.next/server/chunks/ssr/_0727935d._.js.map +1 -1
  312. package/web/.next/server/chunks/ssr/_0dc06d07._.js +1 -1
  313. package/web/.next/server/chunks/ssr/_0dc06d07._.js.map +1 -1
  314. package/web/.next/server/chunks/ssr/_12c98a3d._.js +3 -0
  315. package/web/.next/server/chunks/ssr/_12c98a3d._.js.map +1 -0
  316. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  317. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  318. package/web/.next/server/chunks/ssr/_18886033._.js +1 -1
  319. package/web/.next/server/chunks/ssr/_18886033._.js.map +1 -1
  320. package/web/.next/server/chunks/ssr/_22e00a14._.js +1 -1
  321. package/web/.next/server/chunks/ssr/_22e00a14._.js.map +1 -1
  322. package/web/.next/server/chunks/ssr/_5119a3df._.js +1 -1
  323. package/web/.next/server/chunks/ssr/_5119a3df._.js.map +1 -1
  324. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  325. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  326. package/web/.next/server/chunks/ssr/{_44591fa7._.js → _5e0c43c0._.js} +2 -2
  327. package/web/.next/server/chunks/ssr/_5e0c43c0._.js.map +1 -0
  328. package/web/.next/server/chunks/ssr/_5eb460b1._.js +3 -0
  329. package/web/.next/server/chunks/ssr/_5eb460b1._.js.map +1 -0
  330. package/web/.next/server/chunks/ssr/_997b560b._.js +3 -0
  331. package/web/.next/server/chunks/ssr/_997b560b._.js.map +1 -0
  332. package/web/.next/server/chunks/ssr/_a5a5901d._.js +1 -1
  333. package/web/.next/server/chunks/ssr/_a5a5901d._.js.map +1 -1
  334. package/web/.next/server/chunks/ssr/{_616a8ac1._.js → _a8f53ee2._.js} +2 -2
  335. package/web/.next/server/chunks/ssr/_a8f53ee2._.js.map +1 -0
  336. package/web/.next/server/chunks/ssr/_acc5e43e._.js +9 -0
  337. package/web/.next/server/chunks/ssr/_acc5e43e._.js.map +1 -0
  338. package/web/.next/server/chunks/ssr/_ad09f271._.js +1 -1
  339. package/web/.next/server/chunks/ssr/_ad09f271._.js.map +1 -1
  340. package/web/.next/server/chunks/ssr/_c3f595c6._.js +1 -1
  341. package/web/.next/server/chunks/ssr/_c3f595c6._.js.map +1 -1
  342. package/web/.next/server/chunks/ssr/{_d582e961._.js → _cc456d44._.js} +2 -2
  343. package/web/.next/server/chunks/ssr/{_d582e961._.js.map → _cc456d44._.js.map} +1 -1
  344. package/web/.next/server/chunks/ssr/_ea9e1556._.js +1 -1
  345. package/web/.next/server/chunks/ssr/_ea9e1556._.js.map +1 -1
  346. package/web/.next/server/chunks/ssr/_f1ba9be6._.js +2 -2
  347. package/web/.next/server/chunks/ssr/_f1ba9be6._.js.map +1 -1
  348. package/web/.next/server/chunks/ssr/_f33cd07e._.js +2 -2
  349. package/web/.next/server/chunks/ssr/_f33cd07e._.js.map +1 -1
  350. package/web/.next/server/chunks/ssr/_f8b45233._.js +1 -1
  351. package/web/.next/server/chunks/ssr/_f8b45233._.js.map +1 -1
  352. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  353. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  354. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  355. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
  356. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_9453ce8b._.js +3 -0
  357. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_9453ce8b._.js.map +1 -0
  358. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  359. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  360. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  361. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +1 -1
  362. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -1
  363. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  364. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  365. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +1 -1
  366. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +1 -1
  367. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -1
  368. package/web/.next/server/pages/500.html +2 -2
  369. package/web/.next/server/server-reference-manifest.js +1 -1
  370. package/web/.next/server/server-reference-manifest.json +303 -195
  371. package/web/.next/static/chunks/{90fbdf461b7ec652.js → 03d92643ee2190a4.js} +1 -1
  372. package/web/.next/static/chunks/{cad3cca5183ead26.js → 0811164ad80e0ca5.js} +1 -1
  373. package/web/.next/static/chunks/{2b3740e29ed9b3de.js → 0f6208eca3d7d895.js} +2 -2
  374. package/web/.next/static/chunks/{9461ce4baa99276f.js → 14838064627a5dcb.js} +1 -1
  375. package/web/.next/static/chunks/150c00c30ece763b.js +1 -0
  376. package/web/.next/static/chunks/246321074153cf07.js +5 -0
  377. package/web/.next/static/chunks/{ccdd1bc568f11f61.js → 2a641dc89a852e0c.js} +1 -1
  378. package/web/.next/static/chunks/{d5366257d6b9f855.js → 2a9af061f4fbe7f5.js} +1 -1
  379. package/web/.next/static/chunks/2ceebcc839ee0d4b.js +1 -0
  380. package/web/.next/static/chunks/3425ca88c85dddb9.js +1 -0
  381. package/web/.next/static/chunks/{5c6428d4679cd574.js → 453a86648b40099a.js} +1 -1
  382. package/web/.next/static/chunks/84ecdec18d323210.css +1 -0
  383. package/web/.next/static/chunks/85c9f8d4601354cd.js +1 -0
  384. package/web/.next/static/chunks/{65440524d7ee7d13.js → 884fceb3e6a67215.js} +1 -1
  385. package/web/.next/static/chunks/{61e13c3bd0f3cd25.js → 95ecd55bfbbc87aa.js} +3 -3
  386. package/web/.next/static/chunks/{bec9239427893a91.js → c1103035e0d56769.js} +1 -1
  387. package/web/.next/static/chunks/{21f9eacf5581b713.js → d5656afdef3b2ee5.js} +1 -1
  388. package/web/.next/static/chunks/e83613a2d0198a6a.js +1 -0
  389. package/web/.next/server/chunks/ssr/[root-of-the-server]__563e4faf._.js +0 -4
  390. package/web/.next/server/chunks/ssr/[root-of-the-server]__563e4faf._.js.map +0 -1
  391. package/web/.next/server/chunks/ssr/[root-of-the-server]__821a11c1._.js +0 -4
  392. package/web/.next/server/chunks/ssr/[root-of-the-server]__821a11c1._.js.map +0 -1
  393. package/web/.next/server/chunks/ssr/[root-of-the-server]__98740ee4._.js +0 -4
  394. package/web/.next/server/chunks/ssr/[root-of-the-server]__98740ee4._.js.map +0 -1
  395. package/web/.next/server/chunks/ssr/[root-of-the-server]__ba9f9e11._.js +0 -4
  396. package/web/.next/server/chunks/ssr/[root-of-the-server]__ba9f9e11._.js.map +0 -1
  397. package/web/.next/server/chunks/ssr/_44591fa7._.js.map +0 -1
  398. package/web/.next/server/chunks/ssr/_4d49a312._.js +0 -3
  399. package/web/.next/server/chunks/ssr/_4d49a312._.js.map +0 -1
  400. package/web/.next/server/chunks/ssr/_506a3bc3._.js +0 -9
  401. package/web/.next/server/chunks/ssr/_506a3bc3._.js.map +0 -1
  402. package/web/.next/server/chunks/ssr/_616a8ac1._.js.map +0 -1
  403. package/web/.next/server/chunks/ssr/_9215e9ec._.js +0 -3
  404. package/web/.next/server/chunks/ssr/_9215e9ec._.js.map +0 -1
  405. package/web/.next/server/chunks/ssr/node_modules__pnpm_1300ae39._.js +0 -3
  406. package/web/.next/server/chunks/ssr/node_modules__pnpm_1300ae39._.js.map +0 -1
  407. package/web/.next/static/chunks/1a3b885d3f886bcb.js +0 -1
  408. package/web/.next/static/chunks/1e6609edc3367244.css +0 -1
  409. package/web/.next/static/chunks/28ae5046faef6cec.js +0 -1
  410. package/web/.next/static/chunks/558d87d09cd1cc45.js +0 -1
  411. package/web/.next/static/chunks/c96dff98886884ee.js +0 -5
  412. package/web/.next/static/chunks/e4be686cb3bd28f0.js +0 -1
  413. /package/web/.next/static/{rkwlBjHfpnafQpJdBxN27 → i5nbrQ-16hfoxXQF80u89}/_buildManifest.js +0 -0
  414. /package/web/.next/static/{rkwlBjHfpnafQpJdBxN27 → i5nbrQ-16hfoxXQF80u89}/_clientMiddlewareManifest.json +0 -0
  415. /package/web/.next/static/{rkwlBjHfpnafQpJdBxN27 → i5nbrQ-16hfoxXQF80u89}/_ssgManifest.js +0 -0
@@ -69,6 +69,10 @@ export declare function createFastFeatureAgentGraph(depsOrExecutor: FastFeatureA
69
69
  ciFixAttempts: number;
70
70
  ciFixHistory: import("../../../../domain/index.js").CiFixRecord[];
71
71
  ciFixStatus: "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted";
72
+ iterationCount: number;
73
+ maxIterations: number;
74
+ feedbackHistory: string[];
75
+ explorationStatus: "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined;
72
76
  }, {
73
77
  featureId?: string | undefined;
74
78
  repositoryPath?: string | undefined;
@@ -102,6 +106,10 @@ export declare function createFastFeatureAgentGraph(depsOrExecutor: FastFeatureA
102
106
  ciFixAttempts?: number | undefined;
103
107
  ciFixHistory?: import("../../../../domain/index.js").CiFixRecord[] | undefined;
104
108
  ciFixStatus?: "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted" | undefined;
109
+ iterationCount?: number | undefined;
110
+ maxIterations?: number | undefined;
111
+ feedbackHistory?: string[] | undefined;
112
+ explorationStatus?: "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined;
105
113
  }, "__start__" | "fast-implement", {
106
114
  featureId: {
107
115
  (): import("@langchain/langgraph").LastValue<string>;
@@ -155,6 +163,10 @@ export declare function createFastFeatureAgentGraph(depsOrExecutor: FastFeatureA
155
163
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
156
164
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
157
165
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
166
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
167
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
168
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
169
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
158
170
  }, {
159
171
  featureId: {
160
172
  (): import("@langchain/langgraph").LastValue<string>;
@@ -208,6 +220,10 @@ export declare function createFastFeatureAgentGraph(depsOrExecutor: FastFeatureA
208
220
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
209
221
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
210
222
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
223
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
224
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
225
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
226
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
211
227
  }, import("@langchain/langgraph").StateDefinition, {
212
228
  "fast-implement": Partial<import("@langchain/langgraph").StateType<{
213
229
  featureId: {
@@ -262,6 +278,10 @@ export declare function createFastFeatureAgentGraph(depsOrExecutor: FastFeatureA
262
278
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
263
279
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
264
280
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
281
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
282
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
283
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
284
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
265
285
  }>>;
266
286
  }, unknown, unknown>;
267
287
  //# sourceMappingURL=fast-feature-agent-graph.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"fast-feature-agent-graph.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAA0B,KAAK,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AACxF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+DAA+D,CAAC;AAGpG,OAAO,EAAmB,KAAK,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAGlF,OAAO,EAAE,sBAAsB,EAAE,KAAK,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAE5E;;;GAGG;AACH,MAAM,WAAW,yBAAyB;IACxC,QAAQ,EAAE,cAAc,CAAC;IACzB,aAAa,CAAC,EAAE,IAAI,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC;CACjD;AAkBD;;;;;;;;;;;;;GAaG;AACH,wBAAgB,2BAA2B,CACzC,cAAc,EAAE,yBAAyB,GAAG,cAAc,EAC1D,YAAY,CAAC,EAAE,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBA6BnC"}
1
+ {"version":3,"file":"fast-feature-agent-graph.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAA0B,KAAK,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AACxF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+DAA+D,CAAC;AAGpG,OAAO,EAAmB,KAAK,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAGlF,OAAO,EAAE,sBAAsB,EAAE,KAAK,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAE5E;;;GAGG;AACH,MAAM,WAAW,yBAAyB;IACxC,QAAQ,EAAE,cAAc,CAAC;IACzB,aAAa,CAAC,EAAE,IAAI,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC;CACjD;AAkBD;;;;;;;;;;;;;GAaG;AACH,wBAAgB,2BAA2B,CACzC,cAAc,EAAE,yBAAyB,GAAG,cAAc,EAC1D,YAAY,CAAC,EAAE,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBA6BnC"}
@@ -56,6 +56,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
56
56
  ciFixAttempts: number;
57
57
  ciFixHistory: import("../../../../domain/index.js").CiFixRecord[];
58
58
  ciFixStatus: "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted";
59
+ iterationCount: number;
60
+ maxIterations: number;
61
+ feedbackHistory: string[];
62
+ explorationStatus: "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined;
59
63
  }, {
60
64
  featureId?: string | undefined;
61
65
  repositoryPath?: string | undefined;
@@ -89,6 +93,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
89
93
  ciFixAttempts?: number | undefined;
90
94
  ciFixHistory?: import("../../../../domain/index.js").CiFixRecord[] | undefined;
91
95
  ciFixStatus?: "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted" | undefined;
96
+ iterationCount?: number | undefined;
97
+ maxIterations?: number | undefined;
98
+ feedbackHistory?: string[] | undefined;
99
+ explorationStatus?: "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined;
92
100
  }, "plan" | "implement" | "__start__" | "analyze" | "requirements" | "research" | "validate_spec_analyze" | "validate_spec_requirements" | "validate_research" | "validate_plan_tasks" | "repair_spec_analyze" | "repair_spec_requirements" | "repair_research" | "repair_plan_tasks", {
93
101
  featureId: {
94
102
  (): import("@langchain/langgraph").LastValue<string>;
@@ -142,6 +150,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
142
150
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
143
151
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
144
152
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
153
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
154
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
155
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
156
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
145
157
  }, {
146
158
  featureId: {
147
159
  (): import("@langchain/langgraph").LastValue<string>;
@@ -195,6 +207,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
195
207
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
196
208
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
197
209
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
210
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
211
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
212
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
213
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
198
214
  }, import("@langchain/langgraph").StateDefinition, {
199
215
  analyze: Partial<import("@langchain/langgraph").StateType<{
200
216
  featureId: {
@@ -249,6 +265,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
249
265
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
250
266
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
251
267
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
268
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
269
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
270
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
271
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
252
272
  }>>;
253
273
  requirements: Partial<import("@langchain/langgraph").StateType<{
254
274
  featureId: {
@@ -303,6 +323,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
303
323
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
304
324
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
305
325
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
326
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
327
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
328
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
329
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
306
330
  }>>;
307
331
  research: Partial<import("@langchain/langgraph").StateType<{
308
332
  featureId: {
@@ -357,6 +381,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
357
381
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
358
382
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
359
383
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
384
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
385
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
386
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
387
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
360
388
  }>>;
361
389
  plan: Partial<import("@langchain/langgraph").StateType<{
362
390
  featureId: {
@@ -411,6 +439,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
411
439
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
412
440
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
413
441
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
442
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
443
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
444
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
445
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
414
446
  }>>;
415
447
  implement: Partial<import("@langchain/langgraph").StateType<{
416
448
  featureId: {
@@ -465,6 +497,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
465
497
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
466
498
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
467
499
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
500
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
501
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
502
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
503
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
468
504
  }>>;
469
505
  validate_spec_analyze: Partial<import("@langchain/langgraph").StateType<{
470
506
  featureId: {
@@ -519,6 +555,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
519
555
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
520
556
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
521
557
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
558
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
559
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
560
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
561
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
522
562
  }>>;
523
563
  validate_spec_requirements: Partial<import("@langchain/langgraph").StateType<{
524
564
  featureId: {
@@ -573,6 +613,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
573
613
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
574
614
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
575
615
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
616
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
617
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
618
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
619
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
576
620
  }>>;
577
621
  validate_research: Partial<import("@langchain/langgraph").StateType<{
578
622
  featureId: {
@@ -627,6 +671,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
627
671
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
628
672
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
629
673
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
674
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
675
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
676
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
677
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
630
678
  }>>;
631
679
  validate_plan_tasks: Partial<import("@langchain/langgraph").StateType<{
632
680
  featureId: {
@@ -681,6 +729,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
681
729
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
682
730
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
683
731
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
732
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
733
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
734
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
735
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
684
736
  }>>;
685
737
  repair_spec_analyze: Partial<import("@langchain/langgraph").StateType<{
686
738
  featureId: {
@@ -735,6 +787,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
735
787
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
736
788
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
737
789
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
790
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
791
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
792
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
793
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
738
794
  }>>;
739
795
  repair_spec_requirements: Partial<import("@langchain/langgraph").StateType<{
740
796
  featureId: {
@@ -789,6 +845,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
789
845
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
790
846
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
791
847
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
848
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
849
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
850
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
851
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
792
852
  }>>;
793
853
  repair_research: Partial<import("@langchain/langgraph").StateType<{
794
854
  featureId: {
@@ -843,6 +903,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
843
903
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
844
904
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
845
905
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
906
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
907
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
908
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
909
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
846
910
  }>>;
847
911
  repair_plan_tasks: Partial<import("@langchain/langgraph").StateType<{
848
912
  featureId: {
@@ -897,6 +961,10 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
897
961
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
898
962
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
899
963
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
964
+ iterationCount: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
965
+ maxIterations: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
966
+ feedbackHistory: import("@langchain/langgraph").BinaryOperatorAggregate<string[], string[]>;
967
+ explorationStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined, "generating" | "waiting-feedback" | "applying-feedback" | "promoting" | "discarding" | undefined>;
900
968
  }>>;
901
969
  }, unknown, unknown>;
902
970
  //# sourceMappingURL=feature-agent-graph.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"feature-agent-graph.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0B,KAAK,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AACxF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+DAA+D,CAAC;AAOpG,OAAO,EAAmB,KAAK,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAclF,OAAO,EAAE,sBAAsB,EAAE,KAAK,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAE5E;;;GAGG;AACH,MAAM,WAAW,qBAAqB;IACpC,QAAQ,EAAE,cAAc,CAAC;IACzB,aAAa,CAAC,EAAE,IAAI,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC;CACjD;AAwID;;;;;;;;;;;;GAYG;AACH,wBAAgB,uBAAuB,CACrC,cAAc,EAAE,qBAAqB,GAAG,cAAc,EACtD,YAAY,CAAC,EAAE,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAgFnC"}
1
+ {"version":3,"file":"feature-agent-graph.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0B,KAAK,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AACxF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,+DAA+D,CAAC;AAOpG,OAAO,EAAmB,KAAK,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAclF,OAAO,EAAE,sBAAsB,EAAE,KAAK,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAE5E;;;GAGG;AACH,MAAM,WAAW,qBAAqB;IACpC,QAAQ,EAAE,cAAc,CAAC;IACzB,aAAa,CAAC,EAAE,IAAI,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC;CACjD;AAwID;;;;;;;;;;;;GAYG;AACH,wBAAgB,uBAAuB,CACrC,cAAc,EAAE,qBAAqB,GAAG,cAAc,EACtD,YAAY,CAAC,EAAE,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAgFnC"}
@@ -7,7 +7,7 @@
7
7
  */
8
8
  import type { IFeatureAgentProcessService } from '../../../../application/ports/output/agents/feature-agent-process.interface.js';
9
9
  import type { IAgentRunRepository } from '../../../../application/ports/output/agents/agent-run-repository.interface.js';
10
- import { type ApprovalGates, type AgentType } from '../../../../domain/generated/output.js';
10
+ import { FeatureMode, type ApprovalGates, type AgentType } from '../../../../domain/generated/output.js';
11
11
  export declare class FeatureAgentProcessService implements IFeatureAgentProcessService {
12
12
  private readonly runRepository;
13
13
  constructor(runRepository: IAgentRunRepository);
@@ -25,7 +25,7 @@ export declare class FeatureAgentProcessService implements IFeatureAgentProcessS
25
25
  commitEvidence?: boolean;
26
26
  resumePayload?: string;
27
27
  agentType?: AgentType;
28
- fast?: boolean;
28
+ mode?: FeatureMode;
29
29
  model?: string;
30
30
  resumeReason?: string;
31
31
  }): number;
@@ -1 +1 @@
1
- {"version":3,"file":"feature-agent-process.service.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AASH,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,sEAAsE,CAAC;AACxH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,qEAAqE,CAAC;AAC/G,OAAO,EAAkB,KAAK,aAAa,EAAE,KAAK,SAAS,EAAE,MAAM,8BAA8B,CAAC;AAalG,qBAAa,0BAA2B,YAAW,2BAA2B;IAChE,OAAO,CAAC,QAAQ,CAAC,aAAa;gBAAb,aAAa,EAAE,mBAAmB;IAE/D,KAAK,CACH,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,MAAM,EACf,YAAY,CAAC,EAAE,MAAM,EACrB,OAAO,CAAC,EAAE;QACR,aAAa,CAAC,EAAE,aAAa,CAAC;QAC9B,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,mBAAmB,CAAC,EAAE,OAAO,CAAC;QAC9B,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,SAAS,CAAC,EAAE,SAAS,CAAC;QACtB,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,YAAY,CAAC,EAAE,MAAM,CAAC;KACvB,GACA,MAAM;IAsFT,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IASvB,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;CAexD"}
1
+ {"version":3,"file":"feature-agent-process.service.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AASH,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,sEAAsE,CAAC;AACxH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,qEAAqE,CAAC;AAC/G,OAAO,EAEL,WAAW,EACX,KAAK,aAAa,EAClB,KAAK,SAAS,EACf,MAAM,8BAA8B,CAAC;AAatC,qBAAa,0BAA2B,YAAW,2BAA2B;IAChE,OAAO,CAAC,QAAQ,CAAC,aAAa;gBAAb,aAAa,EAAE,mBAAmB;IAE/D,KAAK,CACH,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,MAAM,EACb,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,MAAM,EACf,YAAY,CAAC,EAAE,MAAM,EACrB,OAAO,CAAC,EAAE;QACR,aAAa,CAAC,EAAE,aAAa,CAAC;QAC9B,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,mBAAmB,CAAC,EAAE,OAAO,CAAC;QAC9B,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,SAAS,CAAC,EAAE,SAAS,CAAC;QACtB,IAAI,CAAC,EAAE,WAAW,CAAC;QACnB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,YAAY,CAAC,EAAE,MAAM,CAAC;KACvB,GACA,MAAM;IAsFT,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IASvB,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;CAexD"}
@@ -12,7 +12,7 @@ import { join } from 'node:path';
12
12
  import { openSync } from 'node:fs';
13
13
  import { homedir } from 'node:os';
14
14
  import { mkdirSync } from 'node:fs';
15
- import { AgentRunStatus } from '../../../../domain/generated/output.js';
15
+ import { AgentRunStatus, FeatureMode, } from '../../../../domain/generated/output.js';
16
16
  import { IS_WINDOWS } from '../../../platform.js';
17
17
  const __dirname = dirname(fileURLToPath(import.meta.url));
18
18
  /** Terminal statuses that should not be updated */
@@ -81,8 +81,8 @@ export class FeatureAgentProcessService {
81
81
  if (options?.agentType) {
82
82
  args.push('--agent-type', options.agentType);
83
83
  }
84
- if (options?.fast) {
85
- args.push('--fast');
84
+ if (options?.mode && options.mode !== FeatureMode.Regular) {
85
+ args.push('--mode', options.mode);
86
86
  }
87
87
  if (options?.model) {
88
88
  args.push('--model', options.model);
@@ -9,7 +9,7 @@
9
9
  * CLI Args: --feature-id <id> --run-id <id> --repo <path> --spec-dir <path>
10
10
  */
11
11
  import 'reflect-metadata';
12
- import { type AgentType } from '../../../../domain/generated/output.js';
12
+ import { FeatureMode, type AgentType } from '../../../../domain/generated/output.js';
13
13
  import type { ApprovalGates } from '../../../../domain/generated/output.js';
14
14
  export interface WorkerArgs {
15
15
  featureId: string;
@@ -30,7 +30,7 @@ export interface WorkerArgs {
30
30
  commitEvidence?: boolean;
31
31
  resumePayload?: string;
32
32
  agentType?: AgentType;
33
- fast?: boolean;
33
+ mode?: FeatureMode;
34
34
  model?: string;
35
35
  resumeReason?: string;
36
36
  }
@@ -1 +1 @@
1
- {"version":3,"file":"feature-agent-worker.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.ts"],"names":[],"mappings":";AACA;;;;;;;;GAQG;AAEH,OAAO,kBAAkB,CAAC;AAgB1B,OAAO,EAAiC,KAAK,SAAS,EAAE,MAAM,8BAA8B,CAAC;AAW7F,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAElE,MAAM,WAAW,UAAU;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,UAAU,CAkF1D;AAgCD;;;GAGG;AACH,wBAAsB,SAAS,CAAC,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC,CAuS/D"}
1
+ {"version":3,"file":"feature-agent-worker.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.ts"],"names":[],"mappings":";AACA;;;;;;;;GAQG;AAEH,OAAO,kBAAkB,CAAC;AAkB1B,OAAO,EAGL,WAAW,EACX,KAAK,SAAS,EACf,MAAM,8BAA8B,CAAC;AAWtC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAElE,MAAM,WAAW,UAAU;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,UAAU,CAsF1D;AAgCD;;;GAGG;AACH,wBAAsB,SAAS,CAAC,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC,CA+S/D"}
@@ -15,8 +15,9 @@ import { Command } from '@langchain/langgraph';
15
15
  import { initializeContainer, container } from '../../../di/container.js';
16
16
  import { createFeatureAgentGraph } from './feature-agent-graph.js';
17
17
  import { createFastFeatureAgentGraph } from './fast-feature-agent-graph.js';
18
+ import { createExplorationAgentGraph } from './exploration-agent-graph.js';
18
19
  import { createCheckpointer } from '../common/checkpointer.js';
19
- import { AgentRunStatus, SdlcLifecycle } from '../../../../domain/generated/output.js';
20
+ import { AgentRunStatus, SdlcLifecycle, FeatureMode, } from '../../../../domain/generated/output.js';
20
21
  import { initializeSettings } from '../../../services/settings.service.js';
21
22
  import { InitializeSettingsUseCase } from '../../../../application/use-cases/settings/initialize-settings.use-case.js';
22
23
  import { setHeartbeatContext } from './heartbeat.js';
@@ -59,7 +60,10 @@ export function parseWorkerArgs(args) {
59
60
  const ciWatchEnabled = !args.includes('--no-ci-watch');
60
61
  const enableEvidence = args.includes('--enable-evidence');
61
62
  const commitEvidence = args.includes('--commit-evidence');
62
- const fast = args.includes('--fast');
63
+ const modeIdx = args.indexOf('--mode');
64
+ const mode = modeIdx !== -1 && modeIdx + 1 < args.length
65
+ ? args[modeIdx + 1]
66
+ : FeatureMode.Regular;
63
67
  const threadIdx = args.indexOf('--thread-id');
64
68
  const threadId = threadIdx !== -1 && threadIdx + 1 < args.length ? args[threadIdx + 1] : undefined;
65
69
  const agentTypeIdx = args.indexOf('--agent-type');
@@ -95,7 +99,7 @@ export function parseWorkerArgs(args) {
95
99
  commitEvidence,
96
100
  resumePayload,
97
101
  agentType,
98
- fast,
102
+ mode,
99
103
  model,
100
104
  resumeReason,
101
105
  };
@@ -157,7 +161,7 @@ export async function runWorker(args) {
157
161
  ...(args.commitSpecs === false ? ['--no-commit-specs'] : []),
158
162
  ...(args.resumePayload ? ['--resume-payload', args.resumePayload] : []),
159
163
  ...(args.agentType ? ['--agent-type', args.agentType] : []),
160
- ...(args.fast ? ['--fast'] : []),
164
+ ...(args.mode && args.mode !== FeatureMode.Regular ? ['--mode', args.mode] : []),
161
165
  ...(args.model ? ['--model', args.model] : []),
162
166
  ];
163
167
  log(`Starting worker — full command:`);
@@ -207,12 +211,19 @@ export async function runWorker(args) {
207
211
  const checkpointPath = join(homedir(), '.shep', 'checkpoints', `${checkpointId}.db`);
208
212
  log(`Creating checkpointer at ${checkpointPath} (thread: ${checkpointId})`);
209
213
  const checkpointer = createCheckpointer(checkpointPath);
210
- // Both graph factories return compiled graphs with identical FeatureAgentAnnotation
214
+ // All graph factories return compiled graphs with identical FeatureAgentAnnotation
211
215
  // state shape and invoke() interface. Cast through unknown because the compiled
212
216
  // graphs have different node name types but share the same runtime contract.
213
- const graph = args.fast
214
- ? createFastFeatureAgentGraph(graphDeps, checkpointer)
215
- : createFeatureAgentGraph(graphDeps, checkpointer);
217
+ let graph;
218
+ if (args.mode === FeatureMode.Exploration) {
219
+ graph = createExplorationAgentGraph({ executor }, checkpointer);
220
+ }
221
+ else if (args.mode === FeatureMode.Fast) {
222
+ graph = createFastFeatureAgentGraph(graphDeps, checkpointer);
223
+ }
224
+ else {
225
+ graph = createFeatureAgentGraph(graphDeps, checkpointer);
226
+ }
216
227
  // Mark the run as running with our PID
217
228
  const now = new Date();
218
229
  log(`Updating status to running (PID ${process.pid})...`);
@@ -1 +1 @@
1
- {"version":3,"file":"lifecycle-context.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAE7D;;;;GAIG;AACH,UAAU,gBAAgB;IACxB,OAAO,CAAC,KAAK,EAAE;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,aAAa,CAAA;KAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CAChF;AAgBD;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,gBAAgB,GAAG,IAAI,CAGtF;AAED;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,IAAI,CAG5C;AAED;;;;;GAKG;AACH,wBAAsB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAWzE"}
1
+ {"version":3,"file":"lifecycle-context.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/lifecycle-context.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAE7D;;;;GAIG;AACH,UAAU,gBAAgB;IACxB,OAAO,CAAC,KAAK,EAAE;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,aAAa,CAAA;KAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;CAChF;AAiBD;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,gBAAgB,GAAG,IAAI,CAGtF;AAED;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,IAAI,CAG5C;AAED;;;;;GAKG;AACH,wBAAsB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAWzE"}
@@ -25,6 +25,7 @@ const NODE_TO_LIFECYCLE = {
25
25
  plan: SdlcLifecycle.Planning,
26
26
  implement: SdlcLifecycle.Implementation,
27
27
  'fast-implement': SdlcLifecycle.Implementation,
28
+ 'prototype-generate': SdlcLifecycle.Exploring,
28
29
  merge: SdlcLifecycle.Review,
29
30
  };
30
31
  /**
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Apply-Feedback Node
3
+ *
4
+ * Exploration mode state-transformation node that receives user feedback
5
+ * from the resume payload, appends it to feedbackHistory, and prepares
6
+ * context for the next prototype-generate iteration.
7
+ *
8
+ * This node does NOT call the agent executor — it is a pure state
9
+ * transformation that processes the feedback and returns updated state.
10
+ */
11
+ import type { FeatureAgentState } from '../state.js';
12
+ /**
13
+ * Factory that creates the apply-feedback node function.
14
+ *
15
+ * @returns A LangGraph node function
16
+ */
17
+ export declare function createApplyFeedbackNode(): (state: FeatureAgentState) => Promise<Partial<FeatureAgentState>>;
18
+ //# sourceMappingURL=apply-feedback.node.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"apply-feedback.node.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/nodes/apply-feedback.node.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAKrD;;;;GAIG;AACH,wBAAgB,uBAAuB,KAGvB,OAAO,iBAAiB,KAAG,OAAO,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAkC7E"}
@@ -0,0 +1,52 @@
1
+ /**
2
+ * Apply-Feedback Node
3
+ *
4
+ * Exploration mode state-transformation node that receives user feedback
5
+ * from the resume payload, appends it to feedbackHistory, and prepares
6
+ * context for the next prototype-generate iteration.
7
+ *
8
+ * This node does NOT call the agent executor — it is a pure state
9
+ * transformation that processes the feedback and returns updated state.
10
+ */
11
+ import { createNodeLogger } from './node-helpers.js';
12
+ import { reportNodeStart } from '../heartbeat.js';
13
+ import { buildApplyFeedbackContext } from './prompts/apply-feedback.prompt.js';
14
+ /**
15
+ * Factory that creates the apply-feedback node function.
16
+ *
17
+ * @returns A LangGraph node function
18
+ */
19
+ export function createApplyFeedbackNode() {
20
+ const log = createNodeLogger('apply-feedback');
21
+ return async (state) => {
22
+ log.activate();
23
+ log.info('Processing user feedback');
24
+ reportNodeStart('apply-feedback');
25
+ // Extract feedback from the resume state.
26
+ // The worker sets _rejectionFeedback from the resume payload,
27
+ // or the feedback may come through a dedicated exploration channel.
28
+ const feedback = state._rejectionFeedback ?? '';
29
+ const iterationCount = state.iterationCount ?? 0;
30
+ if (!feedback || feedback.trim().length === 0) {
31
+ log.info('No feedback text provided — proceeding with empty feedback');
32
+ }
33
+ else {
34
+ log.info(`Feedback received (${feedback.length} chars) for iteration ${iterationCount}`);
35
+ }
36
+ // Build context summary for logging
37
+ const contextSummary = buildApplyFeedbackContext(state, feedback);
38
+ log.info(`Context prepared for next iteration`);
39
+ return {
40
+ currentNode: 'apply-feedback',
41
+ explorationStatus: 'applying-feedback',
42
+ feedbackHistory: [feedback],
43
+ // Clear the rejection feedback after consuming it
44
+ _rejectionFeedback: null,
45
+ _approvalAction: null,
46
+ messages: [
47
+ `[apply-feedback] Feedback applied for iteration ${iterationCount + 1}: "${feedback.slice(0, 100)}${feedback.length > 100 ? '...' : ''}"`,
48
+ `[apply-feedback] Context: ${contextSummary.slice(0, 200)}`,
49
+ ],
50
+ };
51
+ };
52
+ }
@@ -1 +1 @@
1
- {"version":3,"file":"node-helpers.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAOH,OAAO,KAAK,EACV,cAAc,EACd,qBAAqB,EACrB,oBAAoB,EACrB,MAAM,+DAA+D,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAE5E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAUrD;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM;IAE7C,4DAA4D;gBAChD,IAAI;kBAGF,MAAM,GAAG,IAAI;mBAIZ,MAAM,GAAG,IAAI;EAK/B;AAED,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE7D;;GAEG;AACH,wBAAgB,YAAY,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAMtE;AAoBD;;;;GAIG;AACH,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAO1D;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,iBAAiB,EACxB,SAAS,CAAC,EAAE,OAAO,CAAC,IAAI,CAAC,qBAAqB,EAAE,SAAS,CAAC,CAAC,EAC3D,QAAQ,CAAC,EAAE,MAAM,GAChB,qBAAqB,CAUvB;AAeD;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAQrD;AAgBD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,OAAO,GAAG,MAAM,CAElD;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,eAAe,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,aAAa,GAAG,SAAS,GAAG,OAAO,CAQ3F;AAMD,MAAM,MAAM,aAAa,GAAG,eAAe,GAAG,mBAAmB,GAAG,eAAe,GAAG,SAAS,CAAC;AAMhG;;;;;;;GAOG;AACH,wBAAgB,aAAa,CAAC,YAAY,EAAE,MAAM,GAAG,aAAa,CAKjE;AAED,MAAM,WAAW,YAAY;IAC3B,wDAAwD;IACxD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kFAAkF;IAClF,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,0CAA0C;IAC1C,MAAM,CAAC,EAAE,UAAU,CAAC;CACrB;AAED;;;;;;GAMG;AACH,wBAAsB,YAAY,CAChC,QAAQ,EAAE,cAAc,EACxB,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,qBAAqB,EAC9B,SAAS,CAAC,EAAE,YAAY,GACvB,OAAO,CAAC,oBAAoB,CAAC,CA6B/B;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,CAW5D;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,UAAU,GAAG,IAAI,CAiB5F;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI;IAAE,QAAQ,EAAE,IAAI,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,CAOhG;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,UAAU,GAAG,IAAI,CAoB1F;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,CAa5F;AAED;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE;IACzC,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,6FAA6F;IAC7F,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B,GAAG,MAAM,CAiCT;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,YAAY,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,CAa3E;AAKD;;;;;;GAMG;AACH,wBAAgB,yBAAyB,CACvC,KAAK,EAAE,iBAAiB,EACxB,QAAQ,EAAE,MAAM,EAChB,GAAG,EAAE,UAAU,GACd,IAAI,CA6BN;AAED;;;;;;;GAOG;AACH,wBAAgB,WAAW,CACzB,QAAQ,EAAE,MAAM,EAChB,QAAQ,EAAE,cAAc,EACxB,WAAW,EAAE,CAAC,KAAK,EAAE,iBAAiB,EAAE,GAAG,EAAE,UAAU,KAAK,MAAM,GACjE,CAAC,KAAK,EAAE,iBAAiB,KAAK,OAAO,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAwInE;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,iBAAiB,EACxB,QAAQ,EAAE,QAAQ,EAAE,EACpB,GAAG,EAAE,UAAU,CAAC,OAAO,gBAAgB,CAAC,GACvC,IAAI,CAaN"}
1
+ {"version":3,"file":"node-helpers.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAOH,OAAO,KAAK,EACV,cAAc,EACd,qBAAqB,EACrB,oBAAoB,EACrB,MAAM,+DAA+D,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAE5E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAUrD;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM;IAE7C,4DAA4D;gBAChD,IAAI;kBAGF,MAAM,GAAG,IAAI;mBAIZ,MAAM,GAAG,IAAI;EAK/B;AAED,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE7D;;GAEG;AACH,wBAAgB,YAAY,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAMtE;AAqBD;;;;GAIG;AACH,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAO1D;AAED;;;;;;GAMG;AACH,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,iBAAiB,EACxB,SAAS,CAAC,EAAE,OAAO,CAAC,IAAI,CAAC,qBAAqB,EAAE,SAAS,CAAC,CAAC,EAC3D,QAAQ,CAAC,EAAE,MAAM,GAChB,qBAAqB,CAUvB;AAeD;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAQrD;AAgBD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,OAAO,GAAG,MAAM,CAElD;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,eAAe,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,aAAa,GAAG,SAAS,GAAG,OAAO,CAQ3F;AAMD,MAAM,MAAM,aAAa,GAAG,eAAe,GAAG,mBAAmB,GAAG,eAAe,GAAG,SAAS,CAAC;AAMhG;;;;;;;GAOG;AACH,wBAAgB,aAAa,CAAC,YAAY,EAAE,MAAM,GAAG,aAAa,CAKjE;AAED,MAAM,WAAW,YAAY;IAC3B,wDAAwD;IACxD,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kFAAkF;IAClF,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,0CAA0C;IAC1C,MAAM,CAAC,EAAE,UAAU,CAAC;CACrB;AAED;;;;;;GAMG;AACH,wBAAsB,YAAY,CAChC,QAAQ,EAAE,cAAc,EACxB,MAAM,EAAE,MAAM,EACd,OAAO,EAAE,qBAAqB,EAC9B,SAAS,CAAC,EAAE,YAAY,GACvB,OAAO,CAAC,oBAAoB,CAAC,CA6B/B;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,CAW5D;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,UAAU,GAAG,IAAI,CAiB5F;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI;IAAE,QAAQ,EAAE,IAAI,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAA;CAAE,CAOhG;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,UAAU,GAAG,IAAI,CAoB1F;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,CAa5F;AAED;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE;IACzC,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,6FAA6F;IAC7F,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B,GAAG,MAAM,CAiCT;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,YAAY,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,CAa3E;AAKD;;;;;;GAMG;AACH,wBAAgB,yBAAyB,CACvC,KAAK,EAAE,iBAAiB,EACxB,QAAQ,EAAE,MAAM,EAChB,GAAG,EAAE,UAAU,GACd,IAAI,CA6BN;AAED;;;;;;;GAOG;AACH,wBAAgB,WAAW,CACzB,QAAQ,EAAE,MAAM,EAChB,QAAQ,EAAE,cAAc,EACxB,WAAW,EAAE,CAAC,KAAK,EAAE,iBAAiB,EAAE,GAAG,EAAE,UAAU,KAAK,MAAM,GACjE,CAAC,KAAK,EAAE,iBAAiB,KAAK,OAAO,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAwInE;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,iBAAiB,EACxB,QAAQ,EAAE,QAAQ,EAAE,EACpB,GAAG,EAAE,UAAU,CAAC,OAAO,gBAAgB,CAAC,GACvC,IAAI,CAaN"}
@@ -50,7 +50,7 @@ export function readSpecFile(specDir, filename) {
50
50
  const DEFAULT_STAGE_TIMEOUT_MS = 1_800_000;
51
51
  /**
52
52
  * Map from node name to the corresponding StageTimeouts field.
53
- * `fast-implement` reuses the implement timeout; `evidence` also reuses implement.
53
+ * `fast-implement` has its own dedicated timeout; `evidence` reuses implement.
54
54
  */
55
55
  const STAGE_TIMEOUT_KEY = {
56
56
  analyze: 'analyzeMs',
@@ -58,7 +58,8 @@ const STAGE_TIMEOUT_KEY = {
58
58
  research: 'researchMs',
59
59
  plan: 'planMs',
60
60
  implement: 'implementMs',
61
- 'fast-implement': 'implementMs',
61
+ 'fast-implement': 'fastImplementMs',
62
+ 'prototype-generate': 'implementMs',
62
63
  evidence: 'implementMs',
63
64
  merge: 'mergeMs',
64
65
  };
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Apply-Feedback Prompt Builder
3
+ *
4
+ * Builds a context summary for the apply-feedback node. This is used
5
+ * internally by the graph to prepare context for the next
6
+ * prototype-generate iteration — it does NOT call the executor.
7
+ *
8
+ * The prompt text produced here serves as a structured summary of
9
+ * the current feedback and iteration context that the apply-feedback
10
+ * node stores in state for the next prototype-generate node to consume.
11
+ */
12
+ import type { FeatureAgentState } from '../../state.js';
13
+ /**
14
+ * Build a context summary for the apply-feedback state transformation.
15
+ *
16
+ * Includes:
17
+ * 1. Current feedback text
18
+ * 2. Iteration count
19
+ * 3. Summary of prior feedback history
20
+ *
21
+ * This is stored in graph state, not sent to an executor.
22
+ */
23
+ export declare function buildApplyFeedbackContext(state: FeatureAgentState, currentFeedback: string): string;
24
+ //# sourceMappingURL=apply-feedback.prompt.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"apply-feedback.prompt.d.ts","sourceRoot":"","sources":["../../../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/nodes/prompts/apply-feedback.prompt.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAExD;;;;;;;;;GASG;AACH,wBAAgB,yBAAyB,CACvC,KAAK,EAAE,iBAAiB,EACxB,eAAe,EAAE,MAAM,GACtB,MAAM,CAoBR"}