@agent-native/core 0.127.3 → 0.128.1

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 (457) hide show
  1. package/corpus/README.md +2 -2
  2. package/corpus/core/CHANGELOG.md +101 -0
  3. package/corpus/core/README.md +5 -26
  4. package/corpus/core/docs/content/actions.mdx +47 -4
  5. package/corpus/core/docs/content/native-chat-ui.mdx +7 -0
  6. package/corpus/core/docs/content/organizations-teams-permissions.mdx +109 -3
  7. package/corpus/core/docs/content/template-design-collaboration-and-full-apps.mdx +15 -0
  8. package/corpus/core/docs/content/toolkit-org-team.mdx +72 -12
  9. package/corpus/core/package.json +2 -1
  10. package/corpus/core/src/a2a/artifact-response.ts +36 -29
  11. package/corpus/core/src/action.ts +83 -2
  12. package/corpus/core/src/chat-threads/store.ts +48 -43
  13. package/corpus/core/src/cli/skills-content/design-visual-edit-skill.ts +46 -3
  14. package/corpus/core/src/client/AgentPanel.tsx +26 -6
  15. package/corpus/core/src/client/AssistantChat.tsx +63 -7
  16. package/corpus/core/src/client/DefaultSpinner.tsx +29 -0
  17. package/corpus/core/src/client/org/TeamPage.tsx +161 -6
  18. package/corpus/core/src/client/org/hooks.ts +67 -0
  19. package/corpus/core/src/client/org/index.ts +9 -0
  20. package/corpus/core/src/client/transcription/use-live-transcription.ts +62 -10
  21. package/corpus/core/src/db/client.ts +42 -3
  22. package/corpus/core/src/db/ensure-additive-columns.ts +60 -33
  23. package/corpus/core/src/deploy/build.ts +31 -2
  24. package/corpus/core/src/mcp-client/routes.ts +10 -1
  25. package/corpus/core/src/org/app-roles-handlers.ts +152 -0
  26. package/corpus/core/src/org/app-roles.ts +355 -0
  27. package/corpus/core/src/org/index.ts +27 -1
  28. package/corpus/core/src/org/migrations.ts +22 -0
  29. package/corpus/core/src/org/plugin.ts +27 -0
  30. package/corpus/core/src/org/schema.ts +15 -0
  31. package/corpus/core/src/scripts/docs/search.ts +17 -0
  32. package/corpus/core/src/scripts/docs/source-search.ts +10 -0
  33. package/corpus/core/src/server/agent-chat/script-entries.ts +3 -0
  34. package/corpus/core/src/server/agent-chat-plugin.ts +53 -52
  35. package/corpus/core/src/server/builder-design-systems.ts +299 -82
  36. package/corpus/core/src/server/core-routes-plugin.ts +6 -1
  37. package/corpus/core/src/server/framework-request-handler.ts +44 -6
  38. package/corpus/core/src/server/index.ts +8 -0
  39. package/corpus/core/src/templates/default/.agents/skills/actions/SKILL.md +32 -0
  40. package/corpus/core/src/templates/default/.agents/skills/adding-a-feature/SKILL.md +7 -0
  41. package/corpus/core/src/templates/default/.agents/skills/security/SKILL.md +31 -0
  42. package/corpus/core/src/templates/headless/.agents/skills/actions/SKILL.md +32 -0
  43. package/corpus/core/src/templates/workspace-core/.agents/skills/actions/SKILL.md +32 -0
  44. package/corpus/core/src/templates/workspace-core/.agents/skills/adding-a-feature/SKILL.md +7 -0
  45. package/corpus/core/src/templates/workspace-core/.agents/skills/authentication/SKILL.md +40 -0
  46. package/corpus/core/src/templates/workspace-core/.agents/skills/security/SKILL.md +31 -0
  47. package/corpus/core/src/templates/workspace-core/.agents/skills/sharing/SKILL.md +4 -0
  48. package/corpus/templates/analytics/.agents/skills/actions/SKILL.md +32 -0
  49. package/corpus/templates/analytics/.agents/skills/security/SKILL.md +31 -0
  50. package/corpus/templates/analytics/.agents/skills/sharing/SKILL.md +4 -0
  51. package/corpus/templates/analytics/_gitignore +2 -0
  52. package/corpus/templates/analytics/actions/data-source-status.ts +21 -12
  53. package/corpus/templates/analytics/app/global.css +7 -7
  54. package/corpus/templates/analytics/app/i18n-data.ts +30 -0
  55. package/corpus/templates/analytics/app/lib/data-source-status.ts +2 -1
  56. package/corpus/templates/analytics/app/pages/DataSources.tsx +54 -10
  57. package/corpus/templates/analytics/changelog/2026-07-28-analytics-pages-load-reliably-with-large-dashboard-workspaces.md +6 -0
  58. package/corpus/templates/analytics/changelog/2026-07-28-dashboard-loading-shimmer-now-flows-smoothly-in-one-directi.md +6 -0
  59. package/corpus/templates/analytics/server/lib/first-party-dashboard-repair.ts +5 -4
  60. package/corpus/templates/analytics/server/plugins/agent-chat.ts +54 -42
  61. package/corpus/templates/analytics/server/plugins/db.ts +1 -18
  62. package/corpus/templates/assets/.agents/skills/actions/SKILL.md +32 -0
  63. package/corpus/templates/assets/.agents/skills/security/SKILL.md +31 -0
  64. package/corpus/templates/assets/.agents/skills/sharing/SKILL.md +4 -0
  65. package/corpus/templates/assets/_gitignore +2 -0
  66. package/corpus/templates/brain/.agents/skills/actions/SKILL.md +32 -0
  67. package/corpus/templates/brain/.agents/skills/adding-a-feature/SKILL.md +7 -0
  68. package/corpus/templates/brain/.agents/skills/security/SKILL.md +31 -0
  69. package/corpus/templates/brain/.agents/skills/sharing/SKILL.md +4 -0
  70. package/corpus/templates/calendar/.agents/skills/actions/SKILL.md +32 -0
  71. package/corpus/templates/calendar/.agents/skills/security/SKILL.md +31 -0
  72. package/corpus/templates/calendar/.agents/skills/sharing/SKILL.md +4 -0
  73. package/corpus/templates/calendar/_gitignore +2 -0
  74. package/corpus/templates/chat/.agents/skills/actions/SKILL.md +32 -0
  75. package/corpus/templates/chat/.agents/skills/adding-a-feature/SKILL.md +7 -0
  76. package/corpus/templates/chat/.agents/skills/security/SKILL.md +31 -0
  77. package/corpus/templates/chat/.agents/skills/sharing/SKILL.md +4 -0
  78. package/corpus/templates/clips/.agents/skills/actions/SKILL.md +32 -0
  79. package/corpus/templates/clips/.agents/skills/security/SKILL.md +31 -0
  80. package/corpus/templates/clips/_gitignore +2 -0
  81. package/corpus/templates/clips/actions/request-transcript.ts +77 -11
  82. package/corpus/templates/clips/actions/save-browser-transcript.ts +28 -7
  83. package/corpus/templates/clips/app/routes/record.tsx +11 -3
  84. package/corpus/templates/clips/changelog/2026-07-28-browser-recordings-no-longer-save-a-truncated-transcript-as-.md +6 -0
  85. package/corpus/templates/clips/changelog/2026-07-28-browser-recordings-no-longer-stop-transcribing-partway-throu.md +6 -0
  86. package/corpus/templates/clips/changelog/2026-07-28-desktop-full-screen-clips-now-get-an-instant-local-transcrip.md +6 -0
  87. package/corpus/templates/clips/changelog/2026-07-28-long-transcriptions-no-longer-show-a-false-transcription-sto.md +6 -0
  88. package/corpus/templates/clips/changelog/2026-07-28-restarting-for-an-update-now-installs-the-newest-release-ins.md +6 -0
  89. package/corpus/templates/clips/changelog/2026-07-28-the-meeting-recording-pill-now-anchors-to-the-right-edge-of-.md +6 -0
  90. package/corpus/templates/clips/desktop/src/lib/audio-meter.ts +31 -2
  91. package/corpus/templates/clips/desktop/src/lib/recorder.ts +114 -13
  92. package/corpus/templates/clips/desktop/src/lib/updater.ts +12 -4
  93. package/corpus/templates/clips/desktop/src/overlays/live-audio-bars.tsx +40 -15
  94. package/corpus/templates/clips/desktop/src/styles.css +10 -7
  95. package/corpus/templates/clips/desktop/src-tauri/src/recording_indicator.rs +21 -14
  96. package/corpus/templates/clips/shared/transcript-status.ts +10 -0
  97. package/corpus/templates/content/.agents/skills/actions/SKILL.md +32 -0
  98. package/corpus/templates/content/.agents/skills/security/SKILL.md +31 -0
  99. package/corpus/templates/content/.agents/skills/sharing/SKILL.md +4 -0
  100. package/corpus/templates/content/_gitignore +2 -0
  101. package/corpus/templates/crm/.agents/skills/sharing/SKILL.md +4 -0
  102. package/corpus/templates/design/.agents/skills/actions/SKILL.md +32 -0
  103. package/corpus/templates/design/.agents/skills/security/SKILL.md +31 -0
  104. package/corpus/templates/design/.agents/skills/sharing/SKILL.md +4 -0
  105. package/corpus/templates/design/.agents/skills/visual-edit/SKILL.md +46 -3
  106. package/corpus/templates/design/.generated/bridge/editor-chrome.generated.ts +7 -5
  107. package/corpus/templates/design/_gitignore +2 -0
  108. package/corpus/templates/design/app/components/design/CanvasContextMenu.tsx +2 -2
  109. package/corpus/templates/design/app/components/design/bridge/editor-chrome.bridge.ts +7 -4
  110. package/corpus/templates/design/app/components/design/keyboard-shortcuts.ts +1 -1
  111. package/corpus/templates/design/app/hooks/useDesignHotkeys.ts +10 -4
  112. package/corpus/templates/design/app/i18n-data.ts +10 -0
  113. package/corpus/templates/design/app/lib/builder-design-system-upload.ts +280 -0
  114. package/corpus/templates/design/app/lib/design-ui-events.ts +5 -0
  115. package/corpus/templates/design/app/pages/DesignSystemSetup.tsx +90 -54
  116. package/corpus/templates/design/app/root.tsx +18 -1
  117. package/corpus/templates/design/changelog/2026-07-28-figma-fig-uploads-now-show-indexing-progress-and-an-open-in-.md +6 -0
  118. package/corpus/templates/design/changelog/2026-07-28-show-or-hide-design-editing-chrome-with-cmd-on-apple-devices.md +6 -0
  119. package/corpus/templates/design/server/handlers/design-system-decode-job-status.ts +49 -0
  120. package/corpus/templates/design/server/handlers/design-system-upload-start.ts +87 -0
  121. package/corpus/templates/design/server/handlers/index-design-system-sources.ts +82 -0
  122. package/corpus/templates/design/server/routes/api/design-system-decode-job-status.get.ts +1 -0
  123. package/corpus/templates/design/server/routes/api/design-system-upload-start.post.ts +1 -0
  124. package/corpus/templates/design/server/routes/api/index-design-system-sources.post.ts +1 -0
  125. package/corpus/templates/dispatch/.agents/skills/actions/SKILL.md +32 -0
  126. package/corpus/templates/dispatch/.agents/skills/security/SKILL.md +31 -0
  127. package/corpus/templates/dispatch/.agents/skills/sharing/SKILL.md +4 -0
  128. package/corpus/templates/dispatch/_gitignore +2 -0
  129. package/corpus/templates/forms/.agents/skills/actions/SKILL.md +32 -0
  130. package/corpus/templates/forms/.agents/skills/security/SKILL.md +31 -0
  131. package/corpus/templates/forms/.agents/skills/sharing/SKILL.md +4 -0
  132. package/corpus/templates/forms/_gitignore +2 -0
  133. package/corpus/templates/macros/.agents/skills/security/SKILL.md +31 -0
  134. package/corpus/templates/macros/.agents/skills/sharing/SKILL.md +4 -0
  135. package/corpus/templates/macros/_gitignore +2 -0
  136. package/corpus/templates/mail/.agents/skills/actions/SKILL.md +32 -0
  137. package/corpus/templates/mail/.agents/skills/security/SKILL.md +31 -0
  138. package/corpus/templates/mail/.agents/skills/sharing/SKILL.md +4 -0
  139. package/corpus/templates/mail/_gitignore +2 -0
  140. package/corpus/templates/plan/.agents/skills/actions/SKILL.md +32 -0
  141. package/corpus/templates/plan/.agents/skills/adding-a-feature/SKILL.md +7 -0
  142. package/corpus/templates/plan/.agents/skills/security/SKILL.md +31 -0
  143. package/corpus/templates/plan/.agents/skills/sharing/SKILL.md +4 -0
  144. package/corpus/templates/plan/_gitignore +2 -0
  145. package/corpus/templates/slides/.agents/skills/actions/SKILL.md +32 -0
  146. package/corpus/templates/slides/.agents/skills/security/SKILL.md +31 -0
  147. package/corpus/templates/slides/.agents/skills/sharing/SKILL.md +4 -0
  148. package/corpus/templates/slides/_gitignore +2 -0
  149. package/corpus/templates/slides/app/components/design-system/DesignSystemSetup.tsx +126 -53
  150. package/corpus/templates/slides/app/components/design-system/builder-design-system-upload.ts +271 -0
  151. package/corpus/templates/slides/app/components/design-system/builder-index-response.ts +1 -1
  152. package/corpus/templates/slides/app/i18n/en-US.ts +1 -0
  153. package/corpus/templates/slides/server/handlers/design-system-decode-job-status.ts +49 -0
  154. package/corpus/templates/slides/server/handlers/design-system-upload-start.ts +87 -0
  155. package/corpus/templates/slides/server/handlers/index-design-system-sources.ts +79 -0
  156. package/corpus/templates/slides/server/routes/api/design-system-decode-job-status.get.ts +1 -0
  157. package/corpus/templates/slides/server/routes/api/design-system-upload-start.post.ts +1 -0
  158. package/corpus/templates/slides/server/routes/api/index-design-system-sources.post.ts +1 -0
  159. package/corpus/templates/tasks/.agents/skills/actions/SKILL.md +32 -0
  160. package/corpus/templates/tasks/.agents/skills/adding-a-feature/SKILL.md +7 -0
  161. package/corpus/templates/tasks/.agents/skills/security/SKILL.md +31 -0
  162. package/corpus/templates/tasks/.agents/skills/sharing/SKILL.md +4 -0
  163. package/corpus/templates/tasks/_gitignore +2 -0
  164. package/dist/a2a/artifact-response.d.ts.map +1 -1
  165. package/dist/a2a/artifact-response.js +30 -29
  166. package/dist/a2a/artifact-response.js.map +1 -1
  167. package/dist/action.d.ts +36 -0
  168. package/dist/action.d.ts.map +1 -1
  169. package/dist/action.js +37 -2
  170. package/dist/action.js.map +1 -1
  171. package/dist/chat-threads/store.d.ts +12 -0
  172. package/dist/chat-threads/store.d.ts.map +1 -1
  173. package/dist/chat-threads/store.js +48 -42
  174. package/dist/chat-threads/store.js.map +1 -1
  175. package/dist/cli/skills-content/design-visual-edit-skill.d.ts +1 -1
  176. package/dist/cli/skills-content/design-visual-edit-skill.d.ts.map +1 -1
  177. package/dist/cli/skills-content/design-visual-edit-skill.js +46 -3
  178. package/dist/cli/skills-content/design-visual-edit-skill.js.map +1 -1
  179. package/dist/client/AgentPanel.d.ts +3 -1
  180. package/dist/client/AgentPanel.d.ts.map +1 -1
  181. package/dist/client/AgentPanel.js +11 -9
  182. package/dist/client/AgentPanel.js.map +1 -1
  183. package/dist/client/AssistantChat.d.ts.map +1 -1
  184. package/dist/client/AssistantChat.js +57 -6
  185. package/dist/client/AssistantChat.js.map +1 -1
  186. package/dist/client/DefaultSpinner.d.ts +7 -0
  187. package/dist/client/DefaultSpinner.d.ts.map +1 -1
  188. package/dist/client/DefaultSpinner.js +25 -1
  189. package/dist/client/DefaultSpinner.js.map +1 -1
  190. package/dist/client/org/TeamPage.d.ts +13 -1
  191. package/dist/client/org/TeamPage.d.ts.map +1 -1
  192. package/dist/client/org/TeamPage.js +41 -11
  193. package/dist/client/org/TeamPage.js.map +1 -1
  194. package/dist/client/org/hooks.d.ts +37 -0
  195. package/dist/client/org/hooks.d.ts.map +1 -1
  196. package/dist/client/org/hooks.js +37 -0
  197. package/dist/client/org/hooks.js.map +1 -1
  198. package/dist/client/org/index.d.ts +3 -2
  199. package/dist/client/org/index.d.ts.map +1 -1
  200. package/dist/client/org/index.js +1 -1
  201. package/dist/client/org/index.js.map +1 -1
  202. package/dist/client/transcription/use-live-transcription.d.ts +8 -0
  203. package/dist/client/transcription/use-live-transcription.d.ts.map +1 -1
  204. package/dist/client/transcription/use-live-transcription.js +38 -11
  205. package/dist/client/transcription/use-live-transcription.js.map +1 -1
  206. package/dist/collab/routes.d.ts +1 -1
  207. package/dist/db/client.d.ts +12 -0
  208. package/dist/db/client.d.ts.map +1 -1
  209. package/dist/db/client.js +40 -3
  210. package/dist/db/client.js.map +1 -1
  211. package/dist/db/ensure-additive-columns.d.ts.map +1 -1
  212. package/dist/db/ensure-additive-columns.js +54 -32
  213. package/dist/db/ensure-additive-columns.js.map +1 -1
  214. package/dist/deploy/build.d.ts +1 -0
  215. package/dist/deploy/build.d.ts.map +1 -1
  216. package/dist/deploy/build.js +23 -2
  217. package/dist/deploy/build.js.map +1 -1
  218. package/dist/file-upload/actions/upload-image.d.ts +1 -1
  219. package/dist/mcp-client/routes.d.ts +3 -1
  220. package/dist/mcp-client/routes.d.ts.map +1 -1
  221. package/dist/mcp-client/routes.js +8 -2
  222. package/dist/mcp-client/routes.js.map +1 -1
  223. package/dist/notifications/routes.d.ts +1 -1
  224. package/dist/org/app-roles-handlers.d.ts +27 -0
  225. package/dist/org/app-roles-handlers.d.ts.map +1 -0
  226. package/dist/org/app-roles-handlers.js +125 -0
  227. package/dist/org/app-roles-handlers.js.map +1 -0
  228. package/dist/org/app-roles.d.ts +136 -0
  229. package/dist/org/app-roles.d.ts.map +1 -0
  230. package/dist/org/app-roles.js +216 -0
  231. package/dist/org/app-roles.js.map +1 -0
  232. package/dist/org/index.d.ts +4 -1
  233. package/dist/org/index.d.ts.map +1 -1
  234. package/dist/org/index.js +3 -1
  235. package/dist/org/index.js.map +1 -1
  236. package/dist/org/migrations.d.ts.map +1 -1
  237. package/dist/org/migrations.js +22 -0
  238. package/dist/org/migrations.js.map +1 -1
  239. package/dist/org/plugin.d.ts +2 -0
  240. package/dist/org/plugin.d.ts.map +1 -1
  241. package/dist/org/plugin.js +20 -0
  242. package/dist/org/plugin.js.map +1 -1
  243. package/dist/org/schema.d.ts +143 -0
  244. package/dist/org/schema.d.ts.map +1 -1
  245. package/dist/org/schema.js +14 -0
  246. package/dist/org/schema.js.map +1 -1
  247. package/dist/provider-api/actions/custom-provider-registration.d.ts +8 -8
  248. package/dist/provider-api/actions/provider-api.d.ts +4 -4
  249. package/dist/scripts/docs/search.d.ts.map +1 -1
  250. package/dist/scripts/docs/search.js +15 -0
  251. package/dist/scripts/docs/search.js.map +1 -1
  252. package/dist/scripts/docs/source-search.d.ts +7 -0
  253. package/dist/scripts/docs/source-search.d.ts.map +1 -1
  254. package/dist/scripts/docs/source-search.js +9 -0
  255. package/dist/scripts/docs/source-search.js.map +1 -1
  256. package/dist/secrets/routes.d.ts +9 -9
  257. package/dist/server/agent-chat/script-entries.d.ts.map +1 -1
  258. package/dist/server/agent-chat/script-entries.js +3 -0
  259. package/dist/server/agent-chat/script-entries.js.map +1 -1
  260. package/dist/server/agent-chat-plugin.d.ts.map +1 -1
  261. package/dist/server/agent-chat-plugin.js +46 -48
  262. package/dist/server/agent-chat-plugin.js.map +1 -1
  263. package/dist/server/builder-design-systems.d.ts +49 -0
  264. package/dist/server/builder-design-systems.d.ts.map +1 -1
  265. package/dist/server/builder-design-systems.js +221 -69
  266. package/dist/server/builder-design-systems.js.map +1 -1
  267. package/dist/server/core-routes-plugin.d.ts.map +1 -1
  268. package/dist/server/core-routes-plugin.js +6 -1
  269. package/dist/server/core-routes-plugin.js.map +1 -1
  270. package/dist/server/framework-request-handler.d.ts.map +1 -1
  271. package/dist/server/framework-request-handler.js +42 -6
  272. package/dist/server/framework-request-handler.js.map +1 -1
  273. package/dist/server/index.d.ts +1 -1
  274. package/dist/server/index.d.ts.map +1 -1
  275. package/dist/server/index.js +1 -1
  276. package/dist/server/index.js.map +1 -1
  277. package/dist/server/realtime-token.d.ts +1 -1
  278. package/dist/templates/chat/.agents/skills/actions/SKILL.md +32 -0
  279. package/dist/templates/chat/.agents/skills/adding-a-feature/SKILL.md +7 -0
  280. package/dist/templates/chat/.agents/skills/security/SKILL.md +31 -0
  281. package/dist/templates/chat/.agents/skills/sharing/SKILL.md +4 -0
  282. package/dist/templates/default/.agents/skills/actions/SKILL.md +32 -0
  283. package/dist/templates/default/.agents/skills/adding-a-feature/SKILL.md +7 -0
  284. package/dist/templates/default/.agents/skills/security/SKILL.md +31 -0
  285. package/dist/templates/headless/.agents/skills/actions/SKILL.md +32 -0
  286. package/dist/templates/workspace-core/.agents/skills/actions/SKILL.md +32 -0
  287. package/dist/templates/workspace-core/.agents/skills/adding-a-feature/SKILL.md +7 -0
  288. package/dist/templates/workspace-core/.agents/skills/authentication/SKILL.md +40 -0
  289. package/dist/templates/workspace-core/.agents/skills/security/SKILL.md +31 -0
  290. package/dist/templates/workspace-core/.agents/skills/sharing/SKILL.md +4 -0
  291. package/docs/content/actions.mdx +47 -4
  292. package/docs/content/native-chat-ui.mdx +7 -0
  293. package/docs/content/organizations-teams-permissions.mdx +109 -3
  294. package/docs/content/template-design-collaboration-and-full-apps.mdx +15 -0
  295. package/docs/content/toolkit-org-team.mdx +72 -12
  296. package/package.json +2 -1
  297. package/src/a2a/artifact-response.ts +36 -29
  298. package/src/action.ts +83 -2
  299. package/src/chat-threads/store.ts +48 -43
  300. package/src/cli/skills-content/design-visual-edit-skill.ts +46 -3
  301. package/src/client/AgentPanel.tsx +26 -6
  302. package/src/client/AssistantChat.tsx +63 -7
  303. package/src/client/DefaultSpinner.tsx +29 -0
  304. package/src/client/org/TeamPage.tsx +161 -6
  305. package/src/client/org/hooks.ts +67 -0
  306. package/src/client/org/index.ts +9 -0
  307. package/src/client/transcription/use-live-transcription.ts +62 -10
  308. package/src/db/client.ts +42 -3
  309. package/src/db/ensure-additive-columns.ts +60 -33
  310. package/src/deploy/build.ts +31 -2
  311. package/src/mcp-client/routes.ts +10 -1
  312. package/src/org/app-roles-handlers.ts +152 -0
  313. package/src/org/app-roles.ts +355 -0
  314. package/src/org/index.ts +27 -1
  315. package/src/org/migrations.ts +22 -0
  316. package/src/org/plugin.ts +27 -0
  317. package/src/org/schema.ts +15 -0
  318. package/src/scripts/docs/search.ts +17 -0
  319. package/src/scripts/docs/source-search.ts +10 -0
  320. package/src/server/agent-chat/script-entries.ts +3 -0
  321. package/src/server/agent-chat-plugin.ts +53 -52
  322. package/src/server/builder-design-systems.ts +299 -82
  323. package/src/server/core-routes-plugin.ts +6 -1
  324. package/src/server/framework-request-handler.ts +44 -6
  325. package/src/server/index.ts +8 -0
  326. package/src/templates/chat/.agents/skills/actions/SKILL.md +32 -0
  327. package/src/templates/chat/.agents/skills/adding-a-feature/SKILL.md +7 -0
  328. package/src/templates/chat/.agents/skills/security/SKILL.md +31 -0
  329. package/src/templates/chat/.agents/skills/sharing/SKILL.md +4 -0
  330. package/src/templates/default/.agents/skills/actions/SKILL.md +32 -0
  331. package/src/templates/default/.agents/skills/adding-a-feature/SKILL.md +7 -0
  332. package/src/templates/default/.agents/skills/security/SKILL.md +31 -0
  333. package/src/templates/headless/.agents/skills/actions/SKILL.md +32 -0
  334. package/src/templates/workspace-core/.agents/skills/actions/SKILL.md +32 -0
  335. package/src/templates/workspace-core/.agents/skills/adding-a-feature/SKILL.md +7 -0
  336. package/src/templates/workspace-core/.agents/skills/authentication/SKILL.md +40 -0
  337. package/src/templates/workspace-core/.agents/skills/security/SKILL.md +31 -0
  338. package/src/templates/workspace-core/.agents/skills/sharing/SKILL.md +4 -0
  339. package/corpus/core/src/templates/chat/.agents/skills/actions/SKILL.md +0 -530
  340. package/corpus/core/src/templates/chat/.agents/skills/adding-a-feature/SKILL.md +0 -191
  341. package/corpus/core/src/templates/chat/.agents/skills/agent-native-docs/SKILL.md +0 -115
  342. package/corpus/core/src/templates/chat/.agents/skills/agent-native-toolkit/SKILL.md +0 -177
  343. package/corpus/core/src/templates/chat/.agents/skills/capture-learnings/SKILL.md +0 -89
  344. package/corpus/core/src/templates/chat/.agents/skills/create-skill/SKILL.md +0 -221
  345. package/corpus/core/src/templates/chat/.agents/skills/customizing-agent-native/SKILL.md +0 -220
  346. package/corpus/core/src/templates/chat/.agents/skills/delegate-to-agent/SKILL.md +0 -263
  347. package/corpus/core/src/templates/chat/.agents/skills/feature-flags/SKILL.md +0 -169
  348. package/corpus/core/src/templates/chat/.agents/skills/frontend-design/SKILL.md +0 -174
  349. package/corpus/core/src/templates/chat/.agents/skills/real-time-sync/SKILL.md +0 -232
  350. package/corpus/core/src/templates/chat/.agents/skills/security/SKILL.md +0 -282
  351. package/corpus/core/src/templates/chat/.agents/skills/self-modifying-code/SKILL.md +0 -119
  352. package/corpus/core/src/templates/chat/.agents/skills/shadcn-ui/SKILL.md +0 -123
  353. package/corpus/core/src/templates/chat/.agents/skills/upgrade-agent-native/SKILL.md +0 -122
  354. package/corpus/core/src/templates/chat/.env.example +0 -5
  355. package/corpus/core/src/templates/chat/.ignore +0 -0
  356. package/corpus/core/src/templates/chat/.oxfmtrc.json +0 -8
  357. package/corpus/core/src/templates/chat/AGENTS.md +0 -77
  358. package/corpus/core/src/templates/chat/CHANGELOG.md +0 -10
  359. package/corpus/core/src/templates/chat/DEVELOPING.md +0 -185
  360. package/corpus/core/src/templates/chat/README.md +0 -32
  361. package/corpus/core/src/templates/chat/_gitignore +0 -46
  362. package/corpus/core/src/templates/chat/actions/hello.ts +0 -13
  363. package/corpus/core/src/templates/chat/actions/navigate.ts +0 -41
  364. package/corpus/core/src/templates/chat/actions/run.ts +0 -2
  365. package/corpus/core/src/templates/chat/actions/view-screen.ts +0 -31
  366. package/corpus/core/src/templates/chat/app/components/layout/Header.tsx +0 -60
  367. package/corpus/core/src/templates/chat/app/components/layout/Layout.tsx +0 -188
  368. package/corpus/core/src/templates/chat/app/components/layout/Sidebar.tsx +0 -505
  369. package/corpus/core/src/templates/chat/app/components/ui/button.tsx +0 -1
  370. package/corpus/core/src/templates/chat/app/components/ui/card.tsx +0 -1
  371. package/corpus/core/src/templates/chat/app/components/ui/dropdown-menu.tsx +0 -1
  372. package/corpus/core/src/templates/chat/app/components/ui/input.tsx +0 -1
  373. package/corpus/core/src/templates/chat/app/components/ui/label.tsx +0 -1
  374. package/corpus/core/src/templates/chat/app/components/ui/sheet.tsx +0 -1
  375. package/corpus/core/src/templates/chat/app/components/ui/toolkit-provider.tsx +0 -17
  376. package/corpus/core/src/templates/chat/app/components/ui/tooltip.tsx +0 -1
  377. package/corpus/core/src/templates/chat/app/design-system.ts +0 -3
  378. package/corpus/core/src/templates/chat/app/entry.client.tsx +0 -22
  379. package/corpus/core/src/templates/chat/app/entry.server.tsx +0 -10
  380. package/corpus/core/src/templates/chat/app/global.css +0 -93
  381. package/corpus/core/src/templates/chat/app/hooks/use-navigation-state.ts +0 -93
  382. package/corpus/core/src/templates/chat/app/i18n/ar-SA.ts +0 -68
  383. package/corpus/core/src/templates/chat/app/i18n/de-DE.ts +0 -71
  384. package/corpus/core/src/templates/chat/app/i18n/en-US.ts +0 -70
  385. package/corpus/core/src/templates/chat/app/i18n/es-ES.ts +0 -71
  386. package/corpus/core/src/templates/chat/app/i18n/fr-FR.ts +0 -71
  387. package/corpus/core/src/templates/chat/app/i18n/hi-IN.ts +0 -69
  388. package/corpus/core/src/templates/chat/app/i18n/index.ts +0 -34
  389. package/corpus/core/src/templates/chat/app/i18n/ja-JP.ts +0 -70
  390. package/corpus/core/src/templates/chat/app/i18n/ko-KR.ts +0 -70
  391. package/corpus/core/src/templates/chat/app/i18n/pt-BR.ts +0 -71
  392. package/corpus/core/src/templates/chat/app/i18n/zh-CN.ts +0 -66
  393. package/corpus/core/src/templates/chat/app/i18n/zh-TW.ts +0 -66
  394. package/corpus/core/src/templates/chat/app/i18n-data.ts +0 -556
  395. package/corpus/core/src/templates/chat/app/lib/agent-page.tsx +0 -49
  396. package/corpus/core/src/templates/chat/app/lib/app-config.ts +0 -11
  397. package/corpus/core/src/templates/chat/app/lib/tab-id.ts +0 -1
  398. package/corpus/core/src/templates/chat/app/lib/utils.ts +0 -1
  399. package/corpus/core/src/templates/chat/app/root.tsx +0 -173
  400. package/corpus/core/src/templates/chat/app/routes/_index.tsx +0 -94
  401. package/corpus/core/src/templates/chat/app/routes/agent.tsx +0 -24
  402. package/corpus/core/src/templates/chat/app/routes/chat.$threadId.tsx +0 -1
  403. package/corpus/core/src/templates/chat/app/routes/database.tsx +0 -17
  404. package/corpus/core/src/templates/chat/app/routes/extensions.$id.$slug.tsx +0 -2
  405. package/corpus/core/src/templates/chat/app/routes/extensions.$id.tsx +0 -11
  406. package/corpus/core/src/templates/chat/app/routes/extensions._index.tsx +0 -11
  407. package/corpus/core/src/templates/chat/app/routes/extensions.tsx +0 -5
  408. package/corpus/core/src/templates/chat/app/routes/observability.tsx +0 -19
  409. package/corpus/core/src/templates/chat/app/routes/settings.tsx +0 -89
  410. package/corpus/core/src/templates/chat/app/routes/team.tsx +0 -11
  411. package/corpus/core/src/templates/chat/app/routes.ts +0 -4
  412. package/corpus/core/src/templates/chat/app/vite-env.d.ts +0 -6
  413. package/corpus/core/src/templates/chat/changelog/2026-06-24-a-new-settings-page-gives-quick-access-to-language-workspace.md +0 -6
  414. package/corpus/core/src/templates/chat/changelog/2026-06-24-added-a-language-picker-and-localized-app-chrome-for-support.md +0 -6
  415. package/corpus/core/src/templates/chat/changelog/2026-06-27-traditional-chinese-copy-uses-taiwan-terminology.md +0 -6
  416. package/corpus/core/src/templates/chat/changelog/2026-06-28-left-sidebar-collapse-motion-and-footer-chrome-are-quieter.md +0 -6
  417. package/corpus/core/src/templates/chat/changelog/2026-06-29-chat-layouts-adapt-when-the-agent-sidebar-is-open.md +0 -6
  418. package/corpus/core/src/templates/chat/changelog/2026-07-08-settings-are-cleaner-and-searchable.md +0 -5
  419. package/corpus/core/src/templates/chat/changelog/2026-07-10-chat-now-makes-ai-connection-setup-clear-without-shifting-th.md +0 -6
  420. package/corpus/core/src/templates/chat/changelog/2026-07-13-a-full-agent-page-now-brings-context-files-connections-jobs-.md +0 -6
  421. package/corpus/core/src/templates/chat/changelog/2026-07-14-chat-opens-reliably-on-hosted-deployments-instead-of-failing.md +0 -6
  422. package/corpus/core/src/templates/chat/changelog/2026-07-14-fixed-chat-template-startup-with-older-core-versions.md +0 -6
  423. package/corpus/core/src/templates/chat/changelog/2026-07-15-chat-navigation-focuses-on-chat-and-agent.md +0 -6
  424. package/corpus/core/src/templates/chat/changelog/2026-07-17-the-agent-chat-sidebar-stays-closed-until-you-open-it-or-sta.md +0 -6
  425. package/corpus/core/src/templates/chat/changelog/2026-07-22-compact-sidebar-footer.md +0 -6
  426. package/corpus/core/src/templates/chat/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +0 -6
  427. package/corpus/core/src/templates/chat/changelog/2026-07-22-manage-agent-navigation-now-uses-the-connected-nodes-icon.md +0 -6
  428. package/corpus/core/src/templates/chat/changelog/2026-07-22-recent-chats-are-easier-to-scan-and-expand.md +0 -6
  429. package/corpus/core/src/templates/chat/changelog/2026-07-23-full-page-chat-is-better-centered-with-quieter-chat-history-.md +0 -6
  430. package/corpus/core/src/templates/chat/changelog/2026-07-24-borderless-secondary-surfaces.md +0 -6
  431. package/corpus/core/src/templates/chat/changelog/2026-07-24-sidebar-footer-controls-follow-a-consistent-order.md +0 -6
  432. package/corpus/core/src/templates/chat/changelog/2026-07-25-settings-navigation-now-keeps-manage-agent-as-a-dedicated-li.md +0 -6
  433. package/corpus/core/src/templates/chat/components.json +0 -20
  434. package/corpus/core/src/templates/chat/learnings.defaults.md +0 -5
  435. package/corpus/core/src/templates/chat/netlify.toml +0 -11
  436. package/corpus/core/src/templates/chat/package.json +0 -92
  437. package/corpus/core/src/templates/chat/public/agent-native-icon-dark.svg +0 -10
  438. package/corpus/core/src/templates/chat/public/agent-native-icon-light.svg +0 -10
  439. package/corpus/core/src/templates/chat/public/agent-native-logo-dark.svg +0 -21
  440. package/corpus/core/src/templates/chat/public/agent-native-logo-light.svg +0 -21
  441. package/corpus/core/src/templates/chat/public/favicon.svg +0 -1
  442. package/corpus/core/src/templates/chat/public/icon-180.svg +0 -1
  443. package/corpus/core/src/templates/chat/public/icon-192.svg +0 -1
  444. package/corpus/core/src/templates/chat/public/icon-512.svg +0 -1
  445. package/corpus/core/src/templates/chat/public/manifest.json +0 -21
  446. package/corpus/core/src/templates/chat/react-router.config.ts +0 -7
  447. package/corpus/core/src/templates/chat/server/middleware/auth.ts +0 -15
  448. package/corpus/core/src/templates/chat/server/plugins/agent-chat.ts +0 -21
  449. package/corpus/core/src/templates/chat/server/plugins/auth.ts +0 -17
  450. package/corpus/core/src/templates/chat/server/routes/[...page].get.ts +0 -5
  451. package/corpus/core/src/templates/chat/ssr-entry.ts +0 -15
  452. package/corpus/core/src/templates/chat/tsconfig.json +0 -21
  453. package/corpus/core/src/templates/chat/vite.config.ts +0 -19
  454. package/corpus/templates/design/server/handlers/index-design-system-with-builder.ts +0 -151
  455. package/corpus/templates/design/server/routes/api/index-design-system-with-builder.post.ts +0 -1
  456. package/corpus/templates/slides/server/handlers/index-design-system-with-builder.ts +0 -119
  457. package/corpus/templates/slides/server/routes/api/index-design-system-with-builder.post.ts +0 -1
@@ -1,173 +0,0 @@
1
- import { configureTracking } from "@agent-native/core/client/analytics";
2
- import { appPath } from "@agent-native/core/client/api-path";
3
- import { useDbSync } from "@agent-native/core/client/hooks";
4
- import {
5
- AppProviders,
6
- createAgentNativeQueryClient,
7
- } from "@agent-native/core/client/hooks";
8
- import { getLocaleInitScript, useT } from "@agent-native/core/client/i18n";
9
- import {
10
- CommandMenu,
11
- useCommandMenuShortcut,
12
- } from "@agent-native/core/client/navigation";
13
- import { getThemeInitScript } from "@agent-native/core/client/ui";
14
- import { IconHierarchy2, IconSun, IconMoon } from "@tabler/icons-react";
15
- import { useQueryClient } from "@tanstack/react-query";
16
- import { useTheme } from "next-themes";
17
- import { useCallback, useState } from "react";
18
- import {
19
- Links,
20
- Meta,
21
- Outlet,
22
- Scripts,
23
- ScrollRestoration,
24
- useNavigate,
25
- } from "react-router";
26
- import type { LinksFunction } from "react-router";
27
-
28
- import { Layout as AppLayout } from "@/components/layout/Layout";
29
- import { AppToolkitProvider } from "@/components/ui/toolkit-provider";
30
- import { useNavigationState } from "@/hooks/use-navigation-state";
31
- import { APP_TITLE } from "@/lib/app-config";
32
- import { TAB_ID } from "@/lib/tab-id";
33
-
34
- import changelog from "../CHANGELOG.md?raw";
35
- import { i18nCatalog } from "./i18n";
36
-
37
- import stylesheet from "./global.css?url";
38
-
39
- configureTracking({
40
- getDefaultProps: (_name, properties) => ({
41
- ...properties,
42
- app: "chat",
43
- }),
44
- });
45
-
46
- export const links: LinksFunction = () => [
47
- { rel: "stylesheet", href: stylesheet },
48
- ];
49
-
50
- const THEME_INIT_SCRIPT = getThemeInitScript();
51
- const LOCALE_INIT_SCRIPT = getLocaleInitScript();
52
-
53
- export function Layout({ children }: { children: React.ReactNode }) {
54
- return (
55
- <html lang="en" suppressHydrationWarning>
56
- <head>
57
- <meta charSet="utf-8" />
58
- <meta
59
- name="viewport"
60
- content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
61
- />
62
- <script
63
- suppressHydrationWarning
64
- dangerouslySetInnerHTML={{ __html: THEME_INIT_SCRIPT }}
65
- />
66
- <script
67
- data-agent-native-locale-init
68
- suppressHydrationWarning
69
- dangerouslySetInnerHTML={{ __html: LOCALE_INIT_SCRIPT }}
70
- />
71
- <link rel="manifest" href={appPath("/manifest.json")} />
72
- <meta name="theme-color" content="#18181B" />
73
- <meta name="mobile-web-app-capable" content="yes" />
74
- <meta
75
- name="apple-mobile-web-app-status-bar-style"
76
- content="black-translucent"
77
- />
78
- <meta name="apple-mobile-web-app-title" content={APP_TITLE} />
79
- <link rel="icon" type="image/svg+xml" href={appPath("/favicon.svg")} />
80
- <link rel="apple-touch-icon" href={appPath("/icon-180.svg")} />
81
- <Meta />
82
- <Links />
83
- </head>
84
- <body>
85
- {children}
86
- <ScrollRestoration />
87
- <Scripts />
88
- </body>
89
- </html>
90
- );
91
- }
92
-
93
- function DbSyncSetup() {
94
- const qc = useQueryClient();
95
- useNavigationState();
96
- useDbSync({
97
- queryClient: qc,
98
- ignoreSource: TAB_ID,
99
- });
100
- return null;
101
- }
102
-
103
- function ThemeToggleItem() {
104
- const { resolvedTheme, setTheme } = useTheme();
105
- const t = useT();
106
- const isDark = resolvedTheme === "dark";
107
- return (
108
- <CommandMenu.Item
109
- onSelect={() => setTheme(isDark ? "light" : "dark")}
110
- keywords={["theme", "dark", "light", "mode"]}
111
- >
112
- {isDark ? <IconSun size={16} /> : <IconMoon size={16} />}
113
- {t("root.toggleTheme")}
114
- </CommandMenu.Item>
115
- );
116
- }
117
-
118
- function AppContent() {
119
- const [cmdkOpen, setCmdkOpen] = useState(false);
120
- const navigate = useNavigate();
121
- const t = useT();
122
- useCommandMenuShortcut(useCallback(() => setCmdkOpen(true), []));
123
- return (
124
- <>
125
- <CommandMenu
126
- open={cmdkOpen}
127
- onOpenChange={setCmdkOpen}
128
- changelog={changelog}
129
- changelogKey="chat"
130
- >
131
- <CommandMenu.Group heading={t("root.commandActions")}>
132
- <CommandMenu.Item onSelect={() => {}}>
133
- {t("root.commandSearch")}
134
- </CommandMenu.Item>
135
- <CommandMenu.Item
136
- onSelect={() => navigate("/agent")}
137
- keywords={[
138
- "agent",
139
- "context",
140
- "files",
141
- "connections",
142
- "jobs",
143
- "access",
144
- ]}
145
- >
146
- <IconHierarchy2 size={16} />
147
- {t("settings.openAgentSettings")}
148
- </CommandMenu.Item>
149
- </CommandMenu.Group>
150
- <CommandMenu.Group heading={t("root.commandAppearance")}>
151
- <ThemeToggleItem />
152
- </CommandMenu.Group>
153
- </CommandMenu>
154
- <AppLayout>
155
- <Outlet />
156
- </AppLayout>
157
- </>
158
- );
159
- }
160
-
161
- export default function Root() {
162
- const [queryClient] = useState(() => createAgentNativeQueryClient());
163
- return (
164
- <AppToolkitProvider>
165
- <AppProviders queryClient={queryClient} i18n={{ catalog: i18nCatalog }}>
166
- <DbSyncSetup />
167
- <AppContent />
168
- </AppProviders>
169
- </AppToolkitProvider>
170
- );
171
- }
172
-
173
- export { ErrorBoundary } from "@agent-native/core/client/ui";
@@ -1,94 +0,0 @@
1
- import {
2
- AgentChatSurface,
3
- markAgentChatHomeHandoff,
4
- } from "@agent-native/core/client/agent-chat";
5
- import { useT } from "@agent-native/core/client/i18n";
6
- import { useEffect } from "react";
7
- import { useNavigate, useParams } from "react-router";
8
-
9
- import { APP_TITLE } from "@/lib/app-config";
10
- import { TAB_ID } from "@/lib/tab-id";
11
-
12
- const SEO_TITLE = `${APP_TITLE} - Open Source AI app starter with actions`;
13
- const SEO_DESCRIPTION =
14
- "Open Source starter for agent-native apps with durable chat, shared actions, UI state, tools, and a backend your agent can extend.";
15
-
16
- export function meta() {
17
- return [
18
- { title: SEO_TITLE },
19
- {
20
- name: "description",
21
- content: SEO_DESCRIPTION,
22
- },
23
- { property: "og:title", content: SEO_TITLE },
24
- { property: "og:description", content: SEO_DESCRIPTION },
25
- { name: "twitter:card", content: "summary" },
26
- { name: "twitter:title", content: SEO_TITLE },
27
- { name: "twitter:description", content: SEO_DESCRIPTION },
28
- ];
29
- }
30
-
31
- function chatThreadPath(threadId: string | null) {
32
- return threadId ? `/chat/${encodeURIComponent(threadId)}` : "/";
33
- }
34
-
35
- export default function ChatRoute() {
36
- const { threadId } = useParams();
37
- const navigate = useNavigate();
38
- const t = useT();
39
- const threadUrlSync = threadId
40
- ? {
41
- routeThreadId: threadId,
42
- getPath: chatThreadPath,
43
- navigate,
44
- }
45
- : undefined;
46
-
47
- useEffect(() => {
48
- function handleChatRunning(event: Event) {
49
- const detail = (event as CustomEvent).detail;
50
- if (detail?.isRunning === true) markAgentChatHomeHandoff("chat");
51
- }
52
-
53
- window.addEventListener("agentNative.chatRunning", handleChatRunning);
54
- return () =>
55
- window.removeEventListener("agentNative.chatRunning", handleChatRunning);
56
- }, []);
57
-
58
- return (
59
- <div className="flex h-full min-h-0 flex-col bg-background">
60
- <AgentChatSurface
61
- mode="page"
62
- chatViewTransition
63
- className="h-full"
64
- defaultMode="chat"
65
- storageKey="chat"
66
- threadUrlSync={threadUrlSync}
67
- browserTabId={TAB_ID}
68
- showHeader={false}
69
- showTabBar={false}
70
- dynamicSuggestions={false}
71
- suggestions={[
72
- t("chat.suggestionCapabilities"),
73
- t("chat.suggestionCustomize"),
74
- t("chat.suggestionActions"),
75
- ]}
76
- emptyStateText={t("chat.emptyState")}
77
- emptyStateDisplay="hidden"
78
- centerComposerWhenEmpty
79
- composerLayoutVariant="hero"
80
- composerPlaceholder={t("chat.composerPlaceholder")}
81
- composerSlot={
82
- <div className="mx-auto mb-5 max-w-xl px-4 text-center">
83
- <h1 className="text-2xl font-semibold tracking-normal text-foreground sm:text-3xl">
84
- {t("chat.heroTitle")}
85
- </h1>
86
- <p className="mt-2 text-sm leading-6 text-muted-foreground">
87
- {t("chat.heroDescription")}
88
- </p>
89
- </div>
90
- }
91
- />
92
- </div>
93
- );
94
- }
@@ -1,24 +0,0 @@
1
- import {
2
- AgentChatSurface,
3
- AgentTabsPage,
4
- } from "@agent-native/core/client/agent-chat";
5
- import { useT } from "@agent-native/core/client/i18n";
6
- import { useSetPageTitle } from "@agent-native/toolkit/app-shell";
7
-
8
- import { resolveAgentPageComponent } from "@/lib/agent-page";
9
- import { APP_TITLE } from "@/lib/app-config";
10
-
11
- export function meta() {
12
- return [{ title: `Agent - ${APP_TITLE}` }];
13
- }
14
-
15
- export default function AgentRoute() {
16
- const t = useT();
17
- useSetPageTitle(t("settings.agentTitle"));
18
-
19
- const AgentPage = resolveAgentPageComponent({
20
- AgentChatSurface,
21
- AgentTabsPage,
22
- });
23
- return <AgentPage appName={APP_TITLE} />;
24
- }
@@ -1 +0,0 @@
1
- export { default, meta } from "./_index";
@@ -1,17 +0,0 @@
1
- import { DbAdminPage } from "@agent-native/core/client/db-admin";
2
- import { useT } from "@agent-native/core/client/i18n";
3
- import { useSetPageTitle } from "@agent-native/toolkit/app-shell";
4
-
5
- export function meta() {
6
- return [{ title: "Database" }];
7
- }
8
-
9
- export default function DatabasePage() {
10
- const t = useT();
11
- useSetPageTitle(t("pages.databaseTitle"));
12
- return (
13
- <div className="h-full">
14
- <DbAdminPage />
15
- </div>
16
- );
17
- }
@@ -1,2 +0,0 @@
1
- export * from "./extensions.$id";
2
- export { default } from "./extensions.$id";
@@ -1,11 +0,0 @@
1
- import { ExtensionViewerPage } from "@agent-native/core/client/extensions";
2
-
3
- import { APP_TITLE } from "@/lib/app-config";
4
-
5
- export function meta() {
6
- return [{ title: `Extension — ${APP_TITLE}` }];
7
- }
8
-
9
- export default function ExtensionViewerRoute() {
10
- return <ExtensionViewerPage />;
11
- }
@@ -1,11 +0,0 @@
1
- import { Navigate } from "react-router";
2
-
3
- import { APP_TITLE } from "@/lib/app-config";
4
-
5
- export function meta() {
6
- return [{ title: `Extensions — ${APP_TITLE}` }];
7
- }
8
-
9
- export default function ExtensionsRoute() {
10
- return <Navigate to="/settings#extensions" replace />;
11
- }
@@ -1,5 +0,0 @@
1
- import { Outlet } from "react-router";
2
-
3
- export default function ExtensionsLayout() {
4
- return <Outlet />;
5
- }
@@ -1,19 +0,0 @@
1
- import { useT } from "@agent-native/core/client/i18n";
2
- import { ObservabilityDashboard } from "@agent-native/core/client/observability";
3
- import { useSetPageTitle } from "@agent-native/toolkit/app-shell";
4
-
5
- import enUS from "@/i18n/en-US";
6
-
7
- export function meta() {
8
- return [{ title: enUS.pages.observabilityPageTitle }];
9
- }
10
-
11
- export default function ObservabilityPage() {
12
- const t = useT();
13
- useSetPageTitle(t("pages.observabilityPageTitle"));
14
- return (
15
- <div className="p-6">
16
- <ObservabilityDashboard />
17
- </div>
18
- );
19
- }
@@ -1,89 +0,0 @@
1
- import { ChangelogSettingsCard } from "@agent-native/core/client/changelog";
2
- import { LanguagePicker, useT } from "@agent-native/core/client/i18n";
3
- import { TeamPage } from "@agent-native/core/client/org";
4
- import {
5
- AccountSettingsCard,
6
- SettingsTabsPage,
7
- useAgentSettingsTabs,
8
- type SettingsSearchEntry,
9
- } from "@agent-native/core/client/settings";
10
- import { useSetPageTitle } from "@agent-native/toolkit/app-shell";
11
- import { useMemo } from "react";
12
-
13
- import {
14
- Card,
15
- CardContent,
16
- CardDescription,
17
- CardHeader,
18
- CardTitle,
19
- } from "@/components/ui/card";
20
- import { Label } from "@/components/ui/label";
21
- import { APP_TITLE } from "@/lib/app-config";
22
-
23
- import changelog from "../../CHANGELOG.md?raw";
24
-
25
- export function meta() {
26
- return [{ title: `Settings - ${APP_TITLE}` }];
27
- }
28
-
29
- export default function SettingsRoute() {
30
- const t = useT();
31
- const agentSettingsTabs = useAgentSettingsTabs();
32
- useSetPageTitle(t("settings.title"));
33
-
34
- const generalSearchEntries = useMemo<SettingsSearchEntry[]>(
35
- () => [
36
- {
37
- id: "chat-language",
38
- label: t("settings.languageTitle"),
39
- keywords: "language locale translation i18n",
40
- hash: "language",
41
- },
42
- ],
43
- [t],
44
- );
45
-
46
- return (
47
- <SettingsTabsPage
48
- account={<AccountSettingsCard />}
49
- teamLabel={t("navigation.team")}
50
- extraTabs={agentSettingsTabs}
51
- generalSearchEntries={generalSearchEntries}
52
- general={
53
- <div className="mx-auto w-full max-w-2xl space-y-6">
54
- <p className="text-sm leading-6 text-muted-foreground">
55
- {t("settings.description")}
56
- </p>
57
-
58
- <Card id="language" className="scroll-mt-16">
59
- <CardHeader>
60
- <CardTitle className="text-base">
61
- {t("settings.languageTitle")}
62
- </CardTitle>
63
- <CardDescription>
64
- {t("settings.languageDescription")}
65
- </CardDescription>
66
- </CardHeader>
67
- <CardContent className="max-w-xs space-y-1.5">
68
- <Label>{t("settings.languageLabel")}</Label>
69
- <LanguagePicker label={t("settings.languageLabel")} />
70
- </CardContent>
71
- </Card>
72
- </div>
73
- }
74
- team={
75
- <div className="mx-auto w-full max-w-3xl">
76
- <TeamPage
77
- showTitle={false}
78
- createOrgDescription={t("pages.teamCreateOrgDescription")}
79
- />
80
- </div>
81
- }
82
- whatsNew={
83
- <div className="mx-auto w-full max-w-2xl">
84
- <ChangelogSettingsCard markdown={changelog} />
85
- </div>
86
- }
87
- />
88
- );
89
- }
@@ -1,11 +0,0 @@
1
- import { Navigate } from "react-router";
2
-
3
- import { APP_TITLE } from "@/lib/app-config";
4
-
5
- export function meta() {
6
- return [{ title: `Team — ${APP_TITLE}` }];
7
- }
8
-
9
- export default function TeamRoute() {
10
- return <Navigate to="/settings#organization" replace />;
11
- }
@@ -1,4 +0,0 @@
1
- import { type RouteConfig } from "@react-router/dev/routes";
2
- import { flatRoutes } from "@react-router/fs-routes";
3
-
4
- export default flatRoutes() satisfies RouteConfig;
@@ -1,6 +0,0 @@
1
- /// <reference types="vite/client" />
2
-
3
- declare module "react-dom/server.browser" {
4
- export * from "react-dom/server";
5
- export { default } from "react-dom/server";
6
- }
@@ -1,6 +0,0 @@
1
- ---
2
- type: added
3
- date: 2026-06-24
4
- ---
5
-
6
- A new Settings page gives quick access to language, workspace, and agent preferences.
@@ -1,6 +0,0 @@
1
- ---
2
- type: added
3
- date: 2026-06-24
4
- ---
5
-
6
- Added a language picker and localized app chrome for supported languages.
@@ -1,6 +0,0 @@
1
- ---
2
- type: fixed
3
- date: 2026-06-27
4
- ---
5
-
6
- Traditional Chinese copy now uses Taiwan terminology and clearer technical wording.
@@ -1,6 +0,0 @@
1
- ---
2
- type: improved
3
- date: 2026-06-28
4
- ---
5
-
6
- Left sidebar collapse motion and footer controls now feel smoother and use less divider chrome.
@@ -1,6 +0,0 @@
1
- ---
2
- type: improved
3
- date: 2026-06-29
4
- ---
5
-
6
- Chat layouts adapt when the agent sidebar is open.
@@ -1,5 +0,0 @@
1
- ---
2
- type: improved
3
- ---
4
-
5
- Settings are cleaner and searchable, with a consistent navigation that jumps straight to any setting.
@@ -1,6 +0,0 @@
1
- ---
2
- type: improved
3
- date: 2026-07-10
4
- ---
5
-
6
- Chat now makes AI connection setup clear without shifting the composer.
@@ -1,6 +0,0 @@
1
- ---
2
- type: added
3
- date: 2026-07-13
4
- ---
5
-
6
- A full Agent page now brings context, files, connections, jobs, and external access together
@@ -1,6 +0,0 @@
1
- ---
2
- type: fixed
3
- date: 2026-07-14
4
- ---
5
-
6
- Chat opens reliably on hosted deployments instead of failing during startup
@@ -1,6 +0,0 @@
1
- ---
2
- type: fixed
3
- date: 2026-07-14
4
- ---
5
-
6
- Fixed chat template startup with older core versions
@@ -1,6 +0,0 @@
1
- ---
2
- type: removed
3
- date: 2026-07-15
4
- ---
5
-
6
- The main navigation is now focused on Chat, Agent, and essential workspace settings.
@@ -1,6 +0,0 @@
1
- ---
2
- type: fixed
3
- date: 2026-07-17
4
- ---
5
-
6
- The agent chat sidebar stays closed until you open it or start a chat handoff.
@@ -1,6 +0,0 @@
1
- ---
2
- type: improved
3
- date: 2026-07-22
4
- ---
5
-
6
- The sidebar footer now keeps Feedback and the collapse control on one compact row.
@@ -1,6 +0,0 @@
1
- ---
2
- type: fixed
3
- date: 2026-07-22
4
- ---
5
-
6
- Full-page chat keeps the active conversation when moving to and from the sidebar.
@@ -1,6 +0,0 @@
1
- ---
2
- type: improved
3
- date: 2026-07-22
4
- ---
5
-
6
- Manage agent navigation now uses the connected-nodes icon.
@@ -1,6 +0,0 @@
1
- ---
2
- type: improved
3
- date: 2026-07-22
4
- ---
5
-
6
- Recent chats now expand from a compact five-item list with New chat anchored at the bottom.
@@ -1,6 +0,0 @@
1
- ---
2
- type: improved
3
- date: 2026-07-23
4
- ---
5
-
6
- Full-page chat is better centered, with quieter chat history and a left-aligned New chat action.
@@ -1,6 +0,0 @@
1
- ---
2
- type: improved
3
- date: 2026-07-24
4
- ---
5
-
6
- Secondary controls and dashboard surfaces now use quieter borderless styling.
@@ -1,6 +0,0 @@
1
- ---
2
- type: improved
3
- date: 2026-07-24
4
- ---
5
-
6
- Sidebar utility controls now follow a consistent footer order.
@@ -1,6 +0,0 @@
1
- ---
2
- type: improved
3
- date: 2026-07-25
4
- ---
5
-
6
- Settings navigation now keeps Manage agent as a dedicated linked destination at the bottom.
@@ -1,20 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema.json",
3
- "style": "default",
4
- "rsc": false,
5
- "tsx": true,
6
- "tailwind": {
7
- "config": "",
8
- "css": "app/global.css",
9
- "baseColor": "slate",
10
- "cssVariables": true,
11
- "prefix": ""
12
- },
13
- "aliases": {
14
- "components": "@/components",
15
- "utils": "@/lib/utils",
16
- "ui": "@/components/ui",
17
- "lib": "@/lib",
18
- "hooks": "@/hooks"
19
- }
20
- }