@shepai/cli 1.174.0 → 1.175.0-pr527.9ada632

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 (502) 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/ReleaseIntegrityCheck.yaml +22 -0
  7. package/apis/json-schema/ReleaseIntegrityCheckType.yaml +9 -0
  8. package/apis/json-schema/ReleaseIntegrityResult.yaml +16 -0
  9. package/apis/json-schema/ReleaseRules.yaml +21 -0
  10. package/apis/json-schema/Repository.yaml +6 -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/repository-repository.interface.d.ts +3 -1
  24. package/dist/packages/core/src/application/ports/output/repositories/repository-repository.interface.d.ts.map +1 -1
  25. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.d.ts +76 -0
  26. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.d.ts.map +1 -0
  27. package/dist/packages/core/src/application/ports/output/repositories/security-event.repository.interface.js +11 -0
  28. package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts +28 -0
  29. package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.d.ts.map +1 -1
  30. package/dist/packages/core/src/application/ports/output/services/git-pr-service.interface.js +2 -0
  31. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.d.ts +85 -0
  32. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.d.ts.map +1 -1
  33. package/dist/packages/core/src/application/ports/output/services/github-repository-service.interface.js +21 -0
  34. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.d.ts +77 -0
  35. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.d.ts.map +1 -0
  36. package/dist/packages/core/src/application/ports/output/services/security-policy-service.interface.js +13 -0
  37. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts +11 -0
  38. package/dist/packages/core/src/application/ports/output/services/spec-initializer.interface.d.ts.map +1 -1
  39. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.d.ts.map +1 -1
  40. package/dist/packages/core/src/application/use-cases/agents/approve-agent-run.use-case.js +2 -0
  41. package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.d.ts.map +1 -1
  42. package/dist/packages/core/src/application/use-cases/agents/reject-agent-run.use-case.js +2 -0
  43. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.d.ts.map +1 -1
  44. package/dist/packages/core/src/application/use-cases/features/check-and-unblock-features.use-case.js +2 -0
  45. package/dist/packages/core/src/application/use-cases/features/create/create-feature-from-remote.use-case.d.ts +67 -0
  46. package/dist/packages/core/src/application/use-cases/features/create/create-feature-from-remote.use-case.d.ts.map +1 -0
  47. package/dist/packages/core/src/application/use-cases/features/create/create-feature-from-remote.use-case.js +128 -0
  48. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.d.ts.map +1 -1
  49. package/dist/packages/core/src/application/use-cases/features/create/create-feature.use-case.js +1 -0
  50. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.d.ts.map +1 -1
  51. package/dist/packages/core/src/application/use-cases/features/resume-feature.use-case.js +2 -0
  52. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.d.ts.map +1 -1
  53. package/dist/packages/core/src/application/use-cases/features/start-feature.use-case.js +2 -0
  54. package/dist/packages/core/src/application/use-cases/repositories/import-github-repository.use-case.d.ts +16 -5
  55. package/dist/packages/core/src/application/use-cases/repositories/import-github-repository.use-case.d.ts.map +1 -1
  56. package/dist/packages/core/src/application/use-cases/repositories/import-github-repository.use-case.js +76 -14
  57. package/dist/packages/core/src/application/use-cases/repositories/init-remote-repository.use-case.d.ts +30 -0
  58. package/dist/packages/core/src/application/use-cases/repositories/init-remote-repository.use-case.d.ts.map +1 -0
  59. package/dist/packages/core/src/application/use-cases/repositories/init-remote-repository.use-case.js +51 -0
  60. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.d.ts +71 -0
  61. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.d.ts.map +1 -0
  62. package/dist/packages/core/src/application/use-cases/security/enforce-security.use-case.js +215 -0
  63. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.d.ts +24 -0
  64. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.d.ts.map +1 -0
  65. package/dist/packages/core/src/application/use-cases/security/evaluate-security-policy.use-case.js +56 -0
  66. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.d.ts +36 -0
  67. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.d.ts.map +1 -0
  68. package/dist/packages/core/src/application/use-cases/security/get-security-state.use-case.js +76 -0
  69. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.d.ts +14 -0
  70. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.d.ts.map +1 -0
  71. package/dist/packages/core/src/application/use-cases/security/record-security-event.use-case.js +46 -0
  72. package/dist/packages/core/src/domain/errors/security-violation.error.d.ts +15 -0
  73. package/dist/packages/core/src/domain/errors/security-violation.error.d.ts.map +1 -0
  74. package/dist/packages/core/src/domain/errors/security-violation.error.js +20 -0
  75. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  76. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +5 -1
  77. package/dist/packages/core/src/domain/generated/output.d.ts +267 -0
  78. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  79. package/dist/packages/core/src/domain/generated/output.js +43 -0
  80. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  81. package/dist/packages/core/src/infrastructure/di/container.js +67 -0
  82. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/repository.mapper.d.ts +2 -0
  83. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/repository.mapper.d.ts.map +1 -1
  84. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/repository.mapper.js +4 -0
  85. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.d.ts +44 -0
  86. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.d.ts.map +1 -0
  87. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/security-event.mapper.js +55 -0
  88. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +3 -0
  89. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  90. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +14 -0
  91. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.d.ts +18 -0
  92. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.d.ts.map +1 -0
  93. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/053-add-security-settings-columns.js +31 -0
  94. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.d.ts +29 -0
  95. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.d.ts.map +1 -0
  96. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-create-security-events-table.js +53 -0
  97. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/055-add-repository-fork-fields.d.ts +12 -0
  98. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/055-add-repository-fork-fields.d.ts.map +1 -0
  99. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/055-add-repository-fork-fields.js +26 -0
  100. package/dist/packages/core/src/infrastructure/repositories/sqlite-repository.repository.d.ts +2 -1
  101. package/dist/packages/core/src/infrastructure/repositories/sqlite-repository.repository.d.ts.map +1 -1
  102. package/dist/packages/core/src/infrastructure/repositories/sqlite-repository.repository.js +14 -0
  103. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.d.ts +24 -0
  104. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.d.ts.map +1 -0
  105. package/dist/packages/core/src/infrastructure/repositories/sqlite-security-event.repository.js +96 -0
  106. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  107. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +12 -3
  108. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts +2 -0
  109. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.d.ts.map +1 -1
  110. package/dist/packages/core/src/infrastructure/services/agents/common/executors/claude-code-executor.service.js +12 -0
  111. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.d.ts +22 -0
  112. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.d.ts.map +1 -0
  113. package/dist/packages/core/src/infrastructure/services/agents/common/executors/security-constraint-validator.js +30 -0
  114. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts +10 -0
  115. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/fast-feature-agent-graph.d.ts.map +1 -1
  116. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts +34 -0
  117. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-graph.d.ts.map +1 -1
  118. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts +3 -1
  119. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.d.ts.map +1 -1
  120. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-process.service.js +7 -1
  121. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts +3 -1
  122. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.d.ts.map +1 -1
  123. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/feature-agent-worker.js +32 -1
  124. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  125. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +19 -0
  126. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.d.ts +45 -0
  127. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.d.ts.map +1 -0
  128. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/security-pre-check.js +70 -0
  129. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts +4 -1
  130. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.d.ts.map +1 -1
  131. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/state.js +10 -0
  132. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.d.ts +13 -1
  133. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.d.ts.map +1 -1
  134. package/dist/packages/core/src/infrastructure/services/external/github-repository.service.js +155 -1
  135. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts +15 -0
  136. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.d.ts.map +1 -1
  137. package/dist/packages/core/src/infrastructure/services/git/git-pr.service.js +62 -0
  138. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.d.ts +53 -0
  139. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.d.ts.map +1 -0
  140. package/dist/packages/core/src/infrastructure/services/security/dependency-risk-evaluator.js +241 -0
  141. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.d.ts +44 -0
  142. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.d.ts.map +1 -0
  143. package/dist/packages/core/src/infrastructure/services/security/release-integrity-evaluator.js +194 -0
  144. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.d.ts +28 -0
  145. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.d.ts.map +1 -0
  146. package/dist/packages/core/src/infrastructure/services/security/security-policy-file-reader.js +50 -0
  147. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.d.ts +26 -0
  148. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.d.ts.map +1 -0
  149. package/dist/packages/core/src/infrastructure/services/security/security-policy-validator.js +147 -0
  150. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.d.ts +44 -0
  151. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.d.ts.map +1 -0
  152. package/dist/packages/core/src/infrastructure/services/security/security-policy.service.js +174 -0
  153. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts +1 -0
  154. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.d.ts.map +1 -1
  155. package/dist/packages/core/src/infrastructure/services/spec/spec-initializer.service.js +61 -0
  156. package/dist/src/presentation/cli/commands/feat/new.command.d.ts.map +1 -1
  157. package/dist/src/presentation/cli/commands/feat/new.command.js +32 -6
  158. package/dist/src/presentation/cli/commands/repo/index.d.ts.map +1 -1
  159. package/dist/src/presentation/cli/commands/repo/index.js +3 -1
  160. package/dist/src/presentation/cli/commands/repo/init-remote.command.d.ts +15 -0
  161. package/dist/src/presentation/cli/commands/repo/init-remote.command.d.ts.map +1 -0
  162. package/dist/src/presentation/cli/commands/repo/init-remote.command.js +44 -0
  163. package/dist/src/presentation/cli/commands/security.command.d.ts +16 -0
  164. package/dist/src/presentation/cli/commands/security.command.d.ts.map +1 -0
  165. package/dist/src/presentation/cli/commands/security.command.js +118 -0
  166. package/dist/src/presentation/cli/index.js +2 -0
  167. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.d.ts.map +1 -1
  168. package/dist/src/presentation/web/app/(dashboard)/get-graph-data.js +2 -1
  169. package/dist/src/presentation/web/app/actions/create-feature-from-remote.d.ts +31 -0
  170. package/dist/src/presentation/web/app/actions/create-feature-from-remote.d.ts.map +1 -0
  171. package/dist/src/presentation/web/app/actions/create-feature-from-remote.js +69 -0
  172. package/dist/src/presentation/web/app/actions/import-github-repository.d.ts +1 -0
  173. package/dist/src/presentation/web/app/actions/import-github-repository.d.ts.map +1 -1
  174. package/dist/src/presentation/web/app/actions/import-github-repository.js +1 -1
  175. package/dist/src/presentation/web/app/actions/security.d.ts +28 -0
  176. package/dist/src/presentation/web/app/actions/security.d.ts.map +1 -0
  177. package/dist/src/presentation/web/app/actions/security.js +59 -0
  178. package/dist/src/presentation/web/app/build-graph-nodes.d.ts +3 -1
  179. package/dist/src/presentation/web/app/build-graph-nodes.d.ts.map +1 -1
  180. package/dist/src/presentation/web/app/build-graph-nodes.js +2 -0
  181. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts +2 -0
  182. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.d.ts.map +1 -1
  183. package/dist/src/presentation/web/components/common/feature-create-drawer/feature-create-drawer.js +1 -1
  184. package/dist/src/presentation/web/components/common/feature-create-drawer/repository-combobox.stories.d.ts +2 -0
  185. package/dist/src/presentation/web/components/common/feature-create-drawer/repository-combobox.stories.d.ts.map +1 -1
  186. package/dist/src/presentation/web/components/common/feature-create-drawer/repository-combobox.stories.js +22 -0
  187. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +3 -1
  188. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  189. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  190. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +2 -1
  191. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts +3 -1
  192. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.d.ts.map +1 -1
  193. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.js +3 -2
  194. package/dist/src/presentation/web/components/common/repository-node/security-panel.d.ts +6 -0
  195. package/dist/src/presentation/web/components/common/repository-node/security-panel.d.ts.map +1 -0
  196. package/dist/src/presentation/web/components/common/repository-node/security-panel.js +29 -0
  197. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.d.ts +10 -0
  198. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.d.ts.map +1 -0
  199. package/dist/src/presentation/web/components/common/repository-node/security-panel.stories.js +53 -0
  200. package/dist/src/presentation/web/components/common/security-badge.d.ts +7 -0
  201. package/dist/src/presentation/web/components/common/security-badge.d.ts.map +1 -0
  202. package/dist/src/presentation/web/components/common/security-badge.js +30 -0
  203. package/dist/src/presentation/web/components/common/security-badge.stories.d.ts +12 -0
  204. package/dist/src/presentation/web/components/common/security-badge.stories.d.ts.map +1 -0
  205. package/dist/src/presentation/web/components/common/security-badge.stories.js +20 -0
  206. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  207. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +16 -3
  208. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.d.ts +6 -0
  209. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.d.ts.map +1 -0
  210. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.js +60 -0
  211. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.d.ts +14 -0
  212. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.d.ts.map +1 -0
  213. package/dist/src/presentation/web/components/features/settings/supply-chain-security-settings-section.stories.js +116 -0
  214. package/dist/src/presentation/web/lib/feature-flags.js +1 -1
  215. package/dist/translations/ar/cli.json +32 -0
  216. package/dist/translations/ar/web.json +43 -1
  217. package/dist/translations/de/cli.json +32 -0
  218. package/dist/translations/de/web.json +43 -1
  219. package/dist/translations/en/cli.json +32 -0
  220. package/dist/translations/en/web.json +43 -1
  221. package/dist/translations/es/cli.json +32 -0
  222. package/dist/translations/es/web.json +43 -1
  223. package/dist/translations/fr/cli.json +32 -0
  224. package/dist/translations/fr/web.json +43 -1
  225. package/dist/translations/he/cli.json +32 -0
  226. package/dist/translations/he/web.json +43 -1
  227. package/dist/translations/pt/cli.json +32 -0
  228. package/dist/translations/pt/web.json +43 -1
  229. package/dist/translations/ru/cli.json +32 -0
  230. package/dist/translations/ru/web.json +43 -1
  231. package/dist/tsconfig.build.tsbuildinfo +1 -1
  232. package/package.json +1 -1
  233. package/web/.next/BUILD_ID +1 -1
  234. package/web/.next/build-manifest.json +2 -2
  235. package/web/.next/fallback-build-manifest.json +2 -2
  236. package/web/.next/prerender-manifest.json +3 -3
  237. package/web/.next/required-server-files.js +3 -3
  238. package/web/.next/required-server-files.json +3 -3
  239. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
  240. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +2 -1
  241. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  242. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  243. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
  244. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +2 -1
  245. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  246. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  247. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +30 -30
  248. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +2 -1
  249. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  250. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  251. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +38 -38
  252. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +2 -1
  253. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  254. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  255. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +38 -38
  256. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +2 -1
  257. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  258. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  259. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  260. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +2 -1
  261. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  262. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  263. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  264. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +2 -1
  265. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  266. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  267. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
  268. package/web/.next/server/app/(dashboard)/chat/page.js +2 -1
  269. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  270. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  271. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +30 -30
  272. package/web/.next/server/app/(dashboard)/create/page.js +2 -1
  273. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  274. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  275. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +38 -38
  276. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +2 -1
  277. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  278. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  279. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +38 -38
  280. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +2 -1
  281. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  282. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  283. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
  284. package/web/.next/server/app/(dashboard)/page.js +2 -1
  285. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  286. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  287. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  288. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +2 -1
  289. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  290. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  291. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  292. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +2 -1
  293. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  294. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  295. package/web/.next/server/app/_global-error.html +2 -2
  296. package/web/.next/server/app/_global-error.rsc +1 -1
  297. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  298. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  299. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  300. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  301. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  302. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
  303. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  304. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  305. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  306. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  307. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  308. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js.nft.json +1 -1
  309. package/web/.next/server/app/api/sessions/route.js.nft.json +1 -1
  310. package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -1
  311. package/web/.next/server/app/features/page/server-reference-manifest.json +6 -6
  312. package/web/.next/server/app/features/page.js.nft.json +1 -1
  313. package/web/.next/server/app/features/page_client-reference-manifest.js +1 -1
  314. package/web/.next/server/app/settings/page/server-reference-manifest.json +33 -18
  315. package/web/.next/server/app/settings/page.js +1 -1
  316. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  317. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  318. package/web/.next/server/app/skills/page/server-reference-manifest.json +13 -13
  319. package/web/.next/server/app/skills/page.js +2 -1
  320. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  321. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  322. package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
  323. package/web/.next/server/app/tools/page.js +2 -1
  324. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  325. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  326. package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
  327. package/web/.next/server/app/version/page.js.nft.json +1 -1
  328. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  329. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js +1 -1
  330. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_370c43b1.js.map +1 -1
  331. package/web/.next/server/chunks/[root-of-the-server]__a402b567._.js +1 -1
  332. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js +1 -1
  333. package/web/.next/server/chunks/[root-of-the-server]__c78383b1._.js.map +1 -1
  334. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js +1 -1
  335. package/web/.next/server/chunks/[root-of-the-server]__cd67a84c._.js.map +1 -1
  336. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js +3 -0
  337. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js.map +1 -0
  338. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js +3 -0
  339. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_chat_page_actions_90d98b2b.js.map +1 -0
  340. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js +3 -0
  341. package/web/.next/server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_chat_page_actions_d3828105.js.map +1 -0
  342. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  343. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  344. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +2 -2
  345. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -1
  346. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js +1 -1
  347. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f389e5d._.js.map +1 -1
  348. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  349. package/web/.next/server/chunks/ssr/[root-of-the-server]__51ec77a8._.js +3 -0
  350. package/web/.next/server/chunks/ssr/[root-of-the-server]__51ec77a8._.js.map +1 -0
  351. package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js +4 -0
  352. package/web/.next/server/chunks/ssr/[root-of-the-server]__540c615f._.js.map +1 -0
  353. package/web/.next/server/chunks/ssr/[root-of-the-server]__66047a1b._.js +3 -0
  354. package/web/.next/server/chunks/ssr/[root-of-the-server]__66047a1b._.js.map +1 -0
  355. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js +1 -1
  356. package/web/.next/server/chunks/ssr/[root-of-the-server]__6c7d3936._.js.map +1 -1
  357. package/web/.next/server/chunks/ssr/[root-of-the-server]__a2d6c0ac._.js +4 -0
  358. package/web/.next/server/chunks/ssr/[root-of-the-server]__a2d6c0ac._.js.map +1 -0
  359. package/web/.next/server/chunks/ssr/[root-of-the-server]__a932cd3a._.js +3 -0
  360. package/web/.next/server/chunks/ssr/[root-of-the-server]__a932cd3a._.js.map +1 -0
  361. package/web/.next/server/chunks/ssr/[root-of-the-server]__aa72e794._.js +3 -0
  362. package/web/.next/server/chunks/ssr/[root-of-the-server]__aa72e794._.js.map +1 -0
  363. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js +1 -1
  364. package/web/.next/server/chunks/ssr/[root-of-the-server]__b7b96453._.js.map +1 -1
  365. package/web/.next/server/chunks/ssr/_05c23ad9._.js +1 -1
  366. package/web/.next/server/chunks/ssr/_05c23ad9._.js.map +1 -1
  367. package/web/.next/server/chunks/ssr/_08eaf4b1._.js +3 -0
  368. package/web/.next/server/chunks/ssr/_08eaf4b1._.js.map +1 -0
  369. package/web/.next/server/chunks/ssr/_16eb4fec._.js +1 -1
  370. package/web/.next/server/chunks/ssr/_16eb4fec._.js.map +1 -1
  371. package/web/.next/server/chunks/ssr/_295fffde._.js +1 -1
  372. package/web/.next/server/chunks/ssr/_295fffde._.js.map +1 -1
  373. package/web/.next/server/chunks/ssr/_3686b70d._.js +3 -0
  374. package/web/.next/server/chunks/ssr/_3686b70d._.js.map +1 -0
  375. package/web/.next/server/chunks/ssr/{_3a71f39b._.js → _45286124._.js} +2 -2
  376. package/web/.next/server/chunks/ssr/{_3a71f39b._.js.map → _45286124._.js.map} +1 -1
  377. package/web/.next/server/chunks/ssr/_45496654._.js +1 -1
  378. package/web/.next/server/chunks/ssr/_45496654._.js.map +1 -1
  379. package/web/.next/server/chunks/ssr/_4cbb7f95._.js +1 -1
  380. package/web/.next/server/chunks/ssr/_4cbb7f95._.js.map +1 -1
  381. package/web/.next/server/chunks/ssr/_56b9d60f._.js +1 -1
  382. package/web/.next/server/chunks/ssr/_56b9d60f._.js.map +1 -1
  383. package/web/.next/server/chunks/ssr/_6abfa39e._.js +1 -1
  384. package/web/.next/server/chunks/ssr/_6abfa39e._.js.map +1 -1
  385. package/web/.next/server/chunks/ssr/_783debcb._.js +9 -0
  386. package/web/.next/server/chunks/ssr/_783debcb._.js.map +1 -0
  387. package/web/.next/server/chunks/ssr/{_7953be4d._.js → _d943aad7._.js} +2 -2
  388. package/web/.next/server/chunks/ssr/_d943aad7._.js.map +1 -0
  389. package/web/.next/server/chunks/ssr/_f8c55130._.js +4 -0
  390. package/web/.next/server/chunks/ssr/_f8c55130._.js.map +1 -0
  391. package/web/.next/server/chunks/ssr/_ff04802c._.js +3 -0
  392. package/web/.next/server/chunks/ssr/_ff04802c._.js.map +1 -0
  393. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  394. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  395. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js +1 -1
  396. package/web/.next/server/chunks/ssr/f3a1f_components_common_control-center-drawer_repository-drawer-client_tsx_39a00c03._.js.map +1 -1
  397. package/web/.next/server/chunks/ssr/src_presentation_web_17d39233._.js +3 -0
  398. package/web/.next/server/chunks/ssr/src_presentation_web_17d39233._.js.map +1 -0
  399. package/web/.next/server/chunks/ssr/src_presentation_web_54b02639._.js +5 -0
  400. package/web/.next/server/chunks/ssr/src_presentation_web_54b02639._.js.map +1 -0
  401. package/web/.next/server/chunks/ssr/src_presentation_web_7b7b9e3b._.js +5 -0
  402. package/web/.next/server/chunks/ssr/src_presentation_web_7b7b9e3b._.js.map +1 -0
  403. package/web/.next/server/chunks/ssr/src_presentation_web_807cba76._.js +3 -0
  404. package/web/.next/server/chunks/ssr/src_presentation_web_807cba76._.js.map +1 -0
  405. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js +3 -0
  406. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_90b5e66e.js.map +1 -0
  407. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js +3 -0
  408. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_4ce30db7.js.map +1 -0
  409. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js +3 -0
  410. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_e4032193.js.map +1 -0
  411. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js +1 -1
  412. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js +1 -1
  413. package/web/.next/server/chunks/ssr/src_presentation_web_ca99d62d._.js.map +1 -1
  414. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js +1 -1
  415. package/web/.next/server/chunks/ssr/src_presentation_web_components_895e5bfa._.js.map +1 -1
  416. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  417. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  418. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js +1 -1
  419. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_skills_8a174cac._.js.map +1 -1
  420. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +1 -1
  421. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -1
  422. package/web/.next/server/chunks/ssr/src_presentation_web_e1cd1869._.js +3 -0
  423. package/web/.next/server/chunks/ssr/src_presentation_web_e1cd1869._.js.map +1 -0
  424. package/web/.next/server/chunks/ssr/src_presentation_web_e3a30e30._.js +3 -0
  425. package/web/.next/server/chunks/ssr/src_presentation_web_e3a30e30._.js.map +1 -0
  426. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js +1 -1
  427. package/web/.next/server/chunks/ssr/translations_23dd5e7e._.js.map +1 -1
  428. package/web/.next/server/pages/500.html +2 -2
  429. package/web/.next/server/server-reference-manifest.js +1 -1
  430. package/web/.next/server/server-reference-manifest.json +74 -59
  431. package/web/.next/static/chunks/{ad47bc6ddec7508e.js → 128f165077681f87.js} +2 -2
  432. package/web/.next/static/chunks/20ec94c610d07a10.css +1 -0
  433. package/web/.next/static/chunks/2ceebcc839ee0d4b.js +1 -0
  434. package/web/.next/static/chunks/{6bc240cd4ae43267.js → 34e82d5f47b938e3.js} +1 -1
  435. package/web/.next/static/chunks/38c5a2cc4ce5d4d2.js +1 -0
  436. package/web/.next/static/chunks/3aba9d2242420cb5.js +1 -0
  437. package/web/.next/static/chunks/4981e52ed9b5dea3.js +1 -0
  438. package/web/.next/static/chunks/{a060ad1bb509687f.js → 4a909223df60de49.js} +1 -1
  439. package/web/.next/static/chunks/5858b85217fd0ead.js +1 -0
  440. package/web/.next/static/chunks/{a2a03ecb10000974.js → 68a0d1e04c636c09.js} +1 -1
  441. package/web/.next/static/chunks/{393b27ab5de6c454.js → 85473115de724a77.js} +1 -1
  442. package/web/.next/static/chunks/{d9c9db1823b4dffd.js → 8a5c7d80045a8f49.js} +2 -2
  443. package/web/.next/static/chunks/{5a2e1c8699897c26.js → 90c687976b254681.js} +3 -3
  444. package/web/.next/static/chunks/aab749e78b4c10bc.js +1 -0
  445. package/web/.next/static/chunks/{534194b584a151ed.js → ac18577f94d63177.js} +1 -1
  446. package/web/.next/static/chunks/ae81796726a9bba3.js +1 -0
  447. package/web/.next/static/chunks/{6dc0a23d333274ae.js → af9ee4accaa11f83.js} +2 -2
  448. package/web/.next/static/chunks/{c164b157638b2a8b.js → b082a6bb7e17b701.js} +1 -1
  449. package/web/.next/static/chunks/{b49ab0b290e9342d.js → b46545caae3b4930.js} +1 -1
  450. package/web/.next/server/chunks/ssr/[root-of-the-server]__1cd4327c._.js +0 -4
  451. package/web/.next/server/chunks/ssr/[root-of-the-server]__1cd4327c._.js.map +0 -1
  452. package/web/.next/server/chunks/ssr/[root-of-the-server]__4fb81977._.js +0 -4
  453. package/web/.next/server/chunks/ssr/[root-of-the-server]__4fb81977._.js.map +0 -1
  454. package/web/.next/server/chunks/ssr/[root-of-the-server]__7dcd0917._.js +0 -4
  455. package/web/.next/server/chunks/ssr/[root-of-the-server]__7dcd0917._.js.map +0 -1
  456. package/web/.next/server/chunks/ssr/[root-of-the-server]__92ffd5ee._.js +0 -4
  457. package/web/.next/server/chunks/ssr/[root-of-the-server]__92ffd5ee._.js.map +0 -1
  458. package/web/.next/server/chunks/ssr/[root-of-the-server]__b020c17d._.js +0 -4
  459. package/web/.next/server/chunks/ssr/[root-of-the-server]__b020c17d._.js.map +0 -1
  460. package/web/.next/server/chunks/ssr/[root-of-the-server]__ba7f5873._.js +0 -4
  461. package/web/.next/server/chunks/ssr/[root-of-the-server]__ba7f5873._.js.map +0 -1
  462. package/web/.next/server/chunks/ssr/[root-of-the-server]__c5e09f6f._.js +0 -4
  463. package/web/.next/server/chunks/ssr/[root-of-the-server]__c5e09f6f._.js.map +0 -1
  464. package/web/.next/server/chunks/ssr/_02e01240._.js +0 -4
  465. package/web/.next/server/chunks/ssr/_02e01240._.js.map +0 -1
  466. package/web/.next/server/chunks/ssr/_18886033._.js +0 -4
  467. package/web/.next/server/chunks/ssr/_18886033._.js.map +0 -1
  468. package/web/.next/server/chunks/ssr/_22e00a14._.js +0 -4
  469. package/web/.next/server/chunks/ssr/_22e00a14._.js.map +0 -1
  470. package/web/.next/server/chunks/ssr/_43ba79e7._.js +0 -3
  471. package/web/.next/server/chunks/ssr/_43ba79e7._.js.map +0 -1
  472. package/web/.next/server/chunks/ssr/_7953be4d._.js.map +0 -1
  473. package/web/.next/server/chunks/ssr/_7cb0396e._.js +0 -3
  474. package/web/.next/server/chunks/ssr/_7cb0396e._.js.map +0 -1
  475. package/web/.next/server/chunks/ssr/_a5a5901d._.js +0 -4
  476. package/web/.next/server/chunks/ssr/_a5a5901d._.js.map +0 -1
  477. package/web/.next/server/chunks/ssr/_ad09f271._.js +0 -4
  478. package/web/.next/server/chunks/ssr/_ad09f271._.js.map +0 -1
  479. package/web/.next/server/chunks/ssr/_c3f595c6._.js +0 -4
  480. package/web/.next/server/chunks/ssr/_c3f595c6._.js.map +0 -1
  481. package/web/.next/server/chunks/ssr/_e680c57c._.js +0 -9
  482. package/web/.next/server/chunks/ssr/_e680c57c._.js.map +0 -1
  483. package/web/.next/server/chunks/ssr/_ea9e1556._.js +0 -4
  484. package/web/.next/server/chunks/ssr/_ea9e1556._.js.map +0 -1
  485. package/web/.next/server/chunks/ssr/_f1ba9be6._.js +0 -6
  486. package/web/.next/server/chunks/ssr/_f1ba9be6._.js.map +0 -1
  487. package/web/.next/server/chunks/ssr/_f33cd07e._.js +0 -6
  488. package/web/.next/server/chunks/ssr/_f33cd07e._.js.map +0 -1
  489. package/web/.next/server/chunks/ssr/_f8b45233._.js +0 -4
  490. package/web/.next/server/chunks/ssr/_f8b45233._.js.map +0 -1
  491. package/web/.next/server/chunks/ssr/_fd595af2._.js +0 -3
  492. package/web/.next/server/chunks/ssr/_fd595af2._.js.map +0 -1
  493. package/web/.next/static/chunks/0baf5a2e56d191cf.js +0 -1
  494. package/web/.next/static/chunks/32c46154c31c58fc.js +0 -1
  495. package/web/.next/static/chunks/84b480808bd74fa9.css +0 -1
  496. package/web/.next/static/chunks/8b0a9cb5109fe899.js +0 -1
  497. package/web/.next/static/chunks/b65e555419a0c664.js +0 -1
  498. package/web/.next/static/chunks/e30aa6d2cf824fa1.js +0 -1
  499. package/web/.next/static/chunks/f5abbc495d496f5b.js +0 -1
  500. /package/web/.next/static/{nLYXtW5TIrvQiMl1yyD4O → PEEwFezIwaFMSsCXbx5zQ}/_buildManifest.js +0 -0
  501. /package/web/.next/static/{nLYXtW5TIrvQiMl1yyD4O → PEEwFezIwaFMSsCXbx5zQ}/_clientMiddlewareManifest.json +0 -0
  502. /package/web/.next/static/{nLYXtW5TIrvQiMl1yyD4O → PEEwFezIwaFMSsCXbx5zQ}/_ssgManifest.js +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shepai/cli",
3
- "version": "1.174.0",
3
+ "version": "1.175.0-pr527.9ada632",
4
4
  "description": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -1 +1 @@
1
- nLYXtW5TIrvQiMl1yyD4O
1
+ PEEwFezIwaFMSsCXbx5zQ
@@ -7,8 +7,8 @@
7
7
  "static/chunks/a6dad97d9634a72d.js"
8
8
  ],
9
9
  "lowPriorityFiles": [
10
- "static/nLYXtW5TIrvQiMl1yyD4O/_ssgManifest.js",
11
- "static/nLYXtW5TIrvQiMl1yyD4O/_buildManifest.js"
10
+ "static/PEEwFezIwaFMSsCXbx5zQ/_ssgManifest.js",
11
+ "static/PEEwFezIwaFMSsCXbx5zQ/_buildManifest.js"
12
12
  ],
13
13
  "rootMainFiles": [
14
14
  "static/chunks/74729cbad964be13.js",
@@ -5,8 +5,8 @@
5
5
  "devFiles": [],
6
6
  "polyfillFiles": [],
7
7
  "lowPriorityFiles": [
8
- "static/nLYXtW5TIrvQiMl1yyD4O/_ssgManifest.js",
9
- "static/nLYXtW5TIrvQiMl1yyD4O/_buildManifest.js"
8
+ "static/PEEwFezIwaFMSsCXbx5zQ/_ssgManifest.js",
9
+ "static/PEEwFezIwaFMSsCXbx5zQ/_buildManifest.js"
10
10
  ],
11
11
  "rootMainFiles": []
12
12
  }
@@ -29,8 +29,8 @@
29
29
  "dynamicRoutes": {},
30
30
  "notFoundRoutes": [],
31
31
  "preview": {
32
- "previewModeId": "e968729e8f79381ce2b17a920223fb55",
33
- "previewModeSigningKey": "af7dc70bab2de58974283fdca3b559427d084dc4930c96a6bb8c91485fd50e12",
34
- "previewModeEncryptionKey": "70659474df73a5dd9b9e9adce8f1e86a0e365dd4b118c72df3d71e5e9fff3679"
32
+ "previewModeId": "76388863ec6e8cdce42f28d0a7cc6270",
33
+ "previewModeSigningKey": "f92a544e9624e761083f37079f06bc175f532730eee4c9eb2a8a2fb54d7b0fc7",
34
+ "previewModeEncryptionKey": "fe41a401b2fb25fa5c5cc628f352fe508942b53ea33476f10d70743bc379ad14"
35
35
  }
36
36
  }
@@ -2,11 +2,11 @@ self.__SERVER_FILES_MANIFEST={
2
2
  "version": 1,
3
3
  "config": {
4
4
  "env": {
5
- "NEXT_PUBLIC_SHEP_VERSION": "1.173.0",
5
+ "NEXT_PUBLIC_SHEP_VERSION": "1.175.0",
6
6
  "NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
7
7
  "NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
8
- "NEXT_PUBLIC_SHEP_BRANCH": "main",
9
- "NEXT_PUBLIC_SHEP_COMMIT": "af82901941bb1ce532f1854119febe47bf139282",
8
+ "NEXT_PUBLIC_SHEP_BRANCH": "HEAD",
9
+ "NEXT_PUBLIC_SHEP_COMMIT": "9ada6323ede29e4a6a75fe6d5901e5e3f7e4fbcd",
10
10
  "NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/shep/shep/src/presentation/web"
11
11
  },
12
12
  "webpack": null,
@@ -2,11 +2,11 @@
2
2
  "version": 1,
3
3
  "config": {
4
4
  "env": {
5
- "NEXT_PUBLIC_SHEP_VERSION": "1.173.0",
5
+ "NEXT_PUBLIC_SHEP_VERSION": "1.175.0",
6
6
  "NEXT_PUBLIC_SHEP_PACKAGE_NAME": "@shepai/cli",
7
7
  "NEXT_PUBLIC_SHEP_DESCRIPTION": "Autonomous AI Native SDLC Platform - Automate the development cycle from idea to deploy",
8
- "NEXT_PUBLIC_SHEP_BRANCH": "main",
9
- "NEXT_PUBLIC_SHEP_COMMIT": "af82901941bb1ce532f1854119febe47bf139282",
8
+ "NEXT_PUBLIC_SHEP_BRANCH": "HEAD",
9
+ "NEXT_PUBLIC_SHEP_COMMIT": "9ada6323ede29e4a6a75fe6d5901e5e3f7e4fbcd",
10
10
  "NEXT_PUBLIC_SHEP_INSTANCE_PATH": "/home/runner/work/shep/shep/src/presentation/web"
11
11
  },
12
12
  "webpack": null,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "006c2f592d39fe5971ea5fd1dfd416fe6d2bcef5ad": {
3
+ "008d4e29abab6e6e89dd3aac6050cf2115a66956f1": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/adopt/page": {
6
6
  "moduleId": 11372,
@@ -15,7 +15,7 @@
15
15
  "exportedName": "getAllAgentModels",
16
16
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
17
17
  },
18
- "604eb9539b9545acf8c5a9de12ddfbdab5a8f6273e": {
18
+ "607108779c1ef8f0283f289f548df8299e6804c04d": {
19
19
  "workers": {
20
20
  "app/(dashboard)/@drawer/adopt/page": {
21
21
  "moduleId": 11372,
@@ -30,7 +30,7 @@
30
30
  "exportedName": "updateAgentAndModel",
31
31
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
32
32
  },
33
- "00f6bfad69699130a3e3d66c977c58d7cd179b2169": {
33
+ "00825be228ca6d0c34e26a0bb3e566508890f87c6b": {
34
34
  "workers": {
35
35
  "app/(dashboard)/@drawer/adopt/page": {
36
36
  "moduleId": 11372,
@@ -45,7 +45,7 @@
45
45
  "exportedName": "pickFolder",
46
46
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
47
47
  },
48
- "4085141a0cd6a53ffa124c88b85d4febf94c8278b1": {
48
+ "4079646263b7db58c38eee0c9f2dbd40b8c58f95fc": {
49
49
  "workers": {
50
50
  "app/(dashboard)/@drawer/adopt/page": {
51
51
  "moduleId": 11372,
@@ -60,7 +60,7 @@
60
60
  "exportedName": "listGitHubRepositories",
61
61
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
62
62
  },
63
- "0045988f2fe07f11ed181fbdf9caca664020a6bd7a": {
63
+ "008c6e71a023f0ae34541fc37c1b4b956745004ef2": {
64
64
  "workers": {
65
65
  "app/(dashboard)/@drawer/adopt/page": {
66
66
  "moduleId": 11372,
@@ -75,7 +75,7 @@
75
75
  "exportedName": "listGitHubOrganizations",
76
76
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
77
77
  },
78
- "403fa90e05d7b54c9c9d0c3e953ad2fe225f84d41d": {
78
+ "4012a7a0ea8d057a8b210bd90999a88a33c8d78b9c": {
79
79
  "workers": {
80
80
  "app/(dashboard)/@drawer/adopt/page": {
81
81
  "moduleId": 11372,
@@ -90,7 +90,7 @@
90
90
  "exportedName": "importGitHubRepository",
91
91
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
92
92
  },
93
- "40459598fc91b144cf78eca27e6a10d4a44f0064f8": {
93
+ "40f1ef1f1cb662a4b841c4117e1d49feaec80b6ffe": {
94
94
  "workers": {
95
95
  "app/(dashboard)/@drawer/adopt/page": {
96
96
  "moduleId": 11372,
@@ -105,7 +105,7 @@
105
105
  "exportedName": "deployFeature",
106
106
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
107
107
  },
108
- "40ea77c7931b66fc2b599ccdc3484a00d1c1a2b560": {
108
+ "4040b77c88561065374a74addf7923ca7508b39e74": {
109
109
  "workers": {
110
110
  "app/(dashboard)/@drawer/adopt/page": {
111
111
  "moduleId": 11372,
@@ -120,7 +120,7 @@
120
120
  "exportedName": "deployRepository",
121
121
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
122
122
  },
123
- "400720faf2870e94e79da725c2c5a658f58604ce94": {
123
+ "40856150c76ef92c66afdee3b4594dfba508d607a0": {
124
124
  "workers": {
125
125
  "app/(dashboard)/@drawer/adopt/page": {
126
126
  "moduleId": 11372,
@@ -135,7 +135,7 @@
135
135
  "exportedName": "stopDeployment",
136
136
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
137
137
  },
138
- "401d97b7a498ad60a3bcf4006ad3220638b6b3ddcb": {
138
+ "4010de5ec5ca4f46ae56e865ad10bf890eb2438b02": {
139
139
  "workers": {
140
140
  "app/(dashboard)/@drawer/adopt/page": {
141
141
  "moduleId": 11372,
@@ -150,7 +150,7 @@
150
150
  "exportedName": "getDeploymentStatus",
151
151
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
152
152
  },
153
- "40c9f517c6a5aa233fb5a64688491bb3d517f49ff0": {
153
+ "405f27940f0873e379684313d276e8bcaf063706d8": {
154
154
  "workers": {
155
155
  "app/(dashboard)/@drawer/adopt/page": {
156
156
  "moduleId": 11372,
@@ -165,7 +165,7 @@
165
165
  "exportedName": "openIde",
166
166
  "filename": "src/presentation/web/app/actions/open-ide.ts"
167
167
  },
168
- "4040a8d44791e486092854efde9f65069b45f0e805": {
168
+ "40bd45fad7d207cd842923712b3bb0a2aa4d43cf62": {
169
169
  "workers": {
170
170
  "app/(dashboard)/@drawer/adopt/page": {
171
171
  "moduleId": 11372,
@@ -180,7 +180,7 @@
180
180
  "exportedName": "openShell",
181
181
  "filename": "src/presentation/web/app/actions/open-shell.ts"
182
182
  },
183
- "406a00c72031c24eea97db956541ea4cdd73853c8c": {
183
+ "407a7b2360aeb6f1606598d15fdcbd076d41f03438": {
184
184
  "workers": {
185
185
  "app/(dashboard)/@drawer/adopt/page": {
186
186
  "moduleId": 11372,
@@ -195,7 +195,7 @@
195
195
  "exportedName": "openFolder",
196
196
  "filename": "src/presentation/web/app/actions/open-folder.ts"
197
197
  },
198
- "402c3320d84cec4e64bd4c976a2a4520cd40134977": {
198
+ "4060418ceace481f455d794d5dc2e05db95d7d2a2e": {
199
199
  "workers": {
200
200
  "app/(dashboard)/@drawer/adopt/page": {
201
201
  "moduleId": 11372,
@@ -210,7 +210,7 @@
210
210
  "exportedName": "syncRepository",
211
211
  "filename": "src/presentation/web/app/actions/sync-repository.ts"
212
212
  },
213
- "400fea897c7f3f51b5bc16a4fefa07b7fc93321b09": {
213
+ "409c06d41e3e925f66e2ed42d812c21e98a525b846": {
214
214
  "workers": {
215
215
  "app/(dashboard)/@drawer/adopt/page": {
216
216
  "moduleId": 11372,
@@ -225,7 +225,7 @@
225
225
  "exportedName": "getDeploymentLogs",
226
226
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
227
227
  },
228
- "00bc396927cc126f6d428b488bbf9c1d8122deeb60": {
228
+ "0039d603a0bbad87f118856d3ae02839cbe039cca6": {
229
229
  "workers": {
230
230
  "app/(dashboard)/@drawer/adopt/page": {
231
231
  "moduleId": 11372,
@@ -240,7 +240,7 @@
240
240
  "exportedName": "isAgentSetupComplete",
241
241
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts"
242
242
  },
243
- "00f330ebbfaa0478eb853e8ac3f091a552e642aee4": {
243
+ "00dc1cf5c9d4db5ed3592453c2685badb33b7bac7e": {
244
244
  "workers": {
245
245
  "app/(dashboard)/@drawer/adopt/page": {
246
246
  "moduleId": 11372,
@@ -255,7 +255,7 @@
255
255
  "exportedName": "checkAgentAuth",
256
256
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts"
257
257
  },
258
- "00da9673707504334e400c8b25802b93144e5e3c3d": {
258
+ "00f88221f0cfcb1b67fc47be5cdb67f9acdd507715": {
259
259
  "workers": {
260
260
  "app/(dashboard)/@drawer/adopt/page": {
261
261
  "moduleId": 11372,
@@ -270,7 +270,7 @@
270
270
  "exportedName": "checkToolStatus",
271
271
  "filename": "src/presentation/web/app/actions/check-tool-status.ts"
272
272
  },
273
- "401ed8d4d0b6b4a8e3c283975a24bd6e713122eac3": {
273
+ "40d86e4e402869ad70e51f546ac7c505345bf3309f": {
274
274
  "workers": {
275
275
  "app/(dashboard)/@drawer/adopt/page": {
276
276
  "moduleId": 11372,
@@ -285,7 +285,7 @@
285
285
  "exportedName": "archiveFeature",
286
286
  "filename": "src/presentation/web/app/actions/archive-feature.ts"
287
287
  },
288
- "780e5e61d45e219441f068a539df788a2a6487a9e2": {
288
+ "78ea57ad88ab9eff8db91dad06816003697b810779": {
289
289
  "workers": {
290
290
  "app/(dashboard)/@drawer/adopt/page": {
291
291
  "moduleId": 11372,
@@ -300,7 +300,7 @@
300
300
  "exportedName": "deleteFeature",
301
301
  "filename": "src/presentation/web/app/actions/delete-feature.ts"
302
302
  },
303
- "405edd696ad2edf7e4c08573cd4fc12d244ed8eb9b": {
303
+ "405da3ab7ad6099e302094db2fd4152307677837f0": {
304
304
  "workers": {
305
305
  "app/(dashboard)/@drawer/adopt/page": {
306
306
  "moduleId": 11372,
@@ -315,7 +315,7 @@
315
315
  "exportedName": "resumeFeature",
316
316
  "filename": "src/presentation/web/app/actions/resume-feature.ts"
317
317
  },
318
- "400b7fd1083812954e8ecd0f3871a412f0dafc35fc": {
318
+ "40ea28c9374707d7202a45bd9da7044b6e482a017c": {
319
319
  "workers": {
320
320
  "app/(dashboard)/@drawer/adopt/page": {
321
321
  "moduleId": 11372,
@@ -330,7 +330,7 @@
330
330
  "exportedName": "startFeature",
331
331
  "filename": "src/presentation/web/app/actions/start-feature.ts"
332
332
  },
333
- "40fabfc47ba32b0b5edc3d54c8cfce3bd42942b59d": {
333
+ "40eb0b373de7c21a12c09e7c9144c754d486d09b00": {
334
334
  "workers": {
335
335
  "app/(dashboard)/@drawer/adopt/page": {
336
336
  "moduleId": 11372,
@@ -345,7 +345,7 @@
345
345
  "exportedName": "stopFeature",
346
346
  "filename": "src/presentation/web/app/actions/stop-feature.ts"
347
347
  },
348
- "4005b0ae21985756a277ed96fc4ccef47f4e77b7cd": {
348
+ "4059659bbd7a4528ceab24c7c9b4d5442c1720951f": {
349
349
  "workers": {
350
350
  "app/(dashboard)/@drawer/adopt/page": {
351
351
  "moduleId": 11372,
@@ -360,7 +360,7 @@
360
360
  "exportedName": "unarchiveFeature",
361
361
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts"
362
362
  },
363
- "40dced1fb4afee283e9f46e7c75d40b2b93629c8a6": {
363
+ "4097ef2eda483266a6c74c1f4b45a49a1cd93c84e7": {
364
364
  "workers": {
365
365
  "app/(dashboard)/@drawer/adopt/page": {
366
366
  "moduleId": 11372,
@@ -375,7 +375,7 @@
375
375
  "exportedName": "addRepository",
376
376
  "filename": "src/presentation/web/app/actions/add-repository.ts"
377
377
  },
378
- "4009de4a41ed31d2f27affb04818d3209fe974f0bc": {
378
+ "40d2cf82596269809d4b8182f33f8bb483f35fea40": {
379
379
  "workers": {
380
380
  "app/(dashboard)/@drawer/adopt/page": {
381
381
  "moduleId": 11372,
@@ -390,7 +390,7 @@
390
390
  "exportedName": "deleteRepository",
391
391
  "filename": "src/presentation/web/app/actions/delete-repository.ts"
392
392
  },
393
- "40504de639b5848c80d7d260f0729a3a46ff4ebe15": {
393
+ "401ea791a93d6bfeb152e8f22255173e394343a66b": {
394
394
  "workers": {
395
395
  "app/(dashboard)/@drawer/adopt/page": {
396
396
  "moduleId": 11372,
@@ -405,7 +405,7 @@
405
405
  "exportedName": "getFeatureMetadata",
406
406
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts"
407
407
  },
408
- "40df2a52b865b1b020f33ad3aa0b53217dedcbd779": {
408
+ "402f23f49165559d5ca8aa08d58b4d96737add7e42": {
409
409
  "workers": {
410
410
  "app/(dashboard)/@drawer/adopt/page": {
411
411
  "moduleId": 11372,
@@ -420,7 +420,7 @@
420
420
  "exportedName": "adoptBranch",
421
421
  "filename": "src/presentation/web/app/actions/adopt-branch.ts"
422
422
  },
423
- "40c729a2e262be4f8894d4f90d6519f58e0f421d17": {
423
+ "40c91817b28b8ea063c5d5f96fcb224c5917ed0641": {
424
424
  "workers": {
425
425
  "app/(dashboard)/@drawer/adopt/page": {
426
426
  "moduleId": 11372,
@@ -16,7 +16,8 @@ R.c("server/chunks/ssr/403f9_next_dist_client_components_builtin_unauthorized_a2
16
16
  R.c("server/chunks/ssr/[root-of-the-server]__69dd3217._.js")
17
17
  R.c("server/chunks/ssr/src_presentation_web_ca99d62d._.js")
18
18
  R.c("server/chunks/ssr/403f9_next_dist_client_components_94d75bc3._.js")
19
- R.c("server/chunks/ssr/_a5a5901d._.js")
19
+ R.c("server/chunks/ssr/744ca_web__next-internal_server_app_(dashboard)_@drawer_adopt_page_actions_ad0071c9.js")
20
20
  R.c("server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_baaca5d5._.js")
21
+ R.c("server/chunks/ssr/_f8c55130._.js")
21
22
  R.m(40778)
22
23
  module.exports=R.m(40778).exports