@shepai/cli 1.171.0-pr527.e2ee839 → 1.172.0-pr528.108a424

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 (501) hide show
  1. package/apis/json-schema/AgentType.yaml +1 -0
  2. package/apis/json-schema/Settings.yaml +0 -3
  3. package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts +1 -15
  4. package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts.map +1 -1
  5. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +1 -3
  6. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -1
  7. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.d.ts +0 -38
  8. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.d.ts.map +1 -1
  9. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.js +0 -9
  10. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts +0 -11
  11. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -1
  12. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.d.ts.map +1 -1
  13. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +0 -2
  14. package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.d.ts.map +1 -1
  15. package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +0 -2
  16. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
  17. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +0 -2
  18. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
  19. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +0 -1
  20. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
  21. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +0 -2
  22. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
  23. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +0 -2
  24. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  25. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -5
  26. package/dist/packages/core/src/domain/generated/output.d.ts +1 -259
  27. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  28. package/dist/packages/core/src/domain/generated/output.js +1 -43
  29. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  30. package/dist/packages/core/src/infrastructure/di/container.js +3 -57
  31. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +0 -3
  32. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  33. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +0 -14
  34. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  35. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -12
  36. package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.d.ts.map +1 -1
  37. package/dist/packages/core/src/infrastructure/services/agents/common/agent-executor-factory.service.js +23 -0
  38. package/dist/packages/core/src/infrastructure/services/agents/common/agent-validator.service.d.ts.map +1 -1
  39. package/dist/packages/core/src/infrastructure/services/agents/common/agent-validator.service.js +1 -0
  40. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts +0 -2
  41. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
  42. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +0 -12
  43. package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.d.ts +63 -0
  44. package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.d.ts.map +1 -0
  45. package/dist/packages/core/src/infrastructure/services/agents/common/executors/copilot-cli-executor.service.js +494 -0
  46. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +0 -10
  47. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -1
  48. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +0 -34
  49. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
  50. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +1 -3
  51. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
  52. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +1 -7
  53. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +1 -3
  54. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
  55. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +1 -32
  56. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  57. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +0 -19
  58. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts +1 -4
  59. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts.map +1 -1
  60. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.js +0 -10
  61. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.d.ts +1 -10
  62. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.d.ts.map +1 -1
  63. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.js +1 -101
  64. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts +0 -1
  65. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
  66. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.js +0 -61
  67. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/codex.json +32 -0
  68. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/copilot.json +32 -0
  69. package/dist/src/presentation/cli/index.js +0 -2
  70. package/dist/src/presentation/tui/prompts/agent-select.prompt.d.ts.map +1 -1
  71. package/dist/src/presentation/tui/prompts/agent-select.prompt.js +5 -0
  72. package/dist/src/presentation/web/app/actions/check-agent-auth.d.ts.map +1 -1
  73. package/dist/src/presentation/web/app/actions/check-agent-auth.js +18 -0
  74. package/dist/src/presentation/web/app/actions/get-all-agent-models.d.ts.map +1 -1
  75. package/dist/src/presentation/web/app/actions/get-all-agent-models.js +4 -2
  76. package/dist/src/presentation/web/app/build-graph-nodes.d.ts +1 -3
  77. package/dist/src/presentation/web/app/build-graph-nodes.d.ts.map +1 -1
  78. package/dist/src/presentation/web/app/build-graph-nodes.js +0 -2
  79. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts +1 -1
  80. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.d.ts.map +1 -1
  81. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.js +2 -0
  82. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.d.ts.map +1 -1
  83. package/dist/src/presentation/web/components/common/feature-node/agent-type-icons.stories.js +1 -0
  84. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +1 -3
  85. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  86. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  87. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +1 -2
  88. package/dist/src/presentation/web/components/common/repo-group/repo-group.js +1 -1
  89. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts +1 -3
  90. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts.map +1 -1
  91. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.js +2 -3
  92. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.d.ts +1 -0
  93. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.d.ts.map +1 -1
  94. package/dist/src/presentation/web/components/features/settings/AgentModelPicker/AgentModelPicker.stories.js +7 -0
  95. package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -1
  96. package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +11 -3
  97. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +1 -0
  98. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -1
  99. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +8 -0
  100. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  101. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +3 -16
  102. package/dist/translations/ar/cli.json +0 -20
  103. package/dist/translations/ar/tui.json +4 -0
  104. package/dist/translations/ar/web.json +1 -43
  105. package/dist/translations/de/cli.json +0 -20
  106. package/dist/translations/de/tui.json +4 -0
  107. package/dist/translations/de/web.json +1 -43
  108. package/dist/translations/en/cli.json +0 -20
  109. package/dist/translations/en/tui.json +4 -0
  110. package/dist/translations/en/web.json +1 -43
  111. package/dist/translations/es/cli.json +0 -20
  112. package/dist/translations/es/tui.json +4 -0
  113. package/dist/translations/es/web.json +1 -43
  114. package/dist/translations/fr/cli.json +0 -20
  115. package/dist/translations/fr/tui.json +4 -0
  116. package/dist/translations/fr/web.json +1 -43
  117. package/dist/translations/he/cli.json +0 -20
  118. package/dist/translations/he/tui.json +4 -0
  119. package/dist/translations/he/web.json +1 -43
  120. package/dist/translations/pt/cli.json +0 -20
  121. package/dist/translations/pt/tui.json +4 -0
  122. package/dist/translations/pt/web.json +1 -43
  123. package/dist/translations/ru/cli.json +0 -20
  124. package/dist/translations/ru/tui.json +4 -0
  125. package/dist/translations/ru/web.json +1 -43
  126. package/dist/tsconfig.build.tsbuildinfo +1 -1
  127. package/package.json +1 -1
  128. package/web/.next/BUILD_ID +1 -1
  129. package/web/.next/build-manifest.json +2 -2
  130. package/web/.next/fallback-build-manifest.json +2 -2
  131. package/web/.next/prerender-manifest.json +3 -3
  132. package/web/.next/required-server-files.js +2 -2
  133. package/web/.next/required-server-files.json +2 -2
  134. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
  135. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +1 -2
  136. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  137. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  138. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
  139. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +1 -2
  140. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  141. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  142. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +30 -30
  143. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -2
  144. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  145. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  146. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +38 -38
  147. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +1 -2
  148. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  149. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  150. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +38 -38
  151. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +1 -2
  152. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  153. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  154. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  155. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +1 -2
  156. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  157. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  158. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  159. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -2
  160. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  161. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  162. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
  163. package/web/.next/server/app/(dashboard)/chat/page.js +1 -2
  164. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  165. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  166. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +30 -30
  167. package/web/.next/server/app/(dashboard)/create/page.js +1 -2
  168. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  169. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  170. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +38 -38
  171. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +1 -2
  172. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  173. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  174. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +38 -38
  175. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +1 -2
  176. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  177. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  178. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
  179. package/web/.next/server/app/(dashboard)/page.js +1 -2
  180. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  181. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  182. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  183. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +1 -2
  184. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  185. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  186. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  187. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -2
  188. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  189. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  190. package/web/.next/server/app/_global-error.html +2 -2
  191. package/web/.next/server/app/_global-error.rsc +1 -1
  192. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  193. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  194. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  195. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  196. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  197. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
  198. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  199. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  200. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  201. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  202. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  203. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  204. package/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
  205. package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -1
  206. package/web/.next/server/app/features/page/server-reference-manifest.json +6 -6
  207. package/web/.next/server/app/features/page.js.nft.json +1 -1
  208. package/web/.next/server/app/features/page_client-reference-manifest.js +1 -1
  209. package/web/.next/server/app/settings/page/server-reference-manifest.json +18 -33
  210. package/web/.next/server/app/settings/page.js +1 -1
  211. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  212. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  213. package/web/.next/server/app/skills/page/server-reference-manifest.json +13 -13
  214. package/web/.next/server/app/skills/page.js +1 -2
  215. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  216. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  217. package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
  218. package/web/.next/server/app/tools/page.js +1 -2
  219. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  220. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  221. package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
  222. package/web/.next/server/app/version/page.js.nft.json +1 -1
  223. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  224. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  225. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
  226. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  227. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js +1 -1
  228. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js.map +1 -1
  229. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  230. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  231. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  232. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  233. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +2 -2
  234. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  235. package/web/.next/server/chunks/ssr/[root-of-the-server]__1cd4327c._.js +4 -0
  236. package/web/.next/server/chunks/ssr/[root-of-the-server]__1cd4327c._.js.map +1 -0
  237. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js +1 -1
  238. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js.map +1 -1
  239. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  240. package/web/.next/server/chunks/ssr/[root-of-the-server]__4fb81977._.js +4 -0
  241. package/web/.next/server/chunks/ssr/[root-of-the-server]__4fb81977._.js.map +1 -0
  242. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js +1 -1
  243. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js.map +1 -1
  244. package/web/.next/server/chunks/ssr/[root-of-the-server]__7dcd0917._.js +4 -0
  245. package/web/.next/server/chunks/ssr/[root-of-the-server]__7dcd0917._.js.map +1 -0
  246. package/web/.next/server/chunks/ssr/[root-of-the-server]__92ffd5ee._.js +4 -0
  247. package/web/.next/server/chunks/ssr/[root-of-the-server]__92ffd5ee._.js.map +1 -0
  248. package/web/.next/server/chunks/ssr/[root-of-the-server]__b020c17d._.js +4 -0
  249. package/web/.next/server/chunks/ssr/[root-of-the-server]__b020c17d._.js.map +1 -0
  250. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js +1 -1
  251. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js.map +1 -1
  252. package/web/.next/server/chunks/ssr/[root-of-the-server]__ba7f5873._.js +4 -0
  253. package/web/.next/server/chunks/ssr/[root-of-the-server]__ba7f5873._.js.map +1 -0
  254. package/web/.next/server/chunks/ssr/[root-of-the-server]__c5e09f6f._.js +4 -0
  255. package/web/.next/server/chunks/ssr/[root-of-the-server]__c5e09f6f._.js.map +1 -0
  256. package/web/.next/server/chunks/ssr/[root-of-the-server]__fa525872._.js +3 -0
  257. package/web/.next/server/chunks/ssr/[root-of-the-server]__fa525872._.js.map +1 -0
  258. package/web/.next/server/chunks/ssr/_02e01240._.js +4 -0
  259. package/web/.next/server/chunks/ssr/_02e01240._.js.map +1 -0
  260. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  261. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  262. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  263. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  264. package/web/.next/server/chunks/ssr/_18886033._.js +4 -0
  265. package/web/.next/server/chunks/ssr/_18886033._.js.map +1 -0
  266. package/web/.next/server/chunks/ssr/_1e08a336._.js +1 -1
  267. package/web/.next/server/chunks/ssr/_22e00a14._.js +4 -0
  268. package/web/.next/server/chunks/ssr/_22e00a14._.js.map +1 -0
  269. package/web/.next/server/chunks/ssr/{_ee42a212._.js → _324beb75._.js} +2 -2
  270. package/web/.next/server/chunks/ssr/{_ee42a212._.js.map → _324beb75._.js.map} +1 -1
  271. package/web/.next/server/chunks/ssr/_43ba79e7._.js +3 -0
  272. package/web/.next/server/chunks/ssr/_43ba79e7._.js.map +1 -0
  273. package/web/.next/server/chunks/ssr/_45496654._.js +1 -1
  274. package/web/.next/server/chunks/ssr/_45496654._.js.map +1 -1
  275. package/web/.next/server/chunks/ssr/_4cbb7f95._.js +1 -1
  276. package/web/.next/server/chunks/ssr/_4cbb7f95._.js.map +1 -1
  277. package/web/.next/server/chunks/ssr/_5119a3df._.js +1 -1
  278. package/web/.next/server/chunks/ssr/_5119a3df._.js.map +1 -1
  279. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  280. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  281. package/web/.next/server/chunks/ssr/{_767748d2._.js → _5e3cb0a7._.js} +2 -2
  282. package/web/.next/server/chunks/ssr/_5e3cb0a7._.js.map +1 -0
  283. package/web/.next/server/chunks/ssr/_a5a5901d._.js +4 -0
  284. package/web/.next/server/chunks/ssr/_a5a5901d._.js.map +1 -0
  285. package/web/.next/server/chunks/ssr/_a963dd3c._.js +3 -0
  286. package/web/.next/server/chunks/ssr/_a963dd3c._.js.map +1 -0
  287. package/web/.next/server/chunks/ssr/_ad09f271._.js +4 -0
  288. package/web/.next/server/chunks/ssr/_ad09f271._.js.map +1 -0
  289. package/web/.next/server/chunks/ssr/_c3f595c6._.js +4 -0
  290. package/web/.next/server/chunks/ssr/_c3f595c6._.js.map +1 -0
  291. package/web/.next/server/chunks/ssr/_c9d3f255._.js +3 -0
  292. package/web/.next/server/chunks/ssr/_c9d3f255._.js.map +1 -0
  293. package/web/.next/server/chunks/ssr/_df737cce._.js +1 -1
  294. package/web/.next/server/chunks/ssr/_e3f14907._.js +9 -0
  295. package/web/.next/server/chunks/ssr/_e3f14907._.js.map +1 -0
  296. package/web/.next/server/chunks/ssr/_ea9e1556._.js +4 -0
  297. package/web/.next/server/chunks/ssr/_ea9e1556._.js.map +1 -0
  298. package/web/.next/server/chunks/ssr/_f1ba9be6._.js +6 -0
  299. package/web/.next/server/chunks/ssr/_f1ba9be6._.js.map +1 -0
  300. package/web/.next/server/chunks/ssr/_f33cd07e._.js +6 -0
  301. package/web/.next/server/chunks/ssr/_f33cd07e._.js.map +1 -0
  302. package/web/.next/server/chunks/ssr/_f8b45233._.js +4 -0
  303. package/web/.next/server/chunks/ssr/_f8b45233._.js.map +1 -0
  304. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  305. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  306. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  307. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
  308. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  309. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js.map +1 -1
  310. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  311. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  312. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +1 -1
  313. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -1
  314. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  315. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  316. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js +1 -1
  317. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js.map +1 -1
  318. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +1 -1
  319. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -1
  320. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +1 -1
  321. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -1
  322. package/web/.next/server/pages/500.html +2 -2
  323. package/web/.next/server/server-reference-manifest.js +1 -1
  324. package/web/.next/server/server-reference-manifest.json +59 -74
  325. package/web/.next/static/chunks/01d34ca202152b33.js +1 -0
  326. package/web/.next/static/chunks/120279c82aa8aa25.js +1 -0
  327. package/web/.next/static/chunks/2e32d8578aace93a.js +1 -0
  328. package/web/.next/static/chunks/{16fa4d3877c28fe2.js → 41f5bb33ac4f3c7d.js} +1 -1
  329. package/web/.next/static/chunks/{b9c62932ed987239.js → 43cf78a6c49eb7c1.js} +2 -2
  330. package/web/.next/static/chunks/4559a403ee40dd19.js +7 -0
  331. package/web/.next/static/chunks/{a8edb9423086e83f.js → 50b760a2c7ad03d3.js} +1 -1
  332. package/web/.next/static/chunks/{d1c3e0ee8e788c87.js → 6e10cf4513c1f54f.js} +1 -1
  333. package/web/.next/static/chunks/{39f6ad3f9005703a.js → 8a486366e2878cbc.js} +1 -1
  334. package/web/.next/static/chunks/8b0a9cb5109fe899.js +1 -0
  335. package/web/.next/static/chunks/{9374d251360e808b.js → 947678ada7948442.js} +1 -1
  336. package/web/.next/static/chunks/{7e05e7e25220ee9a.js → b1b0c8ff51c0c2fc.js} +3 -3
  337. package/web/.next/static/chunks/b65e555419a0c664.js +1 -0
  338. package/web/.next/static/chunks/{89dd90bf14488ec0.js → bd55a833b24ee17b.js} +1 -1
  339. package/web/.next/static/chunks/{e8c3c12f92e9a521.js → c91571264851a71e.js} +3 -3
  340. package/web/.next/static/chunks/cc832e47f53eb2c3.js +1 -0
  341. package/web/.next/static/chunks/{fb8dadb64c0ffc6b.js → d5366257d6b9f855.js} +1 -1
  342. package/web/.next/static/chunks/da504d7f1c40bce1.js +1 -0
  343. package/web/.next/static/chunks/dcf8bb4389557a76.css +1 -0
  344. package/web/.next/static/chunks/f8f647baf2e91a9d.js +1 -0
  345. package/web/public/icons/agents/copilot.svg +12 -0
  346. package/apis/json-schema/ActionDispositionEntry.yaml +0 -14
  347. package/apis/json-schema/DependencyFinding.yaml +0 -28
  348. package/apis/json-schema/DependencyRiskType.yaml +0 -11
  349. package/apis/json-schema/DependencyRules.yaml +0 -38
  350. package/apis/json-schema/EffectivePolicySnapshot.yaml +0 -24
  351. package/apis/json-schema/ReleaseIntegrityCheck.yaml +0 -22
  352. package/apis/json-schema/ReleaseIntegrityCheckType.yaml +0 -9
  353. package/apis/json-schema/ReleaseIntegrityResult.yaml +0 -16
  354. package/apis/json-schema/ReleaseRules.yaml +0 -21
  355. package/apis/json-schema/SecurityActionCategory.yaml +0 -10
  356. package/apis/json-schema/SecurityActionDisposition.yaml +0 -8
  357. package/apis/json-schema/SecurityConfig.yaml +0 -17
  358. package/apis/json-schema/SecurityEvent.yaml +0 -36
  359. package/apis/json-schema/SecurityMode.yaml +0 -8
  360. package/apis/json-schema/SecurityPolicy.yaml +0 -24
  361. package/apis/json-schema/SecuritySeverity.yaml +0 -9
  362. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.d.ts +0 -76
  363. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.d.ts.map +0 -1
  364. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.js +0 -11
  365. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.d.ts +0 -77
  366. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.d.ts.map +0 -1
  367. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.js +0 -13
  368. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.d.ts +0 -71
  369. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.d.ts.map +0 -1
  370. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.js +0 -215
  371. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.d.ts +0 -24
  372. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.d.ts.map +0 -1
  373. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.js +0 -56
  374. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.d.ts +0 -36
  375. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.d.ts.map +0 -1
  376. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.js +0 -76
  377. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.d.ts +0 -14
  378. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.d.ts.map +0 -1
  379. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.js +0 -46
  380. package/dist/packages/core/src/domain/errors/security-violation.error.d.ts +0 -15
  381. package/dist/packages/core/src/domain/errors/security-violation.error.d.ts.map +0 -1
  382. package/dist/packages/core/src/domain/errors/security-violation.error.js +0 -20
  383. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.d.ts +0 -44
  384. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.d.ts.map +0 -1
  385. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.js +0 -55
  386. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.d.ts +0 -18
  387. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.d.ts.map +0 -1
  388. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.js +0 -31
  389. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.d.ts +0 -29
  390. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.d.ts.map +0 -1
  391. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.js +0 -53
  392. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.d.ts +0 -24
  393. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.d.ts.map +0 -1
  394. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.js +0 -96
  395. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.d.ts +0 -22
  396. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.d.ts.map +0 -1
  397. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.js +0 -30
  398. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.d.ts +0 -45
  399. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.d.ts.map +0 -1
  400. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.js +0 -70
  401. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.d.ts +0 -53
  402. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.d.ts.map +0 -1
  403. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.js +0 -241
  404. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.d.ts +0 -44
  405. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.d.ts.map +0 -1
  406. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.js +0 -194
  407. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.d.ts +0 -28
  408. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.d.ts.map +0 -1
  409. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.js +0 -50
  410. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.d.ts +0 -26
  411. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.d.ts.map +0 -1
  412. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.js +0 -147
  413. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.d.ts +0 -44
  414. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.d.ts.map +0 -1
  415. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.js +0 -174
  416. package/dist/src/presentation/cli/commands/security.command.d.ts +0 -16
  417. package/dist/src/presentation/cli/commands/security.command.d.ts.map +0 -1
  418. package/dist/src/presentation/cli/commands/security.command.js +0 -118
  419. package/dist/src/presentation/web/app/actions/security.d.ts +0 -28
  420. package/dist/src/presentation/web/app/actions/security.d.ts.map +0 -1
  421. package/dist/src/presentation/web/app/actions/security.js +0 -59
  422. package/dist/src/presentation/web/components/common/repository-node/security-panel.d.ts +0 -6
  423. package/dist/src/presentation/web/components/common/repository-node/security-panel.d.ts.map +0 -1
  424. package/dist/src/presentation/web/components/common/repository-node/security-panel.js +0 -29
  425. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.d.ts +0 -10
  426. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.d.ts.map +0 -1
  427. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.js +0 -53
  428. package/dist/src/presentation/web/components/common/security-badge.d.ts +0 -7
  429. package/dist/src/presentation/web/components/common/security-badge.d.ts.map +0 -1
  430. package/dist/src/presentation/web/components/common/security-badge.js +0 -30
  431. package/dist/src/presentation/web/components/common/security-badge.stories.d.ts +0 -12
  432. package/dist/src/presentation/web/components/common/security-badge.stories.d.ts.map +0 -1
  433. package/dist/src/presentation/web/components/common/security-badge.stories.js +0 -20
  434. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.d.ts +0 -6
  435. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.d.ts.map +0 -1
  436. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.js +0 -60
  437. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.d.ts +0 -14
  438. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.d.ts.map +0 -1
  439. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.js +0 -116
  440. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js +0 -3
  441. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js.map +0 -1
  442. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js +0 -3
  443. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js.map +0 -1
  444. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js +0 -3
  445. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js.map +0 -1
  446. package/web/.next/server/chunks/ssr/[root-of-the-server]__51ec77a8._.js +0 -3
  447. package/web/.next/server/chunks/ssr/[root-of-the-server]__51ec77a8._.js.map +0 -1
  448. package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js +0 -4
  449. package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js.map +0 -1
  450. package/web/.next/server/chunks/ssr/[root-of-the-server]__66047a1b._.js +0 -3
  451. package/web/.next/server/chunks/ssr/[root-of-the-server]__66047a1b._.js.map +0 -1
  452. package/web/.next/server/chunks/ssr/[root-of-the-server]__9a9cb046._.js +0 -3
  453. package/web/.next/server/chunks/ssr/[root-of-the-server]__9a9cb046._.js.map +0 -1
  454. package/web/.next/server/chunks/ssr/[root-of-the-server]__a2d6c0ac._.js +0 -4
  455. package/web/.next/server/chunks/ssr/[root-of-the-server]__a2d6c0ac._.js.map +0 -1
  456. package/web/.next/server/chunks/ssr/[root-of-the-server]__a932cd3a._.js +0 -3
  457. package/web/.next/server/chunks/ssr/[root-of-the-server]__a932cd3a._.js.map +0 -1
  458. package/web/.next/server/chunks/ssr/[root-of-the-server]__aa72e794._.js +0 -3
  459. package/web/.next/server/chunks/ssr/[root-of-the-server]__aa72e794._.js.map +0 -1
  460. package/web/.next/server/chunks/ssr/_02580450._.js +0 -3
  461. package/web/.next/server/chunks/ssr/_02580450._.js.map +0 -1
  462. package/web/.next/server/chunks/ssr/_1594e369._.js +0 -9
  463. package/web/.next/server/chunks/ssr/_1594e369._.js.map +0 -1
  464. package/web/.next/server/chunks/ssr/_21d37090._.js +0 -3
  465. package/web/.next/server/chunks/ssr/_21d37090._.js.map +0 -1
  466. package/web/.next/server/chunks/ssr/_767748d2._.js.map +0 -1
  467. package/web/.next/server/chunks/ssr/_f8c55130._.js +0 -4
  468. package/web/.next/server/chunks/ssr/_f8c55130._.js.map +0 -1
  469. package/web/.next/server/chunks/ssr/_ff04802c._.js +0 -3
  470. package/web/.next/server/chunks/ssr/_ff04802c._.js.map +0 -1
  471. package/web/.next/server/chunks/ssr/src_presentation_web_17d39233._.js +0 -3
  472. package/web/.next/server/chunks/ssr/src_presentation_web_17d39233._.js.map +0 -1
  473. package/web/.next/server/chunks/ssr/src_presentation_web_54b02639._.js +0 -5
  474. package/web/.next/server/chunks/ssr/src_presentation_web_54b02639._.js.map +0 -1
  475. package/web/.next/server/chunks/ssr/src_presentation_web_7b7b9e3b._.js +0 -5
  476. package/web/.next/server/chunks/ssr/src_presentation_web_7b7b9e3b._.js.map +0 -1
  477. package/web/.next/server/chunks/ssr/src_presentation_web_807cba76._.js +0 -3
  478. package/web/.next/server/chunks/ssr/src_presentation_web_807cba76._.js.map +0 -1
  479. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js +0 -3
  480. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js.map +0 -1
  481. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js +0 -3
  482. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js.map +0 -1
  483. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js +0 -3
  484. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js.map +0 -1
  485. package/web/.next/server/chunks/ssr/src_presentation_web_e1cd1869._.js +0 -3
  486. package/web/.next/server/chunks/ssr/src_presentation_web_e1cd1869._.js.map +0 -1
  487. package/web/.next/server/chunks/ssr/src_presentation_web_e3a30e30._.js +0 -3
  488. package/web/.next/server/chunks/ssr/src_presentation_web_e3a30e30._.js.map +0 -1
  489. package/web/.next/static/chunks/051873309d87fb45.css +0 -1
  490. package/web/.next/static/chunks/23d80bb760e7dc4c.js +0 -1
  491. package/web/.next/static/chunks/30a0ba9015f94405.js +0 -7
  492. package/web/.next/static/chunks/3aba9d2242420cb5.js +0 -1
  493. package/web/.next/static/chunks/7a6f56f37aaa17ea.js +0 -1
  494. package/web/.next/static/chunks/9423dc2310202fda.js +0 -1
  495. package/web/.next/static/chunks/a794cf7a1a5648dd.js +0 -1
  496. package/web/.next/static/chunks/ae81796726a9bba3.js +0 -1
  497. package/web/.next/static/chunks/f3d5e0ae13def35a.js +0 -1
  498. package/web/.next/static/chunks/fd232b88b5b50b2e.js +0 -1
  499. /package/web/.next/static/{t6SUt71jyk_PYf152Imog → S_u3qor6FkwObhA1F2xEj}/_buildManifest.js +0 -0
  500. /package/web/.next/static/{t6SUt71jyk_PYf152Imog → S_u3qor6FkwObhA1F2xEj}/_clientMiddlewareManifest.json +0 -0
  501. /package/web/.next/static/{t6SUt71jyk_PYf152Imog → S_u3qor6FkwObhA1F2xEj}/_ssgManifest.js +0 -0
@@ -56,8 +56,6 @@ 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
- securityMode: import("../../../../domain/index.js").SecurityMode;
60
- securityActionDispositions: Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>;
61
59
  }, {
62
60
  featureId?: string | undefined;
63
61
  repositoryPath?: string | undefined;
@@ -91,8 +89,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
91
89
  ciFixAttempts?: number | undefined;
92
90
  ciFixHistory?: import("../../../../domain/index.js").CiFixRecord[] | undefined;
93
91
  ciFixStatus?: "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted" | undefined;
94
- securityMode?: import("../../../../domain/index.js").SecurityMode | undefined;
95
- securityActionDispositions?: Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>> | undefined;
96
92
  }, "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", {
97
93
  featureId: {
98
94
  (): import("@langchain/langgraph").LastValue<string>;
@@ -146,8 +142,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
146
142
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
147
143
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
148
144
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
149
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
150
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
151
145
  }, {
152
146
  featureId: {
153
147
  (): import("@langchain/langgraph").LastValue<string>;
@@ -201,8 +195,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
201
195
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
202
196
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
203
197
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
204
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
205
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
206
198
  }, import("@langchain/langgraph").StateDefinition, {
207
199
  analyze: Partial<import("@langchain/langgraph").StateType<{
208
200
  featureId: {
@@ -257,8 +249,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
257
249
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
258
250
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
259
251
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
260
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
261
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
262
252
  }>>;
263
253
  requirements: Partial<import("@langchain/langgraph").StateType<{
264
254
  featureId: {
@@ -313,8 +303,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
313
303
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
314
304
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
315
305
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
316
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
317
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
318
306
  }>>;
319
307
  research: Partial<import("@langchain/langgraph").StateType<{
320
308
  featureId: {
@@ -369,8 +357,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
369
357
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
370
358
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
371
359
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
372
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
373
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
374
360
  }>>;
375
361
  plan: Partial<import("@langchain/langgraph").StateType<{
376
362
  featureId: {
@@ -425,8 +411,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
425
411
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
426
412
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
427
413
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
428
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
429
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
430
414
  }>>;
431
415
  implement: Partial<import("@langchain/langgraph").StateType<{
432
416
  featureId: {
@@ -481,8 +465,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
481
465
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
482
466
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
483
467
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
484
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
485
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
486
468
  }>>;
487
469
  validate_spec_analyze: Partial<import("@langchain/langgraph").StateType<{
488
470
  featureId: {
@@ -537,8 +519,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
537
519
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
538
520
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
539
521
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
540
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
541
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
542
522
  }>>;
543
523
  validate_spec_requirements: Partial<import("@langchain/langgraph").StateType<{
544
524
  featureId: {
@@ -593,8 +573,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
593
573
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
594
574
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
595
575
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
596
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
597
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
598
576
  }>>;
599
577
  validate_research: Partial<import("@langchain/langgraph").StateType<{
600
578
  featureId: {
@@ -649,8 +627,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
649
627
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
650
628
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
651
629
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
652
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
653
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
654
630
  }>>;
655
631
  validate_plan_tasks: Partial<import("@langchain/langgraph").StateType<{
656
632
  featureId: {
@@ -705,8 +681,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
705
681
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
706
682
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
707
683
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
708
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
709
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
710
684
  }>>;
711
685
  repair_spec_analyze: Partial<import("@langchain/langgraph").StateType<{
712
686
  featureId: {
@@ -761,8 +735,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
761
735
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
762
736
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
763
737
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
764
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
765
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
766
738
  }>>;
767
739
  repair_spec_requirements: Partial<import("@langchain/langgraph").StateType<{
768
740
  featureId: {
@@ -817,8 +789,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
817
789
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
818
790
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
819
791
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
820
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
821
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
822
792
  }>>;
823
793
  repair_research: Partial<import("@langchain/langgraph").StateType<{
824
794
  featureId: {
@@ -873,8 +843,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
873
843
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
874
844
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
875
845
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
876
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
877
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
878
846
  }>>;
879
847
  repair_plan_tasks: Partial<import("@langchain/langgraph").StateType<{
880
848
  featureId: {
@@ -929,8 +897,6 @@ export declare function createFeatureAgentGraph(depsOrExecutor: FeatureAgentGrap
929
897
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
930
898
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").CiFixRecord[], import("../../../../domain/index.js").CiFixRecord[]>;
931
899
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
932
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<import("../../../../domain/index.js").SecurityMode, import("../../../../domain/index.js").SecurityMode>;
933
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>, Partial<Record<import("../../../../domain/index.js").SecurityActionCategory, import("../../../../domain/index.js").SecurityActionDisposition>>>;
934
900
  }>>;
935
901
  }, unknown, unknown>;
936
902
  //# 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, type SecurityMode, type SecurityActionCategory, type SecurityActionDisposition } from '../../../../domain/generated/output.js';
10
+ import { 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);
@@ -28,8 +28,6 @@ export declare class FeatureAgentProcessService implements IFeatureAgentProcessS
28
28
  fast?: boolean;
29
29
  model?: string;
30
30
  resumeReason?: string;
31
- securityMode?: SecurityMode;
32
- securityActionDispositions?: Partial<Record<SecurityActionCategory, SecurityActionDisposition>>;
33
31
  }): number;
34
32
  isAlive(pid: number): boolean;
35
33
  checkAndMarkCrashed(runId: string): Promise<void>;
@@ -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,EAEL,KAAK,aAAa,EAClB,KAAK,SAAS,EACd,KAAK,YAAY,EACjB,KAAK,sBAAsB,EAC3B,KAAK,yBAAyB,EAC/B,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,OAAO,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,YAAY,CAAC,EAAE,YAAY,CAAC;QAC5B,0BAA0B,CAAC,EAAE,OAAO,CAClC,MAAM,CAAC,sBAAsB,EAAE,yBAAyB,CAAC,CAC1D,CAAC;KACH,GACA,MAAM;IA4FT,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,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"}
@@ -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 } 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 */
@@ -90,12 +90,6 @@ export class FeatureAgentProcessService {
90
90
  if (options?.resumeReason) {
91
91
  args.push('--resume-reason', options.resumeReason);
92
92
  }
93
- if (options?.securityMode) {
94
- args.push('--security-mode', options.securityMode);
95
- }
96
- if (options?.securityActionDispositions) {
97
- args.push('--security-dispositions', JSON.stringify(options.securityActionDispositions));
98
- }
99
93
  // Create log file for worker output (for debugging)
100
94
  const logsDir = join(homedir(), '.shep', 'logs');
101
95
  mkdirSync(logsDir, { recursive: true });
@@ -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 { SecurityMode, type AgentType, type SecurityActionCategory, type SecurityActionDisposition } from '../../../../domain/generated/output.js';
12
+ import { 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;
@@ -33,8 +33,6 @@ export interface WorkerArgs {
33
33
  fast?: boolean;
34
34
  model?: string;
35
35
  resumeReason?: string;
36
- securityMode?: SecurityMode;
37
- securityActionDispositions?: Partial<Record<SecurityActionCategory, SecurityActionDisposition>>;
38
36
  }
39
37
  /**
40
38
  * Parse CLI arguments into a WorkerArgs object.
@@ -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,EAGL,YAAY,EACZ,KAAK,SAAS,EACd,KAAK,sBAAsB,EAC3B,KAAK,yBAAyB,EAC/B,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,OAAO,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,0BAA0B,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,sBAAsB,EAAE,yBAAyB,CAAC,CAAC,CAAC;CACjG;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,UAAU,CA4G1D;AAgCD;;;GAGG;AACH,wBAAsB,SAAS,CAAC,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC,CAmT/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;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"}
@@ -16,7 +16,7 @@ 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
18
  import { createCheckpointer } from '../common/checkpointer.js';
19
- import { AgentRunStatus, SdlcLifecycle, SecurityMode, } from '../../../../domain/generated/output.js';
19
+ import { AgentRunStatus, SdlcLifecycle } from '../../../../domain/generated/output.js';
20
20
  import { initializeSettings } from '../../../services/settings.service.js';
21
21
  import { InitializeSettingsUseCase } from '../../../../application/use-cases/settings/initialize-settings.use-case.js';
22
22
  import { setHeartbeatContext } from './heartbeat.js';
@@ -76,23 +76,6 @@ export function parseWorkerArgs(args) {
76
76
  const resumeReason = resumeReasonIdx !== -1 && resumeReasonIdx + 1 < args.length
77
77
  ? args[resumeReasonIdx + 1]
78
78
  : undefined;
79
- const securityModeIdx = args.indexOf('--security-mode');
80
- const securityModeRaw = securityModeIdx !== -1 && securityModeIdx + 1 < args.length
81
- ? args[securityModeIdx + 1]
82
- : undefined;
83
- const securityMode = securityModeRaw && Object.values(SecurityMode).includes(securityModeRaw)
84
- ? securityModeRaw
85
- : undefined;
86
- const securityDispositionsIdx = args.indexOf('--security-dispositions');
87
- let securityActionDispositions;
88
- if (securityDispositionsIdx !== -1 && securityDispositionsIdx + 1 < args.length) {
89
- try {
90
- securityActionDispositions = JSON.parse(args[securityDispositionsIdx + 1]);
91
- }
92
- catch {
93
- securityActionDispositions = undefined;
94
- }
95
- }
96
79
  return {
97
80
  featureId: getArg('feature-id'),
98
81
  runId: getArg('run-id'),
@@ -115,8 +98,6 @@ export function parseWorkerArgs(args) {
115
98
  fast,
116
99
  model,
117
100
  resumeReason,
118
- securityMode,
119
- securityActionDispositions,
120
101
  };
121
102
  }
122
103
  /** Simple worker logger — writes to stdout which is redirected to log file by the parent. */
@@ -178,10 +159,6 @@ export async function runWorker(args) {
178
159
  ...(args.agentType ? ['--agent-type', args.agentType] : []),
179
160
  ...(args.fast ? ['--fast'] : []),
180
161
  ...(args.model ? ['--model', args.model] : []),
181
- ...(args.securityMode ? ['--security-mode', args.securityMode] : []),
182
- ...(args.securityActionDispositions
183
- ? ['--security-dispositions', JSON.stringify(args.securityActionDispositions)]
184
- : []),
185
162
  ];
186
163
  log(`Starting worker — full command:`);
187
164
  log(` ${cmdParts.join(' ')}`);
@@ -315,10 +292,6 @@ export async function runWorker(args) {
315
292
  ciWatchEnabled: args.ciWatchEnabled ?? true,
316
293
  enableEvidence: args.enableEvidence ?? false,
317
294
  commitEvidence: args.commitEvidence ?? false,
318
- ...(args.securityMode ? { securityMode: args.securityMode } : {}),
319
- ...(args.securityActionDispositions
320
- ? { securityActionDispositions: args.securityActionDispositions }
321
- : {}),
322
295
  }, graphConfig);
323
296
  }
324
297
  else {
@@ -337,10 +310,6 @@ export async function runWorker(args) {
337
310
  ciWatchEnabled: args.ciWatchEnabled ?? true,
338
311
  enableEvidence: args.enableEvidence ?? false,
339
312
  commitEvidence: args.commitEvidence ?? false,
340
- ...(args.securityMode ? { securityMode: args.securityMode } : {}),
341
- ...(args.securityActionDispositions
342
- ? { securityActionDispositions: args.securityActionDispositions }
343
- : {}),
344
313
  }, graphConfig);
345
314
  }
346
315
  log(`Graph invocation completed. Error: ${result.error ?? 'none'}`);
@@ -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":"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"}
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"}
@@ -9,10 +9,7 @@ import { mkdirSync, readFileSync, writeFileSync, renameSync, unlinkSync } from '
9
9
  import { execSync } from 'node:child_process';
10
10
  import { join, dirname, relative } from 'node:path';
11
11
  import { interrupt, isGraphBubbleUp } from '@langchain/langgraph';
12
- import { SecurityMode } from '../../../../../domain/generated/output.js';
13
12
  import { hasSettings, getSettings } from '../../../../services/settings.service.js';
14
- import { SecurityViolationError } from '../../../../../domain/errors/security-violation.error.js';
15
- import { checkSecurityDisposition } from './security-pre-check.js';
16
13
  import { reportNodeStart } from '../heartbeat.js';
17
14
  import { recordPhaseStart, recordPhaseEnd, recordApprovalWaitStart, } from '../phase-timing-context.js';
18
15
  import { updateNodeLifecycle } from '../lifecycle-context.js';
@@ -492,22 +489,6 @@ export function executeNode(nodeName, executor, buildPrompt) {
492
489
  };
493
490
  }
494
491
  }
495
- // Security pre-check: evaluate policy before executing the agent
496
- const securityCheck = checkSecurityDisposition(nodeName, state.securityMode ?? SecurityMode.Disabled, state.securityActionDispositions ?? {});
497
- if (securityCheck.action === 'deny') {
498
- throw new SecurityViolationError(`Node "${nodeName}" denied by security policy (category: ${securityCheck.category})`, securityCheck.category, `Action category "${securityCheck.category}" is denied. Update security policy to allow this action.`);
499
- }
500
- if (securityCheck.action === 'approval_required') {
501
- log.info(`Security policy requires approval for "${nodeName}" (category: ${securityCheck.category})`);
502
- interrupt({
503
- node: nodeName,
504
- message: `Security policy requires approval for "${securityCheck.category}" before "${nodeName}" can execute.`,
505
- securityCategory: securityCheck.category,
506
- });
507
- }
508
- if (securityCheck.action === 'warn') {
509
- log.info(`Security advisory: "${nodeName}" would be restricted (category: ${securityCheck.category})`);
510
- }
511
492
  const startTime = Date.now();
512
493
  const resumePrefix = buildResumeContext(state.resumeReason);
513
494
  const prompt = resumePrefix + buildPrompt(state, log);
@@ -1,5 +1,4 @@
1
- import type { ApprovalGates, CiFixRecord, Evidence, SecurityActionCategory, SecurityActionDisposition } from '../../../../domain/generated/output.js';
2
- import { SecurityMode } from '../../../../domain/generated/output.js';
1
+ import type { ApprovalGates, CiFixRecord, Evidence } from '../../../../domain/generated/output.js';
3
2
  /**
4
3
  * State annotation for the feature-agent graph.
5
4
  *
@@ -60,8 +59,6 @@ export declare const FeatureAgentAnnotation: import("@langchain/langgraph").Anno
60
59
  ciFixAttempts: import("@langchain/langgraph").BinaryOperatorAggregate<number, number>;
61
60
  ciFixHistory: import("@langchain/langgraph").BinaryOperatorAggregate<CiFixRecord[], CiFixRecord[]>;
62
61
  ciFixStatus: import("@langchain/langgraph").BinaryOperatorAggregate<"success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted", "success" | "timeout" | "idle" | "watching" | "fixing" | "exhausted">;
63
- securityMode: import("@langchain/langgraph").BinaryOperatorAggregate<SecurityMode, SecurityMode>;
64
- securityActionDispositions: import("@langchain/langgraph").BinaryOperatorAggregate<Partial<Record<SecurityActionCategory, SecurityActionDisposition>>, Partial<Record<SecurityActionCategory, SecurityActionDisposition>>>;
65
62
  }>;
66
63
  export type FeatureAgentState = typeof FeatureAgentAnnotation.State;
67
64
  //# sourceMappingURL=state.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"state.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/state.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,aAAa,EACb,WAAW,EACX,QAAQ,EACR,sBAAsB,EACtB,yBAAyB,EAC1B,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAE5D;;;;;;GAMG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmIjC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,OAAO,sBAAsB,CAAC,KAAK,CAAC"}
1
+ {"version":3,"file":"state.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/core/src/infrastructure/services/agents/feature-agent/state.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAEzF;;;;;;GAMG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwHjC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,OAAO,sBAAsB,CAAC,KAAK,CAAC"}
@@ -1,5 +1,4 @@
1
1
  import { Annotation } from '@langchain/langgraph';
2
- import { SecurityMode } from '../../../../domain/generated/output.js';
3
2
  /**
4
3
  * State annotation for the feature-agent graph.
5
4
  *
@@ -127,13 +126,4 @@ export const FeatureAgentAnnotation = Annotation.Root({
127
126
  reducer: (_prev, next) => next,
128
127
  default: () => 'idle',
129
128
  }),
130
- // --- Security policy state (set once at spawn, read by nodes) ---
131
- securityMode: Annotation({
132
- reducer: (_prev, next) => next,
133
- default: () => SecurityMode.Disabled,
134
- }),
135
- securityActionDispositions: Annotation({
136
- reducer: (_prev, next) => next,
137
- default: () => ({}),
138
- }),
139
129
  });
@@ -5,7 +5,7 @@
5
5
  * checks, repository listing, cloning (with progress streaming), and URL parsing.
6
6
  */
7
7
  import type { ExecFunction } from '../git/worktree.service.js';
8
- import type { IGitHubRepositoryService, GitHubRepo, GitHubOrganization, ListUserRepositoriesOptions, CloneOptions, ParsedGitHubUrl, GovernanceFinding } from '../../../application/ports/output/services/github-repository-service.interface.js';
8
+ import type { IGitHubRepositoryService, GitHubRepo, GitHubOrganization, ListUserRepositoriesOptions, CloneOptions, ParsedGitHubUrl } from '../../../application/ports/output/services/github-repository-service.interface.js';
9
9
  export declare class GitHubRepositoryService implements IGitHubRepositoryService {
10
10
  private readonly execFile;
11
11
  constructor(execFile: ExecFunction);
@@ -15,15 +15,6 @@ export declare class GitHubRepositoryService implements IGitHubRepositoryService
15
15
  cloneRepository(nameWithOwner: string, destination: string, options?: CloneOptions): Promise<void>;
16
16
  parseGitHubUrl(url: string): ParsedGitHubUrl;
17
17
  getViewerPermission(repoPath: string): Promise<string>;
18
- auditRepositoryGovernance(owner: string, repo: string, defaultBranch?: string): Promise<GovernanceFinding[]>;
19
- private checkBranchProtection;
20
- private checkCodeowners;
21
- /**
22
- * Handle errors from governance API calls gracefully.
23
- * 404 errors are treated as findings (missing config).
24
- * Auth/permission errors are treated as Unknown severity findings.
25
- */
26
- private handleGovernanceCheckError;
27
18
  private cleanupPartialClone;
28
19
  }
29
20
  //# sourceMappingURL=github-repository.service.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"github-repository.service.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/infrastructure/services/external/github-repository.service.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAMH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,KAAK,EACV,wBAAwB,EACxB,UAAU,EACV,kBAAkB,EAClB,2BAA2B,EAC3B,YAAY,EACZ,eAAe,EACf,iBAAiB,EAClB,MAAM,mFAAmF,CAAC;AA0B3F,qBACa,uBAAwB,YAAW,wBAAwB;IAClC,OAAO,CAAC,QAAQ,CAAC,QAAQ;gBAAR,QAAQ,EAAE,YAAY;IAErE,SAAS,IAAI,OAAO,CAAC,IAAI,CAAC;IAyB1B,oBAAoB,CAAC,OAAO,CAAC,EAAE,2BAA2B,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IAuClF,iBAAiB,IAAI,OAAO,CAAC,kBAAkB,EAAE,CAAC;IA2BlD,eAAe,CACnB,aAAa,EAAE,MAAM,EACrB,WAAW,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE,YAAY,GACrB,OAAO,CAAC,IAAI,CAAC;IAgDhB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,eAAe;IA2CtC,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAyBtD,yBAAyB,CAC7B,KAAK,EAAE,MAAM,EACb,IAAI,EAAE,MAAM,EACZ,aAAa,SAAS,GACrB,OAAO,CAAC,iBAAiB,EAAE,CAAC;YAcjB,qBAAqB;YAmCrB,eAAe;IA6B7B;;;;OAIG;IACH,OAAO,CAAC,0BAA0B;YA6CpB,mBAAmB;CAOlC"}
1
+ {"version":3,"file":"github-repository.service.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/infrastructure/services/external/github-repository.service.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAMH,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,KAAK,EACV,wBAAwB,EACxB,UAAU,EACV,kBAAkB,EAClB,2BAA2B,EAC3B,YAAY,EACZ,eAAe,EAChB,MAAM,mFAAmF,CAAC;AAyB3F,qBACa,uBAAwB,YAAW,wBAAwB;IAClC,OAAO,CAAC,QAAQ,CAAC,QAAQ;gBAAR,QAAQ,EAAE,YAAY;IAErE,SAAS,IAAI,OAAO,CAAC,IAAI,CAAC;IAyB1B,oBAAoB,CAAC,OAAO,CAAC,EAAE,2BAA2B,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IAuClF,iBAAiB,IAAI,OAAO,CAAC,kBAAkB,EAAE,CAAC;IA2BlD,eAAe,CACnB,aAAa,EAAE,MAAM,EACrB,WAAW,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE,YAAY,GACrB,OAAO,CAAC,IAAI,CAAC;IAgDhB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,eAAe;IA2CtC,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;YAyB9C,mBAAmB;CAOlC"}
@@ -20,7 +20,7 @@ import { injectable, inject } from 'tsyringe';
20
20
  import { resolve, normalize } from 'node:path';
21
21
  import { rm } from 'node:fs/promises';
22
22
  import { spawn } from 'node:child_process';
23
- import { GitHubAuthError, GitHubCloneError, GitHubPermissionError, GitHubRepoListError, GitHubUrlParseError, GovernanceFindingCategory, } from '../../../application/ports/output/services/github-repository-service.interface.js';
23
+ import { GitHubAuthError, GitHubCloneError, GitHubPermissionError, GitHubRepoListError, GitHubUrlParseError, } from '../../../application/ports/output/services/github-repository-service.interface.js';
24
24
  // ---------------------------------------------------------------------------
25
25
  // URL regex patterns
26
26
  // ---------------------------------------------------------------------------
@@ -191,106 +191,6 @@ let GitHubRepositoryService = class GitHubRepositoryService {
191
191
  throw new GitHubPermissionError(`Failed to check repository permission: ${cause?.message ?? String(error)}`, cause);
192
192
  }
193
193
  }
194
- async auditRepositoryGovernance(owner, repo, defaultBranch = 'main') {
195
- const findings = [];
196
- // Check branch protection
197
- const branchFindings = await this.checkBranchProtection(owner, repo, defaultBranch);
198
- findings.push(...branchFindings);
199
- // Check CODEOWNERS presence
200
- const codeownersFindings = await this.checkCodeowners(owner, repo);
201
- findings.push(...codeownersFindings);
202
- return findings;
203
- }
204
- async checkBranchProtection(owner, repo, branch) {
205
- try {
206
- const { stdout } = await this.execFile('gh', [
207
- 'api',
208
- `/repos/${owner}/${repo}/branches/${branch}/protection`,
209
- ]);
210
- const protection = JSON.parse(stdout);
211
- // Protection exists — check for PR review requirements
212
- if (!protection.required_pull_request_reviews) {
213
- return [
214
- {
215
- category: GovernanceFindingCategory.BranchProtection,
216
- severity: 'Medium',
217
- message: `Branch "${branch}" has protection enabled but does not require pull request reviews.`,
218
- remediation: `Enable "Require a pull request before merging" in branch protection settings for "${branch}".`,
219
- },
220
- ];
221
- }
222
- return [];
223
- }
224
- catch (error) {
225
- return this.handleGovernanceCheckError(error, GovernanceFindingCategory.BranchProtection, `Branch "${branch}" has no branch protection rules configured.`, `Enable branch protection for "${branch}" in repository settings. Require pull request reviews and status checks.`);
226
- }
227
- }
228
- async checkCodeowners(owner, repo) {
229
- // CODEOWNERS can live in repo root or .github/ directory
230
- const paths = [
231
- `/repos/${owner}/${repo}/contents/CODEOWNERS`,
232
- `/repos/${owner}/${repo}/contents/.github/CODEOWNERS`,
233
- ];
234
- for (const path of paths) {
235
- try {
236
- await this.execFile('gh', ['api', path]);
237
- // Found CODEOWNERS — no finding needed
238
- return [];
239
- }
240
- catch {
241
- // Not found at this path — try next
242
- }
243
- }
244
- // Neither location found
245
- return [
246
- {
247
- category: GovernanceFindingCategory.Codeowners,
248
- severity: 'Medium',
249
- message: 'No CODEOWNERS file found in the repository.',
250
- remediation: 'Add a CODEOWNERS file to the repository root or .github/ directory to enforce code review ownership.',
251
- },
252
- ];
253
- }
254
- /**
255
- * Handle errors from governance API calls gracefully.
256
- * 404 errors are treated as findings (missing config).
257
- * Auth/permission errors are treated as Unknown severity findings.
258
- */
259
- handleGovernanceCheckError(error, category, notFoundMessage, notFoundRemediation) {
260
- const errMessage = error instanceof Error ? error.message : String(error);
261
- const errnoCode = error?.code;
262
- // gh not installed
263
- if (errnoCode === 'ENOENT') {
264
- return [
265
- {
266
- category,
267
- severity: 'Unknown',
268
- message: 'GitHub CLI (gh) is not installed. Cannot audit repository governance.',
269
- remediation: 'Install the GitHub CLI from https://cli.github.com/',
270
- },
271
- ];
272
- }
273
- // 404 = resource not configured (branch protection, file missing, etc.)
274
- if (errMessage.includes('404')) {
275
- return [
276
- {
277
- category,
278
- severity: 'High',
279
- message: notFoundMessage,
280
- remediation: notFoundRemediation,
281
- },
282
- ];
283
- }
284
- // Auth/permission errors or other unexpected failures — return Unknown finding
285
- return [
286
- {
287
- category,
288
- severity: 'Unknown',
289
- message: `Unable to audit ${category}: ${errMessage}`,
290
- remediation: 'Verify that the GitHub CLI is authenticated with sufficient permissions. Run `gh auth login`.',
291
- },
292
- ];
293
- }
294
194
  async cleanupPartialClone(destination) {
295
195
  try {
296
196
  await rm(destination, { recursive: true, force: true });
@@ -8,7 +8,6 @@
8
8
  import type { ISpecInitializerService, SpecInitializerResult } from '../../../application/ports/output/services/spec-initializer.interface.js';
9
9
  export declare class SpecInitializerService implements ISpecInitializerService {
10
10
  initialize(basePath: string, slug: string, featureNumber: number, description: string, mode?: 'fast'): Promise<SpecInitializerResult>;
11
- scaffoldSecurityPolicy(repositoryPath: string): Promise<string>;
12
11
  /**
13
12
  * Scan specs/ for existing NNN-* directories and return the next available number.
14
13
  * Uses the DB-derived hint as a minimum, but always respects filesystem state.
@@ -1 +1 @@
1
- {"version":3,"file":"spec-initializer.service.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/infrastructure/services/spec/spec-initializer.service.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,OAAO,KAAK,EACV,uBAAuB,EACvB,qBAAqB,EACtB,MAAM,mEAAmE,CAAC;AAwT3E,qBAAa,sBAAuB,YAAW,uBAAuB;IAC9D,UAAU,CACd,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,MAAM,EACZ,aAAa,EAAE,MAAM,EACrB,WAAW,EAAE,MAAM,EACnB,IAAI,CAAC,EAAE,MAAM,GACZ,OAAO,CAAC,qBAAqB,CAAC;IAqC3B,sBAAsB,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAMrE;;;OAGG;YACW,iBAAiB;CAoBhC"}
1
+ {"version":3,"file":"spec-initializer.service.d.ts","sourceRoot":"","sources":["../../../../../../../packages/core/src/infrastructure/services/spec/spec-initializer.service.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,OAAO,KAAK,EACV,uBAAuB,EACvB,qBAAqB,EACtB,MAAM,mEAAmE,CAAC;AA8P3E,qBAAa,sBAAuB,YAAW,uBAAuB;IAC9D,UAAU,CACd,QAAQ,EAAE,MAAM,EAChB,IAAI,EAAE,MAAM,EACZ,aAAa,EAAE,MAAM,EACrB,WAAW,EAAE,MAAM,EACnB,IAAI,CAAC,EAAE,MAAM,GACZ,OAAO,CAAC,qBAAqB,CAAC;IAqCjC;;;OAGG;YACW,iBAAiB;CAoBhC"}