@shepai/cli 1.106.3 → 1.106.4-pr327.f3fea88

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 (697) hide show
  1. package/apis/json-schema/FeatureFlags.yaml +5 -0
  2. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  3. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +1 -0
  4. package/dist/packages/core/src/domain/generated/output.d.ts +4 -0
  5. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  6. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +1 -0
  7. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  8. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +3 -1
  9. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.d.ts.map +1 -1
  10. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.js +11 -0
  11. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  12. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +3 -2
  13. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.d.ts.map +1 -1
  14. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/node-helpers.js +5 -0
  15. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/schemas/spec.schema.d.ts.map +1 -1
  16. package/dist/packages/core/src/infrastructure/services/agents/feature-agent/nodes/schemas/spec.schema.js +6 -1
  17. package/dist/src/presentation/web/app/api/chat/stream/route.d.ts +14 -0
  18. package/dist/src/presentation/web/app/api/chat/stream/route.d.ts.map +1 -0
  19. package/dist/src/presentation/web/app/api/chat/stream/route.js +153 -0
  20. package/dist/src/presentation/web/app/chat/page.d.ts +4 -0
  21. package/dist/src/presentation/web/app/chat/page.d.ts.map +1 -0
  22. package/dist/src/presentation/web/app/chat/page.js +11 -0
  23. package/dist/src/presentation/web/components/features/chat/chat-empty-state.d.ts +6 -0
  24. package/dist/src/presentation/web/components/features/chat/chat-empty-state.d.ts.map +1 -0
  25. package/dist/src/presentation/web/components/features/chat/chat-empty-state.js +14 -0
  26. package/dist/src/presentation/web/components/features/chat/chat-empty-state.stories.d.ts +7 -0
  27. package/dist/src/presentation/web/components/features/chat/chat-empty-state.stories.d.ts.map +1 -0
  28. package/dist/src/presentation/web/components/features/chat/chat-empty-state.stories.js +15 -0
  29. package/dist/src/presentation/web/components/features/chat/chat-header.d.ts +7 -0
  30. package/dist/src/presentation/web/components/features/chat/chat-header.d.ts.map +1 -0
  31. package/dist/src/presentation/web/components/features/chat/chat-header.js +10 -0
  32. package/dist/src/presentation/web/components/features/chat/chat-header.stories.d.ts +8 -0
  33. package/dist/src/presentation/web/components/features/chat/chat-header.stories.d.ts.map +1 -0
  34. package/dist/src/presentation/web/components/features/chat/chat-header.stories.js +20 -0
  35. package/dist/src/presentation/web/components/features/chat/chat-page-client.d.ts +2 -0
  36. package/dist/src/presentation/web/components/features/chat/chat-page-client.d.ts.map +1 -0
  37. package/dist/src/presentation/web/components/features/chat/chat-page-client.js +50 -0
  38. package/dist/src/presentation/web/components/features/chat/chat-page-client.stories.d.ts +7 -0
  39. package/dist/src/presentation/web/components/features/chat/chat-page-client.stories.d.ts.map +1 -0
  40. package/dist/src/presentation/web/components/features/chat/chat-page-client.stories.js +15 -0
  41. package/dist/src/presentation/web/components/features/chat/chat-view.d.ts +24 -0
  42. package/dist/src/presentation/web/components/features/chat/chat-view.d.ts.map +1 -0
  43. package/dist/src/presentation/web/components/features/chat/chat-view.js +17 -0
  44. package/dist/src/presentation/web/components/features/chat/chat-view.stories.d.ts +14 -0
  45. package/dist/src/presentation/web/components/features/chat/chat-view.stories.d.ts.map +1 -0
  46. package/dist/src/presentation/web/components/features/chat/chat-view.stories.js +149 -0
  47. package/dist/src/presentation/web/components/features/chat/index.d.ts +5 -0
  48. package/dist/src/presentation/web/components/features/chat/index.d.ts.map +1 -0
  49. package/dist/src/presentation/web/components/features/chat/index.js +4 -0
  50. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.d.ts.map +1 -1
  51. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.js +3 -1
  52. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.d.ts.map +1 -1
  53. package/dist/src/presentation/web/components/features/settings/feature-flags-settings-section.stories.js +3 -0
  54. package/dist/src/presentation/web/components/features/settings/settings-page-client.d.ts.map +1 -1
  55. package/dist/src/presentation/web/components/features/settings/settings-page-client.js +6 -1
  56. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.d.ts.map +1 -1
  57. package/dist/src/presentation/web/components/features/settings/settings-page-client.stories.js +1 -0
  58. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.d.ts.map +1 -1
  59. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.js +2 -2
  60. package/dist/src/presentation/web/components/layouts/app-sidebar/app-sidebar.stories.js +1 -1
  61. package/dist/src/presentation/web/components/ui/avatar.d.ts +12 -0
  62. package/dist/src/presentation/web/components/ui/avatar.d.ts.map +1 -0
  63. package/dist/src/presentation/web/components/ui/avatar.js +23 -0
  64. package/dist/src/presentation/web/components/ui/chat-container.d.ts +17 -0
  65. package/dist/src/presentation/web/components/ui/chat-container.d.ts.map +1 -0
  66. package/dist/src/presentation/web/components/ui/chat-container.js +14 -0
  67. package/dist/src/presentation/web/components/ui/code-block.d.ts +17 -0
  68. package/dist/src/presentation/web/components/ui/code-block.d.ts.map +1 -0
  69. package/dist/src/presentation/web/components/ui/code-block.js +29 -0
  70. package/dist/src/presentation/web/components/ui/loader.d.ts +60 -0
  71. package/dist/src/presentation/web/components/ui/loader.d.ts.map +1 -0
  72. package/dist/src/presentation/web/components/ui/loader.js +190 -0
  73. package/dist/src/presentation/web/components/ui/markdown.d.ts +12 -0
  74. package/dist/src/presentation/web/components/ui/markdown.d.ts.map +1 -0
  75. package/dist/src/presentation/web/components/ui/markdown.js +50 -0
  76. package/dist/src/presentation/web/components/ui/message.d.ts +35 -0
  77. package/dist/src/presentation/web/components/ui/message.d.ts.map +1 -0
  78. package/dist/src/presentation/web/components/ui/message.js +18 -0
  79. package/dist/src/presentation/web/components/ui/prompt-input.d.ts +30 -0
  80. package/dist/src/presentation/web/components/ui/prompt-input.d.ts.map +1 -0
  81. package/dist/src/presentation/web/components/ui/prompt-input.js +98 -0
  82. package/dist/src/presentation/web/hooks/feature-flags-context.d.ts.map +1 -1
  83. package/dist/src/presentation/web/hooks/feature-flags-context.js +6 -1
  84. package/dist/src/presentation/web/hooks/use-chat.d.ts +57 -0
  85. package/dist/src/presentation/web/hooks/use-chat.d.ts.map +1 -0
  86. package/dist/src/presentation/web/hooks/use-chat.js +217 -0
  87. package/dist/src/presentation/web/lib/feature-flags.d.ts +2 -0
  88. package/dist/src/presentation/web/lib/feature-flags.d.ts.map +1 -1
  89. package/dist/src/presentation/web/lib/feature-flags.js +7 -0
  90. package/dist/tsconfig.build.tsbuildinfo +1 -1
  91. package/package.json +1 -1
  92. package/web/.next/BUILD_ID +1 -1
  93. package/web/.next/app-path-routes-manifest.json +2 -0
  94. package/web/.next/build-manifest.json +7 -7
  95. package/web/.next/fallback-build-manifest.json +2 -2
  96. package/web/.next/prerender-manifest.json +3 -3
  97. package/web/.next/required-server-files.js +3 -3
  98. package/web/.next/required-server-files.json +3 -3
  99. package/web/.next/routes-manifest.json +12 -0
  100. package/web/.next/server/app/(dashboard)/@drawer/create/page/build-manifest.json +5 -5
  101. package/web/.next/server/app/(dashboard)/@drawer/create/page/server-reference-manifest.json +20 -20
  102. package/web/.next/server/app/(dashboard)/@drawer/create/page.js.nft.json +1 -1
  103. package/web/.next/server/app/(dashboard)/@drawer/create/page_client-reference-manifest.js +1 -1
  104. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/build-manifest.json +5 -5
  105. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page/server-reference-manifest.json +25 -25
  106. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  107. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  108. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/build-manifest.json +5 -5
  109. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page/server-reference-manifest.json +25 -25
  110. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page.js.nft.json +1 -1
  111. package/web/.next/server/app/(dashboard)/@drawer/feature/[featureId]/page_client-reference-manifest.js +1 -1
  112. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/build-manifest.json +5 -5
  113. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page/server-reference-manifest.json +18 -18
  114. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page.js.nft.json +1 -1
  115. package/web/.next/server/app/(dashboard)/@drawer/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  116. package/web/.next/server/app/(dashboard)/create/page/build-manifest.json +5 -5
  117. package/web/.next/server/app/(dashboard)/create/page/server-reference-manifest.json +20 -20
  118. package/web/.next/server/app/(dashboard)/create/page.js.nft.json +1 -1
  119. package/web/.next/server/app/(dashboard)/create/page_client-reference-manifest.js +1 -1
  120. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/build-manifest.json +5 -5
  121. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page/server-reference-manifest.json +25 -25
  122. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page.js.nft.json +1 -1
  123. package/web/.next/server/app/(dashboard)/feature/[featureId]/[tab]/page_client-reference-manifest.js +1 -1
  124. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/build-manifest.json +5 -5
  125. package/web/.next/server/app/(dashboard)/feature/[featureId]/page/server-reference-manifest.json +25 -25
  126. package/web/.next/server/app/(dashboard)/feature/[featureId]/page.js.nft.json +1 -1
  127. package/web/.next/server/app/(dashboard)/feature/[featureId]/page_client-reference-manifest.js +1 -1
  128. package/web/.next/server/app/(dashboard)/page/build-manifest.json +5 -5
  129. package/web/.next/server/app/(dashboard)/page/server-reference-manifest.json +18 -18
  130. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  131. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  132. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/build-manifest.json +5 -5
  133. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page/server-reference-manifest.json +18 -18
  134. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page.js.nft.json +1 -1
  135. package/web/.next/server/app/(dashboard)/repository/[repositoryId]/page_client-reference-manifest.js +1 -1
  136. package/web/.next/server/app/_global-error/page/build-manifest.json +5 -5
  137. package/web/.next/server/app/_global-error/page_client-reference-manifest.js +1 -1
  138. package/web/.next/server/app/_global-error.html +2 -2
  139. package/web/.next/server/app/_global-error.rsc +7 -7
  140. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +2 -2
  141. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +7 -7
  142. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +3 -3
  143. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +3 -3
  144. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  145. package/web/.next/server/app/_not-found/page/build-manifest.json +5 -5
  146. package/web/.next/server/app/_not-found/page/server-reference-manifest.json +1 -1
  147. package/web/.next/server/app/_not-found/page.js.nft.json +1 -1
  148. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  149. package/web/.next/server/app/api/agent-events/route.js +1 -2
  150. package/web/.next/server/app/api/agent-events/route.js.nft.json +1 -1
  151. package/web/.next/server/app/api/attachments/preview/route.js.nft.json +1 -1
  152. package/web/.next/server/app/api/attachments/upload-from-path/route.js +1 -1
  153. package/web/.next/server/app/api/attachments/upload-from-path/route.js.nft.json +1 -1
  154. package/web/.next/server/app/api/chat/stream/route/app-paths-manifest.json +3 -0
  155. package/web/.next/server/app/api/chat/stream/route/build-manifest.json +11 -0
  156. package/web/.next/server/app/api/chat/stream/route/server-reference-manifest.json +4 -0
  157. package/web/.next/server/app/api/chat/stream/route.js +6 -0
  158. package/web/.next/server/app/api/chat/stream/route.js.map +5 -0
  159. package/web/.next/server/app/api/chat/stream/route.js.nft.json +1 -0
  160. package/web/.next/server/app/api/chat/stream/route_client-reference-manifest.js +2 -0
  161. package/web/.next/server/app/api/evidence/route.js.nft.json +1 -1
  162. package/web/.next/server/app/api/feature-logs/route.js +1 -1
  163. package/web/.next/server/app/api/feature-logs/route.js.nft.json +1 -1
  164. package/web/.next/server/app/chat/page/app-paths-manifest.json +3 -0
  165. package/web/.next/server/app/chat/page/build-manifest.json +18 -0
  166. package/web/.next/server/app/chat/page/next-font-manifest.json +6 -0
  167. package/web/.next/server/app/chat/page/react-loadable-manifest.json +1 -0
  168. package/web/.next/server/app/chat/page/server-reference-manifest.json +20 -0
  169. package/web/.next/server/app/chat/page.js +17 -0
  170. package/web/.next/server/app/chat/page.js.map +5 -0
  171. package/web/.next/server/app/chat/page.js.nft.json +1 -0
  172. package/web/.next/server/app/chat/page_client-reference-manifest.js +2 -0
  173. package/web/.next/server/app/settings/page/build-manifest.json +5 -5
  174. package/web/.next/server/app/settings/page/server-reference-manifest.json +5 -5
  175. package/web/.next/server/app/settings/page.js.nft.json +1 -1
  176. package/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  177. package/web/.next/server/app/skills/page/build-manifest.json +5 -5
  178. package/web/.next/server/app/skills/page/server-reference-manifest.json +6 -6
  179. package/web/.next/server/app/skills/page.js +4 -4
  180. package/web/.next/server/app/skills/page.js.nft.json +1 -1
  181. package/web/.next/server/app/skills/page_client-reference-manifest.js +1 -1
  182. package/web/.next/server/app/tools/page/build-manifest.json +5 -5
  183. package/web/.next/server/app/tools/page/server-reference-manifest.json +6 -6
  184. package/web/.next/server/app/tools/page.js.nft.json +1 -1
  185. package/web/.next/server/app/tools/page_client-reference-manifest.js +1 -1
  186. package/web/.next/server/app/version/page/build-manifest.json +5 -5
  187. package/web/.next/server/app/version/page/server-reference-manifest.json +2 -2
  188. package/web/.next/server/app/version/page.js.nft.json +1 -1
  189. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  190. package/web/.next/server/app-paths-manifest.json +2 -0
  191. package/web/.next/server/chunks/403f9_next_567de315._.js +1 -1
  192. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_chat_stream_route_actions_ea265361.js +3 -0
  193. package/web/.next/server/chunks/[root-of-the-server]__0866d2b5._.js +1 -1
  194. package/web/.next/server/chunks/[root-of-the-server]__332c8d91._.js +1 -1
  195. package/web/.next/server/chunks/[root-of-the-server]__3b72e8b0._.js +1 -1
  196. package/web/.next/server/chunks/{[root-of-the-server]__91d44424._.js → [root-of-the-server]__52c318d1._.js} +2 -2
  197. package/web/.next/server/chunks/[root-of-the-server]__57104a4c._.js +1 -1
  198. package/web/.next/server/chunks/[root-of-the-server]__7d63f9a4._.js +1 -1
  199. package/web/.next/server/chunks/[root-of-the-server]__9191749c._.js +1 -1
  200. package/web/.next/server/chunks/[root-of-the-server]__99c20fe5._.js +5 -0
  201. package/web/.next/server/chunks/[root-of-the-server]__99c20fe5._.js.map +1 -0
  202. package/web/.next/server/chunks/[root-of-the-server]__9a136c79._.js +1 -1
  203. package/web/.next/server/chunks/[root-of-the-server]__a1c7c02a._.js +1 -1
  204. package/web/.next/server/chunks/{[root-of-the-server]__db04ed44._.js → [root-of-the-server]__a5879003._.js} +2 -2
  205. package/web/.next/server/chunks/[root-of-the-server]__aae14de3._.js +6 -0
  206. package/web/.next/server/chunks/[root-of-the-server]__aae14de3._.js.map +1 -0
  207. package/web/.next/server/chunks/[root-of-the-server]__b2f9a412._.js +1 -1
  208. package/web/.next/server/chunks/[root-of-the-server]__b4102cc7._.js +1 -1
  209. package/web/.next/server/chunks/[root-of-the-server]__d2c18946._.js +1 -1
  210. package/web/.next/server/chunks/[root-of-the-server]__d9d410a8._.js +1 -1
  211. package/web/.next/server/chunks/[root-of-the-server]__e247a485._.js +1 -1
  212. package/web/.next/server/chunks/[root-of-the-server]__f47bb8a5._.js +1 -1
  213. package/web/.next/server/chunks/ssr/403f9_next_dist_31ea46d3._.js +1 -1
  214. package/web/.next/server/chunks/ssr/403f9_next_dist_c9d9b4d7._.js +1 -1
  215. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js +1 -1
  216. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_create-drawer-client_tsx_5e26fc0a._.js.map +1 -1
  217. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js +4 -0
  218. package/web/.next/server/chunks/ssr/744ca_web_components_common_control-center-drawer_feature-drawer-client_tsx_e9755fc8._.js.map +1 -0
  219. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_0a7546ed.js +1 -1
  220. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_@drawer_repository_[repositoryId]_page_actions_0a7546ed.js.map +1 -1
  221. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_978cbb4c.js +1 -1
  222. package/web/.next/server/chunks/ssr/8ba4b_server_app_(dashboard)_repository_[repositoryId]_page_actions_978cbb4c.js.map +1 -1
  223. package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js +1 -1
  224. package/web/.next/server/chunks/ssr/[root-of-the-server]__11033878._.js.map +1 -1
  225. package/web/.next/server/chunks/ssr/[root-of-the-server]__13482941._.js +4 -0
  226. package/web/.next/server/chunks/ssr/[root-of-the-server]__13482941._.js.map +1 -0
  227. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f1931f8._.js +3 -0
  228. package/web/.next/server/chunks/ssr/[root-of-the-server]__1f1931f8._.js.map +1 -0
  229. package/web/.next/server/chunks/ssr/[root-of-the-server]__248ee887._.js +1 -1
  230. package/web/.next/server/chunks/ssr/[root-of-the-server]__24dd0927._.js +2 -2
  231. package/web/.next/server/chunks/ssr/[root-of-the-server]__26d31159._.js +3 -0
  232. package/web/.next/server/chunks/ssr/[root-of-the-server]__26d31159._.js.map +1 -0
  233. package/web/.next/server/chunks/ssr/[root-of-the-server]__2a6f3e3f._.js +3 -0
  234. package/web/.next/server/chunks/ssr/[root-of-the-server]__2a6f3e3f._.js.map +1 -0
  235. package/web/.next/server/chunks/ssr/[root-of-the-server]__357d99f9._.js +1 -1
  236. package/web/.next/server/chunks/ssr/[root-of-the-server]__51fc98b0._.js +1 -1
  237. package/web/.next/server/chunks/ssr/[root-of-the-server]__51fc98b0._.js.map +1 -1
  238. package/web/.next/server/chunks/ssr/[root-of-the-server]__57f37786._.js +1 -1
  239. package/web/.next/server/chunks/ssr/[root-of-the-server]__57f37786._.js.map +1 -1
  240. package/web/.next/server/chunks/ssr/[root-of-the-server]__5d87af2e._.js +1 -1
  241. package/web/.next/server/chunks/ssr/[root-of-the-server]__6803b571._.js +3 -0
  242. package/web/.next/server/chunks/ssr/[root-of-the-server]__6803b571._.js.map +1 -0
  243. package/web/.next/server/chunks/ssr/[root-of-the-server]__708dcad1._.js +1 -1
  244. package/web/.next/server/chunks/ssr/[root-of-the-server]__708dcad1._.js.map +1 -1
  245. package/web/.next/server/chunks/ssr/{[root-of-the-server]__845a9d2a._.js → [root-of-the-server]__753f42eb._.js} +2 -2
  246. package/web/.next/server/chunks/ssr/[root-of-the-server]__753f42eb._.js.map +1 -0
  247. package/web/.next/server/chunks/ssr/[root-of-the-server]__89e8a5cc._.js +2 -2
  248. package/web/.next/server/chunks/ssr/[root-of-the-server]__89e8a5cc._.js.map +1 -1
  249. package/web/.next/server/chunks/ssr/[root-of-the-server]__8e002910._.js +1 -1
  250. package/web/.next/server/chunks/ssr/[root-of-the-server]__8e002910._.js.map +1 -1
  251. package/web/.next/server/chunks/ssr/[root-of-the-server]__99857356._.js +61 -0
  252. package/web/.next/server/chunks/ssr/[root-of-the-server]__99857356._.js.map +1 -0
  253. package/web/.next/server/chunks/ssr/[root-of-the-server]__9b8f6941._.js +3 -0
  254. package/web/.next/server/chunks/ssr/[root-of-the-server]__9b8f6941._.js.map +1 -0
  255. package/web/.next/server/chunks/ssr/[root-of-the-server]__b062b383._.js +1 -1
  256. package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js +1 -1
  257. package/web/.next/server/chunks/ssr/[root-of-the-server]__fdc75809._.js.map +1 -1
  258. package/web/.next/server/chunks/ssr/_135edb9c._.js +1 -1
  259. package/web/.next/server/chunks/ssr/_135edb9c._.js.map +1 -1
  260. package/web/.next/server/chunks/ssr/{_1f9b7ad3._.js → _15dc3761._.js} +2 -2
  261. package/web/.next/server/chunks/ssr/{_1f9b7ad3._.js.map → _15dc3761._.js.map} +1 -1
  262. package/web/.next/server/chunks/ssr/_25eb2abf._.js +4 -0
  263. package/web/.next/server/chunks/ssr/_25eb2abf._.js.map +1 -0
  264. package/web/.next/server/chunks/ssr/_273d4632._.js +1 -1
  265. package/web/.next/server/chunks/ssr/_34ba40e0._.js +3 -0
  266. package/web/.next/server/chunks/ssr/_34ba40e0._.js.map +1 -0
  267. package/web/.next/server/chunks/ssr/_4093a637._.js +5 -0
  268. package/web/.next/server/chunks/ssr/_4093a637._.js.map +1 -0
  269. package/web/.next/server/chunks/ssr/_6a2e8373._.js +3 -0
  270. package/web/.next/server/chunks/ssr/_6a2e8373._.js.map +1 -0
  271. package/web/.next/server/chunks/ssr/_6e08ce21._.js.map +1 -1
  272. package/web/.next/server/chunks/ssr/_7ba5f9bd._.js +9 -0
  273. package/web/.next/server/chunks/ssr/_7ba5f9bd._.js.map +1 -0
  274. package/web/.next/server/chunks/ssr/_8dacd1e7._.js +2 -2
  275. package/web/.next/server/chunks/ssr/_8dacd1e7._.js.map +1 -1
  276. package/web/.next/server/chunks/ssr/_906e9cde._.js +3 -0
  277. package/web/.next/server/chunks/ssr/_906e9cde._.js.map +1 -0
  278. package/web/.next/server/chunks/ssr/_a37f5f18._.js +1 -1
  279. package/web/.next/server/chunks/ssr/_a37f5f18._.js.map +1 -1
  280. package/web/.next/server/chunks/ssr/_b407679c._.js +3 -0
  281. package/web/.next/server/chunks/ssr/_b407679c._.js.map +1 -0
  282. package/web/.next/server/chunks/ssr/_cc77a143._.js +1 -1
  283. package/web/.next/server/chunks/ssr/_cc77a143._.js.map +1 -1
  284. package/web/.next/server/chunks/ssr/_d7c4fb01._.js +7 -0
  285. package/web/.next/server/chunks/ssr/_d7c4fb01._.js.map +1 -0
  286. package/web/.next/server/chunks/ssr/_eb8add9f._.js +4 -0
  287. package/web/.next/server/chunks/ssr/_eb8add9f._.js.map +1 -0
  288. package/web/.next/server/chunks/ssr/_f5316e67._.js +1 -1
  289. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js +1 -1
  290. package/web/.next/server/chunks/ssr/b1a17_presentation_web_components_features_settings_settings-page-client_tsx_6ed9d5f8._.js.map +1 -1
  291. package/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js +3 -0
  292. package/web/.next/server/chunks/ssr/f7870_sonner_dist_index_mjs_dbf63824._.js.map +1 -0
  293. package/web/.next/server/chunks/ssr/src_presentation_web_7275ce5d._.js +2 -2
  294. package/web/.next/server/chunks/ssr/src_presentation_web_7275ce5d._.js.map +1 -1
  295. package/web/.next/server/chunks/ssr/src_presentation_web_758dfa10._.js +2 -2
  296. package/web/.next/server/chunks/ssr/src_presentation_web_758dfa10._.js.map +1 -1
  297. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_84803221.js +1 -1
  298. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_(dashboard)_page_actions_84803221.js.map +1 -1
  299. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js +1 -1
  300. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_skills_page_actions_1fa8042e.js.map +1 -1
  301. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js +1 -1
  302. package/web/.next/server/chunks/ssr/src_presentation_web__next-internal_server_app_tools_page_actions_24684200.js.map +1 -1
  303. package/web/.next/server/chunks/ssr/src_presentation_web_components_bf50c527._.js +1 -1
  304. package/web/.next/server/chunks/ssr/src_presentation_web_components_bf50c527._.js.map +1 -1
  305. package/web/.next/server/chunks/ssr/src_presentation_web_components_de814675._.js +1 -1
  306. package/web/.next/server/chunks/ssr/src_presentation_web_components_de814675._.js.map +1 -1
  307. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
  308. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
  309. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js +1 -1
  310. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_control-center_7ac3562e._.js.map +1 -1
  311. package/web/.next/server/chunks/ssr/src_presentation_web_components_features_tools_tools-page-client_tsx_3d0aa70c._.js +1 -1
  312. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js +3 -0
  313. package/web/.next/server/chunks/ssr/src_presentation_web_db9fa0c2._.js.map +1 -0
  314. package/web/.next/server/middleware-build-manifest.js +5 -5
  315. package/web/.next/server/pages/500.html +2 -2
  316. package/web/.next/server/server-reference-manifest.js +1 -1
  317. package/web/.next/server/server-reference-manifest.json +38 -31
  318. package/web/.next/static/chunks/0000a3bd9d33363e.js +1 -0
  319. package/web/.next/static/chunks/{29c29800f5a2acc6.js → 0146cc63e09aa1fc.js} +1 -1
  320. package/web/.next/static/chunks/01c44c0f52e94d13.js +1 -0
  321. package/web/.next/static/chunks/025972c91961cb4f.js +1 -0
  322. package/web/.next/static/chunks/04077bc8814ebb95.js +1 -0
  323. package/web/.next/static/chunks/040f765faf202f21.js +1 -0
  324. package/web/.next/static/chunks/0452bf6331941e3f.js +1 -0
  325. package/web/.next/static/chunks/04abfd0d3656c990.js +1 -0
  326. package/web/.next/static/chunks/04ba2061ab93d4b4.js +1 -0
  327. package/web/.next/static/chunks/053a7b986353ec4b.js +1 -0
  328. package/web/.next/static/chunks/06f273bdc5828685.js +1 -0
  329. package/web/.next/static/chunks/0749a5b512d6df6b.js +1 -0
  330. package/web/.next/static/chunks/07720f62d0494cff.js +1 -0
  331. package/web/.next/static/chunks/07b3a3fe5ed6806c.js +1 -0
  332. package/web/.next/static/chunks/07ed2655f92b082d.js +1 -0
  333. package/web/.next/static/chunks/0820c893f5292ab6.js +1 -0
  334. package/web/.next/static/chunks/08fb03f101641646.js +1 -0
  335. package/web/.next/static/chunks/0992e1494eb73f73.js +1 -0
  336. package/web/.next/static/chunks/{b2b65ee0666a829a.js → 0b0f65124c9e6e98.js} +1 -1
  337. package/web/.next/static/chunks/0b64f70d18b592a9.js +1 -0
  338. package/web/.next/static/chunks/0b925ca1a402d3cd.js +1 -0
  339. package/web/.next/static/chunks/0c4d93176dc739f0.js +1 -0
  340. package/web/.next/static/chunks/0c65283281ae11be.js +1 -0
  341. package/web/.next/static/chunks/0c82301271695b04.js +1 -0
  342. package/web/.next/static/chunks/0d6db841c33ab4f1.js +1 -0
  343. package/web/.next/static/chunks/0d813d73dacd9b43.js +1 -0
  344. package/web/.next/static/chunks/0dcf159fb9a610e4.js +1 -0
  345. package/web/.next/static/chunks/0e7dfad45e402b87.js +1 -0
  346. package/web/.next/static/chunks/0e827c7f60ca4551.js +1 -0
  347. package/web/.next/static/chunks/0f619c5c402fb9f4.js +1 -0
  348. package/web/.next/static/chunks/0f83f16fa24fd5d7.js +1 -0
  349. package/web/.next/static/chunks/0feedea346fd5fbe.js +1 -0
  350. package/web/.next/static/chunks/12dbfd5ed203fd8c.js +1 -0
  351. package/web/.next/static/chunks/13ab63bcbd1b9d73.js +1 -0
  352. package/web/.next/static/chunks/14e6e069b833483c.js +1 -0
  353. package/web/.next/static/chunks/15049e8c70931a5c.js +1 -0
  354. package/web/.next/static/chunks/15e9e6d3526dba19.js +1 -0
  355. package/web/.next/static/chunks/1675a99c138a8dff.js +1 -0
  356. package/web/.next/static/chunks/18257a988399c500.js +1 -0
  357. package/web/.next/static/chunks/18b8b7c0f43653ed.js +1 -0
  358. package/web/.next/static/chunks/1903ea0fc4a1c66a.js +1 -0
  359. package/web/.next/static/chunks/1a9763ce5ba22b57.js +1 -0
  360. package/web/.next/static/chunks/1c5a18c436c08be5.js +1 -0
  361. package/web/.next/static/chunks/1d95a3b4ad425e84.js +1 -0
  362. package/web/.next/static/chunks/1e88753738d86281.js +1 -0
  363. package/web/.next/static/chunks/1f5b06b26b55f61e.js +1 -0
  364. package/web/.next/static/chunks/20e893034947cff0.js +1 -0
  365. package/web/.next/static/chunks/2199bd4a3f61c371.js +1 -0
  366. package/web/.next/static/chunks/21f6010e9d824e2b.js +1 -0
  367. package/web/.next/static/chunks/2277de4cd5d76ea0.js +1 -0
  368. package/web/.next/static/chunks/23874b32b27bc398.js +1 -0
  369. package/web/.next/static/chunks/242af1b1794692bb.js +1 -0
  370. package/web/.next/static/chunks/24ff7613e7640548.js +1 -0
  371. package/web/.next/static/chunks/255b89458bc45261.js +1 -0
  372. package/web/.next/static/chunks/256f95ef70dd81c3.js +1 -0
  373. package/web/.next/static/chunks/2612e5560f8ba2c2.js +1 -0
  374. package/web/.next/static/chunks/26cc1fb330a4c4ef.js +1 -0
  375. package/web/.next/static/chunks/2796913db81fa3a0.js +1 -0
  376. package/web/.next/static/chunks/2a0985b01345546d.js +1 -0
  377. package/web/.next/static/chunks/2a13aed05cd157cb.js +1 -0
  378. package/web/.next/static/chunks/2a65cbda6248ac45.js +1 -0
  379. package/web/.next/static/chunks/2a9e798066780ccb.js +1 -0
  380. package/web/.next/static/chunks/2aecaa7075dff32c.js +1 -0
  381. package/web/.next/static/chunks/2aff3eb00311b5ff.js +1 -0
  382. package/web/.next/static/chunks/2b601943d3e94e5b.js +1 -0
  383. package/web/.next/static/chunks/2ce5939b18e1a21e.js +1 -0
  384. package/web/.next/static/chunks/2d204a2a777b935d.js +1 -0
  385. package/web/.next/static/chunks/2d64b4ffcaccace0.js +1 -0
  386. package/web/.next/static/chunks/2d890ccc3bdefafa.js +1 -0
  387. package/web/.next/static/chunks/2e25aca5b7400f56.js +1 -0
  388. package/web/.next/static/chunks/2ed750fa9ff05fb4.js +1 -0
  389. package/web/.next/static/chunks/2f1a7ab193aa56ab.js +1 -0
  390. package/web/.next/static/chunks/2fc0965d77242987.js +1 -0
  391. package/web/.next/static/chunks/3054fd6667aee1d2.js +1 -0
  392. package/web/.next/static/chunks/305ea36a55b1b01d.js +1 -0
  393. package/web/.next/static/chunks/31345772bfb5b56d.js +1 -0
  394. package/web/.next/static/chunks/31e19c87048a2dd2.js +1 -0
  395. package/web/.next/static/chunks/32a5dff7a1424ce7.js +1 -0
  396. package/web/.next/static/chunks/3320db3c4bd922dd.js +1 -0
  397. package/web/.next/static/chunks/338b409bcf9c5da6.js +1 -0
  398. package/web/.next/static/chunks/33f71ecfbcc40eb8.js +1 -0
  399. package/web/.next/static/chunks/35bc063ce1c82d62.js +1 -0
  400. package/web/.next/static/chunks/366630af12ceb9aa.js +1 -0
  401. package/web/.next/static/chunks/36a02bc96e797be1.js +1 -0
  402. package/web/.next/static/chunks/3857a5a593f557b6.js +1 -0
  403. package/web/.next/static/chunks/38f38199611b387a.js +1 -0
  404. package/web/.next/static/chunks/39fd8dea78ce33a1.js +1 -0
  405. package/web/.next/static/chunks/3a9753d40e045b8f.js +1 -0
  406. package/web/.next/static/chunks/3ae3c50c728eab31.js +11 -0
  407. package/web/.next/static/chunks/3b811f725088f5ec.js +1 -0
  408. package/web/.next/static/chunks/3d0086082ce28745.js +1 -0
  409. package/web/.next/static/chunks/3daba4c77e106a0b.js +1 -0
  410. package/web/.next/static/chunks/3eeb840a2075bfde.js +1 -0
  411. package/web/.next/static/chunks/3f2585c9332265e2.js +1 -0
  412. package/web/.next/static/chunks/3f701f917196c596.js +1 -0
  413. package/web/.next/static/chunks/4028b1961891bd0b.js +1 -0
  414. package/web/.next/static/chunks/40962df79d5b9308.js +1 -0
  415. package/web/.next/static/chunks/40bdb6b0b6b24b30.js +1 -0
  416. package/web/.next/static/chunks/419f2849c47d15b0.js +1 -0
  417. package/web/.next/static/chunks/4301b2746001957f.js +1 -0
  418. package/web/.next/static/chunks/458a6ec844531967.js +1 -0
  419. package/web/.next/static/chunks/45ae42a60c5885ba.js +1 -0
  420. package/web/.next/static/chunks/45d55f26409a62e9.js +1 -0
  421. package/web/.next/static/chunks/469057391d9b81af.js +1 -0
  422. package/web/.next/static/chunks/46af0d08db9ec138.js +1 -0
  423. package/web/.next/static/chunks/47dd15642d568b90.js +1 -0
  424. package/web/.next/static/chunks/4be33773114cd302.js +1 -0
  425. package/web/.next/static/chunks/4c3eff62cda82668.js +1 -0
  426. package/web/.next/static/chunks/4c592610236f630f.js +4 -0
  427. package/web/.next/static/chunks/4cc404bcff34a71f.js +1 -0
  428. package/web/.next/static/chunks/4d44c49ec4cdd79f.js +1 -0
  429. package/web/.next/static/chunks/4f0c36555d75e5fe.js +1 -0
  430. package/web/.next/static/chunks/554aadda059a8430.js +1 -0
  431. package/web/.next/static/chunks/55c4d9d2fddbead4.js +1 -0
  432. package/web/.next/static/chunks/55dc4e8d31455c2d.js +1 -0
  433. package/web/.next/static/chunks/5737640b5eb3844c.js +1 -0
  434. package/web/.next/static/chunks/5874c94c33f9b7b0.js +1 -0
  435. package/web/.next/static/chunks/58d9b3be51fd5de0.js +1 -0
  436. package/web/.next/static/chunks/5a4e2f295be16022.js +1 -0
  437. package/web/.next/static/chunks/5bc3c8f3a6aca6fa.js +1 -0
  438. package/web/.next/static/chunks/5c3c605bb590e3e7.js +1 -0
  439. package/web/.next/static/chunks/5c955aad7e021e56.js +1 -0
  440. package/web/.next/static/chunks/5cb21622c5e5747e.js +1 -0
  441. package/web/.next/static/chunks/5cdf0942d4f7ed5f.js +1 -0
  442. package/web/.next/static/chunks/5d4a3f9a24a357ab.js +1 -0
  443. package/web/.next/static/chunks/5d97d16f083409e9.js +1 -0
  444. package/web/.next/static/chunks/60f3d869542bf677.js +1 -0
  445. package/web/.next/static/chunks/62224eae737b4521.js +1 -0
  446. package/web/.next/static/chunks/6539d0757f0cfc29.js +1 -0
  447. package/web/.next/static/chunks/65a238abdcb11bcd.js +1 -0
  448. package/web/.next/static/chunks/65b76ab700c2a9d0.js +1 -0
  449. package/web/.next/static/chunks/660ad72a4adcb7fc.js +1 -0
  450. package/web/.next/static/chunks/664c671566a249f4.js +1 -0
  451. package/web/.next/static/chunks/66bbfced65db425f.js +1 -0
  452. package/web/.next/static/chunks/68b6eedefa12f8c7.js +1 -0
  453. package/web/.next/static/chunks/68fa8559029f9f41.js +1 -0
  454. package/web/.next/static/chunks/6947ab623933a779.js +1 -0
  455. package/web/.next/static/chunks/6e9f2a1a17352af0.js +1 -0
  456. package/web/.next/static/chunks/6ee18bbefc401436.js +1 -0
  457. package/web/.next/static/chunks/6f83a2cba6850e4a.js +1 -0
  458. package/web/.next/static/chunks/6fb42a88b84aa22b.js +1 -0
  459. package/web/.next/static/chunks/6ffd8d481eb5e86a.js +1 -0
  460. package/web/.next/static/chunks/70ebb562067defff.js +1 -0
  461. package/web/.next/static/chunks/719ffd0d25696861.js +1 -0
  462. package/web/.next/static/chunks/71bbf75ff7ac7d1c.js +1 -0
  463. package/web/.next/static/chunks/72452c79bb483893.js +1 -0
  464. package/web/.next/static/chunks/{0102ce60a2a42fab.js → 73512dcafc035901.js} +1 -1
  465. package/web/.next/static/chunks/737b452d10950f75.js +1 -0
  466. package/web/.next/static/chunks/73c9849a26d56eaf.js +1 -0
  467. package/web/.next/static/chunks/742ddcbde2de0a5f.js +1 -0
  468. package/web/.next/static/chunks/75f20501876081ae.js +1 -0
  469. package/web/.next/static/chunks/771904aa3f2b5890.js +1 -0
  470. package/web/.next/static/chunks/78140b3927f34ee1.js +1 -0
  471. package/web/.next/static/chunks/78c2221a0e9ac3e0.js +1 -0
  472. package/web/.next/static/chunks/7a16988476a29ae1.js +1 -0
  473. package/web/.next/static/chunks/7aebb2852b03cf3b.js +1 -0
  474. package/web/.next/static/chunks/{d4ee1f8f03cee0aa.js → 7b3bad34a11293ef.js} +1 -1
  475. package/web/.next/static/chunks/7cada01735a2de18.js +1 -0
  476. package/web/.next/static/chunks/7cd5e13ac856cf73.js +1 -0
  477. package/web/.next/static/chunks/7d0c918f6da54095.js +1 -0
  478. package/web/.next/static/chunks/7e55ce83f10514a3.js +1 -0
  479. package/web/.next/static/chunks/7e70c7df8d1224f0.js +1 -0
  480. package/web/.next/static/chunks/7f3161de6996c05f.js +1 -0
  481. package/web/.next/static/chunks/806207333fba56e3.js +1 -0
  482. package/web/.next/static/chunks/825f5a75a38db3ec.js +1 -0
  483. package/web/.next/static/chunks/82df15d2af5efffe.js +1 -0
  484. package/web/.next/static/chunks/83397d71344d405d.js +1 -0
  485. package/web/.next/static/chunks/8478b108a35675bb.js +1 -0
  486. package/web/.next/static/chunks/84b6fde40fe98bbc.js +1 -0
  487. package/web/.next/static/chunks/8525e0fed6102ee4.js +1 -0
  488. package/web/.next/static/chunks/858a571e17cbe069.js +1 -0
  489. package/web/.next/static/chunks/8599414ffd4e15f5.js +1 -0
  490. package/web/.next/static/chunks/85da8b6aabbfc33c.js +1 -0
  491. package/web/.next/static/chunks/8866422156b74976.js +1 -0
  492. package/web/.next/static/chunks/8884218357d06e4c.js +1 -0
  493. package/web/.next/static/chunks/890e85bcb002030f.js +1 -0
  494. package/web/.next/static/chunks/8a6482e4289bd485.js +1 -0
  495. package/web/.next/static/chunks/8b34938e48e56746.js +1 -0
  496. package/web/.next/static/chunks/8bc16f2ee0ac282b.js +1 -0
  497. package/web/.next/static/chunks/8c05e7493172a40a.js +1 -0
  498. package/web/.next/static/chunks/8c16bb1814e36e5d.js +1 -0
  499. package/web/.next/static/chunks/8d9c6ac44d75942c.js +1 -0
  500. package/web/.next/static/chunks/8e2d9292729601b9.js +1 -0
  501. package/web/.next/static/chunks/8ed313638226f782.js +1 -0
  502. package/web/.next/static/chunks/{cfe4dc9904fcfddb.js → 8f4b01641dd98daa.js} +1 -1
  503. package/web/.next/static/chunks/8f98e5a8f241fe53.js +1 -0
  504. package/web/.next/static/chunks/8fc154c5edda0beb.js +1 -0
  505. package/web/.next/static/chunks/8fe2d5b09bf432b8.js +1 -0
  506. package/web/.next/static/chunks/8fe35ce71e4ad05b.js +1 -0
  507. package/web/.next/static/chunks/9067d4871d0c903f.js +1 -0
  508. package/web/.next/static/chunks/92d091aa318b78fb.js +1 -0
  509. package/web/.next/static/chunks/93af57e60f3a66ba.js +1 -0
  510. package/web/.next/static/chunks/93dd149a0766adcc.js +1 -0
  511. package/web/.next/static/chunks/957474fa08a22115.js +1 -0
  512. package/web/.next/static/chunks/95b925bb74686af7.js +1 -0
  513. package/web/.next/static/chunks/96158847987b2403.js +1 -0
  514. package/web/.next/static/chunks/975c124d34c8c6a8.js +1 -0
  515. package/web/.next/static/chunks/97bf3636621b58c7.js +1 -0
  516. package/web/.next/static/chunks/97e9c48e0abc9a50.js +1 -0
  517. package/web/.next/static/chunks/{fe70e73feb07bcfd.js → 98c68c9ea7a9e597.js} +1 -1
  518. package/web/.next/static/chunks/99052b059a0075f9.js +1 -0
  519. package/web/.next/static/chunks/99de3f6268e262a3.js +1 -0
  520. package/web/.next/static/chunks/99e12f466e3868ca.js +1 -0
  521. package/web/.next/static/chunks/9ba434534d00d922.js +1 -0
  522. package/web/.next/static/chunks/9d3cb38ab5fb405b.js +1 -0
  523. package/web/.next/static/chunks/9d5adb23e0187d9c.js +1 -0
  524. package/web/.next/static/chunks/9d8444f3f16a0998.js +1 -0
  525. package/web/.next/static/chunks/9dd2a16ac3fea1f1.js +1 -0
  526. package/web/.next/static/chunks/9e66ab37fd08bc66.js +1 -0
  527. package/web/.next/static/chunks/a09fa49dbf0f3636.js +1 -0
  528. package/web/.next/static/chunks/a2000986cd87a131.js +1 -0
  529. package/web/.next/static/chunks/a31fd9cfaa7a3158.js +1 -0
  530. package/web/.next/static/chunks/a38e1790e76ded6c.js +1 -0
  531. package/web/.next/static/chunks/a662e9340d282c55.js +1 -0
  532. package/web/.next/static/chunks/a77c0a719a2cc920.js +1 -0
  533. package/web/.next/static/chunks/a7f8cdb6749f9bdd.js +1 -0
  534. package/web/.next/static/chunks/a8a4fdbbcb3a5998.js +1 -0
  535. package/web/.next/static/chunks/a8f26eabe8187392.js +1 -0
  536. package/web/.next/static/chunks/a954d978d5e9781e.js +1 -0
  537. package/web/.next/static/chunks/a977e04dad1a77c7.js +1 -0
  538. package/web/.next/static/chunks/abd77592929f00d5.js +1 -0
  539. package/web/.next/static/chunks/ac53962c1a4765c7.js +1 -0
  540. package/web/.next/static/chunks/ade5ee5b3412436e.js +1 -0
  541. package/web/.next/static/chunks/ae84e9326b9e9200.js +2 -0
  542. package/web/.next/static/chunks/b0810838151379a2.js +1 -0
  543. package/web/.next/static/chunks/b1106224fbc2f015.js +1 -0
  544. package/web/.next/static/chunks/b13329875853d9a5.js +1 -0
  545. package/web/.next/static/chunks/b1460995e7a388b9.css +1 -0
  546. package/web/.next/static/chunks/b2b08e8fb70210c7.js +1 -0
  547. package/web/.next/static/chunks/b2f0e49369262eea.js +1 -0
  548. package/web/.next/static/chunks/b46abe587d05f58c.js +1 -0
  549. package/web/.next/static/chunks/b555154c60b9d90c.js +1 -0
  550. package/web/.next/static/chunks/b61982efe6f7e40e.js +1 -0
  551. package/web/.next/static/chunks/b6972d679174ce65.js +1 -0
  552. package/web/.next/static/chunks/b6ae34a5c2627d04.js +1 -0
  553. package/web/.next/static/chunks/bae57337da9a2d34.js +1 -0
  554. package/web/.next/static/chunks/bba2ccf4fd7849e1.js +1 -0
  555. package/web/.next/static/chunks/bc21e40585b8dcf4.js +1 -0
  556. package/web/.next/static/chunks/bd0cd7805b800eab.js +1 -0
  557. package/web/.next/static/chunks/bf13e9bc0390b21d.js +59 -0
  558. package/web/.next/static/chunks/bfec0c4899344791.js +1 -0
  559. package/web/.next/static/chunks/c1a40361928a6f90.js +1 -0
  560. package/web/.next/static/chunks/c1f34786f0d6908c.js +2 -0
  561. package/web/.next/static/chunks/c1fa94e9df162cb2.js +1 -0
  562. package/web/.next/static/chunks/c260a37325b283d3.js +1 -0
  563. package/web/.next/static/chunks/c3abb9ed0d089656.js +1 -0
  564. package/web/.next/static/chunks/c49a32e2d002dd91.js +1 -0
  565. package/web/.next/static/chunks/c564bdda2d517997.js +1 -0
  566. package/web/.next/static/chunks/c5c7a925445f4d05.js +1 -0
  567. package/web/.next/static/chunks/c7e793951b20a67f.js +1 -0
  568. package/web/.next/static/chunks/c86d4c471f194ad0.js +1 -0
  569. package/web/.next/static/chunks/c8d2cd372806e8b4.js +1 -0
  570. package/web/.next/static/chunks/c932b41ef3a40647.js +1 -0
  571. package/web/.next/static/chunks/c95abf23ce28b320.js +1 -0
  572. package/web/.next/static/chunks/c9d225b49db0980e.js +1 -0
  573. package/web/.next/static/chunks/c9e3afa09e76a4b2.js +1 -0
  574. package/web/.next/static/chunks/c9ef2470073e11cb.js +1 -0
  575. package/web/.next/static/chunks/ca201ae288dba155.js +1 -0
  576. package/web/.next/static/chunks/ca6196a863fc258d.js +1 -0
  577. package/web/.next/static/chunks/cac3a64966a112f7.js +1 -0
  578. package/web/.next/static/chunks/cb1e02415930189c.js +1 -0
  579. package/web/.next/static/chunks/cb412c095989545d.js +1 -0
  580. package/web/.next/static/chunks/cba332976e88a351.js +1 -0
  581. package/web/.next/static/chunks/cbf0c6470851a2f0.js +1 -0
  582. package/web/.next/static/chunks/cc60420e9bf53d96.js +1 -0
  583. package/web/.next/static/chunks/cc9054c5e6e1c706.js +1 -0
  584. package/web/.next/static/chunks/cd3bf2c5469b9646.js +1 -0
  585. package/web/.next/static/chunks/cdd7964a31b63d66.js +1 -0
  586. package/web/.next/static/chunks/cdd7f91e23b5ea49.js +1 -0
  587. package/web/.next/static/chunks/ce6a2fd4485c50c7.js +1 -0
  588. package/web/.next/static/chunks/d04de4be30ab78ca.js +3 -0
  589. package/web/.next/static/chunks/d0be65e7d38590b6.js +1 -0
  590. package/web/.next/static/chunks/d128b5501807e6f0.js +1 -0
  591. package/web/.next/static/chunks/d2124558f2b71c54.js +1 -0
  592. package/web/.next/static/chunks/d21a7ac5bcd538a3.js +1 -0
  593. package/web/.next/static/chunks/d35123b0dc2e2702.js +1 -0
  594. package/web/.next/static/chunks/d3ff3d218c7ad329.js +1 -0
  595. package/web/.next/static/chunks/d47def0da790a783.js +1 -0
  596. package/web/.next/static/chunks/d56169a6ceb14d27.js +1 -0
  597. package/web/.next/static/chunks/d5f1eede831e271a.js +1 -0
  598. package/web/.next/static/chunks/d62ba6ca7b41e179.js +1 -0
  599. package/web/.next/static/chunks/d6e74c394e816b3a.js +1 -0
  600. package/web/.next/static/chunks/d700d036b0dd9d28.js +1 -0
  601. package/web/.next/static/chunks/d7922dc82b3d8177.js +1 -0
  602. package/web/.next/static/chunks/d79a28dee31b3e43.js +1 -0
  603. package/web/.next/static/chunks/d88d6c7dd4fb3eb0.js +1 -0
  604. package/web/.next/static/chunks/d95b6e4c9a832b75.js +1 -0
  605. package/web/.next/static/chunks/dac044a4e6d8e3d4.js +1 -0
  606. package/web/.next/static/chunks/db873305cb622122.js +1 -0
  607. package/web/.next/static/chunks/dba11645cc1ddde8.js +1 -0
  608. package/web/.next/static/chunks/dbfb2921fe1fbe42.js +1 -0
  609. package/web/.next/static/chunks/dc75258a3914ab28.js +1 -0
  610. package/web/.next/static/chunks/ddbb7e6d2aa7940f.js +1 -0
  611. package/web/.next/static/chunks/ddcfb6c08594ccb7.js +1 -0
  612. package/web/.next/static/chunks/de82d83003608b30.js +1 -0
  613. package/web/.next/static/chunks/debe9e537fa1dd5c.js +1 -0
  614. package/web/.next/static/chunks/e0e2881173c1b4ea.js +1 -0
  615. package/web/.next/static/chunks/e16538f1db410909.js +1 -0
  616. package/web/.next/static/chunks/e1dcb6b88dd2cbfb.js +1 -0
  617. package/web/.next/static/chunks/e1ec2aeadbc3e43e.js +1 -0
  618. package/web/.next/static/chunks/e4967b0e84ca5a95.js +1 -0
  619. package/web/.next/static/chunks/e4c653eb9557c225.js +1 -0
  620. package/web/.next/static/chunks/e51516e366109a4d.js +1 -0
  621. package/web/.next/static/chunks/e759235b76258903.js +1 -0
  622. package/web/.next/static/chunks/e75c5376799db08c.js +1 -0
  623. package/web/.next/static/chunks/e8341f198526730e.js +1 -0
  624. package/web/.next/static/chunks/e8d014f4a5df5f4b.js +1 -0
  625. package/web/.next/static/chunks/eab21ff64827175b.js +1 -0
  626. package/web/.next/static/chunks/eaf5638419fe834d.js +1 -0
  627. package/web/.next/static/chunks/eb49387d22b57020.js +1 -0
  628. package/web/.next/static/chunks/ebb7e6387076d1f2.js +1 -0
  629. package/web/.next/static/chunks/ecf9bd4e51bc22b2.js +1 -0
  630. package/web/.next/static/chunks/ed5f5eaaba3fe86e.js +1 -0
  631. package/web/.next/static/chunks/ee3792dfe67952fc.js +1 -0
  632. package/web/.next/static/chunks/ee96f625d002bb6f.js +1 -0
  633. package/web/.next/static/chunks/f01c407dc77e32e6.js +1 -0
  634. package/web/.next/static/chunks/f05e324248b7eefa.js +1 -0
  635. package/web/.next/static/chunks/f116adff993e4e78.js +1 -0
  636. package/web/.next/static/chunks/f48a6189ac11bc51.js +1 -0
  637. package/web/.next/static/chunks/f57a12cf8a7fa100.js +1 -0
  638. package/web/.next/static/chunks/f6bf8273ddaca996.js +1 -0
  639. package/web/.next/static/chunks/f7313a12522304e8.js +1 -0
  640. package/web/.next/static/chunks/f7938fccffa01b89.js +1 -0
  641. package/web/.next/static/chunks/f7b685bb0cb377c2.js +1 -0
  642. package/web/.next/static/chunks/f7e499a9733db05b.js +1 -0
  643. package/web/.next/static/chunks/fa113f988d09306b.js +1 -0
  644. package/web/.next/static/chunks/fc1587c1e44444d4.js +1 -0
  645. package/web/.next/static/chunks/fcb420148a0cf38e.js +1 -0
  646. package/web/.next/static/chunks/fd6bbc9c53b0101e.js +1 -0
  647. package/web/.next/static/chunks/fef1f3b5114b8d2d.js +1 -0
  648. package/web/.next/static/chunks/{b1eadf24106c53ce.js → ff20a3511ab6687b.js} +1 -1
  649. package/web/.next/static/chunks/{turbopack-426d9bc2450816ba.js → turbopack-19fdba76a6171f31.js} +1 -1
  650. package/web/package.json +6 -1
  651. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js +0 -6
  652. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_4d623b8e.js.map +0 -1
  653. package/web/.next/server/chunks/[root-of-the-server]__3b22a1eb._.js +0 -3
  654. package/web/.next/server/chunks/[root-of-the-server]__3b22a1eb._.js.map +0 -1
  655. package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_d0119342._.js +0 -3
  656. package/web/.next/server/chunks/ssr/7f428_lucide-react_dist_esm_icons_d0119342._.js.map +0 -1
  657. package/web/.next/server/chunks/ssr/[root-of-the-server]__52485955._.js +0 -3
  658. package/web/.next/server/chunks/ssr/[root-of-the-server]__845a9d2a._.js.map +0 -1
  659. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js +0 -4
  660. package/web/.next/server/chunks/ssr/[root-of-the-server]__aad040c0._.js.map +0 -1
  661. package/web/.next/server/chunks/ssr/[root-of-the-server]__d91fdd51._.js +0 -3
  662. package/web/.next/server/chunks/ssr/[root-of-the-server]__d91fdd51._.js.map +0 -1
  663. package/web/.next/server/chunks/ssr/_025a2fa0._.js +0 -4
  664. package/web/.next/server/chunks/ssr/_025a2fa0._.js.map +0 -1
  665. package/web/.next/server/chunks/ssr/_1bb131c4._.js +0 -3
  666. package/web/.next/server/chunks/ssr/_1bb131c4._.js.map +0 -1
  667. package/web/.next/server/chunks/ssr/_3a4c94e3._.js +0 -3
  668. package/web/.next/server/chunks/ssr/_3a4c94e3._.js.map +0 -1
  669. package/web/.next/server/chunks/ssr/_8afac0ca._.js +0 -3
  670. package/web/.next/server/chunks/ssr/_8afac0ca._.js.map +0 -1
  671. package/web/.next/server/chunks/ssr/_9ac70f88._.js +0 -5
  672. package/web/.next/server/chunks/ssr/_9ac70f88._.js.map +0 -1
  673. package/web/.next/server/chunks/ssr/_a68d7e1c._.js +0 -9
  674. package/web/.next/server/chunks/ssr/_a68d7e1c._.js.map +0 -1
  675. package/web/.next/server/chunks/ssr/_b5fc318a._.js +0 -3
  676. package/web/.next/server/chunks/ssr/_b5fc318a._.js.map +0 -1
  677. package/web/.next/server/chunks/ssr/_e6f2da4f._.js +0 -7
  678. package/web/.next/server/chunks/ssr/_e6f2da4f._.js.map +0 -1
  679. package/web/.next/static/chunks/07b853e29af1e5f2.js +0 -1
  680. package/web/.next/static/chunks/3bb35e0689e8b6b7.js +0 -1
  681. package/web/.next/static/chunks/52b56677c842e45f.js +0 -3
  682. package/web/.next/static/chunks/77ae4e64052864f9.js +0 -2
  683. package/web/.next/static/chunks/79474459eb409359.js +0 -1
  684. package/web/.next/static/chunks/84a181ff3270fd9f.js +0 -1
  685. package/web/.next/static/chunks/8c0f3126502dea0a.js +0 -11
  686. package/web/.next/static/chunks/8c3a1b4dd386fb21.js +0 -1
  687. package/web/.next/static/chunks/c750d771701b9b97.js +0 -1
  688. package/web/.next/static/chunks/d4d8f0a137bd2eb4.js +0 -4
  689. package/web/.next/static/chunks/db122a6247f69104.css +0 -1
  690. package/web/.next/static/chunks/ea320f314a210a70.js +0 -2
  691. package/web/.next/static/chunks/ed3a602003bcb31b.js +0 -1
  692. /package/web/.next/server/chunks/{ssr/[root-of-the-server]__52485955._.js.map → 744ca_web__next-internal_server_app_api_chat_stream_route_actions_ea265361.js.map} +0 -0
  693. /package/web/.next/server/chunks/{[root-of-the-server]__91d44424._.js.map → [root-of-the-server]__52c318d1._.js.map} +0 -0
  694. /package/web/.next/server/chunks/{[root-of-the-server]__db04ed44._.js.map → [root-of-the-server]__a5879003._.js.map} +0 -0
  695. /package/web/.next/static/{uT0QQwg2cbMo46NG69Bky → OiQDaxgdMUYHZ4ZGZWNWt}/_buildManifest.js +0 -0
  696. /package/web/.next/static/{uT0QQwg2cbMo46NG69Bky → OiQDaxgdMUYHZ4ZGZWNWt}/_clientMiddlewareManifest.json +0 -0
  697. /package/web/.next/static/{uT0QQwg2cbMo46NG69Bky → OiQDaxgdMUYHZ4ZGZWNWt}/_ssgManifest.js +0 -0
@@ -0,0 +1,217 @@
1
+ 'use client';
2
+ import { useCallback, useReducer, useRef } from 'react';
3
+ export const initialChatState = {
4
+ messages: [],
5
+ status: 'idle',
6
+ error: null,
7
+ sessionId: null,
8
+ };
9
+ /* ------------------------------------------------------------------ */
10
+ /* Reducer */
11
+ /* ------------------------------------------------------------------ */
12
+ export function chatReducer(state, action) {
13
+ switch (action.type) {
14
+ case 'add_user_message':
15
+ return {
16
+ ...state,
17
+ messages: [...state.messages, action.message],
18
+ status: 'sending',
19
+ error: null,
20
+ };
21
+ case 'start_streaming': {
22
+ const assistantMessage = {
23
+ id: crypto.randomUUID(),
24
+ role: 'assistant',
25
+ content: '',
26
+ timestamp: new Date(),
27
+ status: 'streaming',
28
+ };
29
+ return {
30
+ ...state,
31
+ messages: [...state.messages, assistantMessage],
32
+ status: 'streaming',
33
+ };
34
+ }
35
+ case 'stream_token': {
36
+ const msgs = [...state.messages];
37
+ const last = msgs[msgs.length - 1];
38
+ if (last?.role === 'assistant') {
39
+ msgs[msgs.length - 1] = { ...last, content: last.content + action.content };
40
+ }
41
+ return { ...state, messages: msgs };
42
+ }
43
+ case 'complete_streaming': {
44
+ const msgs = [...state.messages];
45
+ const last = msgs[msgs.length - 1];
46
+ if (last?.role === 'assistant') {
47
+ msgs[msgs.length - 1] = { ...last, status: 'complete' };
48
+ }
49
+ return {
50
+ ...state,
51
+ messages: msgs,
52
+ status: 'idle',
53
+ sessionId: action.sessionId ?? state.sessionId,
54
+ };
55
+ }
56
+ case 'set_error': {
57
+ const msgs = [...state.messages];
58
+ const last = msgs[msgs.length - 1];
59
+ if (last?.role === 'assistant' && last.status === 'streaming') {
60
+ msgs[msgs.length - 1] = { ...last, status: 'error' };
61
+ }
62
+ return {
63
+ ...state,
64
+ messages: msgs,
65
+ status: 'error',
66
+ error: action.error,
67
+ };
68
+ }
69
+ case 'clear_messages':
70
+ return { ...initialChatState };
71
+ default:
72
+ return state;
73
+ }
74
+ }
75
+ /**
76
+ * Parse SSE-formatted chunks from a ReadableStream.
77
+ * Yields parsed events as they arrive.
78
+ */
79
+ export async function* parseSSEStream(reader) {
80
+ const decoder = new TextDecoder();
81
+ let buffer = '';
82
+ while (true) {
83
+ const { done, value } = await reader.read();
84
+ if (done)
85
+ break;
86
+ buffer += decoder.decode(value, { stream: true });
87
+ // Split on double newline (SSE event boundary)
88
+ const parts = buffer.split('\n\n');
89
+ // Last part may be incomplete — keep it in the buffer
90
+ buffer = parts.pop() ?? '';
91
+ for (const part of parts) {
92
+ const trimmed = part.trim();
93
+ if (!trimmed || trimmed.startsWith(':'))
94
+ continue; // Skip empty lines and comments (heartbeats)
95
+ // Extract data lines
96
+ const dataLines = [];
97
+ for (const line of trimmed.split('\n')) {
98
+ if (line.startsWith('data: ')) {
99
+ dataLines.push(line.slice(6));
100
+ }
101
+ }
102
+ if (dataLines.length === 0)
103
+ continue;
104
+ try {
105
+ const parsed = JSON.parse(dataLines.join('\n'));
106
+ yield parsed;
107
+ }
108
+ catch {
109
+ // Non-JSON data — skip
110
+ }
111
+ }
112
+ }
113
+ }
114
+ export function useChat() {
115
+ const [state, dispatch] = useReducer(chatReducer, initialChatState);
116
+ const abortControllerRef = useRef(null);
117
+ const lastUserMessageRef = useRef(null);
118
+ const streamResponse = useCallback(async (message, sessionId) => {
119
+ // Cancel any in-flight request
120
+ abortControllerRef.current?.abort();
121
+ const controller = new AbortController();
122
+ abortControllerRef.current = controller;
123
+ dispatch({ type: 'start_streaming' });
124
+ try {
125
+ const response = await fetch('/api/chat/stream', {
126
+ method: 'POST',
127
+ headers: { 'Content-Type': 'application/json' },
128
+ body: JSON.stringify({ message, sessionId }),
129
+ signal: controller.signal,
130
+ });
131
+ if (!response.ok) {
132
+ const errorText = await response.text().catch(() => 'Request failed');
133
+ dispatch({ type: 'set_error', error: errorText });
134
+ return;
135
+ }
136
+ if (!response.body) {
137
+ dispatch({ type: 'set_error', error: 'No response body' });
138
+ return;
139
+ }
140
+ const reader = response.body.getReader();
141
+ try {
142
+ for await (const event of parseSSEStream(reader)) {
143
+ if (controller.signal.aborted)
144
+ break;
145
+ switch (event.type) {
146
+ case 'progress':
147
+ dispatch({ type: 'stream_token', content: event.content });
148
+ break;
149
+ case 'result':
150
+ dispatch({ type: 'complete_streaming', sessionId: event.sessionId });
151
+ return;
152
+ case 'error':
153
+ dispatch({ type: 'set_error', error: event.content });
154
+ return;
155
+ }
156
+ }
157
+ // Stream ended without a result event — treat as complete
158
+ dispatch({ type: 'complete_streaming' });
159
+ }
160
+ finally {
161
+ reader.releaseLock();
162
+ }
163
+ }
164
+ catch (err) {
165
+ if (controller.signal.aborted)
166
+ return;
167
+ const errorMessage = err instanceof Error ? err.message : 'An unexpected error occurred';
168
+ dispatch({ type: 'set_error', error: errorMessage });
169
+ }
170
+ }, []);
171
+ const sendMessage = useCallback(async (content) => {
172
+ const trimmed = content.trim();
173
+ if (!trimmed)
174
+ return;
175
+ if (state.status === 'sending' || state.status === 'streaming')
176
+ return;
177
+ lastUserMessageRef.current = trimmed;
178
+ const userMessage = {
179
+ id: crypto.randomUUID(),
180
+ role: 'user',
181
+ content: trimmed,
182
+ timestamp: new Date(),
183
+ status: 'complete',
184
+ };
185
+ dispatch({ type: 'add_user_message', message: userMessage });
186
+ await streamResponse(trimmed, state.sessionId);
187
+ }, [state.status, state.sessionId, streamResponse]);
188
+ const retry = useCallback(async () => {
189
+ const lastMessage = lastUserMessageRef.current;
190
+ if (!lastMessage)
191
+ return;
192
+ // Remove the last assistant message if it errored
193
+ dispatch({ type: 'clear_messages' });
194
+ const userMessage = {
195
+ id: crypto.randomUUID(),
196
+ role: 'user',
197
+ content: lastMessage,
198
+ timestamp: new Date(),
199
+ status: 'complete',
200
+ };
201
+ dispatch({ type: 'add_user_message', message: userMessage });
202
+ await streamResponse(lastMessage, state.sessionId);
203
+ }, [state.sessionId, streamResponse]);
204
+ const clearChat = useCallback(() => {
205
+ abortControllerRef.current?.abort();
206
+ lastUserMessageRef.current = null;
207
+ dispatch({ type: 'clear_messages' });
208
+ }, []);
209
+ return {
210
+ messages: state.messages,
211
+ status: state.status,
212
+ error: state.error,
213
+ sendMessage,
214
+ retry,
215
+ clearChat,
216
+ };
217
+ }
@@ -9,6 +9,7 @@ export interface FeatureFlagsState {
9
9
  skills: boolean;
10
10
  envDeploy: boolean;
11
11
  debug: boolean;
12
+ chat: boolean;
12
13
  }
13
14
  export declare function getFeatureFlags(): FeatureFlagsState;
14
15
  /**
@@ -19,5 +20,6 @@ export declare const featureFlags: {
19
20
  readonly skills: boolean;
20
21
  readonly envDeploy: boolean;
21
22
  readonly debug: boolean;
23
+ readonly chat: boolean;
22
24
  };
23
25
  //# sourceMappingURL=feature-flags.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"feature-flags.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/web/lib/feature-flags.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAQH,MAAM,WAAW,iBAAiB;IAChC,MAAM,EAAE,OAAO,CAAC;IAChB,SAAS,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,OAAO,CAAC;CAChB;AAED,wBAAgB,eAAe,IAAI,iBAAiB,CAwBnD;AAED;;;GAGG;AACH,eAAO,MAAM,YAAY;;;;CAUf,CAAC"}
1
+ {"version":3,"file":"feature-flags.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/web/lib/feature-flags.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAQH,MAAM,WAAW,iBAAiB;IAChC,MAAM,EAAE,OAAO,CAAC;IAChB,SAAS,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,OAAO,CAAC;IACf,IAAI,EAAE,OAAO,CAAC;CACf;AAED,wBAAgB,eAAe,IAAI,iBAAiB,CA6BnD;AAED;;;GAGG;AACH,eAAO,MAAM,YAAY;;;;;CAaf,CAAC"}
@@ -18,6 +18,7 @@ export function getFeatureFlags() {
18
18
  skills: flags.skills,
19
19
  envDeploy: flags.envDeploy,
20
20
  debug: flags.debug,
21
+ chat: flags.chat,
21
22
  };
22
23
  }
23
24
  }
@@ -31,6 +32,9 @@ export function getFeatureFlags() {
31
32
  ? isEnabled(process.env.NEXT_PUBLIC_FLAG_ENV_DEPLOY)
32
33
  : true,
33
34
  debug: false,
35
+ chat: process.env.NEXT_PUBLIC_FLAG_CHAT !== undefined
36
+ ? isEnabled(process.env.NEXT_PUBLIC_FLAG_CHAT)
37
+ : true,
34
38
  };
35
39
  }
36
40
  /**
@@ -47,4 +51,7 @@ export const featureFlags = {
47
51
  get debug() {
48
52
  return getFeatureFlags().debug;
49
53
  },
54
+ get chat() {
55
+ return getFeatureFlags().chat;
56
+ },
50
57
  };