@shipit-ai/cli 1.167.1 → 1.169.0-pr12.6d78faf

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 (560) hide show
  1. package/apis/json-schema/FeatureFlags.yaml +5 -0
  2. package/apis/json-schema/LiteLLMProxyConfig.yaml +14 -0
  3. package/apis/json-schema/Settings.yaml +3 -0
  4. package/dist/packages/core/src/application/ports/output/services/index.d.ts +1 -0
  5. package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
  6. package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.d.ts +46 -0
  7. package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.d.ts.map +1 -0
  8. package/dist/packages/core/src/application/ports/output/services/plugin-marketplace.interface.js +12 -0
  9. package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.d.ts +16 -0
  10. package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.d.ts.map +1 -0
  11. package/dist/packages/core/src/application/use-cases/plugins/add-marketplace.use-case.js +34 -0
  12. package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.d.ts +24 -0
  13. package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.d.ts.map +1 -0
  14. package/dist/packages/core/src/application/use-cases/plugins/fetch-plugin-catalog.use-case.js +52 -0
  15. package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.d.ts +17 -0
  16. package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.d.ts.map +1 -0
  17. package/dist/packages/core/src/application/use-cases/plugins/install-plugin.use-case.js +33 -0
  18. package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.d.ts +17 -0
  19. package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.d.ts.map +1 -0
  20. package/dist/packages/core/src/application/use-cases/plugins/toggle-plugin.use-case.js +33 -0
  21. package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.d.ts +16 -0
  22. package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.d.ts.map +1 -0
  23. package/dist/packages/core/src/application/use-cases/plugins/uninstall-plugin.use-case.js +33 -0
  24. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  25. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -0
  26. package/dist/packages/core/src/domain/generated/output.d.ts +25 -0
  27. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  28. package/dist/packages/core/src/infrastructure/di/modules/services.module.d.ts.map +1 -1
  29. package/dist/packages/core/src/infrastructure/di/modules/services.module.js +13 -0
  30. package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.d.ts.map +1 -1
  31. package/dist/packages/core/src/infrastructure/di/modules/use-cases.module.js +12 -0
  32. package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.d.ts.map +1 -1
  33. package/dist/packages/core/src/infrastructure/di/modules/web-tokens.module.js +22 -0
  34. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +4 -0
  35. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  36. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +18 -0
  37. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.d.ts +14 -0
  38. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.d.ts.map +1 -0
  39. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations/054-add-litellm-proxy.js +28 -0
  40. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.d.ts +4 -0
  41. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.d.ts.map +1 -0
  42. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/index.js +3 -0
  43. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.d.ts +78 -0
  44. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.d.ts.map +1 -0
  45. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.schema.js +46 -0
  46. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.d.ts +29 -0
  47. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.d.ts.map +1 -0
  48. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.service.js +147 -0
  49. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.d.ts +11 -0
  50. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.d.ts.map +1 -0
  51. package/dist/packages/core/src/infrastructure/services/plugin-marketplace/plugin-marketplace.validators.js +47 -0
  52. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/antigravity.json +1 -1
  53. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/bash.json +1 -0
  54. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/cursor-cli.json +1 -1
  55. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/cursor.json +1 -1
  56. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/fish.json +1 -0
  57. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/powershell.json +1 -0
  58. package/dist/packages/core/src/infrastructure/services/tool-installer/tools/zsh.json +1 -0
  59. package/dist/src/presentation/web/app/actions/add-marketplace.d.ts +5 -0
  60. package/dist/src/presentation/web/app/actions/add-marketplace.d.ts.map +1 -0
  61. package/dist/src/presentation/web/app/actions/add-marketplace.js +11 -0
  62. package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.d.ts +5 -0
  63. package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.d.ts.map +1 -0
  64. package/dist/src/presentation/web/app/actions/fetch-plugin-catalog.js +11 -0
  65. package/dist/src/presentation/web/app/actions/install-plugin.d.ts +5 -0
  66. package/dist/src/presentation/web/app/actions/install-plugin.d.ts.map +1 -0
  67. package/dist/src/presentation/web/app/actions/install-plugin.js +11 -0
  68. package/dist/src/presentation/web/app/actions/toggle-plugin.d.ts +5 -0
  69. package/dist/src/presentation/web/app/actions/toggle-plugin.d.ts.map +1 -0
  70. package/dist/src/presentation/web/app/actions/toggle-plugin.js +11 -0
  71. package/dist/src/presentation/web/app/actions/uninstall-plugin.d.ts +5 -0
  72. package/dist/src/presentation/web/app/actions/uninstall-plugin.d.ts.map +1 -0
  73. package/dist/src/presentation/web/app/actions/uninstall-plugin.js +11 -0
  74. package/dist/src/presentation/web/app/layout.d.ts.map +1 -1
  75. package/dist/src/presentation/web/app/layout.js +15 -2
  76. package/dist/src/presentation/web/app/plugins/page.d.ts +2 -0
  77. package/dist/src/presentation/web/app/plugins/page.d.ts.map +1 -0
  78. package/dist/src/presentation/web/app/plugins/page.js +23 -0
  79. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.d.ts.map +1 -1
  80. package/dist/src/presentation/web/components/common/base-drawer/base-drawer.js +4 -1
  81. package/dist/src/presentation/web/components/common/page-header/page-header.d.ts +3 -1
  82. package/dist/src/presentation/web/components/common/page-header/page-header.d.ts.map +1 -1
  83. package/dist/src/presentation/web/components/common/page-header/page-header.js +8 -2
  84. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.d.ts.map +1 -1
  85. package/dist/src/presentation/web/components/common/repository-node/repository-drawer.stories.js +1 -0
  86. package/dist/src/presentation/web/components/common/repository-node/repository-node.d.ts.map +1 -1
  87. package/dist/src/presentation/web/components/common/repository-node/repository-node.js +6 -1
  88. package/dist/src/presentation/web/components/common/shipit-ai-logo/shipit-ai-logo.d.ts +9 -1
  89. package/dist/src/presentation/web/components/common/shipit-ai-logo/shipit-ai-logo.d.ts.map +1 -1
  90. package/dist/src/presentation/web/components/common/shipit-ai-logo/shipit-ai-logo.js +12 -6
  91. package/dist/src/presentation/web/components/common/sidebar-collapse-toggle/sidebar-collapse-toggle.d.ts.map +1 -1
  92. package/dist/src/presentation/web/components/common/sidebar-collapse-toggle/sidebar-collapse-toggle.js +5 -1
  93. package/dist/src/presentation/web/components/common/sidebar-nav-item/sidebar-nav-item.d.ts.map +1 -1
  94. package/dist/src/presentation/web/components/common/sidebar-nav-item/sidebar-nav-item.js +15 -0
  95. package/dist/src/presentation/web/components/features/chat/ChatSheet.d.ts.map +1 -1
  96. package/dist/src/presentation/web/components/features/chat/ChatSheet.js +18 -5
  97. package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.d.ts.map +1 -1
  98. package/dist/src/presentation/web/components/features/control-center/control-center-empty-state.js +1 -1
  99. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.d.ts.map +1 -1
  100. package/dist/src/presentation/web/components/features/features-canvas/features-canvas.js +5 -1
  101. package/dist/src/presentation/web/components/features/plugins/plugin-card.d.ts +9 -0
  102. package/dist/src/presentation/web/components/features/plugins/plugin-card.d.ts.map +1 -0
  103. package/dist/src/presentation/web/components/features/plugins/plugin-card.js +15 -0
  104. package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.d.ts +17 -0
  105. package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.d.ts.map +1 -0
  106. package/dist/src/presentation/web/components/features/plugins/plugin-card.stories.js +60 -0
  107. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.d.ts +11 -0
  108. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.d.ts.map +1 -0
  109. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.js +33 -0
  110. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.d.ts +18 -0
  111. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.d.ts.map +1 -0
  112. package/dist/src/presentation/web/components/features/plugins/plugin-detail-drawer.stories.js +51 -0
  113. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.d.ts +6 -0
  114. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.d.ts.map +1 -0
  115. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.js +115 -0
  116. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.d.ts +12 -0
  117. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.d.ts.map +1 -0
  118. package/dist/src/presentation/web/components/features/plugins/plugins-page-client.stories.js +24 -0
  119. package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts +3 -3
  120. package/dist/src/presentation/web/components/features/settings/agent-settings-section.d.ts.map +1 -1
  121. package/dist/src/presentation/web/components/features/settings/agent-settings-section.js +23 -102
  122. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts +2 -3
  123. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.d.ts.map +1 -1
  124. package/dist/src/presentation/web/components/features/settings/agent-settings-section.stories.js +18 -22
  125. package/dist/src/presentation/web/components/features/settings/ci-settings-section.d.ts.map +1 -1
  126. package/dist/src/presentation/web/components/features/settings/ci-settings-section.js +14 -5
  127. package/dist/src/presentation/web/components/features/settings/database-settings-section.d.ts.map +1 -1
  128. package/dist/src/presentation/web/components/features/settings/database-settings-section.js +14 -4
  129. package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts +9 -3
  130. package/dist/src/presentation/web/components/features/settings/environment-settings-section.d.ts.map +1 -1
  131. package/dist/src/presentation/web/components/features/settings/environment-settings-section.js +75 -65
  132. package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.d.ts.map +1 -1
  133. package/dist/src/presentation/web/components/features/settings/environment-settings-section.stories.js +20 -18
  134. package/dist/src/presentation/web/components/features/settings/fab-layout-settings-section.d.ts.map +1 -1
  135. package/dist/src/presentation/web/components/features/settings/fab-layout-settings-section.js +1 -1
  136. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts +3 -3
  137. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
  138. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +53 -50
  139. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
  140. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +27 -25
  141. package/dist/src/presentation/web/components/features/settings/interactive-agent-settings-section.d.ts.map +1 -1
  142. package/dist/src/presentation/web/components/features/settings/interactive-agent-settings-section.js +3 -3
  143. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.d.ts +6 -0
  144. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.d.ts.map +1 -0
  145. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.js +76 -0
  146. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.d.ts +15 -0
  147. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.d.ts.map +1 -0
  148. package/dist/src/presentation/web/components/features/settings/litellm-proxy-settings-section.stories.js +29 -0
  149. package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts +3 -3
  150. package/dist/src/presentation/web/components/features/settings/notification-settings-section.d.ts.map +1 -1
  151. package/dist/src/presentation/web/components/features/settings/notification-settings-section.js +64 -47
  152. package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.d.ts.map +1 -1
  153. package/dist/src/presentation/web/components/features/settings/notification-settings-section.stories.js +32 -24
  154. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  155. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +30 -381
  156. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts +2 -0
  157. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
  158. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +14 -0
  159. package/dist/src/presentation/web/components/features/settings/settings-section-utils.d.ts +13 -10
  160. package/dist/src/presentation/web/components/features/settings/settings-section-utils.d.ts.map +1 -1
  161. package/dist/src/presentation/web/components/features/settings/settings-section-utils.js +10 -10
  162. package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.d.ts +1 -1
  163. package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.d.ts.map +1 -1
  164. package/dist/src/presentation/web/components/features/settings/settings-section-utils.stories.js +7 -7
  165. package/dist/src/presentation/web/components/features/settings/stage-timeouts-settings-section.d.ts.map +1 -1
  166. package/dist/src/presentation/web/components/features/settings/stage-timeouts-settings-section.js +1 -1
  167. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts +3 -3
  168. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.d.ts.map +1 -1
  169. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.js +118 -165
  170. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts +1 -1
  171. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.d.ts.map +1 -1
  172. package/dist/src/presentation/web/components/features/settings/workflow-settings-section.stories.js +26 -64
  173. package/dist/src/presentation/web/components/features/skills/category-filter.d.ts.map +1 -1
  174. package/dist/src/presentation/web/components/features/skills/category-filter.js +12 -2
  175. package/dist/src/presentation/web/components/features/skills/skill-card.d.ts.map +1 -1
  176. package/dist/src/presentation/web/components/features/skills/skill-card.js +3 -3
  177. package/dist/src/presentation/web/components/features/skills/skill-detail-drawer.d.ts.map +1 -1
  178. package/dist/src/presentation/web/components/features/skills/skill-detail-drawer.js +27 -1
  179. package/dist/src/presentation/web/components/features/skills/skill-list.js +2 -2
  180. package/dist/src/presentation/web/components/features/skills/skills-page-client.d.ts.map +1 -1
  181. package/dist/src/presentation/web/components/features/skills/skills-page-client.js +2 -2
  182. package/dist/src/presentation/web/components/features/tools/tool-card.d.ts.map +1 -1
  183. package/dist/src/presentation/web/components/features/tools/tool-card.js +20 -11
  184. package/dist/src/presentation/web/components/features/tools/tool-detail-drawer.js +1 -1
  185. package/dist/src/presentation/web/components/features/tools/tools-page-client.d.ts.map +1 -1
  186. package/dist/src/presentation/web/components/features/tools/tools-page-client.js +6 -1
  187. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  188. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +40 -44
  189. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.d.ts.map +1 -1
  190. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +1 -0
  191. package/dist/src/presentation/web/components/ui/card.d.ts.map +1 -1
  192. package/dist/src/presentation/web/components/ui/card.js +9 -1
  193. package/dist/src/presentation/web/components/ui/drawer.d.ts.map +1 -1
  194. package/dist/src/presentation/web/components/ui/drawer.js +8 -2
  195. package/dist/src/presentation/web/components/ui/tooltip.d.ts.map +1 -1
  196. package/dist/src/presentation/web/components/ui/tooltip.js +3 -3
  197. package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
  198. package/dist/src/presentation/web/hooks/feature-flags-context.js +1 -0
  199. package/dist/src/presentation/web/lib/feature-flags.d.ts +2 -0
  200. package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
  201. package/dist/src/presentation/web/lib/feature-flags.js +6 -0
  202. package/dist/translations/ar/web.json +40 -2
  203. package/dist/translations/de/web.json +40 -2
  204. package/dist/translations/en/web.json +40 -2
  205. package/dist/translations/es/web.json +40 -2
  206. package/dist/translations/fr/web.json +40 -2
  207. package/dist/translations/he/web.json +40 -2
  208. package/dist/translations/pt/web.json +40 -2
  209. package/dist/translations/ru/web.json +40 -2
  210. package/dist/tsconfig.build.tsbuildinfo +1 -1
  211. package/package.json +1 -1
  212. package/web/.next/BUILD_ID +1 -1
  213. package/web/.next/app-path-routes-manifest.json +1 -0
  214. package/web/.next/build-manifest.json +3 -3
  215. package/web/.next/fallback-build-manifest.json +3 -3
  216. package/web/.next/prerender-manifest.json +3 -3
  217. package/web/.next/required-server-files.js +3 -3
  218. package/web/.next/required-server-files.json +3 -3
  219. package/web/.next/routes-manifest.json +6 -0
  220. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/next-font-manifest.json +6 -2
  221. package/web/.next/server/app/(dashboard)/@drawer/adopt/page/server-reference-manifest.json +29 -29
  222. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js +1 -1
  223. package/web/.next/server/app/(dashboard)/@drawer/adopt/page.js.nft.json +1 -1
  224. package/web/.next/server/app/(dashboard)/@drawer/adopt/page_client-reference-manifest.js +1 -1
  225. package/web/.next/server/app/(dashboard)/@drawer/chat/page/next-font-manifest.json +6 -2
  226. package/web/.next/server/app/(dashboard)/@drawer/chat/page/server-reference-manifest.json +27 -27
  227. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js +1 -1
  228. package/web/.next/server/app/(dashboard)/@drawer/chat/page.js.nft.json +1 -1
  229. package/web/.next/server/app/(dashboard)/@drawer/chat/page_client-reference-manifest.js +1 -1
  230. package/web/.next/server/app/(dashboard)/@drawer/create/page/next-font-manifest.json +6 -2
  231. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +31 -31
  232. package/web/.next/server/app/(dashboard)/@drawer/create/page.js +1 -1
  233. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  234. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  235. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/next-font-manifest.json +6 -2
  236. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
  237. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js +2 -2
  238. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  239. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  240. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/next-font-manifest.json +6 -2
  241. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +37 -37
  242. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js +2 -2
  243. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  244. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  245. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/next-font-manifest.json +6 -2
  246. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  247. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js +1 -1
  248. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  249. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  250. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/next-font-manifest.json +6 -2
  251. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  252. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js +1 -1
  253. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  254. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  255. package/web/.next/server/app/(dashboard)/chat/page/next-font-manifest.json +6 -2
  256. package/web/.next/server/app/(dashboard)/chat/page/server-reference-manifest.json +27 -27
  257. package/web/.next/server/app/(dashboard)/chat/page.js +1 -1
  258. package/web/.next/server/app/(dashboard)/chat/page.js.nft.json +1 -1
  259. package/web/.next/server/app/(dashboard)/chat/page_client-reference-manifest.js +1 -1
  260. package/web/.next/server/app/(dashboard)/create/page/next-font-manifest.json +6 -2
  261. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +31 -31
  262. package/web/.next/server/app/(dashboard)/create/page.js +1 -1
  263. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  264. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  265. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/next-font-manifest.json +6 -2
  266. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +37 -37
  267. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js +2 -2
  268. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  269. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  270. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/next-font-manifest.json +6 -2
  271. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +37 -37
  272. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js +2 -2
  273. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  274. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  275. package/web/.next/server/app/(dashboard)/page/next-font-manifest.json +6 -2
  276. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +27 -27
  277. package/web/.next/server/app/(dashboard)/page.js +1 -1
  278. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  279. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  280. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/next-font-manifest.json +6 -2
  281. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page/server-reference-manifest.json +28 -28
  282. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js +1 -1
  283. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page.js.nft.json +1 -1
  284. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/[tab]/page_client-reference-manifest.js +1 -1
  285. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/next-font-manifest.json +6 -2
  286. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +28 -28
  287. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js +1 -1
  288. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  289. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  290. package/web/.next/server/app/_global-error.html +1 -1
  291. package/web/.next/server/app/_global-error.rsc +1 -1
  292. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  293. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  294. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  295. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  296. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  297. package/web/.next/server/app/_not-found/page/next-font-manifest.json +6 -2
  298. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +6 -6
  299. package/web/.next/server/app/_not-found/page.js +1 -1
  300. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  301. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  302. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  303. package/web/.next/server/app/api/dialog/pick-files/route.js.nft.json +1 -1
  304. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  305. package/web/.next/server/app/api/graph-data/route.js +1 -1
  306. package/web/.next/server/app/api/graph-data/route.js.nft.json +1 -1
  307. package/web/.next/server/app/api/interactive/chat/[featureId]/messages/route.js +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-batch/route.js +1 -1
  310. package/web/.next/server/app/api/sessions-batch/route.js.nft.json +1 -1
  311. package/web/.next/server/app/plugins/page/app-paths-manifest.json +3 -0
  312. package/web/.next/server/app/plugins/page/build-manifest.json +18 -0
  313. package/web/.next/server/app/plugins/page/next-font-manifest.json +10 -0
  314. package/web/.next/server/app/plugins/page/react-loadable-manifest.json +8 -0
  315. package/web/.next/server/app/plugins/page/server-reference-manifest.json +185 -0
  316. package/web/.next/server/app/plugins/page.js +17 -0
  317. package/web/.next/server/app/plugins/page.js.map +5 -0
  318. package/web/.next/server/app/plugins/page.js.nft.json +1 -0
  319. package/web/.next/server/app/plugins/page_client-reference-manifest.js +3 -0
  320. package/web/.next/server/app/settings/page/next-font-manifest.json +6 -2
  321. package/web/.next/server/app/settings/page/server-reference-manifest.json +34 -22
  322. package/web/.next/server/app/settings/page.js +2 -2
  323. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  324. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  325. package/web/.next/server/app/skills/page/next-font-manifest.json +6 -2
  326. package/web/.next/server/app/skills/page/server-reference-manifest.json +11 -11
  327. package/web/.next/server/app/skills/page.js +1 -1
  328. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  329. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  330. package/web/.next/server/app/tools/page/next-font-manifest.json +6 -2
  331. package/web/.next/server/app/tools/page/server-reference-manifest.json +11 -11
  332. package/web/.next/server/app/tools/page.js +1 -1
  333. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  334. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  335. package/web/.next/server/app/version/page/next-font-manifest.json +6 -2
  336. package/web/.next/server/app/version/page/server-reference-manifest.json +6 -6
  337. package/web/.next/server/app/version/page.js +1 -1
  338. package/web/.next/server/app/version/page.js.nft.json +1 -1
  339. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  340. package/web/.next/server/app-paths-manifest.json +1 -0
  341. package/web/.next/server/chunks/11es_next_dist_esm_build_templates_app-route_067cwst.js.map +1 -1
  342. package/web/.next/server/chunks/{[root-of-the-server]__0zu_byw._.js → [root-of-the-server]__07suer1._.js} +2 -2
  343. package/web/.next/server/chunks/{[root-of-the-server]__0u1jyv9._.js → [root-of-the-server]__0sgzo7y._.js} +2 -2
  344. package/web/.next/server/chunks/[root-of-the-server]__0tb~wwk._.js +1 -1
  345. package/web/.next/server/chunks/{[root-of-the-server]__08cpfre._.js → [root-of-the-server]__0uxlr84._.js} +2 -2
  346. package/web/.next/server/chunks/ssr/08qz_lucide-react_dist_esm_icons_0c0dui7._.js +3 -0
  347. package/web/.next/server/chunks/ssr/08qz_lucide-react_dist_esm_icons_0c0dui7._.js.map +1 -0
  348. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js +1 -1
  349. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_create-drawer-client_tsx_0g70fc5._.js.map +1 -1
  350. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js +2 -2
  351. package/web/.next/server/chunks/ssr/0j.8_web_components_common_control-center-drawer_feature-drawer-client_tsx_104cna.._.js.map +1 -1
  352. package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js +1 -1
  353. package/web/.next/server/chunks/ssr/0ukq_presentation_web_components_features_settings_settings-page-client_tsx_0j1uius._.js.map +1 -1
  354. package/web/.next/server/chunks/ssr/11es_next_dist_esm_build_templates_app-page_0y6lfp8.js +4 -0
  355. package/web/.next/server/chunks/ssr/11es_next_dist_esm_build_templates_app-page_0y6lfp8.js.map +1 -0
  356. package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js +1 -1
  357. package/web/.next/server/chunks/ssr/11y9_components_common_control-center-drawer_repository-drawer-client_tsx_09z.znp._.js.map +1 -1
  358. package/web/.next/server/chunks/ssr/{_04s_q5r._.js → 12k._sonner_dist_index_mjs_0-vmpk5._.js} +2 -2
  359. package/web/.next/server/chunks/ssr/12k._sonner_dist_index_mjs_0-vmpk5._.js.map +1 -0
  360. package/web/.next/server/chunks/ssr/{[root-of-the-server]__0rvrr1j._.js → [root-of-the-server]__0.5ojmt._.js} +2 -2
  361. package/web/.next/server/chunks/ssr/[root-of-the-server]__0.5ojmt._.js.map +1 -0
  362. package/web/.next/server/chunks/ssr/[root-of-the-server]__04h~gav._.js +3 -0
  363. package/web/.next/server/chunks/ssr/[root-of-the-server]__04h~gav._.js.map +1 -0
  364. package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js +1 -1
  365. package/web/.next/server/chunks/ssr/[root-of-the-server]__05_qc0n._.js.map +1 -1
  366. package/web/.next/server/chunks/ssr/{[root-of-the-server]__0uy_5rw._.js → [root-of-the-server]__0ge~xny._.js} +2 -2
  367. package/web/.next/server/chunks/ssr/{[root-of-the-server]__0uy_5rw._.js.map → [root-of-the-server]__0ge~xny._.js.map} +1 -1
  368. package/web/.next/server/chunks/ssr/[root-of-the-server]__0jy4nha._.js +3 -0
  369. package/web/.next/server/chunks/ssr/[root-of-the-server]__0jy4nha._.js.map +1 -0
  370. package/web/.next/server/chunks/ssr/{_0e5cv3q._.js → [root-of-the-server]__0n~o-g-._.js} +2 -2
  371. package/web/.next/server/chunks/ssr/[root-of-the-server]__0n~o-g-._.js.map +1 -0
  372. package/web/.next/server/chunks/ssr/{[root-of-the-server]__02.89uf._.js → [root-of-the-server]__0qda~yi._.js} +2 -2
  373. package/web/.next/server/chunks/ssr/{[root-of-the-server]__02.89uf._.js.map → [root-of-the-server]__0qda~yi._.js.map} +1 -1
  374. package/web/.next/server/chunks/ssr/[root-of-the-server]__0rv1gci._.js +1 -1
  375. package/web/.next/server/chunks/ssr/[root-of-the-server]__0tq2syh._.js +1 -1
  376. package/web/.next/server/chunks/ssr/{[root-of-the-server]__0r5zhk.._.js → [root-of-the-server]__0t~u8sd._.js} +2 -2
  377. package/web/.next/server/chunks/ssr/{[root-of-the-server]__0r5zhk.._.js.map → [root-of-the-server]__0t~u8sd._.js.map} +1 -1
  378. package/web/.next/server/chunks/ssr/[root-of-the-server]__0~v1~b9._.js +3 -0
  379. package/web/.next/server/chunks/ssr/[root-of-the-server]__0~v1~b9._.js.map +1 -0
  380. package/web/.next/server/chunks/ssr/{[root-of-the-server]__04rq9lr._.js → [root-of-the-server]__10tll_l._.js} +2 -2
  381. package/web/.next/server/chunks/ssr/{[root-of-the-server]__04rq9lr._.js.map → [root-of-the-server]__10tll_l._.js.map} +1 -1
  382. package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js +1 -1
  383. package/web/.next/server/chunks/ssr/[root-of-the-server]__12j29w-._.js.map +1 -1
  384. package/web/.next/server/chunks/ssr/_0-09vq7._.js +1 -1
  385. package/web/.next/server/chunks/ssr/_0-09vq7._.js.map +1 -1
  386. package/web/.next/server/chunks/ssr/_01sesw0._.js +1 -1
  387. package/web/.next/server/chunks/ssr/_01sesw0._.js.map +1 -1
  388. package/web/.next/server/chunks/ssr/{_00u~.41._.js → _03x4h9e._.js} +2 -2
  389. package/web/.next/server/chunks/ssr/_03x4h9e._.js.map +1 -0
  390. package/web/.next/server/chunks/ssr/{_0hwjfpu._.js → _05fk0a4._.js} +2 -2
  391. package/web/.next/server/chunks/ssr/_05fk0a4._.js.map +1 -0
  392. package/web/.next/server/chunks/ssr/_069y.js._.js +2 -2
  393. package/web/.next/server/chunks/ssr/_069y.js._.js.map +1 -1
  394. package/web/.next/server/chunks/ssr/{_0-.ckn5._.js → _07u.4jr._.js} +2 -2
  395. package/web/.next/server/chunks/ssr/{_0-.ckn5._.js.map → _07u.4jr._.js.map} +1 -1
  396. package/web/.next/server/chunks/ssr/_083k45~._.js +3 -0
  397. package/web/.next/server/chunks/ssr/_083k45~._.js.map +1 -0
  398. package/web/.next/server/chunks/ssr/_0__4si~._.js +1 -1
  399. package/web/.next/server/chunks/ssr/_0__4si~._.js.map +1 -1
  400. package/web/.next/server/chunks/ssr/_0_m17kl._.js +1 -1
  401. package/web/.next/server/chunks/ssr/_0_m17kl._.js.map +1 -1
  402. package/web/.next/server/chunks/ssr/_0d4miu.._.js +1 -1
  403. package/web/.next/server/chunks/ssr/_0d4miu.._.js.map +1 -1
  404. package/web/.next/server/chunks/ssr/_0e8ern9._.js +1 -1
  405. package/web/.next/server/chunks/ssr/_0e8ern9._.js.map +1 -1
  406. package/web/.next/server/chunks/ssr/_0i~-084._.js +3 -0
  407. package/web/.next/server/chunks/ssr/_0i~-084._.js.map +1 -0
  408. package/web/.next/server/chunks/ssr/_0kt18~b._.js +3 -0
  409. package/web/.next/server/chunks/ssr/_0kt18~b._.js.map +1 -0
  410. package/web/.next/server/chunks/ssr/{_138qywk._.js → _0mj-tmi._.js} +2 -2
  411. package/web/.next/server/chunks/ssr/{_138qywk._.js.map → _0mj-tmi._.js.map} +1 -1
  412. package/web/.next/server/chunks/ssr/{_0hw~zvl._.js → _0o_oaao._.js} +2 -2
  413. package/web/.next/server/chunks/ssr/_0o_oaao._.js.map +1 -0
  414. package/web/.next/server/chunks/ssr/_0p3~u8u._.js +2 -2
  415. package/web/.next/server/chunks/ssr/_0p3~u8u._.js.map +1 -1
  416. package/web/.next/server/chunks/ssr/_0r.3n~3._.js +1 -1
  417. package/web/.next/server/chunks/ssr/_0r.3n~3._.js.map +1 -1
  418. package/web/.next/server/chunks/ssr/_0rcx2-c._.js +9 -0
  419. package/web/.next/server/chunks/ssr/_0rcx2-c._.js.map +1 -0
  420. package/web/.next/server/chunks/ssr/_0t59q8r._.js +1 -1
  421. package/web/.next/server/chunks/ssr/_0t59q8r._.js.map +1 -1
  422. package/web/.next/server/chunks/ssr/_0tcccbb._.js +1 -1
  423. package/web/.next/server/chunks/ssr/_0tcccbb._.js.map +1 -1
  424. package/web/.next/server/chunks/ssr/_0tfz1v_._.js +3 -0
  425. package/web/.next/server/chunks/ssr/_0tfz1v_._.js.map +1 -0
  426. package/web/.next/server/chunks/ssr/{_00k65h-._.js → _0u3d8.n._.js} +2 -2
  427. package/web/.next/server/chunks/ssr/_0u3d8.n._.js.map +1 -0
  428. package/web/.next/server/chunks/ssr/_0vjw-e_._.js +7 -0
  429. package/web/.next/server/chunks/ssr/_0vjw-e_._.js.map +1 -0
  430. package/web/.next/server/chunks/ssr/_0vyfc4b._.js +1 -1
  431. package/web/.next/server/chunks/ssr/_0vyfc4b._.js.map +1 -1
  432. package/web/.next/server/chunks/ssr/_0w-_hww._.js +1 -1
  433. package/web/.next/server/chunks/ssr/_0w-_hww._.js.map +1 -1
  434. package/web/.next/server/chunks/ssr/_0ygafoy._.js +7 -0
  435. package/web/.next/server/chunks/ssr/_0ygafoy._.js.map +1 -0
  436. package/web/.next/server/chunks/ssr/_0zk-h5w._.js +1 -1
  437. package/web/.next/server/chunks/ssr/_0zk-h5w._.js.map +1 -1
  438. package/web/.next/server/chunks/ssr/_0~7lwu_._.js +1 -1
  439. package/web/.next/server/chunks/ssr/_0~7lwu_._.js.map +1 -1
  440. package/web/.next/server/chunks/ssr/_10joy2y._.js +3 -0
  441. package/web/.next/server/chunks/ssr/_10joy2y._.js.map +1 -0
  442. package/web/.next/server/chunks/ssr/_1161g9x._.js +1 -1
  443. package/web/.next/server/chunks/ssr/_1161g9x._.js.map +1 -1
  444. package/web/.next/server/chunks/ssr/_12uy.45._.js +3 -0
  445. package/web/.next/server/chunks/ssr/_12uy.45._.js.map +1 -0
  446. package/web/.next/server/chunks/ssr/src_presentation_web_0y11iiz._.js +1 -1
  447. package/web/.next/server/chunks/ssr/src_presentation_web_0y11iiz._.js.map +1 -1
  448. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_plugins_page_actions_0rdndum.js +3 -0
  449. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_plugins_page_actions_0rdndum.js.map +1 -0
  450. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js +1 -1
  451. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_05m2q~u.js.map +1 -1
  452. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js +1 -1
  453. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_0.6zk.t.js.map +1 -1
  454. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_approve-feature_ts_0pjb_re._.js +1 -1
  455. package/web/.next/server/chunks/ssr/src_presentation_web_app_actions_open-ide_ts_0w2wqvu._.js +1 -1
  456. package/web/.next/server/chunks/ssr/src_presentation_web_components_0sk2qdt._.js +1 -1
  457. package/web/.next/server/chunks/ssr/src_presentation_web_components_0sk2qdt._.js.map +1 -1
  458. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js +1 -1
  459. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_0l3oxx9._.js.map +1 -1
  460. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_0aji.op._.js +1 -1
  461. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_0aji.op._.js.map +1 -1
  462. package/web/.next/server/middleware-build-manifest.js +3 -3
  463. package/web/.next/server/next-font-manifest.js +1 -1
  464. package/web/.next/server/next-font-manifest.json +63 -2
  465. package/web/.next/server/pages/500.html +1 -1
  466. package/web/.next/server/server-reference-manifest.js +1 -1
  467. package/web/.next/server/server-reference-manifest.json +187 -61
  468. package/web/.next/static/chunks/{0q8ax~44oybo2.js → 01~u_q8i2zgcl.js} +2 -2
  469. package/web/.next/static/chunks/{0-woqr2brccx_.js → 025ml1.quzhqf.js} +1 -1
  470. package/web/.next/static/chunks/{0fg~vc93spa9c.js → 07gal-~-zwagj.js} +1 -1
  471. package/web/.next/static/chunks/07le1mov593z9.js +1 -0
  472. package/web/.next/static/chunks/{0ls0v8h_qbctm.js → 09ungqk9~va40.js} +1 -1
  473. package/web/.next/static/chunks/0ab36sfvo.9ai.js +1 -0
  474. package/web/.next/static/chunks/0aq9-lg.5r.nk.js +5 -0
  475. package/web/.next/static/chunks/{11bi612fz8agh.js → 0b2pi58fg3lt3.js} +1 -1
  476. package/web/.next/static/chunks/{022nrd6snse79.js → 0cvyulutrctst.js} +1 -1
  477. package/web/.next/static/chunks/0eqi_uuiepxhf.js +1 -0
  478. package/web/.next/static/chunks/0inayq2zzadja.js +1 -0
  479. package/web/.next/static/chunks/{0t3xjndx2s1_j.css → 0j.1nx3ly591i.css} +1 -0
  480. package/web/.next/static/chunks/{0v~n9z6b639zm.js → 0jwq.mr-.ltps.js} +1 -1
  481. package/web/.next/static/chunks/0k8m.qcahm63g.js +1 -0
  482. package/web/.next/static/chunks/0lc0x8kcu46ae.js +1 -0
  483. package/web/.next/static/chunks/0lz-oq74e_ciu.js +1 -0
  484. package/web/.next/static/chunks/0nkujbu62z1jl.js +7 -0
  485. package/web/.next/static/chunks/0o4m0k3642219.js +1 -0
  486. package/web/.next/static/chunks/0oadtfnesfdqc.js +1 -0
  487. package/web/.next/static/chunks/0udlnp30o1kjd.js +5 -0
  488. package/web/.next/static/chunks/{0q7ohuqneuur4.js → 0uryz2ek77e2a.js} +1 -1
  489. package/web/.next/static/chunks/0v7r7y~3e~oo6.css +1 -0
  490. package/web/.next/static/chunks/0xo.hi4px83w2.js +1 -0
  491. package/web/.next/static/chunks/{0j.wph28jrce1.js → 0xr0p_ynap2~d.js} +1 -1
  492. package/web/.next/static/chunks/0xtzpbc5mm5z7.js +5 -0
  493. package/web/.next/static/chunks/{02phgt~f2c-2q.js → 0~-kk8o121_13.js} +1 -1
  494. package/web/.next/static/chunks/13q1peb_t9vj8.js +1 -0
  495. package/web/.next/static/chunks/{0ps5sykbi-z5-.js → 16k169s1a_8ru.js} +1 -1
  496. package/web/.next/static/chunks/{0ma7k9iohb3bb.js → 17dp77weos4ao.js} +1 -1
  497. package/web/.next/static/media/1bffadaabf893a1e-s.16ipb6fqu393i.woff2 +0 -0
  498. package/web/.next/static/media/2bbe8d2671613f1f-s.067x_6k0k23tk.woff2 +0 -0
  499. package/web/.next/static/media/2c55a0e60120577a-s.0bjc5tiuqdqro.woff2 +0 -0
  500. package/web/.next/static/media/5476f68d60460930-s.0wxq9webf.ew4.woff2 +0 -0
  501. package/web/.next/static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2 +0 -0
  502. package/web/.next/static/media/9c72aa0f40e4eef8-s.0m6w47a4e5dy9.woff2 +0 -0
  503. package/web/.next/static/media/ad66f9afd8947f86-s.11u06r12fd6v_.woff2 +0 -0
  504. package/web/package.json +2 -2
  505. package/web/public/favicon.svg +10 -0
  506. package/web/public/icons/tools/antigravity.svg +1 -0
  507. package/web/public/icons/tools/bash.svg +38 -0
  508. package/web/public/icons/tools/cursor-cli.svg +12 -0
  509. package/web/public/icons/tools/cursor.svg +1 -0
  510. package/web/public/icons/tools/fish.svg +153 -0
  511. package/web/public/icons/tools/powershell.svg +29 -0
  512. package/web/public/icons/tools/zsh.svg +1 -0
  513. package/web/.next/server/chunks/ssr/08qz_lucide-react_dist_esm_icons_0zwb4s4._.js +0 -3
  514. package/web/.next/server/chunks/ssr/08qz_lucide-react_dist_esm_icons_0zwb4s4._.js.map +0 -1
  515. package/web/.next/server/chunks/ssr/[root-of-the-server]__0c0xoi_._.js +0 -3
  516. package/web/.next/server/chunks/ssr/[root-of-the-server]__0c0xoi_._.js.map +0 -1
  517. package/web/.next/server/chunks/ssr/[root-of-the-server]__0lslgap._.js +0 -7
  518. package/web/.next/server/chunks/ssr/[root-of-the-server]__0lslgap._.js.map +0 -1
  519. package/web/.next/server/chunks/ssr/[root-of-the-server]__0rvrr1j._.js.map +0 -1
  520. package/web/.next/server/chunks/ssr/_00k65h-._.js.map +0 -1
  521. package/web/.next/server/chunks/ssr/_00u~.41._.js.map +0 -1
  522. package/web/.next/server/chunks/ssr/_04s_q5r._.js.map +0 -1
  523. package/web/.next/server/chunks/ssr/_08i-c2n._.js +0 -3
  524. package/web/.next/server/chunks/ssr/_08i-c2n._.js.map +0 -1
  525. package/web/.next/server/chunks/ssr/_0aaotn-._.js +0 -3
  526. package/web/.next/server/chunks/ssr/_0aaotn-._.js.map +0 -1
  527. package/web/.next/server/chunks/ssr/_0e5cv3q._.js.map +0 -1
  528. package/web/.next/server/chunks/ssr/_0gdghcr._.js +0 -3
  529. package/web/.next/server/chunks/ssr/_0gdghcr._.js.map +0 -1
  530. package/web/.next/server/chunks/ssr/_0hwjfpu._.js.map +0 -1
  531. package/web/.next/server/chunks/ssr/_0hw~zvl._.js.map +0 -1
  532. package/web/.next/server/chunks/ssr/_0n.magx._.js +0 -3
  533. package/web/.next/server/chunks/ssr/_0n.magx._.js.map +0 -1
  534. package/web/.next/server/chunks/ssr/_0phryzt._.js +0 -3
  535. package/web/.next/server/chunks/ssr/_0phryzt._.js.map +0 -1
  536. package/web/.next/server/chunks/ssr/_0y8u4.e._.js +0 -9
  537. package/web/.next/server/chunks/ssr/_0y8u4.e._.js.map +0 -1
  538. package/web/.next/server/chunks/ssr/_12un22l._.js +0 -7
  539. package/web/.next/server/chunks/ssr/_12un22l._.js.map +0 -1
  540. package/web/.next/static/chunks/0-lu0b1ewsb0_.js +0 -1
  541. package/web/.next/static/chunks/01~dudieyb7wl.js +0 -5
  542. package/web/.next/static/chunks/02kpdawdtqcxm.js +0 -1
  543. package/web/.next/static/chunks/03s7z6w1lj0w~.js +0 -1
  544. package/web/.next/static/chunks/04~sw.nhpwy6s.css +0 -1
  545. package/web/.next/static/chunks/05enics63g._-.js +0 -7
  546. package/web/.next/static/chunks/08611baheit.t.js +0 -1
  547. package/web/.next/static/chunks/0_9k2ybutuphq.js +0 -1
  548. package/web/.next/static/chunks/0m5~9kij3s~81.js +0 -1
  549. package/web/.next/static/chunks/0n3kuj7t_-jzp.js +0 -1
  550. package/web/.next/static/chunks/0q~uf2s33.48w.js +0 -1
  551. package/web/.next/static/chunks/15m2wfd5k_7fj.js +0 -1
  552. package/web/.next/static/chunks/15rbgqykl.er8.js +0 -1
  553. package/web/.next/static/chunks/164dnpi666fv_.js +0 -5
  554. package/web/.next/static/chunks/17z2sq7c5z8cr.js +0 -5
  555. /package/web/.next/server/chunks/{[root-of-the-server]__0zu_byw._.js.map → [root-of-the-server]__07suer1._.js.map} +0 -0
  556. /package/web/.next/server/chunks/{[root-of-the-server]__0u1jyv9._.js.map → [root-of-the-server]__0sgzo7y._.js.map} +0 -0
  557. /package/web/.next/server/chunks/{[root-of-the-server]__08cpfre._.js.map → [root-of-the-server]__0uxlr84._.js.map} +0 -0
  558. /package/web/.next/static/{GSG_c1emY-f_AA00vD56y → vD7xT4_iwKDhgj4-rr637}/_buildManifest.js +0 -0
  559. /package/web/.next/static/{GSG_c1emY-f_AA00vD56y → vD7xT4_iwKDhgj4-rr637}/_clientMiddlewareManifest.js +0 -0
  560. /package/web/.next/static/{GSG_c1emY-f_AA00vD56y → vD7xT4_iwKDhgj4-rr637}/_ssgManifest.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "node": {
3
- "0086c5b619a2c7688c2d770674d578f317e0551f3a": {
3
+ "0000580db77af91e7fff00b0b4403fa4feb2a2d993": {
4
4
  "workers": {
5
5
  "app/(dashboard)/@drawer/adopt/page": {
6
6
  "moduleId": 81306,
@@ -92,8 +92,14 @@
92
92
  "exportedName": "getAllAgentModels",
93
93
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
94
94
  },
95
+ "app/plugins/page": {
96
+ "moduleId": 20289,
97
+ "async": false,
98
+ "exportedName": "getAllAgentModels",
99
+ "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
100
+ },
95
101
  "app/settings/page": {
96
- "moduleId": 87459,
102
+ "moduleId": 90104,
97
103
  "async": false,
98
104
  "exportedName": "getAllAgentModels",
99
105
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts"
@@ -120,7 +126,7 @@
120
126
  "filename": "src/presentation/web/app/actions/get-all-agent-models.ts",
121
127
  "exportedName": "getAllAgentModels"
122
128
  },
123
- "60e03e2b32b2e6ef0f3959da5f546f1829e41c0331": {
129
+ "609fb82c7c6c89ca50673823098e498a09a9fec629": {
124
130
  "workers": {
125
131
  "app/(dashboard)/@drawer/adopt/page": {
126
132
  "moduleId": 81306,
@@ -212,8 +218,14 @@
212
218
  "exportedName": "updateAgentAndModel",
213
219
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
214
220
  },
221
+ "app/plugins/page": {
222
+ "moduleId": 20289,
223
+ "async": false,
224
+ "exportedName": "updateAgentAndModel",
225
+ "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
226
+ },
215
227
  "app/settings/page": {
216
- "moduleId": 87459,
228
+ "moduleId": 90104,
217
229
  "async": false,
218
230
  "exportedName": "updateAgentAndModel",
219
231
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts"
@@ -240,7 +252,7 @@
240
252
  "filename": "src/presentation/web/app/actions/update-agent-and-model.ts",
241
253
  "exportedName": "updateAgentAndModel"
242
254
  },
243
- "00ea228127ac18606161ce9cb8812c4f137123b655": {
255
+ "0090338ccf5fa07afdb8e7be418d00bc55439e87cb": {
244
256
  "workers": {
245
257
  "app/(dashboard)/@drawer/adopt/page": {
246
258
  "moduleId": 81306,
@@ -332,8 +344,14 @@
332
344
  "exportedName": "pickFolder",
333
345
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
334
346
  },
347
+ "app/plugins/page": {
348
+ "moduleId": 20289,
349
+ "async": false,
350
+ "exportedName": "pickFolder",
351
+ "filename": "src/presentation/web/app/actions/pick-folder.ts"
352
+ },
335
353
  "app/settings/page": {
336
- "moduleId": 87459,
354
+ "moduleId": 90104,
337
355
  "async": false,
338
356
  "exportedName": "pickFolder",
339
357
  "filename": "src/presentation/web/app/actions/pick-folder.ts"
@@ -360,7 +378,7 @@
360
378
  "filename": "src/presentation/web/app/actions/pick-folder.ts",
361
379
  "exportedName": "pickFolder"
362
380
  },
363
- "404ef28f7033751ea5088eeb4eed9d603e6408c9ff": {
381
+ "408634cd96c67a639ac703b296c3737d0bd811beb4": {
364
382
  "workers": {
365
383
  "app/(dashboard)/@drawer/adopt/page": {
366
384
  "moduleId": 81306,
@@ -452,8 +470,14 @@
452
470
  "exportedName": "listGitHubRepositories",
453
471
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
454
472
  },
473
+ "app/plugins/page": {
474
+ "moduleId": 20289,
475
+ "async": false,
476
+ "exportedName": "listGitHubRepositories",
477
+ "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
478
+ },
455
479
  "app/settings/page": {
456
- "moduleId": 87459,
480
+ "moduleId": 90104,
457
481
  "async": false,
458
482
  "exportedName": "listGitHubRepositories",
459
483
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts"
@@ -480,7 +504,7 @@
480
504
  "filename": "src/presentation/web/app/actions/list-github-repositories.ts",
481
505
  "exportedName": "listGitHubRepositories"
482
506
  },
483
- "000e07b0fee197bbb9883c456356a27dd5a461fa0c": {
507
+ "00943ac6a9bbebcc818933091a5b18b1078e166fba": {
484
508
  "workers": {
485
509
  "app/(dashboard)/@drawer/adopt/page": {
486
510
  "moduleId": 81306,
@@ -572,8 +596,14 @@
572
596
  "exportedName": "listGitHubOrganizations",
573
597
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
574
598
  },
599
+ "app/plugins/page": {
600
+ "moduleId": 20289,
601
+ "async": false,
602
+ "exportedName": "listGitHubOrganizations",
603
+ "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
604
+ },
575
605
  "app/settings/page": {
576
- "moduleId": 87459,
606
+ "moduleId": 90104,
577
607
  "async": false,
578
608
  "exportedName": "listGitHubOrganizations",
579
609
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts"
@@ -600,7 +630,7 @@
600
630
  "filename": "src/presentation/web/app/actions/list-github-organizations.ts",
601
631
  "exportedName": "listGitHubOrganizations"
602
632
  },
603
- "40f9f1c6b44ed613d89ca546ee32fc98aac07d88eb": {
633
+ "408739906befd13eb590447705120aa8421c1352f2": {
604
634
  "workers": {
605
635
  "app/(dashboard)/@drawer/adopt/page": {
606
636
  "moduleId": 81306,
@@ -692,8 +722,14 @@
692
722
  "exportedName": "importGitHubRepository",
693
723
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
694
724
  },
725
+ "app/plugins/page": {
726
+ "moduleId": 20289,
727
+ "async": false,
728
+ "exportedName": "importGitHubRepository",
729
+ "filename": "src/presentation/web/app/actions/import-github-repository.ts"
730
+ },
695
731
  "app/settings/page": {
696
- "moduleId": 87459,
732
+ "moduleId": 90104,
697
733
  "async": false,
698
734
  "exportedName": "importGitHubRepository",
699
735
  "filename": "src/presentation/web/app/actions/import-github-repository.ts"
@@ -720,7 +756,7 @@
720
756
  "filename": "src/presentation/web/app/actions/import-github-repository.ts",
721
757
  "exportedName": "importGitHubRepository"
722
758
  },
723
- "404b5999bc6f96926423c290ad57510ec557128832": {
759
+ "4003593de16b2e247ab1eb1181c364062f68e7d307": {
724
760
  "workers": {
725
761
  "app/(dashboard)/@drawer/adopt/page": {
726
762
  "moduleId": 81306,
@@ -806,6 +842,12 @@
806
842
  "exportedName": "deployFeature",
807
843
  "filename": "src/presentation/web/app/actions/deploy-feature.ts"
808
844
  },
845
+ "app/plugins/page": {
846
+ "moduleId": 20289,
847
+ "async": false,
848
+ "exportedName": "deployFeature",
849
+ "filename": "src/presentation/web/app/actions/deploy-feature.ts"
850
+ },
809
851
  "app/skills/page": {
810
852
  "moduleId": 14937,
811
853
  "async": false,
@@ -822,7 +864,7 @@
822
864
  "filename": "src/presentation/web/app/actions/deploy-feature.ts",
823
865
  "exportedName": "deployFeature"
824
866
  },
825
- "40e59c0a6c3e3a01829eb5f700ab316233fff8bf04": {
867
+ "40f783df18e347ff4383dad5da16846a131bec83cd": {
826
868
  "workers": {
827
869
  "app/(dashboard)/@drawer/adopt/page": {
828
870
  "moduleId": 81306,
@@ -908,6 +950,12 @@
908
950
  "exportedName": "deployRepository",
909
951
  "filename": "src/presentation/web/app/actions/deploy-repository.ts"
910
952
  },
953
+ "app/plugins/page": {
954
+ "moduleId": 20289,
955
+ "async": false,
956
+ "exportedName": "deployRepository",
957
+ "filename": "src/presentation/web/app/actions/deploy-repository.ts"
958
+ },
911
959
  "app/skills/page": {
912
960
  "moduleId": 14937,
913
961
  "async": false,
@@ -924,7 +972,7 @@
924
972
  "filename": "src/presentation/web/app/actions/deploy-repository.ts",
925
973
  "exportedName": "deployRepository"
926
974
  },
927
- "40edd08872ca1b2ff19b22b0c1da3d720f7133c7ab": {
975
+ "40b67327258d66cc740b47723a9276348e1a748e30": {
928
976
  "workers": {
929
977
  "app/(dashboard)/@drawer/adopt/page": {
930
978
  "moduleId": 81306,
@@ -1010,6 +1058,12 @@
1010
1058
  "exportedName": "stopDeployment",
1011
1059
  "filename": "src/presentation/web/app/actions/stop-deployment.ts"
1012
1060
  },
1061
+ "app/plugins/page": {
1062
+ "moduleId": 20289,
1063
+ "async": false,
1064
+ "exportedName": "stopDeployment",
1065
+ "filename": "src/presentation/web/app/actions/stop-deployment.ts"
1066
+ },
1013
1067
  "app/skills/page": {
1014
1068
  "moduleId": 14937,
1015
1069
  "async": false,
@@ -1026,7 +1080,7 @@
1026
1080
  "filename": "src/presentation/web/app/actions/stop-deployment.ts",
1027
1081
  "exportedName": "stopDeployment"
1028
1082
  },
1029
- "40e192a818a5b7bc1a5380b2a3a023ee6fa5bd962b": {
1083
+ "4058eda81dd47fff6d7ff1fce41ebebe1295013330": {
1030
1084
  "workers": {
1031
1085
  "app/(dashboard)/@drawer/adopt/page": {
1032
1086
  "moduleId": 81306,
@@ -1112,6 +1166,12 @@
1112
1166
  "exportedName": "getDeploymentStatus",
1113
1167
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1114
1168
  },
1169
+ "app/plugins/page": {
1170
+ "moduleId": 20289,
1171
+ "async": false,
1172
+ "exportedName": "getDeploymentStatus",
1173
+ "filename": "src/presentation/web/app/actions/get-deployment-status.ts"
1174
+ },
1115
1175
  "app/skills/page": {
1116
1176
  "moduleId": 14937,
1117
1177
  "async": false,
@@ -1128,7 +1188,7 @@
1128
1188
  "filename": "src/presentation/web/app/actions/get-deployment-status.ts",
1129
1189
  "exportedName": "getDeploymentStatus"
1130
1190
  },
1131
- "40bd95378f85d9fc8677f238428349adf4a666b28d": {
1191
+ "40f3d51b9274fcab47195c76d09141c17508842170": {
1132
1192
  "workers": {
1133
1193
  "app/(dashboard)/@drawer/adopt/page": {
1134
1194
  "moduleId": 81306,
@@ -1218,7 +1278,7 @@
1218
1278
  "filename": "src/presentation/web/app/actions/open-ide.ts",
1219
1279
  "exportedName": "openIde"
1220
1280
  },
1221
- "40eb980e322cab0e8eec73a5d80533863ac11b71f8": {
1281
+ "4000905392bc403639c2275018d0e77a4caaef76df": {
1222
1282
  "workers": {
1223
1283
  "app/(dashboard)/@drawer/adopt/page": {
1224
1284
  "moduleId": 81306,
@@ -1308,7 +1368,7 @@
1308
1368
  "filename": "src/presentation/web/app/actions/open-shell.ts",
1309
1369
  "exportedName": "openShell"
1310
1370
  },
1311
- "4008539e4d47c679220460e3e897439c27791e86f3": {
1371
+ "4071fe82b6e1a66c52b851807ccb61247524482573": {
1312
1372
  "workers": {
1313
1373
  "app/(dashboard)/@drawer/adopt/page": {
1314
1374
  "moduleId": 81306,
@@ -1398,7 +1458,7 @@
1398
1458
  "filename": "src/presentation/web/app/actions/open-folder.ts",
1399
1459
  "exportedName": "openFolder"
1400
1460
  },
1401
- "40092b620bf789d5f068a5a6ca6ff5f9a9da65ad18": {
1461
+ "40454d1aa8b3a4642e6211000ea814a233e91f33fa": {
1402
1462
  "workers": {
1403
1463
  "app/(dashboard)/@drawer/adopt/page": {
1404
1464
  "moduleId": 81306,
@@ -1488,7 +1548,7 @@
1488
1548
  "filename": "src/presentation/web/app/actions/sync-repository.ts",
1489
1549
  "exportedName": "syncRepository"
1490
1550
  },
1491
- "402d65513b1f6015d46a7c893966623bcf1c9a8c43": {
1551
+ "40bd3bb683e8d887532e0550b87c3a7348c011aff2": {
1492
1552
  "workers": {
1493
1553
  "app/(dashboard)/@drawer/adopt/page": {
1494
1554
  "moduleId": 81306,
@@ -1574,6 +1634,12 @@
1574
1634
  "exportedName": "getDeploymentLogs",
1575
1635
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
1576
1636
  },
1637
+ "app/plugins/page": {
1638
+ "moduleId": 20289,
1639
+ "async": false,
1640
+ "exportedName": "getDeploymentLogs",
1641
+ "filename": "src/presentation/web/app/actions/get-deployment-logs.ts"
1642
+ },
1577
1643
  "app/skills/page": {
1578
1644
  "moduleId": 14937,
1579
1645
  "async": false,
@@ -1590,7 +1656,7 @@
1590
1656
  "filename": "src/presentation/web/app/actions/get-deployment-logs.ts",
1591
1657
  "exportedName": "getDeploymentLogs"
1592
1658
  },
1593
- "00330a8d9cee885d7bc3f693f2860bd1c8047adfda": {
1659
+ "004f0662883886d46f8f0aa0e3237f30af277b100f": {
1594
1660
  "workers": {
1595
1661
  "app/(dashboard)/@drawer/adopt/page": {
1596
1662
  "moduleId": 81306,
@@ -1680,7 +1746,7 @@
1680
1746
  "filename": "src/presentation/web/app/actions/agent-setup-flag.ts",
1681
1747
  "exportedName": "isAgentSetupComplete"
1682
1748
  },
1683
- "00d8d6691808e46f24a12aba9a772e135fabe25dc9": {
1749
+ "002ceffb20ae1d3ac63fd53234e0c6d44252281987": {
1684
1750
  "workers": {
1685
1751
  "app/(dashboard)/@drawer/adopt/page": {
1686
1752
  "moduleId": 81306,
@@ -1770,7 +1836,7 @@
1770
1836
  "filename": "src/presentation/web/app/actions/check-agent-auth.ts",
1771
1837
  "exportedName": "checkAgentAuth"
1772
1838
  },
1773
- "001be5d686fc82310b2a13cd91f69f4763cd8a7179": {
1839
+ "001ddaafa354b0082d657d33e7b50c9078e0f07089": {
1774
1840
  "workers": {
1775
1841
  "app/(dashboard)/@drawer/adopt/page": {
1776
1842
  "moduleId": 81306,
@@ -1860,7 +1926,7 @@
1860
1926
  "filename": "src/presentation/web/app/actions/check-tool-status.ts",
1861
1927
  "exportedName": "checkToolStatus"
1862
1928
  },
1863
- "404ca6022a436889616459953ffb37ff50f4e907ca": {
1929
+ "404c0c951e2ed0084c1b630626b6565caa37516576": {
1864
1930
  "workers": {
1865
1931
  "app/(dashboard)/@drawer/adopt/page": {
1866
1932
  "moduleId": 81306,
@@ -1950,7 +2016,7 @@
1950
2016
  "filename": "src/presentation/web/app/actions/get-feature-metadata.ts",
1951
2017
  "exportedName": "getFeatureMetadata"
1952
2018
  },
1953
- "402b0d65d22ce49539f2d2f698460e94770f7e8b2d": {
2019
+ "402c1830f68e5cf809663267102f6f918e87ae16fd": {
1954
2020
  "workers": {
1955
2021
  "app/(dashboard)/@drawer/adopt/page": {
1956
2022
  "moduleId": 81306,
@@ -2040,7 +2106,7 @@
2040
2106
  "filename": "src/presentation/web/app/actions/archive-feature.ts",
2041
2107
  "exportedName": "archiveFeature"
2042
2108
  },
2043
- "78905067eb607d1d1fee68a4dad95b6851ba1e358c": {
2109
+ "787e4b48cfb35d4de5dc6a79998ad4587ed8a92f09": {
2044
2110
  "workers": {
2045
2111
  "app/(dashboard)/@drawer/adopt/page": {
2046
2112
  "moduleId": 81306,
@@ -2130,7 +2196,7 @@
2130
2196
  "filename": "src/presentation/web/app/actions/delete-feature.ts",
2131
2197
  "exportedName": "deleteFeature"
2132
2198
  },
2133
- "40a8a21574a49332d0e088f4fb98d173266a767b8c": {
2199
+ "40baf0ac219033d57f793da8fe74eb8435030d7435": {
2134
2200
  "workers": {
2135
2201
  "app/(dashboard)/@drawer/adopt/page": {
2136
2202
  "moduleId": 81306,
@@ -2220,7 +2286,7 @@
2220
2286
  "filename": "src/presentation/web/app/actions/resume-feature.ts",
2221
2287
  "exportedName": "resumeFeature"
2222
2288
  },
2223
- "40acd38b09e329a002b25937d82d210ce17904a8b5": {
2289
+ "40b742fb0713b7ef0465b8050431742035410e7c64": {
2224
2290
  "workers": {
2225
2291
  "app/(dashboard)/@drawer/adopt/page": {
2226
2292
  "moduleId": 81306,
@@ -2310,7 +2376,7 @@
2310
2376
  "filename": "src/presentation/web/app/actions/start-feature.ts",
2311
2377
  "exportedName": "startFeature"
2312
2378
  },
2313
- "40362cbf555132f34944afb3ede38cbee4149319bb": {
2379
+ "40b7762dfbe789b59cb72ba6715e5ec9a56e8c5dc5": {
2314
2380
  "workers": {
2315
2381
  "app/(dashboard)/@drawer/adopt/page": {
2316
2382
  "moduleId": 81306,
@@ -2400,7 +2466,7 @@
2400
2466
  "filename": "src/presentation/web/app/actions/stop-feature.ts",
2401
2467
  "exportedName": "stopFeature"
2402
2468
  },
2403
- "406ce7604dcd3a981529cce29e8f800f01766b4619": {
2469
+ "40d986834a58b0b6eba9c95b1b00072bdbef700171": {
2404
2470
  "workers": {
2405
2471
  "app/(dashboard)/@drawer/adopt/page": {
2406
2472
  "moduleId": 81306,
@@ -2490,7 +2556,7 @@
2490
2556
  "filename": "src/presentation/web/app/actions/unarchive-feature.ts",
2491
2557
  "exportedName": "unarchiveFeature"
2492
2558
  },
2493
- "4066e37c6a9d686acc8b9b189bce05732045800364": {
2559
+ "40f5697183d73677b2420b6cd9074a858af1a35468": {
2494
2560
  "workers": {
2495
2561
  "app/(dashboard)/@drawer/adopt/page": {
2496
2562
  "moduleId": 81306,
@@ -2580,7 +2646,7 @@
2580
2646
  "filename": "src/presentation/web/app/actions/add-repository.ts",
2581
2647
  "exportedName": "addRepository"
2582
2648
  },
2583
- "4041a5239db59b27ce7c01c1528406ce2fc3d85c95": {
2649
+ "404b5e4e49a2b2b4d030994d00736966ba609002df": {
2584
2650
  "workers": {
2585
2651
  "app/(dashboard)/@drawer/adopt/page": {
2586
2652
  "moduleId": 81306,
@@ -2670,7 +2736,7 @@
2670
2736
  "filename": "src/presentation/web/app/actions/delete-repository.ts",
2671
2737
  "exportedName": "deleteRepository"
2672
2738
  },
2673
- "408f3b274cbb59d13b83f5c155d4ffe193165c81c7": {
2739
+ "40621a6e6056fe6955be7aec5f3b5d703021d84e52": {
2674
2740
  "workers": {
2675
2741
  "app/(dashboard)/@drawer/adopt/page": {
2676
2742
  "moduleId": 81306,
@@ -2682,7 +2748,7 @@
2682
2748
  "filename": "src/presentation/web/app/actions/adopt-branch.ts",
2683
2749
  "exportedName": "adoptBranch"
2684
2750
  },
2685
- "400bbc614170cb2895f0093a9049f68bf554f266e8": {
2751
+ "40d3d349d4794902125d2f8f57bdc6e0e17628fae2": {
2686
2752
  "workers": {
2687
2753
  "app/(dashboard)/@drawer/adopt/page": {
2688
2754
  "moduleId": 81306,
@@ -2694,7 +2760,7 @@
2694
2760
  "filename": "src/presentation/web/app/actions/list-branches.ts",
2695
2761
  "exportedName": "listBranches"
2696
2762
  },
2697
- "0079998cf76fa50ee98b5752d71cdef87c5318afad": {
2763
+ "00860d13d1892bcdfff33ba024e6117dc312232772": {
2698
2764
  "workers": {
2699
2765
  "app/(dashboard)/@drawer/create/page": {
2700
2766
  "moduleId": 81881,
@@ -2712,7 +2778,7 @@
2712
2778
  "filename": "src/presentation/web/app/actions/get-workflow-defaults.ts",
2713
2779
  "exportedName": "getWorkflowDefaults"
2714
2780
  },
2715
- "4069f57f0d34e289af3cfa0734279177b177dd6959": {
2781
+ "40b045d24f72856e1241d2b375027f5604fb4d987b": {
2716
2782
  "workers": {
2717
2783
  "app/(dashboard)/@drawer/create/page": {
2718
2784
  "moduleId": 81881,
@@ -2730,7 +2796,7 @@
2730
2796
  "filename": "src/presentation/web/app/actions/get-viewer-permission.ts",
2731
2797
  "exportedName": "getViewerPermission"
2732
2798
  },
2733
- "40878c40fdd8bf1158c65705e258db24c352cc63fa": {
2799
+ "40d52ef8963e73f4c49c578511b667815e9c094aad": {
2734
2800
  "workers": {
2735
2801
  "app/(dashboard)/@drawer/create/page": {
2736
2802
  "moduleId": 81881,
@@ -2748,7 +2814,7 @@
2748
2814
  "filename": "src/presentation/web/app/actions/create-feature.ts",
2749
2815
  "exportedName": "createFeature"
2750
2816
  },
2751
- "40f5d7c31967e1f2aba3b4d8dc6783df53c1d7fbf3": {
2817
+ "4054c0f16e73d7d7962ab8ab99395a1d269c3a2233": {
2752
2818
  "workers": {
2753
2819
  "app/(dashboard)/@drawer/create/page": {
2754
2820
  "moduleId": 81881,
@@ -2766,7 +2832,7 @@
2766
2832
  "filename": "src/presentation/web/app/actions/agent-permissions.ts",
2767
2833
  "exportedName": "getAgentPermissionOptions"
2768
2834
  },
2769
- "60abd10dc8e5b4f83bf853f3f21fa9cccad2241971": {
2835
+ "60755eca880710d7d978f6ad7afb78d179fb952241": {
2770
2836
  "workers": {
2771
2837
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2772
2838
  "moduleId": 23461,
@@ -2796,7 +2862,7 @@
2796
2862
  "filename": "src/presentation/web/app/actions/approve-feature.ts",
2797
2863
  "exportedName": "approveFeature"
2798
2864
  },
2799
- "70a1d4481d01fe36d34e84b6ef71b544f7c7ab721f": {
2865
+ "70c6158c60105cee47efe428412f0de6ebb2679632": {
2800
2866
  "workers": {
2801
2867
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2802
2868
  "moduleId": 23461,
@@ -2826,7 +2892,7 @@
2826
2892
  "filename": "src/presentation/web/app/actions/reject-feature.ts",
2827
2893
  "exportedName": "rejectFeature"
2828
2894
  },
2829
- "40622e25d96a4251c71fbe074ba00eebf8991f8a09": {
2895
+ "40ca00868cbab68044d8e9add4f5ec7be4eb5b49c3": {
2830
2896
  "workers": {
2831
2897
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2832
2898
  "moduleId": 23461,
@@ -2856,7 +2922,7 @@
2856
2922
  "filename": "src/presentation/web/app/actions/get-feature-artifact.ts",
2857
2923
  "exportedName": "getFeatureArtifact"
2858
2924
  },
2859
- "40e686489c0aa1bbb1d260e2f5e75991aa10c7da00": {
2925
+ "401c96f1aca3ed9e9af362eb9a61e156a8d17cb138": {
2860
2926
  "workers": {
2861
2927
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2862
2928
  "moduleId": 23461,
@@ -2886,7 +2952,7 @@
2886
2952
  "filename": "src/presentation/web/app/actions/get-research-artifact.ts",
2887
2953
  "exportedName": "getResearchArtifact"
2888
2954
  },
2889
- "40676280ec04a8fb9911aed35526add3d5dcabceb5": {
2955
+ "40aefd6db34ef9f33d85cd2f2a56a60edf7f120612": {
2890
2956
  "workers": {
2891
2957
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2892
2958
  "moduleId": 23461,
@@ -2916,7 +2982,7 @@
2916
2982
  "filename": "src/presentation/web/app/actions/get-merge-review-data.ts",
2917
2983
  "exportedName": "getMergeReviewData"
2918
2984
  },
2919
- "4059ed1e505eac67da32c3c78bbe4d6b1a03c745aa": {
2985
+ "40ee6a5a062f38264a7448ad567f062f73a7233388": {
2920
2986
  "workers": {
2921
2987
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2922
2988
  "moduleId": 23461,
@@ -2946,7 +3012,7 @@
2946
3012
  "filename": "src/presentation/web/app/actions/get-feature-phase-timings.ts",
2947
3013
  "exportedName": "getFeaturePhaseTimings"
2948
3014
  },
2949
- "40264a0e8aa31093405bf11a13dc53f8246fcdcda8": {
3015
+ "4044f86e4455ce9c124ecb5e992271ad95733f9085": {
2950
3016
  "workers": {
2951
3017
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2952
3018
  "moduleId": 23461,
@@ -2976,7 +3042,7 @@
2976
3042
  "filename": "src/presentation/web/app/actions/get-feature-plan.ts",
2977
3043
  "exportedName": "getFeaturePlan"
2978
3044
  },
2979
- "40b4c5ddade5ca3e5a4ed744a9be304f8878f61126": {
3045
+ "40bcf813fba0f13b2f10f2010bc466c6c1c3f0636d": {
2980
3046
  "workers": {
2981
3047
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
2982
3048
  "moduleId": 23461,
@@ -3006,7 +3072,7 @@
3006
3072
  "filename": "src/presentation/web/app/actions/rebase-feature.ts",
3007
3073
  "exportedName": "rebaseFeature"
3008
3074
  },
3009
- "4092844beeec7e69b4215ca3d5e9572a3e5d9dee9a": {
3075
+ "40420b6cdddf339640da9ad1fdd720ecb549d5f1dc": {
3010
3076
  "workers": {
3011
3077
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3012
3078
  "moduleId": 23461,
@@ -3036,7 +3102,7 @@
3036
3102
  "filename": "src/presentation/web/app/actions/get-feature-drawer-data.ts",
3037
3103
  "exportedName": "getFeatureDrawerData"
3038
3104
  },
3039
- "402a277279e72c3716df12ecb249365a389b42e49a": {
3105
+ "40800e63fa88206e5dc18cbe91427fd16ed46648dc": {
3040
3106
  "workers": {
3041
3107
  "app/(dashboard)/@drawer/feature/[featureId]/[tab]/page": {
3042
3108
  "moduleId": 23461,
@@ -3066,7 +3132,7 @@
3066
3132
  "filename": "src/presentation/web/app/actions/get-branch-sync-status.ts",
3067
3133
  "exportedName": "getBranchSyncStatus"
3068
3134
  },
3069
- "60b248e3d45b17fcf6b37eb400bccba94bfb271dc9": {
3135
+ "606bc618168107f547236e456685b2165dc6e30c16": {
3070
3136
  "workers": {
3071
3137
  "app/(dashboard)/@drawer/repository/[repositoryId]/[tab]/page": {
3072
3138
  "moduleId": 59044,
@@ -3096,10 +3162,58 @@
3096
3162
  "filename": "src/presentation/web/app/actions/get-git-log.ts",
3097
3163
  "exportedName": "getGitRepoInfo"
3098
3164
  },
3099
- "00d3b7d863598d5b96861124277559aba0b6119f79": {
3165
+ "00f370f754383699689def4d7a4898a8ee347acd3a": {
3166
+ "workers": {
3167
+ "app/plugins/page": {
3168
+ "moduleId": 20289,
3169
+ "async": false,
3170
+ "exportedName": "fetchPluginCatalogAction",
3171
+ "filename": "src/presentation/web/app/actions/fetch-plugin-catalog.ts"
3172
+ }
3173
+ },
3174
+ "filename": "src/presentation/web/app/actions/fetch-plugin-catalog.ts",
3175
+ "exportedName": "fetchPluginCatalogAction"
3176
+ },
3177
+ "70f4c685c6bd13716e115901c7108a2637aaacf6ae": {
3178
+ "workers": {
3179
+ "app/plugins/page": {
3180
+ "moduleId": 20289,
3181
+ "async": false,
3182
+ "exportedName": "installPluginAction",
3183
+ "filename": "src/presentation/web/app/actions/install-plugin.ts"
3184
+ }
3185
+ },
3186
+ "filename": "src/presentation/web/app/actions/install-plugin.ts",
3187
+ "exportedName": "installPluginAction"
3188
+ },
3189
+ "6046a455d6763fc37adeeffe8e51718a58c5e6cf48": {
3190
+ "workers": {
3191
+ "app/plugins/page": {
3192
+ "moduleId": 20289,
3193
+ "async": false,
3194
+ "exportedName": "uninstallPluginAction",
3195
+ "filename": "src/presentation/web/app/actions/uninstall-plugin.ts"
3196
+ }
3197
+ },
3198
+ "filename": "src/presentation/web/app/actions/uninstall-plugin.ts",
3199
+ "exportedName": "uninstallPluginAction"
3200
+ },
3201
+ "7093c2e65aae90392f738d1f50f2523f5a5bdd16e8": {
3202
+ "workers": {
3203
+ "app/plugins/page": {
3204
+ "moduleId": 20289,
3205
+ "async": false,
3206
+ "exportedName": "togglePluginAction",
3207
+ "filename": "src/presentation/web/app/actions/toggle-plugin.ts"
3208
+ }
3209
+ },
3210
+ "filename": "src/presentation/web/app/actions/toggle-plugin.ts",
3211
+ "exportedName": "togglePluginAction"
3212
+ },
3213
+ "007ce129e0d2e12867d06b686ba98ed576c8e406ab": {
3100
3214
  "workers": {
3101
3215
  "app/settings/page": {
3102
- "moduleId": 87459,
3216
+ "moduleId": 90104,
3103
3217
  "async": false,
3104
3218
  "exportedName": "loadSettings",
3105
3219
  "filename": "src/presentation/web/app/actions/load-settings.ts"
@@ -3108,10 +3222,10 @@
3108
3222
  "filename": "src/presentation/web/app/actions/load-settings.ts",
3109
3223
  "exportedName": "loadSettings"
3110
3224
  },
3111
- "005356b37b1e7a2bf8939e5a6e2930c2f4bd689531": {
3225
+ "0034f15573b9271c236044b8519334e3a61d93e23f": {
3112
3226
  "workers": {
3113
3227
  "app/settings/page": {
3114
- "moduleId": 87459,
3228
+ "moduleId": 90104,
3115
3229
  "async": false,
3116
3230
  "exportedName": "getAvailableTerminals",
3117
3231
  "filename": "src/presentation/web/app/actions/get-available-terminals.ts"
@@ -3120,10 +3234,10 @@
3120
3234
  "filename": "src/presentation/web/app/actions/get-available-terminals.ts",
3121
3235
  "exportedName": "getAvailableTerminals"
3122
3236
  },
3123
- "006d7cfcba3b311669fdcaab30a602f13b78b7e10a": {
3237
+ "0080ee586d0684d9f4b4645f96c989037ecedcf4dc": {
3124
3238
  "workers": {
3125
3239
  "app/settings/page": {
3126
- "moduleId": 87459,
3240
+ "moduleId": 90104,
3127
3241
  "async": false,
3128
3242
  "exportedName": "getAvailableEditors",
3129
3243
  "filename": "src/presentation/web/app/actions/get-available-editors.ts"
@@ -3132,10 +3246,10 @@
3132
3246
  "filename": "src/presentation/web/app/actions/get-available-editors.ts",
3133
3247
  "exportedName": "getAvailableEditors"
3134
3248
  },
3135
- "00061a0f7d7a5aba05b0a74877adf2b1d7303d1a44": {
3249
+ "00cb8349f95906641986aa079108725f5274d49d28": {
3136
3250
  "workers": {
3137
3251
  "app/settings/page": {
3138
- "moduleId": 87459,
3252
+ "moduleId": 90104,
3139
3253
  "async": false,
3140
3254
  "exportedName": "getAvailableShells",
3141
3255
  "filename": "src/presentation/web/app/actions/get-available-shells.ts"
@@ -3144,10 +3258,10 @@
3144
3258
  "filename": "src/presentation/web/app/actions/get-available-shells.ts",
3145
3259
  "exportedName": "getAvailableShells"
3146
3260
  },
3147
- "409785c8993760b4652102f4e96f3c920af1587f7f": {
3261
+ "40f6034f5630f0913a6fc804f42a3f4665d98660f1": {
3148
3262
  "workers": {
3149
3263
  "app/settings/page": {
3150
- "moduleId": 87459,
3264
+ "moduleId": 90104,
3151
3265
  "async": false,
3152
3266
  "exportedName": "updateSettingsAction",
3153
3267
  "filename": "src/presentation/web/app/actions/update-settings.ts"
@@ -3155,8 +3269,20 @@
3155
3269
  },
3156
3270
  "filename": "src/presentation/web/app/actions/update-settings.ts",
3157
3271
  "exportedName": "updateSettingsAction"
3272
+ },
3273
+ "40d1eda7fb23ac126ea9175a6550044417de3bd6d1": {
3274
+ "workers": {
3275
+ "app/settings/page": {
3276
+ "moduleId": 90104,
3277
+ "async": false,
3278
+ "exportedName": "addMarketplaceAction",
3279
+ "filename": "src/presentation/web/app/actions/add-marketplace.ts"
3280
+ }
3281
+ },
3282
+ "filename": "src/presentation/web/app/actions/add-marketplace.ts",
3283
+ "exportedName": "addMarketplaceAction"
3158
3284
  }
3159
3285
  },
3160
3286
  "edge": {},
3161
- "encryptionKey": "wNrNQaM4/GCbqFgjeIZG28WhwmBDxqSbZC/6ZKOmI9k="
3287
+ "encryptionKey": "bnSHSDBem5YLytQLq0Nb3ONW6kIZb8SJM8HbjgbL3Ro="
3162
3288
  }