@shepai/cli 1.175.0 → 1.175.1-pr527.ea242b8

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 (416) hide show
  1. package/apis/json-schema/ActionDispositionEntry.yaml +14 -0
  2. package/apis/json-schema/DependencyFinding.yaml +28 -0
  3. package/apis/json-schema/DependencyRiskType.yaml +11 -0
  4. package/apis/json-schema/DependencyRules.yaml +38 -0
  5. package/apis/json-schema/EffectivePolicySnapshot.yaml +24 -0
  6. package/apis/json-schema/FeatureFlags.yaml +5 -0
  7. package/apis/json-schema/ReleaseIntegrityCheck.yaml +22 -0
  8. package/apis/json-schema/ReleaseIntegrityCheckType.yaml +9 -0
  9. package/apis/json-schema/ReleaseIntegrityResult.yaml +16 -0
  10. package/apis/json-schema/ReleaseRules.yaml +21 -0
  11. package/apis/json-schema/SecurityActionCategory.yaml +10 -0
  12. package/apis/json-schema/SecurityActionDisposition.yaml +8 -0
  13. package/apis/json-schema/SecurityConfig.yaml +17 -0
  14. package/apis/json-schema/SecurityEvent.yaml +36 -0
  15. package/apis/json-schema/SecurityMode.yaml +8 -0
  16. package/apis/json-schema/SecurityPolicy.yaml +24 -0
  17. package/apis/json-schema/SecuritySeverity.yaml +9 -0
  18. package/apis/json-schema/Settings.yaml +3 -0
  19. package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts +15 -1
  20. package/dist/packages/core/src/application/ports/output/agents/agent-executor.interface.d.ts.map +1 -1
  21. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts +3 -1
  22. package/dist/packages/core/src/application/ports/output/agents/feature-agent-process.interface.d.ts.map +1 -1
  23. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.d.ts +76 -0
  24. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.d.ts.map +1 -0
  25. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.js +11 -0
  26. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.d.ts +38 -0
  27. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.d.ts.map +1 -1
  28. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.js +9 -0
  29. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.d.ts +77 -0
  30. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.d.ts.map +1 -0
  31. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.js +13 -0
  32. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts +11 -0
  33. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -1
  34. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.d.ts.map +1 -1
  35. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +2 -0
  36. package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.d.ts.map +1 -1
  37. package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +2 -0
  38. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
  39. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +2 -0
  40. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
  41. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +1 -0
  42. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
  43. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +2 -0
  44. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
  45. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +2 -0
  46. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.d.ts +71 -0
  47. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.d.ts.map +1 -0
  48. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.js +215 -0
  49. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.d.ts +24 -0
  50. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.d.ts.map +1 -0
  51. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.js +56 -0
  52. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.d.ts +36 -0
  53. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.d.ts.map +1 -0
  54. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.js +76 -0
  55. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.d.ts +14 -0
  56. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.d.ts.map +1 -0
  57. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.js +46 -0
  58. package/dist/packages/core/src/domain/errors/security-violation.error.d.ts +15 -0
  59. package/dist/packages/core/src/domain/errors/security-violation.error.d.ts.map +1 -0
  60. package/dist/packages/core/src/domain/errors/security-violation.error.js +20 -0
  61. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  62. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +6 -1
  63. package/dist/packages/core/src/domain/generated/output.d.ts +263 -0
  64. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  65. package/dist/packages/core/src/domain/generated/output.js +43 -0
  66. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  67. package/dist/packages/core/src/infrastructure/di/container.js +57 -0
  68. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.d.ts +44 -0
  69. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.d.ts.map +1 -0
  70. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.js +55 -0
  71. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +4 -0
  72. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  73. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +17 -0
  74. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.d.ts +18 -0
  75. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.d.ts.map +1 -0
  76. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.js +31 -0
  77. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.d.ts +29 -0
  78. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.d.ts.map +1 -0
  79. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.js +53 -0
  80. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-feature-flag-supply-chain-security.d.ts +16 -0
  81. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-feature-flag-supply-chain-security.d.ts.map +1 -0
  82. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/056-add-feature-flag-supply-chain-security.js +22 -0
  83. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.d.ts +24 -0
  84. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.d.ts.map +1 -0
  85. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.js +96 -0
  86. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  87. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +15 -3
  88. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts +2 -0
  89. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
  90. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +12 -0
  91. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-interactive-executor.service.d.ts.map +1 -1
  92. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-interactive-executor.service.js +44 -4
  93. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.d.ts +22 -0
  94. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.d.ts.map +1 -0
  95. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.js +30 -0
  96. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +10 -0
  97. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -1
  98. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +35 -1
  99. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
  100. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +3 -1
  101. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
  102. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +7 -1
  103. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +3 -1
  104. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
  105. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +32 -1
  106. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  107. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +25 -0
  108. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.d.ts +59 -0
  109. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.d.ts.map +1 -0
  110. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.js +89 -0
  111. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts +4 -1
  112. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts.map +1 -1
  113. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.js +10 -0
  114. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.d.ts +10 -1
  115. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.d.ts.map +1 -1
  116. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.js +101 -1
  117. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.d.ts +53 -0
  118. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.d.ts.map +1 -0
  119. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.js +241 -0
  120. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.d.ts +44 -0
  121. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.d.ts.map +1 -0
  122. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.js +194 -0
  123. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.d.ts +28 -0
  124. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.d.ts.map +1 -0
  125. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.js +50 -0
  126. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.d.ts +26 -0
  127. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.d.ts.map +1 -0
  128. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.js +147 -0
  129. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.d.ts +44 -0
  130. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.d.ts.map +1 -0
  131. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.js +174 -0
  132. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts +1 -0
  133. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
  134. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.js +61 -0
  135. package/dist/src/presentation/cli/commands/security.command.d.ts +16 -0
  136. package/dist/src/presentation/cli/commands/security.command.d.ts.map +1 -0
  137. package/dist/src/presentation/cli/commands/security.command.js +133 -0
  138. package/dist/src/presentation/cli/index.js +2 -0
  139. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
  140. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +5 -1
  141. package/dist/src/presentation/web/app/actions/security.d.ts +28 -0
  142. package/dist/src/presentation/web/app/actions/security.d.ts.map +1 -0
  143. package/dist/src/presentation/web/app/actions/security.js +59 -0
  144. package/dist/src/presentation/web/app/build-graph-nodes.d.ts +3 -1
  145. package/dist/src/presentation/web/app/build-graph-nodes.d.ts.map +1 -1
  146. package/dist/src/presentation/web/app/build-graph-nodes.js +2 -0
  147. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +3 -1
  148. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  149. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  150. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +2 -1
  151. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts +3 -1
  152. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts.map +1 -1
  153. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.js +3 -2
  154. package/dist/src/presentation/web/components/common/repository-node/security-panel.d.ts +6 -0
  155. package/dist/src/presentation/web/components/common/repository-node/security-panel.d.ts.map +1 -0
  156. package/dist/src/presentation/web/components/common/repository-node/security-panel.js +29 -0
  157. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.d.ts +10 -0
  158. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.d.ts.map +1 -0
  159. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.js +53 -0
  160. package/dist/src/presentation/web/components/common/security-badge.d.ts +7 -0
  161. package/dist/src/presentation/web/components/common/security-badge.d.ts.map +1 -0
  162. package/dist/src/presentation/web/components/common/security-badge.js +30 -0
  163. package/dist/src/presentation/web/components/common/security-badge.stories.d.ts +12 -0
  164. package/dist/src/presentation/web/components/common/security-badge.stories.d.ts.map +1 -0
  165. package/dist/src/presentation/web/components/common/security-badge.stories.js +20 -0
  166. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
  167. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +3 -0
  168. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
  169. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +3 -0
  170. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  171. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +26 -7
  172. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
  173. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +1 -0
  174. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.d.ts +6 -0
  175. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.d.ts.map +1 -0
  176. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.js +60 -0
  177. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.d.ts +14 -0
  178. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.d.ts.map +1 -0
  179. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.js +116 -0
  180. package/dist/translations/ar/cli.json +21 -0
  181. package/dist/translations/ar/web.json +43 -1
  182. package/dist/translations/de/cli.json +21 -0
  183. package/dist/translations/de/web.json +43 -1
  184. package/dist/translations/en/cli.json +21 -0
  185. package/dist/translations/en/web.json +43 -1
  186. package/dist/translations/es/cli.json +21 -0
  187. package/dist/translations/es/web.json +43 -1
  188. package/dist/translations/fr/cli.json +21 -0
  189. package/dist/translations/fr/web.json +43 -1
  190. package/dist/translations/he/cli.json +21 -0
  191. package/dist/translations/he/web.json +43 -1
  192. package/dist/translations/pt/cli.json +22 -1
  193. package/dist/translations/pt/web.json +43 -1
  194. package/dist/translations/ru/cli.json +21 -0
  195. package/dist/translations/ru/web.json +43 -1
  196. package/dist/tsconfig.build.tsbuildinfo +1 -1
  197. package/package.json +1 -1
  198. package/web/.next/BUILD_ID +1 -1
  199. package/web/.next/build-manifest.json +2 -2
  200. package/web/.next/fallback-build-manifest.json +2 -2
  201. package/web/.next/prerender-manifest.json +3 -3
  202. package/web/.next/required-server-files.js +3 -3
  203. package/web/.next/required-server-files.json +3 -3
  204. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
  205. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  206. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  207. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
  208. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  209. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  210. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +30 -30
  211. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  212. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  213. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +38 -38
  214. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  215. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  216. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +38 -38
  217. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  218. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  219. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  220. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  221. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  222. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  223. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  224. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  225. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
  226. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  227. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  228. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +30 -30
  229. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  230. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  231. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +38 -38
  232. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  233. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  234. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +38 -38
  235. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  236. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  237. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
  238. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  239. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  240. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  241. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  242. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  243. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  244. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  245. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  246. package/web/.next/server/app/_global-error.html +2 -2
  247. package/web/.next/server/app/_global-error.rsc +1 -1
  248. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  249. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  250. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  251. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  252. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  253. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
  254. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  255. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  256. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  257. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  258. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  259. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  260. package/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
  261. package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -1
  262. package/web/.next/server/app/features/page/server-reference-manifest.json +6 -6
  263. package/web/.next/server/app/features/page.js.nft.json +1 -1
  264. package/web/.next/server/app/features/page_client-reference-manifest.js +1 -1
  265. package/web/.next/server/app/settings/page/server-reference-manifest.json +33 -18
  266. package/web/.next/server/app/settings/page.js +1 -1
  267. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  268. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  269. package/web/.next/server/app/skills/page/server-reference-manifest.json +13 -13
  270. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  271. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  272. package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
  273. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  274. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  275. package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
  276. package/web/.next/server/app/version/page.js.nft.json +1 -1
  277. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  278. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  279. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
  280. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  281. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js +1 -1
  282. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js.map +1 -1
  283. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  284. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  285. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js +1 -1
  286. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js.map +1 -1
  287. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js +1 -1
  288. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js.map +1 -1
  289. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js +1 -1
  290. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js.map +1 -1
  291. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  292. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  293. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +2 -2
  294. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  295. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js +1 -1
  296. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js.map +1 -1
  297. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  298. package/web/.next/server/chunks/ssr/[root-of-the-server]__51ec77a8._.js +1 -1
  299. package/web/.next/server/chunks/ssr/[root-of-the-server]__51ec77a8._.js.map +1 -1
  300. package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js +2 -2
  301. package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js.map +1 -1
  302. package/web/.next/server/chunks/ssr/[root-of-the-server]__66047a1b._.js +1 -1
  303. package/web/.next/server/chunks/ssr/[root-of-the-server]__66047a1b._.js.map +1 -1
  304. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js +1 -1
  305. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js.map +1 -1
  306. package/web/.next/server/chunks/ssr/[root-of-the-server]__a2d6c0ac._.js +4 -0
  307. package/web/.next/server/chunks/ssr/[root-of-the-server]__a2d6c0ac._.js.map +1 -0
  308. package/web/.next/server/chunks/ssr/[root-of-the-server]__a932cd3a._.js +1 -1
  309. package/web/.next/server/chunks/ssr/[root-of-the-server]__a932cd3a._.js.map +1 -1
  310. package/web/.next/server/chunks/ssr/[root-of-the-server]__aa72e794._.js +1 -1
  311. package/web/.next/server/chunks/ssr/[root-of-the-server]__aa72e794._.js.map +1 -1
  312. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js +1 -1
  313. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js.map +1 -1
  314. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  315. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  316. package/web/.next/server/chunks/ssr/_08eaf4b1._.js +3 -0
  317. package/web/.next/server/chunks/ssr/_08eaf4b1._.js.map +1 -0
  318. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  319. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  320. package/web/.next/server/chunks/ssr/_295fffde._.js +1 -1
  321. package/web/.next/server/chunks/ssr/_295fffde._.js.map +1 -1
  322. package/web/.next/server/chunks/ssr/_45496654._.js +1 -1
  323. package/web/.next/server/chunks/ssr/_45496654._.js.map +1 -1
  324. package/web/.next/server/chunks/ssr/_4cbb7f95._.js +1 -1
  325. package/web/.next/server/chunks/ssr/_4cbb7f95._.js.map +1 -1
  326. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  327. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  328. package/web/.next/server/chunks/ssr/_6abfa39e._.js +1 -1
  329. package/web/.next/server/chunks/ssr/_783debcb._.js +9 -0
  330. package/web/.next/server/chunks/ssr/_783debcb._.js.map +1 -0
  331. package/web/.next/server/chunks/ssr/{_af6b8b94._.js → _e7f76333._.js} +2 -2
  332. package/web/.next/server/chunks/ssr/{_af6b8b94._.js.map → _e7f76333._.js.map} +1 -1
  333. package/web/.next/server/chunks/ssr/_f8c55130._.js +1 -1
  334. package/web/.next/server/chunks/ssr/_f8c55130._.js.map +1 -1
  335. package/web/.next/server/chunks/ssr/{_e0dd6fcf._.js → _fc1578d7._.js} +2 -2
  336. package/web/.next/server/chunks/ssr/_fc1578d7._.js.map +1 -0
  337. package/web/.next/server/chunks/ssr/_ff04802c._.js +3 -0
  338. package/web/.next/server/chunks/ssr/_ff04802c._.js.map +1 -0
  339. package/web/.next/server/chunks/ssr/_ff87ffa6._.js +3 -0
  340. package/web/.next/server/chunks/ssr/_ff87ffa6._.js.map +1 -0
  341. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  342. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  343. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  344. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
  345. package/web/.next/server/chunks/ssr/src_presentation_web_17d39233._.js +1 -1
  346. package/web/.next/server/chunks/ssr/src_presentation_web_17d39233._.js.map +1 -1
  347. package/web/.next/server/chunks/ssr/src_presentation_web_54b02639._.js +2 -2
  348. package/web/.next/server/chunks/ssr/src_presentation_web_54b02639._.js.map +1 -1
  349. package/web/.next/server/chunks/ssr/src_presentation_web_7b7b9e3b._.js +2 -2
  350. package/web/.next/server/chunks/ssr/src_presentation_web_7b7b9e3b._.js.map +1 -1
  351. package/web/.next/server/chunks/ssr/src_presentation_web_807cba76._.js +1 -1
  352. package/web/.next/server/chunks/ssr/src_presentation_web_807cba76._.js.map +1 -1
  353. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js +1 -1
  354. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js.map +1 -1
  355. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js +1 -1
  356. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js.map +1 -1
  357. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js +1 -1
  358. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js.map +1 -1
  359. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  360. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  361. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  362. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +1 -1
  363. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -1
  364. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  365. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  366. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js +1 -1
  367. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js.map +1 -1
  368. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +1 -1
  369. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -1
  370. package/web/.next/server/chunks/ssr/src_presentation_web_e1cd1869._.js +1 -1
  371. package/web/.next/server/chunks/ssr/src_presentation_web_e1cd1869._.js.map +1 -1
  372. package/web/.next/server/chunks/ssr/src_presentation_web_e3a30e30._.js +1 -1
  373. package/web/.next/server/chunks/ssr/src_presentation_web_e3a30e30._.js.map +1 -1
  374. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +1 -1
  375. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -1
  376. package/web/.next/server/pages/500.html +2 -2
  377. package/web/.next/server/server-reference-manifest.js +1 -1
  378. package/web/.next/server/server-reference-manifest.json +74 -59
  379. package/web/.next/static/chunks/{238fdbed09dc61b6.js → 1eeabda286169861.js} +2 -2
  380. package/web/.next/static/chunks/20ec94c610d07a10.css +1 -0
  381. package/web/.next/static/chunks/{940c842293a6ee9b.js → 2dcae7bd1f3e2b51.js} +1 -1
  382. package/web/.next/static/chunks/3aba9d2242420cb5.js +1 -0
  383. package/web/.next/static/chunks/6003ad985fb78e62.js +1 -0
  384. package/web/.next/static/chunks/{0b07ee72b0c639ef.js → 69aa6a996dccb7dc.js} +2 -2
  385. package/web/.next/static/chunks/{873e837cd1179cdd.js → 6e5aeb5da5bb2ab6.js} +1 -1
  386. package/web/.next/static/chunks/{2ad924f5ba5ec0a6.js → 7c8e1ab108e3ceea.js} +1 -1
  387. package/web/.next/static/chunks/{bc41a393614b1192.js → 825ddcb7c361b2fe.js} +1 -1
  388. package/web/.next/static/chunks/{a22ee308ae1509ca.js → 89a6182ae40ac10b.js} +1 -1
  389. package/web/.next/static/chunks/{d26542df5ecc8717.js → a6d516b7e128f889.js} +1 -1
  390. package/web/.next/static/chunks/ae81796726a9bba3.js +1 -0
  391. package/web/.next/static/chunks/{b49ab0b290e9342d.js → b46545caae3b4930.js} +1 -1
  392. package/web/.next/static/chunks/{b7b5d65a5dd2fff1.js → c43f00ac45c5381d.js} +1 -1
  393. package/web/.next/static/chunks/{39054eabee156e55.js → c741f40bcb2abe54.js} +3 -3
  394. package/web/.next/static/chunks/{1b336d1266a0aa3d.js → dfc05704351fc940.js} +1 -1
  395. package/web/.next/static/chunks/eb72ac7aa8986962.js +1 -0
  396. package/web/.next/static/chunks/eef5d47669e61a54.js +3 -0
  397. package/web/.next/server/chunks/ssr/[root-of-the-server]__1cd4327c._.js +0 -4
  398. package/web/.next/server/chunks/ssr/[root-of-the-server]__1cd4327c._.js.map +0 -1
  399. package/web/.next/server/chunks/ssr/_2b021b35._.js +0 -3
  400. package/web/.next/server/chunks/ssr/_2b021b35._.js.map +0 -1
  401. package/web/.next/server/chunks/ssr/_43ba79e7._.js +0 -3
  402. package/web/.next/server/chunks/ssr/_43ba79e7._.js.map +0 -1
  403. package/web/.next/server/chunks/ssr/_7cb0396e._.js +0 -3
  404. package/web/.next/server/chunks/ssr/_7cb0396e._.js.map +0 -1
  405. package/web/.next/server/chunks/ssr/_e0dd6fcf._.js.map +0 -1
  406. package/web/.next/server/chunks/ssr/_e680c57c._.js +0 -9
  407. package/web/.next/server/chunks/ssr/_e680c57c._.js.map +0 -1
  408. package/web/.next/static/chunks/28f6b1cab38ab025.js +0 -3
  409. package/web/.next/static/chunks/8b0a9cb5109fe899.js +0 -1
  410. package/web/.next/static/chunks/a20f2d6f76f469b7.css +0 -1
  411. package/web/.next/static/chunks/b2aa69e4b0b032d9.js +0 -1
  412. package/web/.next/static/chunks/b65e555419a0c664.js +0 -1
  413. package/web/.next/static/chunks/ba0e0fa2d1a650bb.js +0 -1
  414. /package/web/.next/static/{9rcv3ICw0kZNuv3TVdO8E → 4jtpgWCvk_Q6-K-puXRhW}/_buildManifest.js +0 -0
  415. /package/web/.next/static/{9rcv3ICw0kZNuv3TVdO8E → 4jtpgWCvk_Q6-K-puXRhW}/_clientMiddlewareManifest.json +0 -0
  416. /package/web/.next/static/{9rcv3ICw0kZNuv3TVdO8E → 4jtpgWCvk_Q6-K-puXRhW}/_ssgManifest.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "006bc1e402f8227543541ef0b32eae38d48451b177": {
3
+ "0032c6cdc2edf34e30b12287e50cb502ec99886df7": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/adopt/page": {
6
6
  "moduleId": 11372,
@@ -99,7 +99,7 @@
99
99
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
100
100
  },
101
101
  "app/settings/page": {
102
- "moduleId": 97423,
102
+ "moduleId": 47776,
103
103
  "async": false,
104
104
  "exportedName": "getAllAgentModels",
105
105
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -148,7 +148,7 @@
148
148
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts",
149
149
  "exportedName": "getAllAgentModels"
150
150
  },
151
- "60ee7cd212b9b72a55135dcf12e34dea5eeef0121f": {
151
+ "60d0d75eae0e959bca7b3b6686d28a38ada4bf4a71": {
152
152
  "workers": {
153
153
  "app/(dashboard)/@drawer/adopt/page": {
154
154
  "moduleId": 11372,
@@ -247,7 +247,7 @@
247
247
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
248
248
  },
249
249
  "app/settings/page": {
250
- "moduleId": 97423,
250
+ "moduleId": 47776,
251
251
  "async": false,
252
252
  "exportedName": "updateAgentAndModel",
253
253
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -296,7 +296,7 @@
296
296
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts",
297
297
  "exportedName": "updateAgentAndModel"
298
298
  },
299
- "0007c2e0526aa58dd3af65f12572ddbce953dd5771": {
299
+ "00fb8e6b15df992342f45bbd9fe04cb4522eeeb9d4": {
300
300
  "workers": {
301
301
  "app/(dashboard)/@drawer/adopt/page": {
302
302
  "moduleId": 11372,
@@ -395,7 +395,7 @@
395
395
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
396
396
  },
397
397
  "app/settings/page": {
398
- "moduleId": 97423,
398
+ "moduleId": 47776,
399
399
  "async": false,
400
400
  "exportedName": "pickFolder",
401
401
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -444,7 +444,7 @@
444
444
  "filename": "src/presentation/web/app/actions/pick-folder.ts",
445
445
  "exportedName": "pickFolder"
446
446
  },
447
- "40e4025e4c9932faa0ebda58ad29d3404b30c6f65e": {
447
+ "40251f323ff2d234756b512edf0efad1dceae61f23": {
448
448
  "workers": {
449
449
  "app/(dashboard)/@drawer/adopt/page": {
450
450
  "moduleId": 11372,
@@ -543,7 +543,7 @@
543
543
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
544
544
  },
545
545
  "app/settings/page": {
546
- "moduleId": 97423,
546
+ "moduleId": 47776,
547
547
  "async": false,
548
548
  "exportedName": "listGitHubRepositories",
549
549
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
@@ -592,7 +592,7 @@
592
592
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts",
593
593
  "exportedName": "listGitHubRepositories"
594
594
  },
595
- "0069abc5d93b0b63b576bb972cd2fd15444f242de8": {
595
+ "005763ceb71def28953f9f6efb5f9836a446a0cddd": {
596
596
  "workers": {
597
597
  "app/(dashboard)/@drawer/adopt/page": {
598
598
  "moduleId": 11372,
@@ -691,7 +691,7 @@
691
691
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
692
692
  },
693
693
  "app/settings/page": {
694
- "moduleId": 97423,
694
+ "moduleId": 47776,
695
695
  "async": false,
696
696
  "exportedName": "listGitHubOrganizations",
697
697
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
@@ -740,7 +740,7 @@
740
740
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts",
741
741
  "exportedName": "listGitHubOrganizations"
742
742
  },
743
- "40b5cd6b473cc57e91de3be3314647e1313abd789e": {
743
+ "40e703c550c84065d6e467f58d9e8c2620296ec403": {
744
744
  "workers": {
745
745
  "app/(dashboard)/@drawer/adopt/page": {
746
746
  "moduleId": 11372,
@@ -839,7 +839,7 @@
839
839
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
840
840
  },
841
841
  "app/settings/page": {
842
- "moduleId": 97423,
842
+ "moduleId": 47776,
843
843
  "async": false,
844
844
  "exportedName": "importGitHubRepository",
845
845
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
@@ -888,7 +888,7 @@
888
888
  "filename": "src/presentation/web/app/actions/import-github-repository.ts",
889
889
  "exportedName": "importGitHubRepository"
890
890
  },
891
- "403e9c92d89fd8b3205c2243ba69034f1e87834884": {
891
+ "4088b7549dfeab810cbefcba611afd1fdaa81f958d": {
892
892
  "workers": {
893
893
  "app/(dashboard)/@drawer/adopt/page": {
894
894
  "moduleId": 11372,
@@ -1008,7 +1008,7 @@
1008
1008
  "filename": "src/presentation/web/app/actions/deploy-feature.ts",
1009
1009
  "exportedName": "deployFeature"
1010
1010
  },
1011
- "4055afdd273830ed017154c61bbba972935f755664": {
1011
+ "401af034959c5bbba2ad8be3907e53bbc3ede7d2cd": {
1012
1012
  "workers": {
1013
1013
  "app/(dashboard)/@drawer/adopt/page": {
1014
1014
  "moduleId": 11372,
@@ -1128,7 +1128,7 @@
1128
1128
  "filename": "src/presentation/web/app/actions/deploy-repository.ts",
1129
1129
  "exportedName": "deployRepository"
1130
1130
  },
1131
- "401900c9334ca0aa2b2c20cc90f3e800e9a4a19f2b": {
1131
+ "40ace9ce468348948c3c03a6e9173c002627beab6d": {
1132
1132
  "workers": {
1133
1133
  "app/(dashboard)/@drawer/adopt/page": {
1134
1134
  "moduleId": 11372,
@@ -1248,7 +1248,7 @@
1248
1248
  "filename": "src/presentation/web/app/actions/stop-deployment.ts",
1249
1249
  "exportedName": "stopDeployment"
1250
1250
  },
1251
- "40c62234a418db717dffd8588d8e2c4593542a6ca2": {
1251
+ "401f66ef4558bb9328d03a36ad72674d98936ce338": {
1252
1252
  "workers": {
1253
1253
  "app/(dashboard)/@drawer/adopt/page": {
1254
1254
  "moduleId": 11372,
@@ -1368,7 +1368,7 @@
1368
1368
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts",
1369
1369
  "exportedName": "getDeploymentStatus"
1370
1370
  },
1371
- "400dae91adbbff2e8b5c44046c21aecdd5d8850241": {
1371
+ "4081c0d014119b5d37a78b78073c3bedf231538a82": {
1372
1372
  "workers": {
1373
1373
  "app/(dashboard)/@drawer/adopt/page": {
1374
1374
  "moduleId": 11372,
@@ -1474,7 +1474,7 @@
1474
1474
  "filename": "src/presentation/web/app/actions/open-ide.ts",
1475
1475
  "exportedName": "openIde"
1476
1476
  },
1477
- "403f5ab09b9c95436fe15ec25711617c0408289a26": {
1477
+ "409332a02ef4b4bc44c4ff8148b7252131bdd9de62": {
1478
1478
  "workers": {
1479
1479
  "app/(dashboard)/@drawer/adopt/page": {
1480
1480
  "moduleId": 11372,
@@ -1580,7 +1580,7 @@
1580
1580
  "filename": "src/presentation/web/app/actions/open-shell.ts",
1581
1581
  "exportedName": "openShell"
1582
1582
  },
1583
- "40ecfcd01dd3d4e4bf2f96d126a4be4523a3fa3d3d": {
1583
+ "40011e0da65cbd304c104b36e464d5dc50edda9962": {
1584
1584
  "workers": {
1585
1585
  "app/(dashboard)/@drawer/adopt/page": {
1586
1586
  "moduleId": 11372,
@@ -1686,7 +1686,7 @@
1686
1686
  "filename": "src/presentation/web/app/actions/open-folder.ts",
1687
1687
  "exportedName": "openFolder"
1688
1688
  },
1689
- "40b76283b4700f45aab7b775043497c52e0e6d98e9": {
1689
+ "404ceab40e0ab85f76116276ebad0ca707178efc4f": {
1690
1690
  "workers": {
1691
1691
  "app/(dashboard)/@drawer/adopt/page": {
1692
1692
  "moduleId": 11372,
@@ -1792,7 +1792,7 @@
1792
1792
  "filename": "src/presentation/web/app/actions/sync-repository.ts",
1793
1793
  "exportedName": "syncRepository"
1794
1794
  },
1795
- "40468dc71b0e6684979d39fb438f9f04af1f2ff31c": {
1795
+ "40b7a26c67f15d8de499c3991fa05ad2b6144e3504": {
1796
1796
  "workers": {
1797
1797
  "app/(dashboard)/@drawer/adopt/page": {
1798
1798
  "moduleId": 11372,
@@ -1912,7 +1912,7 @@
1912
1912
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts",
1913
1913
  "exportedName": "getDeploymentLogs"
1914
1914
  },
1915
- "0064a55b67441efb0f64e484060d6e0477e2a2a466": {
1915
+ "0045175612c7a075204f57eab743c13af6936e8543": {
1916
1916
  "workers": {
1917
1917
  "app/(dashboard)/@drawer/adopt/page": {
1918
1918
  "moduleId": 11372,
@@ -2018,7 +2018,7 @@
2018
2018
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts",
2019
2019
  "exportedName": "isAgentSetupComplete"
2020
2020
  },
2021
- "00146118be55e1a72383915a7d426fd0c54b22b9ef": {
2021
+ "008c1dcbd677714821eefbc3fb3ebe9cd8869f591f": {
2022
2022
  "workers": {
2023
2023
  "app/(dashboard)/@drawer/adopt/page": {
2024
2024
  "moduleId": 11372,
@@ -2124,7 +2124,7 @@
2124
2124
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts",
2125
2125
  "exportedName": "checkAgentAuth"
2126
2126
  },
2127
- "00fb6c5462fd26f0a6d83d293a57e2fd51d9190a8b": {
2127
+ "00f6ea419c5545770a6c71bc4c43fe04d7a22ea068": {
2128
2128
  "workers": {
2129
2129
  "app/(dashboard)/@drawer/adopt/page": {
2130
2130
  "moduleId": 11372,
@@ -2230,7 +2230,7 @@
2230
2230
  "filename": "src/presentation/web/app/actions/check-tool-status.ts",
2231
2231
  "exportedName": "checkToolStatus"
2232
2232
  },
2233
- "406dc07f82561f7a972a3b8750db8e394217e51066": {
2233
+ "40d452b5620368f1552b59f59dd1dd61a3284eff3d": {
2234
2234
  "workers": {
2235
2235
  "app/(dashboard)/@drawer/adopt/page": {
2236
2236
  "moduleId": 11372,
@@ -2336,7 +2336,7 @@
2336
2336
  "filename": "src/presentation/web/app/actions/archive-feature.ts",
2337
2337
  "exportedName": "archiveFeature"
2338
2338
  },
2339
- "78befba1876563f867eef16cee6aeac7fef90ccdfe": {
2339
+ "7898d1db354181a68b93e461664a09dcc5e51c6537": {
2340
2340
  "workers": {
2341
2341
  "app/(dashboard)/@drawer/adopt/page": {
2342
2342
  "moduleId": 11372,
@@ -2442,7 +2442,7 @@
2442
2442
  "filename": "src/presentation/web/app/actions/delete-feature.ts",
2443
2443
  "exportedName": "deleteFeature"
2444
2444
  },
2445
- "405cbca883738a7b0ce854b4e905ee1ca2d89c6334": {
2445
+ "4007444ec512082a5e79bb5dee290f5c0d05e774ef": {
2446
2446
  "workers": {
2447
2447
  "app/(dashboard)/@drawer/adopt/page": {
2448
2448
  "moduleId": 11372,
@@ -2548,7 +2548,7 @@
2548
2548
  "filename": "src/presentation/web/app/actions/resume-feature.ts",
2549
2549
  "exportedName": "resumeFeature"
2550
2550
  },
2551
- "40f8270a4e6612b146fd7e32e3e791fd45cd221b30": {
2551
+ "40668ca32c0b63d012073e714e0cb04e3776dd526d": {
2552
2552
  "workers": {
2553
2553
  "app/(dashboard)/@drawer/adopt/page": {
2554
2554
  "moduleId": 11372,
@@ -2654,7 +2654,7 @@
2654
2654
  "filename": "src/presentation/web/app/actions/start-feature.ts",
2655
2655
  "exportedName": "startFeature"
2656
2656
  },
2657
- "400c1cf04acf1c3473d16250f7bd269e680bf8ea80": {
2657
+ "40bd6a598641a5d4dad3a2b1cbdc1e3247da695907": {
2658
2658
  "workers": {
2659
2659
  "app/(dashboard)/@drawer/adopt/page": {
2660
2660
  "moduleId": 11372,
@@ -2760,7 +2760,7 @@
2760
2760
  "filename": "src/presentation/web/app/actions/stop-feature.ts",
2761
2761
  "exportedName": "stopFeature"
2762
2762
  },
2763
- "40013af0f67efe51afffb12222afbe0dc207278440": {
2763
+ "40f66ba6ba3a423060e962b53043b8fb48fd666c47": {
2764
2764
  "workers": {
2765
2765
  "app/(dashboard)/@drawer/adopt/page": {
2766
2766
  "moduleId": 11372,
@@ -2866,7 +2866,7 @@
2866
2866
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts",
2867
2867
  "exportedName": "unarchiveFeature"
2868
2868
  },
2869
- "405b9ad7429a7d8f371b2f2e5fe9a819b53108072a": {
2869
+ "401fcb8958d2277a5b34228e1867bf1cf52045941b": {
2870
2870
  "workers": {
2871
2871
  "app/(dashboard)/@drawer/adopt/page": {
2872
2872
  "moduleId": 11372,
@@ -2972,7 +2972,7 @@
2972
2972
  "filename": "src/presentation/web/app/actions/add-repository.ts",
2973
2973
  "exportedName": "addRepository"
2974
2974
  },
2975
- "4042e73e21d267f537a7bf7fb3379f1de269622318": {
2975
+ "4022a787878a9d01989399447b88565c170df206db": {
2976
2976
  "workers": {
2977
2977
  "app/(dashboard)/@drawer/adopt/page": {
2978
2978
  "moduleId": 11372,
@@ -3078,7 +3078,7 @@
3078
3078
  "filename": "src/presentation/web/app/actions/delete-repository.ts",
3079
3079
  "exportedName": "deleteRepository"
3080
3080
  },
3081
- "408faca8892e77d11f363deec4c2d5303f13fd25db": {
3081
+ "4006ec456294ab70438f8582024fa5871d5a694cbe": {
3082
3082
  "workers": {
3083
3083
  "app/(dashboard)/@drawer/adopt/page": {
3084
3084
  "moduleId": 11372,
@@ -3184,7 +3184,7 @@
3184
3184
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts",
3185
3185
  "exportedName": "getFeatureMetadata"
3186
3186
  },
3187
- "40d723252d4fe58b4521bb0d11cba5b11efd461608": {
3187
+ "4062b56668c571ea458e73c5ff3b83f582b9182ae5": {
3188
3188
  "workers": {
3189
3189
  "app/(dashboard)/@drawer/adopt/page": {
3190
3190
  "moduleId": 11372,
@@ -3199,7 +3199,7 @@
3199
3199
  "filename": "src/presentation/web/app/actions/adopt-branch.ts",
3200
3200
  "exportedName": "adoptBranch"
3201
3201
  },
3202
- "40f26b129cfa49757d91d7889e0ce9ae759be4601d": {
3202
+ "405413f3a534504b0c8edc87e96898ee67155f6551": {
3203
3203
  "workers": {
3204
3204
  "app/(dashboard)/@drawer/adopt/page": {
3205
3205
  "moduleId": 11372,
@@ -3214,7 +3214,7 @@
3214
3214
  "filename": "src/presentation/web/app/actions/list-branches.ts",
3215
3215
  "exportedName": "listBranches"
3216
3216
  },
3217
- "00448d56d8b7527b2de9d691b81596095d770c663a": {
3217
+ "00d9e89719ecd857b3de82afde728ad39d4540fc83": {
3218
3218
  "workers": {
3219
3219
  "app/(dashboard)/@drawer/create/page": {
3220
3220
  "moduleId": 88099,
@@ -3236,7 +3236,7 @@
3236
3236
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts",
3237
3237
  "exportedName": "getWorkflowDefaults"
3238
3238
  },
3239
- "40018f2ee219dc1156e7fefcc5349d29536eb54c9a": {
3239
+ "40febb73c14231aaf88141b23507820462a752e37e": {
3240
3240
  "workers": {
3241
3241
  "app/(dashboard)/@drawer/create/page": {
3242
3242
  "moduleId": 88099,
@@ -3258,7 +3258,7 @@
3258
3258
  "filename": "src/presentation/web/app/actions/get-viewer-permission.ts",
3259
3259
  "exportedName": "getViewerPermission"
3260
3260
  },
3261
- "409c9a676af1e534a987fba77581fe2924ac4a9b3b": {
3261
+ "4022dca7af87f43de64aecff0288c6224464aa6625": {
3262
3262
  "workers": {
3263
3263
  "app/(dashboard)/@drawer/create/page": {
3264
3264
  "moduleId": 88099,
@@ -3280,7 +3280,7 @@
3280
3280
  "filename": "src/presentation/web/app/actions/create-feature.ts",
3281
3281
  "exportedName": "createFeature"
3282
3282
  },
3283
- "60c07741a248755ee814df731532a89f1cb4d7bcdd": {
3283
+ "60fea81b467137f53dd6c78267363fcb258c22666c": {
3284
3284
  "workers": {
3285
3285
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3286
3286
  "moduleId": 67370,
@@ -3316,7 +3316,7 @@
3316
3316
  "filename": "src/presentation/web/app/actions/approve-feature.ts",
3317
3317
  "exportedName": "approveFeature"
3318
3318
  },
3319
- "704db790bf5bb3980b3de4818d718cdfd31b148293": {
3319
+ "70330a3d747fa289d7d58ea6d96b331b9676e166ea": {
3320
3320
  "workers": {
3321
3321
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3322
3322
  "moduleId": 67370,
@@ -3352,7 +3352,7 @@
3352
3352
  "filename": "src/presentation/web/app/actions/reject-feature.ts",
3353
3353
  "exportedName": "rejectFeature"
3354
3354
  },
3355
- "40c85b86477a3246bc6b712b426a1b49373a027dc7": {
3355
+ "4035eac6df0bb02cc9a0464b21578cd0541ad8c7d8": {
3356
3356
  "workers": {
3357
3357
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3358
3358
  "moduleId": 67370,
@@ -3388,7 +3388,7 @@
3388
3388
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts",
3389
3389
  "exportedName": "getFeatureArtifact"
3390
3390
  },
3391
- "4016e8ca9d7ce40a6e2851d7f3530ef62ab68dc21e": {
3391
+ "4008182c3834cc4f58681acda77715989e0e3e3b5d": {
3392
3392
  "workers": {
3393
3393
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3394
3394
  "moduleId": 67370,
@@ -3424,7 +3424,7 @@
3424
3424
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts",
3425
3425
  "exportedName": "getResearchArtifact"
3426
3426
  },
3427
- "40c19cc07616c09ecfa8fd1ad395070a4655549cd8": {
3427
+ "40d94d3fbd7369a892e8c3d2609350bd88b9e2fd31": {
3428
3428
  "workers": {
3429
3429
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3430
3430
  "moduleId": 67370,
@@ -3460,7 +3460,7 @@
3460
3460
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts",
3461
3461
  "exportedName": "getMergeReviewData"
3462
3462
  },
3463
- "40d8ab2031cecf5e6d9784c7f261602f6a19322531": {
3463
+ "409df523a34f076fd5cfdd5f6021d2450a1f8e9b13": {
3464
3464
  "workers": {
3465
3465
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3466
3466
  "moduleId": 67370,
@@ -3496,7 +3496,7 @@
3496
3496
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts",
3497
3497
  "exportedName": "getFeaturePhaseTimings"
3498
3498
  },
3499
- "400d9f506fe11201e6a1bac1207c5d6534bc2cf705": {
3499
+ "406be96a408b148f14b61fffadc29b8d35c72b0d10": {
3500
3500
  "workers": {
3501
3501
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3502
3502
  "moduleId": 67370,
@@ -3532,7 +3532,7 @@
3532
3532
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts",
3533
3533
  "exportedName": "getFeaturePlan"
3534
3534
  },
3535
- "40faa3acc4b736a7e6e987b4d33924e7957ef9268d": {
3535
+ "40cec485063b68348d4153fdbd6be59d6478a5fa5b": {
3536
3536
  "workers": {
3537
3537
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3538
3538
  "moduleId": 67370,
@@ -3568,7 +3568,7 @@
3568
3568
  "filename": "src/presentation/web/app/actions/rebase-feature.ts",
3569
3569
  "exportedName": "rebaseFeature"
3570
3570
  },
3571
- "40ada46842a18c36139331fdf7febe1c621ecfabad": {
3571
+ "40c2facf34276a11943a22a7c3bcf558b0c743e6a8": {
3572
3572
  "workers": {
3573
3573
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3574
3574
  "moduleId": 67370,
@@ -3604,7 +3604,7 @@
3604
3604
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts",
3605
3605
  "exportedName": "getFeatureDrawerData"
3606
3606
  },
3607
- "409f22caf07d9015e6240e8ebefa10f442e1c1aff5": {
3607
+ "40bdff43357109c742c238e18e489b90bb7f12463a": {
3608
3608
  "workers": {
3609
3609
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3610
3610
  "moduleId": 67370,
@@ -3640,7 +3640,7 @@
3640
3640
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts",
3641
3641
  "exportedName": "getBranchSyncStatus"
3642
3642
  },
3643
- "7097cfbcbd8af13d8e8c3214498372a1907d87c572": {
3643
+ "70cb3909e0a91627300ab4ebb4c3c52d2d5b6f0611": {
3644
3644
  "workers": {
3645
3645
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3646
3646
  "moduleId": 67370,
@@ -3676,7 +3676,7 @@
3676
3676
  "filename": "src/presentation/web/app/actions/update-feature-pinned-config.ts",
3677
3677
  "exportedName": "updateFeaturePinnedConfig"
3678
3678
  },
3679
- "60876a4d59d35b2d7b9957a2478c16b91c5b333b0b": {
3679
+ "60541238624bbc1dc948beca449f63d772300e90e0": {
3680
3680
  "workers": {
3681
3681
  "app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page": {
3682
3682
  "moduleId": 3531,
@@ -3712,10 +3712,10 @@
3712
3712
  "filename": "src/presentation/web/app/actions/get-git-log.ts",
3713
3713
  "exportedName": "getGitRepoInfo"
3714
3714
  },
3715
- "0009cfc905c15a39a06ce22b682445fe45994fac78": {
3715
+ "00d8969ad3e2f091c328889b230c8232feeab27b3d": {
3716
3716
  "workers": {
3717
3717
  "app/settings/page": {
3718
- "moduleId": 97423,
3718
+ "moduleId": 47776,
3719
3719
  "async": false,
3720
3720
  "exportedName": "loadSettings",
3721
3721
  "filename": "src/presentation/web/app/actions/load-settings.ts"
@@ -3727,10 +3727,10 @@
3727
3727
  "filename": "src/presentation/web/app/actions/load-settings.ts",
3728
3728
  "exportedName": "loadSettings"
3729
3729
  },
3730
- "0020c7de14531cf85060c7eb7bc14b6b27948b0eae": {
3730
+ "00865d271c4cc712900c85c188b8106ef069c8f0ee": {
3731
3731
  "workers": {
3732
3732
  "app/settings/page": {
3733
- "moduleId": 97423,
3733
+ "moduleId": 47776,
3734
3734
  "async": false,
3735
3735
  "exportedName": "getAvailableTerminals",
3736
3736
  "filename": "src/presentation/web/app/actions/get-available-terminals.ts"
@@ -3742,10 +3742,10 @@
3742
3742
  "filename": "src/presentation/web/app/actions/get-available-terminals.ts",
3743
3743
  "exportedName": "getAvailableTerminals"
3744
3744
  },
3745
- "40594db530a4caa868a295754dfa6569124ffbcc88": {
3745
+ "40d60b440b65610da1be25eaae36e7177504745f5b": {
3746
3746
  "workers": {
3747
3747
  "app/settings/page": {
3748
- "moduleId": 97423,
3748
+ "moduleId": 47776,
3749
3749
  "async": false,
3750
3750
  "exportedName": "updateSettingsAction",
3751
3751
  "filename": "src/presentation/web/app/actions/update-settings.ts"
@@ -3757,7 +3757,22 @@
3757
3757
  "filename": "src/presentation/web/app/actions/update-settings.ts",
3758
3758
  "exportedName": "updateSettingsAction"
3759
3759
  },
3760
- "40d2b5fc56a8585faa8d0d04f7cbdf147e74df9825": {
3760
+ "40fd3b257842b32b8e666e7f96da416b6da69d9a89": {
3761
+ "workers": {
3762
+ "app/settings/page": {
3763
+ "moduleId": 47776,
3764
+ "async": false,
3765
+ "exportedName": "updateSecurityModeAction",
3766
+ "filename": "src/presentation/web/app/actions/security.ts"
3767
+ }
3768
+ },
3769
+ "layer": {
3770
+ "app/settings/page": "action-browser"
3771
+ },
3772
+ "filename": "src/presentation/web/app/actions/security.ts",
3773
+ "exportedName": "updateSecurityModeAction"
3774
+ },
3775
+ "40fb76e5be15b8c1469b8544f85a457ffdd16df228": {
3761
3776
  "workers": {
3762
3777
  "app/skills/page": {
3763
3778
  "moduleId": 98222,
@@ -3772,7 +3787,7 @@
3772
3787
  "filename": "src/presentation/web/app/actions/remove-injected-skill.ts",
3773
3788
  "exportedName": "removeInjectedSkill"
3774
3789
  },
3775
- "407fcaa727acc1f96f60c6a3d9d71ad92dc1a204bd": {
3790
+ "40aaa4205849e74bbc6016e62ccc921e49f93c66fc": {
3776
3791
  "workers": {
3777
3792
  "app/skills/page": {
3778
3793
  "moduleId": 98222,
@@ -3789,5 +3804,5 @@
3789
3804
  }
3790
3805
  },
3791
3806
  "edge": {},
3792
- "encryptionKey": "CSiyJCVdajZynesoDtBI80JLqa9Xs0OyJpW2/KN28Dg="
3807
+ "encryptionKey": "gRSsAQUR1AZtyeOmuN8So7qqW79rSrruFMETa+9o4X0="
3793
3808
  }