@agent-native/core 0.109.2 → 0.109.4

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 (334) hide show
  1. package/corpus/README.md +2 -2
  2. package/corpus/core/CHANGELOG.md +16 -0
  3. package/corpus/core/docs/content/agent-native-toolkit.mdx +46 -13
  4. package/corpus/core/docs/content/locales/ar-SA/agent-native-toolkit.mdx +79 -55
  5. package/corpus/core/docs/content/locales/ar-SA/toolkit-capability-packages.mdx +21 -0
  6. package/corpus/core/docs/content/locales/ar-SA/toolkit-context-knowledge.mdx +12 -0
  7. package/corpus/core/docs/content/locales/ar-SA/toolkit-editors-canvases.mdx +17 -0
  8. package/corpus/core/docs/content/locales/de-DE/agent-native-toolkit.mdx +82 -54
  9. package/corpus/core/docs/content/locales/de-DE/toolkit-capability-packages.mdx +21 -0
  10. package/corpus/core/docs/content/locales/de-DE/toolkit-context-knowledge.mdx +12 -0
  11. package/corpus/core/docs/content/locales/de-DE/toolkit-editors-canvases.mdx +17 -0
  12. package/corpus/core/docs/content/locales/es-ES/agent-native-toolkit.mdx +81 -52
  13. package/corpus/core/docs/content/locales/es-ES/toolkit-capability-packages.mdx +21 -0
  14. package/corpus/core/docs/content/locales/es-ES/toolkit-context-knowledge.mdx +12 -0
  15. package/corpus/core/docs/content/locales/es-ES/toolkit-editors-canvases.mdx +21 -0
  16. package/corpus/core/docs/content/locales/fr-FR/agent-native-toolkit.mdx +84 -54
  17. package/corpus/core/docs/content/locales/fr-FR/toolkit-capability-packages.mdx +21 -0
  18. package/corpus/core/docs/content/locales/fr-FR/toolkit-context-knowledge.mdx +12 -0
  19. package/corpus/core/docs/content/locales/fr-FR/toolkit-editors-canvases.mdx +21 -0
  20. package/corpus/core/docs/content/locales/hi-IN/agent-native-toolkit.mdx +69 -62
  21. package/corpus/core/docs/content/locales/hi-IN/toolkit-capability-packages.mdx +21 -0
  22. package/corpus/core/docs/content/locales/hi-IN/toolkit-context-knowledge.mdx +12 -0
  23. package/corpus/core/docs/content/locales/hi-IN/toolkit-editors-canvases.mdx +17 -0
  24. package/corpus/core/docs/content/locales/ja-JP/agent-native-toolkit.mdx +69 -62
  25. package/corpus/core/docs/content/locales/ja-JP/toolkit-capability-packages.mdx +21 -0
  26. package/corpus/core/docs/content/locales/ja-JP/toolkit-context-knowledge.mdx +12 -0
  27. package/corpus/core/docs/content/locales/ja-JP/toolkit-editors-canvases.mdx +17 -0
  28. package/corpus/core/docs/content/locales/ko-KR/agent-native-toolkit.mdx +69 -62
  29. package/corpus/core/docs/content/locales/ko-KR/toolkit-capability-packages.mdx +21 -0
  30. package/corpus/core/docs/content/locales/ko-KR/toolkit-context-knowledge.mdx +12 -0
  31. package/corpus/core/docs/content/locales/ko-KR/toolkit-editors-canvases.mdx +17 -0
  32. package/corpus/core/docs/content/locales/pt-BR/agent-native-toolkit.mdx +82 -54
  33. package/corpus/core/docs/content/locales/pt-BR/toolkit-capability-packages.mdx +21 -0
  34. package/corpus/core/docs/content/locales/pt-BR/toolkit-context-knowledge.mdx +12 -0
  35. package/corpus/core/docs/content/locales/pt-BR/toolkit-editors-canvases.mdx +17 -0
  36. package/corpus/core/docs/content/locales/zh-CN/agent-native-toolkit.mdx +69 -62
  37. package/corpus/core/docs/content/locales/zh-CN/toolkit-capability-packages.mdx +21 -0
  38. package/corpus/core/docs/content/locales/zh-CN/toolkit-context-knowledge.mdx +12 -0
  39. package/corpus/core/docs/content/locales/zh-CN/toolkit-editors-canvases.mdx +17 -0
  40. package/corpus/core/docs/content/locales/zh-TW/agent-native-toolkit.mdx +69 -62
  41. package/corpus/core/docs/content/locales/zh-TW/toolkit-capability-packages.mdx +21 -0
  42. package/corpus/core/docs/content/locales/zh-TW/toolkit-context-knowledge.mdx +12 -0
  43. package/corpus/core/docs/content/locales/zh-TW/toolkit-editors-canvases.mdx +17 -0
  44. package/corpus/core/docs/content/toolkit-capability-packages.mdx +52 -0
  45. package/corpus/core/docs/content/toolkit-context-knowledge.mdx +46 -0
  46. package/corpus/core/docs/content/toolkit-editors-canvases.mdx +55 -0
  47. package/corpus/core/package.json +35 -34
  48. package/corpus/core/src/cli/create.ts +57 -15
  49. package/corpus/core/src/cli/package-lifecycle.ts +2 -0
  50. package/corpus/core/src/cli/skills-content/visual-plan-skill.ts +2 -0
  51. package/corpus/core/src/client/context-xray/ContextMeter.tsx +31 -111
  52. package/corpus/core/src/client/context-xray/ContextSegmentRow.tsx +8 -111
  53. package/corpus/core/src/client/context-xray/ContextTreemap.tsx +6 -111
  54. package/corpus/core/src/client/context-xray/ContextXRayPanel.tsx +31 -391
  55. package/corpus/core/src/client/context-xray/SegmentProvenancePopover.tsx +4 -52
  56. package/corpus/core/src/client/context-xray/format.ts +0 -33
  57. package/corpus/core/src/client/require-session.tsx +19 -3
  58. package/corpus/core/src/client/rich-markdown-editor/index.ts +42 -57
  59. package/corpus/core/src/client/rich-markdown-editor/uploadEditorImage.ts +2 -1
  60. package/corpus/core/src/client/use-action.ts +145 -2
  61. package/corpus/core/src/client/use-session.ts +79 -48
  62. package/corpus/core/src/client/visual-style-controls.tsx +1 -1088
  63. package/corpus/core/src/collab/agent-identity.ts +5 -22
  64. package/corpus/core/src/collab/client.ts +1 -53
  65. package/corpus/core/src/db/client.ts +13 -7
  66. package/corpus/core/src/db/create-get-db.ts +20 -13
  67. package/corpus/core/src/db/request-telemetry.ts +154 -0
  68. package/corpus/core/src/integrations/index.ts +1 -0
  69. package/corpus/core/src/integrations/plugin.ts +9 -3
  70. package/corpus/core/src/integrations/remote-push-delivery-job.ts +48 -0
  71. package/corpus/core/src/integrations/remote-push-delivery.ts +370 -0
  72. package/corpus/core/src/integrations/remote-push-store.ts +275 -26
  73. package/corpus/core/src/server/better-auth-instance.ts +11 -3
  74. package/corpus/core/src/server/core-routes-plugin.ts +36 -14
  75. package/corpus/core/src/server/framework-request-handler.ts +11 -1
  76. package/corpus/core/src/server/http-response-telemetry.ts +233 -31
  77. package/corpus/core/src/styles/rich-markdown-editor.css +1 -510
  78. package/corpus/core/src/templates/workspace-core/.agents/skills/tracking/SKILL.md +19 -0
  79. package/corpus/core/src/testing.ts +1 -1
  80. package/corpus/core/src/vite/client.ts +3 -0
  81. package/corpus/templates/clips/actions/finalize-recording.ts +3 -1
  82. package/corpus/templates/clips/actions/set-mobile-capture-state.ts +4 -1
  83. package/corpus/templates/clips/app/components/library/library-layout.tsx +1 -6
  84. package/corpus/templates/clips/changelog/2026-07-18-new-recording-is-now-emphasized-as-the-primary-action-in-the.md +6 -0
  85. package/corpus/templates/clips/changelog/2026-07-18-recordings-now-remain-safely-recoverable-until-the-stored-me.md +6 -0
  86. package/corpus/templates/content/app/components/editor/VisualEditor.tsx +5 -3
  87. package/corpus/templates/content/app/components/editor/extensions/DragHandle.tsx +4 -4
  88. package/corpus/templates/content/package.json +25 -25
  89. package/corpus/templates/design/app/components/design/TweaksPanel.tsx +2 -1
  90. package/corpus/templates/design/package.json +1 -1
  91. package/corpus/templates/mail/package.json +9 -9
  92. package/corpus/templates/plan/.agents/skills/visual-plan/SKILL.md +2 -0
  93. package/corpus/templates/plan/app/components/editor/PlanDocumentEditor.tsx +8 -8
  94. package/corpus/templates/plan/app/components/editor/planSlashCommands.ts +6 -6
  95. package/corpus/templates/plan/app/components/plan/PlanImageNode.tsx +4 -7
  96. package/corpus/templates/plan/app/components/plan/PlanMarkdownEditor.tsx +6 -4
  97. package/corpus/templates/plan/app/components/plan/PlanVisualSurface.tsx +1 -1
  98. package/corpus/templates/plan/changelog/2026-07-18-visual-plans-now-open-on-wireframes-by-default-when-a-protot.md +6 -0
  99. package/corpus/templates/plan/package.json +3 -3
  100. package/corpus/templates/slides/app/components/editor/SlideStyleInspector.tsx +2 -2
  101. package/corpus/templates/slides/app/components/editor/TweaksPanel.tsx +2 -2
  102. package/corpus/templates/slides/package.json +13 -13
  103. package/corpus/templates/tasks/AGENTS.md +3 -0
  104. package/corpus/templates/tasks/actions/render-task-list-inline.ts +202 -0
  105. package/corpus/templates/tasks/changelog/2026-07-18-task-lists-can-now-appear-as-interactive-widgets-inline-in-c.md +6 -0
  106. package/corpus/templates/tasks/docs/features/f8-chat.mdx +2 -0
  107. package/corpus/templates/tasks/server/plugins/agent-chat.ts +2 -0
  108. package/dist/catalog.json +39 -1
  109. package/dist/cli/create.d.ts +10 -1
  110. package/dist/cli/create.d.ts.map +1 -1
  111. package/dist/cli/create.js +49 -16
  112. package/dist/cli/create.js.map +1 -1
  113. package/dist/cli/package-lifecycle.d.ts.map +1 -1
  114. package/dist/cli/package-lifecycle.js +2 -0
  115. package/dist/cli/package-lifecycle.js.map +1 -1
  116. package/dist/cli/skills-content/visual-plan-skill.d.ts +1 -1
  117. package/dist/cli/skills-content/visual-plan-skill.d.ts.map +1 -1
  118. package/dist/cli/skills-content/visual-plan-skill.js +2 -0
  119. package/dist/cli/skills-content/visual-plan-skill.js.map +1 -1
  120. package/dist/client/context-xray/ContextMeter.d.ts.map +1 -1
  121. package/dist/client/context-xray/ContextMeter.js +8 -23
  122. package/dist/client/context-xray/ContextMeter.js.map +1 -1
  123. package/dist/client/context-xray/ContextSegmentRow.d.ts.map +1 -1
  124. package/dist/client/context-xray/ContextSegmentRow.js +3 -19
  125. package/dist/client/context-xray/ContextSegmentRow.js.map +1 -1
  126. package/dist/client/context-xray/ContextTreemap.d.ts.map +1 -1
  127. package/dist/client/context-xray/ContextTreemap.js +3 -54
  128. package/dist/client/context-xray/ContextTreemap.js.map +1 -1
  129. package/dist/client/context-xray/ContextXRayPanel.d.ts.map +1 -1
  130. package/dist/client/context-xray/ContextXRayPanel.js +21 -163
  131. package/dist/client/context-xray/ContextXRayPanel.js.map +1 -1
  132. package/dist/client/context-xray/SegmentProvenancePopover.d.ts.map +1 -1
  133. package/dist/client/context-xray/SegmentProvenancePopover.js +3 -4
  134. package/dist/client/context-xray/SegmentProvenancePopover.js.map +1 -1
  135. package/dist/client/context-xray/format.d.ts +0 -4
  136. package/dist/client/context-xray/format.d.ts.map +1 -1
  137. package/dist/client/context-xray/format.js +0 -49
  138. package/dist/client/context-xray/format.js.map +1 -1
  139. package/dist/client/require-session.d.ts.map +1 -1
  140. package/dist/client/require-session.js +6 -3
  141. package/dist/client/require-session.js.map +1 -1
  142. package/dist/client/rich-markdown-editor/index.d.ts +1 -12
  143. package/dist/client/rich-markdown-editor/index.d.ts.map +1 -1
  144. package/dist/client/rich-markdown-editor/index.js +1 -12
  145. package/dist/client/rich-markdown-editor/index.js.map +1 -1
  146. package/dist/client/rich-markdown-editor/uploadEditorImage.d.ts +1 -1
  147. package/dist/client/rich-markdown-editor/uploadEditorImage.d.ts.map +1 -1
  148. package/dist/client/rich-markdown-editor/uploadEditorImage.js.map +1 -1
  149. package/dist/client/use-action.d.ts.map +1 -1
  150. package/dist/client/use-action.js +117 -1
  151. package/dist/client/use-action.js.map +1 -1
  152. package/dist/client/use-session.d.ts.map +1 -1
  153. package/dist/client/use-session.js +72 -50
  154. package/dist/client/use-session.js.map +1 -1
  155. package/dist/client/visual-style-controls.d.ts +1 -89
  156. package/dist/client/visual-style-controls.d.ts.map +1 -1
  157. package/dist/client/visual-style-controls.js +1 -498
  158. package/dist/client/visual-style-controls.js.map +1 -1
  159. package/dist/collab/agent-identity.d.ts +1 -14
  160. package/dist/collab/agent-identity.d.ts.map +1 -1
  161. package/dist/collab/agent-identity.js +1 -13
  162. package/dist/collab/agent-identity.js.map +1 -1
  163. package/dist/collab/awareness.d.ts +2 -2
  164. package/dist/collab/awareness.d.ts.map +1 -1
  165. package/dist/collab/client.d.ts +1 -19
  166. package/dist/collab/client.d.ts.map +1 -1
  167. package/dist/collab/client.js +1 -53
  168. package/dist/collab/client.js.map +1 -1
  169. package/dist/collab/struct-routes.d.ts +1 -1
  170. package/dist/db/client.d.ts.map +1 -1
  171. package/dist/db/client.js +7 -1
  172. package/dist/db/client.js.map +1 -1
  173. package/dist/db/create-get-db.d.ts +3 -6
  174. package/dist/db/create-get-db.d.ts.map +1 -1
  175. package/dist/db/create-get-db.js +9 -2
  176. package/dist/db/create-get-db.js.map +1 -1
  177. package/dist/db/request-telemetry.d.ts +23 -0
  178. package/dist/db/request-telemetry.d.ts.map +1 -0
  179. package/dist/db/request-telemetry.js +95 -0
  180. package/dist/db/request-telemetry.js.map +1 -0
  181. package/dist/integrations/index.d.ts +1 -0
  182. package/dist/integrations/index.d.ts.map +1 -1
  183. package/dist/integrations/index.js +1 -0
  184. package/dist/integrations/index.js.map +1 -1
  185. package/dist/integrations/plugin.d.ts.map +1 -1
  186. package/dist/integrations/plugin.js +8 -3
  187. package/dist/integrations/plugin.js.map +1 -1
  188. package/dist/integrations/remote-push-delivery-job.d.ts +4 -0
  189. package/dist/integrations/remote-push-delivery-job.d.ts.map +1 -0
  190. package/dist/integrations/remote-push-delivery-job.js +44 -0
  191. package/dist/integrations/remote-push-delivery-job.js.map +1 -0
  192. package/dist/integrations/remote-push-delivery.d.ts +11 -0
  193. package/dist/integrations/remote-push-delivery.d.ts.map +1 -0
  194. package/dist/integrations/remote-push-delivery.js +265 -0
  195. package/dist/integrations/remote-push-delivery.js.map +1 -0
  196. package/dist/integrations/remote-push-store.d.ts +33 -0
  197. package/dist/integrations/remote-push-store.d.ts.map +1 -1
  198. package/dist/integrations/remote-push-store.js +195 -26
  199. package/dist/integrations/remote-push-store.js.map +1 -1
  200. package/dist/notifications/routes.d.ts +3 -3
  201. package/dist/progress/routes.d.ts +1 -1
  202. package/dist/provider-api/corpus-jobs.d.ts +2 -2
  203. package/dist/resources/handlers.d.ts +3 -3
  204. package/dist/secrets/routes.d.ts +9 -9
  205. package/dist/server/agent-engine-api-key-route.d.ts +1 -1
  206. package/dist/server/better-auth-instance.js +7 -3
  207. package/dist/server/better-auth-instance.js.map +1 -1
  208. package/dist/server/core-routes-plugin.d.ts +8 -0
  209. package/dist/server/core-routes-plugin.d.ts.map +1 -1
  210. package/dist/server/core-routes-plugin.js +23 -8
  211. package/dist/server/core-routes-plugin.js.map +1 -1
  212. package/dist/server/framework-request-handler.d.ts.map +1 -1
  213. package/dist/server/framework-request-handler.js +9 -1
  214. package/dist/server/framework-request-handler.js.map +1 -1
  215. package/dist/server/http-response-telemetry.d.ts +3 -2
  216. package/dist/server/http-response-telemetry.d.ts.map +1 -1
  217. package/dist/server/http-response-telemetry.js +160 -27
  218. package/dist/server/http-response-telemetry.js.map +1 -1
  219. package/dist/server/transcribe-voice.d.ts +1 -1
  220. package/dist/styles/rich-markdown-editor.css +1 -510
  221. package/dist/templates/workspace-core/.agents/skills/tracking/SKILL.md +19 -0
  222. package/dist/testing.d.ts +1 -1
  223. package/dist/testing.d.ts.map +1 -1
  224. package/dist/testing.js +1 -1
  225. package/dist/testing.js.map +1 -1
  226. package/dist/vite/client.d.ts.map +1 -1
  227. package/dist/vite/client.js +3 -0
  228. package/dist/vite/client.js.map +1 -1
  229. package/docs/content/agent-native-toolkit.mdx +46 -13
  230. package/docs/content/locales/ar-SA/agent-native-toolkit.mdx +79 -55
  231. package/docs/content/locales/ar-SA/toolkit-capability-packages.mdx +21 -0
  232. package/docs/content/locales/ar-SA/toolkit-context-knowledge.mdx +12 -0
  233. package/docs/content/locales/ar-SA/toolkit-editors-canvases.mdx +17 -0
  234. package/docs/content/locales/de-DE/agent-native-toolkit.mdx +82 -54
  235. package/docs/content/locales/de-DE/toolkit-capability-packages.mdx +21 -0
  236. package/docs/content/locales/de-DE/toolkit-context-knowledge.mdx +12 -0
  237. package/docs/content/locales/de-DE/toolkit-editors-canvases.mdx +17 -0
  238. package/docs/content/locales/es-ES/agent-native-toolkit.mdx +81 -52
  239. package/docs/content/locales/es-ES/toolkit-capability-packages.mdx +21 -0
  240. package/docs/content/locales/es-ES/toolkit-context-knowledge.mdx +12 -0
  241. package/docs/content/locales/es-ES/toolkit-editors-canvases.mdx +21 -0
  242. package/docs/content/locales/fr-FR/agent-native-toolkit.mdx +84 -54
  243. package/docs/content/locales/fr-FR/toolkit-capability-packages.mdx +21 -0
  244. package/docs/content/locales/fr-FR/toolkit-context-knowledge.mdx +12 -0
  245. package/docs/content/locales/fr-FR/toolkit-editors-canvases.mdx +21 -0
  246. package/docs/content/locales/hi-IN/agent-native-toolkit.mdx +69 -62
  247. package/docs/content/locales/hi-IN/toolkit-capability-packages.mdx +21 -0
  248. package/docs/content/locales/hi-IN/toolkit-context-knowledge.mdx +12 -0
  249. package/docs/content/locales/hi-IN/toolkit-editors-canvases.mdx +17 -0
  250. package/docs/content/locales/ja-JP/agent-native-toolkit.mdx +69 -62
  251. package/docs/content/locales/ja-JP/toolkit-capability-packages.mdx +21 -0
  252. package/docs/content/locales/ja-JP/toolkit-context-knowledge.mdx +12 -0
  253. package/docs/content/locales/ja-JP/toolkit-editors-canvases.mdx +17 -0
  254. package/docs/content/locales/ko-KR/agent-native-toolkit.mdx +69 -62
  255. package/docs/content/locales/ko-KR/toolkit-capability-packages.mdx +21 -0
  256. package/docs/content/locales/ko-KR/toolkit-context-knowledge.mdx +12 -0
  257. package/docs/content/locales/ko-KR/toolkit-editors-canvases.mdx +17 -0
  258. package/docs/content/locales/pt-BR/agent-native-toolkit.mdx +82 -54
  259. package/docs/content/locales/pt-BR/toolkit-capability-packages.mdx +21 -0
  260. package/docs/content/locales/pt-BR/toolkit-context-knowledge.mdx +12 -0
  261. package/docs/content/locales/pt-BR/toolkit-editors-canvases.mdx +17 -0
  262. package/docs/content/locales/zh-CN/agent-native-toolkit.mdx +69 -62
  263. package/docs/content/locales/zh-CN/toolkit-capability-packages.mdx +21 -0
  264. package/docs/content/locales/zh-CN/toolkit-context-knowledge.mdx +12 -0
  265. package/docs/content/locales/zh-CN/toolkit-editors-canvases.mdx +17 -0
  266. package/docs/content/locales/zh-TW/agent-native-toolkit.mdx +69 -62
  267. package/docs/content/locales/zh-TW/toolkit-capability-packages.mdx +21 -0
  268. package/docs/content/locales/zh-TW/toolkit-context-knowledge.mdx +12 -0
  269. package/docs/content/locales/zh-TW/toolkit-editors-canvases.mdx +17 -0
  270. package/docs/content/toolkit-capability-packages.mdx +52 -0
  271. package/docs/content/toolkit-context-knowledge.mdx +46 -0
  272. package/docs/content/toolkit-editors-canvases.mdx +55 -0
  273. package/package.json +27 -26
  274. package/src/templates/workspace-core/.agents/skills/tracking/SKILL.md +19 -0
  275. package/corpus/core/src/client/rich-markdown-editor/BubbleToolbar.tsx +0 -253
  276. package/corpus/core/src/client/rich-markdown-editor/CodeBlockNode.tsx +0 -258
  277. package/corpus/core/src/client/rich-markdown-editor/DragHandle.ts +0 -1437
  278. package/corpus/core/src/client/rich-markdown-editor/ImageExtension.ts +0 -306
  279. package/corpus/core/src/client/rich-markdown-editor/RichMarkdownEditor.tsx +0 -80
  280. package/corpus/core/src/client/rich-markdown-editor/RunId.ts +0 -61
  281. package/corpus/core/src/client/rich-markdown-editor/SharedRichEditor.tsx +0 -321
  282. package/corpus/core/src/client/rich-markdown-editor/SlashCommandMenu.tsx +0 -310
  283. package/corpus/core/src/client/rich-markdown-editor/extensions.ts +0 -402
  284. package/corpus/core/src/client/rich-markdown-editor/gfmDoc.ts +0 -92
  285. package/corpus/core/src/client/rich-markdown-editor/surgical-apply.ts +0 -192
  286. package/corpus/core/src/client/rich-markdown-editor/useCollabReconcile.ts +0 -590
  287. package/dist/client/rich-markdown-editor/BubbleToolbar.d.ts +0 -37
  288. package/dist/client/rich-markdown-editor/BubbleToolbar.d.ts.map +0 -1
  289. package/dist/client/rich-markdown-editor/BubbleToolbar.js +0 -171
  290. package/dist/client/rich-markdown-editor/BubbleToolbar.js.map +0 -1
  291. package/dist/client/rich-markdown-editor/CodeBlockNode.d.ts +0 -49
  292. package/dist/client/rich-markdown-editor/CodeBlockNode.d.ts.map +0 -1
  293. package/dist/client/rich-markdown-editor/CodeBlockNode.js +0 -127
  294. package/dist/client/rich-markdown-editor/CodeBlockNode.js.map +0 -1
  295. package/dist/client/rich-markdown-editor/DragHandle.d.ts +0 -97
  296. package/dist/client/rich-markdown-editor/DragHandle.d.ts.map +0 -1
  297. package/dist/client/rich-markdown-editor/DragHandle.js +0 -1066
  298. package/dist/client/rich-markdown-editor/DragHandle.js.map +0 -1
  299. package/dist/client/rich-markdown-editor/ImageExtension.d.ts +0 -63
  300. package/dist/client/rich-markdown-editor/ImageExtension.d.ts.map +0 -1
  301. package/dist/client/rich-markdown-editor/ImageExtension.js +0 -243
  302. package/dist/client/rich-markdown-editor/ImageExtension.js.map +0 -1
  303. package/dist/client/rich-markdown-editor/RichMarkdownEditor.d.ts +0 -51
  304. package/dist/client/rich-markdown-editor/RichMarkdownEditor.d.ts.map +0 -1
  305. package/dist/client/rich-markdown-editor/RichMarkdownEditor.js +0 -37
  306. package/dist/client/rich-markdown-editor/RichMarkdownEditor.js.map +0 -1
  307. package/dist/client/rich-markdown-editor/RunId.d.ts +0 -28
  308. package/dist/client/rich-markdown-editor/RunId.d.ts.map +0 -1
  309. package/dist/client/rich-markdown-editor/RunId.js +0 -60
  310. package/dist/client/rich-markdown-editor/RunId.js.map +0 -1
  311. package/dist/client/rich-markdown-editor/SharedRichEditor.d.ts +0 -110
  312. package/dist/client/rich-markdown-editor/SharedRichEditor.d.ts.map +0 -1
  313. package/dist/client/rich-markdown-editor/SharedRichEditor.js +0 -144
  314. package/dist/client/rich-markdown-editor/SharedRichEditor.js.map +0 -1
  315. package/dist/client/rich-markdown-editor/SlashCommandMenu.d.ts +0 -41
  316. package/dist/client/rich-markdown-editor/SlashCommandMenu.d.ts.map +0 -1
  317. package/dist/client/rich-markdown-editor/SlashCommandMenu.js +0 -221
  318. package/dist/client/rich-markdown-editor/SlashCommandMenu.js.map +0 -1
  319. package/dist/client/rich-markdown-editor/extensions.d.ts +0 -178
  320. package/dist/client/rich-markdown-editor/extensions.d.ts.map +0 -1
  321. package/dist/client/rich-markdown-editor/extensions.js +0 -224
  322. package/dist/client/rich-markdown-editor/extensions.js.map +0 -1
  323. package/dist/client/rich-markdown-editor/gfmDoc.d.ts +0 -24
  324. package/dist/client/rich-markdown-editor/gfmDoc.d.ts.map +0 -1
  325. package/dist/client/rich-markdown-editor/gfmDoc.js +0 -83
  326. package/dist/client/rich-markdown-editor/gfmDoc.js.map +0 -1
  327. package/dist/client/rich-markdown-editor/surgical-apply.d.ts +0 -66
  328. package/dist/client/rich-markdown-editor/surgical-apply.d.ts.map +0 -1
  329. package/dist/client/rich-markdown-editor/surgical-apply.js +0 -147
  330. package/dist/client/rich-markdown-editor/surgical-apply.js.map +0 -1
  331. package/dist/client/rich-markdown-editor/useCollabReconcile.d.ts +0 -110
  332. package/dist/client/rich-markdown-editor/useCollabReconcile.d.ts.map +0 -1
  333. package/dist/client/rich-markdown-editor/useCollabReconcile.js +0 -441
  334. package/dist/client/rich-markdown-editor/useCollabReconcile.js.map +0 -1
package/corpus/README.md CHANGED
@@ -27,5 +27,5 @@ rg -n "defineAction|useActionQuery" node_modules/@agent-native/core/corpus
27
27
 
28
28
  ## Generated Counts
29
29
 
30
- - core files: 2309
31
- - template files: 6148
30
+ - core files: 2333
31
+ - template files: 6153
@@ -1,5 +1,21 @@
1
1
  # @agent-native/core
2
2
 
3
+ ## 0.109.4
4
+
5
+ ### Patch Changes
6
+
7
+ - b6d7f87: Move portable rich-editor, context presentation, and visual design controls into Toolkit while preserving Core compatibility re-exports, and add accurate side-effect metadata to capability packages.
8
+ - Updated dependencies [b6d7f87]
9
+ - @agent-native/toolkit@0.5.0
10
+
11
+ ## 0.109.3
12
+
13
+ ### Patch Changes
14
+
15
+ - 5199e0b: Make Chat the first and default starting point in the new-app CLI picker.
16
+ - 5199e0b: Track browser, server, cold-start, framework-readiness, and database latency for app requests; retain action 4xx failures; parallelize legacy route bootstrap reads; and deduplicate session lookups without treating transient auth failures as signed-out sessions.
17
+ - 5199e0b: Deliver remote-session Expo push notifications through a retrying, batched outbox worker and verify provider receipts before marking delivery complete.
18
+
3
19
  ## 0.109.2
4
20
 
5
21
  ### Patch Changes
@@ -1,20 +1,24 @@
1
1
  ---
2
- title: "Toolkits"
3
- description: "Battle-tested reusable building blocks for high-quality agentic applications: collaboration, sharing, settings, teams, setup, navigation, resources, agent UX, history, comments, and observability."
2
+ title: "Toolkit"
3
+ description: "One catalog of reusable foundations, editors and canvases, agent context, governance, workspace chrome, operations, and install-on-demand capability modules."
4
4
  ---
5
5
 
6
- # Toolkits
6
+ # Toolkit
7
7
 
8
- Toolkits are reusable, battle-tested building blocks for high-quality agentic
9
- applications. They turn the hard product work that repeats across apps into
10
- standard surfaces: realtime collaboration between humans and agents, sharing
11
- with humans and agents, settings, teams, setup, resources, history, review, and
12
- observability.
8
+ Toolkit is the reusable, battle-tested building-block shelf for high-quality
9
+ agentic applications. It turns the hard product work that repeats across apps
10
+ into standard surfaces without making one app pattern the center of the catalog.
11
+
12
+ This section is the single discovery shelf for reusable app-building UI. A
13
+ surface belongs in these docs because it is reusable, even when its current
14
+ implementation owner is Core or a template. Ownership labels and import paths
15
+ make that boundary explicit without scattering related UI guidance across the
16
+ site.
13
17
 
14
18
  Each kit packages the UI patterns, action contracts, app-state expectations,
15
19
  access boundaries, and agent-visible behavior that users expect to work
16
- consistently. Apps still own their domain model and visual identity; toolkits
17
- make the common product systems feel complete from the first version instead of
20
+ consistently. Apps still own their domain model and visual identity; Toolkit
21
+ makes the common product systems feel complete from the first version instead of
18
22
  being rebuilt in slightly different ways every time.
19
23
 
20
24
  <WireframeBlock id="doc-block-toolkits-index">
@@ -26,7 +30,7 @@ being rebuilt in slightly different ways every time.
26
30
  />
27
31
  </WireframeBlock>
28
32
 
29
- <Diagram id="doc-block-toolkits-boundary" title="How kits fit" summary={"The framework runtime supplies durable guarantees. Toolkits turn those guarantees into reusable product systems. Apps add domain-specific data, routes, and visual identity."}>
33
+ <Diagram id="doc-block-toolkits-boundary" title="How kits fit" summary={"The framework runtime supplies durable guarantees. Toolkit turns those guarantees into reusable product systems. Apps add domain-specific data, routes, and visual identity."}>
30
34
 
31
35
  ```html
32
36
  <div class="diagram-row">
@@ -36,7 +40,7 @@ being rebuilt in slightly different ways every time.
36
40
  </div>
37
41
  <div class="diagram-arrow diagram-muted" aria-hidden="true">&rarr;</div>
38
42
  <div class="diagram-card">
39
- <span class="diagram-pill accent">Toolkits</span><br />
43
+ <span class="diagram-pill accent">Toolkit</span><br />
40
44
  collaboration, sharing, setup, review, history, observability
41
45
  </div>
42
46
  <div class="diagram-arrow diagram-muted" aria-hidden="true">&rarr;</div>
@@ -66,7 +70,19 @@ being rebuilt in slightly different ways every time.
66
70
 
67
71
  </Diagram>
68
72
 
69
- ## The Kits {#the-kits}
73
+ ## Catalog {#catalog}
74
+
75
+ | Area | Start here | What it covers |
76
+ | -------------------------- | --------------------------------------------------------------- | ------------------------------------------------------------------------------- |
77
+ | Foundations | [UI Primitives](/docs/toolkit-ui) | Shared controls, hooks, app adapters, and shell seams. |
78
+ | Editors & canvases | [Editors & Canvases](/docs/toolkit-editors-canvases) | Rich editing, structured blocks, reusable canvas controls, and Design patterns. |
79
+ | Agent experience & context | [Context & Knowledge](/docs/toolkit-context-knowledge) | Context X-Ray, resources, knowledge, composer context, and agent-visible state. |
80
+ | Collaboration & governance | [Collaboration](/docs/toolkit-collaboration) | Sharing, presence, review, history, audit, and organization boundaries. |
81
+ | Workspace chrome | [App Chrome](/docs/toolkit-settings) | Settings, teams, setup, navigation, resources, and agent UX. |
82
+ | Operations | [Observability](/docs/toolkit-observability) | Usage, feedback, replay, diagnostics, and operational visibility. |
83
+ | Capability modules | [Toolkit Capability Modules](/docs/toolkit-capability-packages) | Scheduling, Creative Context, and Pinpoint as install-on-demand packages. |
84
+
85
+ ## Product kits {#product-kits}
70
86
 
71
87
  | Kit | Use it for |
72
88
  | -------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
@@ -82,8 +98,23 @@ being rebuilt in slightly different ways every time.
82
98
  | [Comments & Review](/docs/toolkit-comments-review) | Registered reviewable resources, comment actions, feedback queues, thread panels, mentions, resolved threads, and review status. |
83
99
  | [Observability](/docs/toolkit-observability) | Usage, spend, feedback, replay, errors, and run diagnostics. |
84
100
 
101
+ ## Package maturity and ownership {#package-maturity-and-ownership}
102
+
103
+ - The rich editor is **Toolkit-owned**. Existing Core editor imports remain thin
104
+ compatibility re-exports during migration.
105
+ - Design is a **template pattern** with reusable `design-tweaks`; it is not a
106
+ full drop-in editor or canvas package.
107
+ - Blocks remain **Core-owned** in this phase.
108
+ - The Context X-Ray engine remains **Core-owned**; its reusable presentation is
109
+ Toolkit-owned.
110
+ - Scheduling, Creative Context, and Pinpoint are **Toolkit capability modules,
111
+ installed on demand**. They remain separate npm packages so each domain can
112
+ keep an independent lifecycle manifest, dependency graph, and release cadence.
113
+ - Dispatch remains a **separate product**, not a Toolkit capability module.
114
+
85
115
  ## Implementation Boundary {#implementation-boundary}
86
116
 
117
+ Toolkit docs are organized by reusable product capability, not npm package.
87
118
  Kits are product surfaces first. Some pieces are runtime-backed
88
119
  (`@agent-native/core`), some are presentation primitives
89
120
  (`@agent-native/toolkit`), and apps usually wrap both through local adapters.
@@ -117,3 +148,5 @@ workflows, labels, and visual styling in the app.
117
148
  end and see where kits fit alongside your own domain model.
118
149
  - [**Component API**](/docs/components) — the generated reference for every
119
150
  public React export, including kit components.
151
+ - [**Package Lifecycle**](/docs/package-lifecycle) — inspect, add, and eject
152
+ manifest-driven capability packages safely.
@@ -1,21 +1,24 @@
1
1
  ---
2
- title: "Toolkits"
3
- description: "Battle-tested reusable building blocks for high-quality agentic applications: collaboration, sharing, settings, teams, setup, navigation, resources, agent UX, history, comments, and observability."
2
+ title: "Toolkit"
3
+ description: "كتالوج متوازن للأسس القابلة لإعادة الاستخدام والمحررات واللوحات وسياق الوكيل والحوكمة وهيكل مساحة العمل والعمليات ووحدات قدرات Toolkit."
4
4
  ---
5
5
 
6
6
  <!-- i18n-docs-ignore -->
7
7
 
8
- # Toolkits
8
+ # Toolkit
9
9
 
10
- Toolkits are reusable, battle-tested building blocks for high-quality agentic
11
- applications. They turn the hard product work that repeats across apps into
12
- standard surfaces: realtime collaboration between humans and agents, sharing
13
- with humans and agents, settings, teams, setup, resources, history, review, and
14
- observability.
10
+ Toolkit هو رفّ اللبنات القابلة لإعادة الاستخدام والمجرّبة للتطبيقات الوكيلة
11
+ عالية الجودة. يحوّل عمل المنتج المتكرر بين التطبيقات إلى أسطح قياسية، من دون
12
+ جعل نمط تطبيق واحد محور الكتالوج.
13
+
14
+ هذا القسم هو رف الاكتشاف الواحد لواجهة بناء التطبيقات القابلة لإعادة الاستخدام.
15
+ ينتمي السطح إلى هذه الوثائق لأنه قابل لإعادة الاستخدام، حتى إن كان مالكه الحالي
16
+ Core أو قالبًا. توضح تسميات الملكية ومسارات الاستيراد هذا الحد من دون تشتيت
17
+ إرشادات الواجهة في الموقع.
15
18
 
16
19
  Each kit packages the UI patterns, action contracts, app-state expectations,
17
20
  access boundaries, and agent-visible behavior that users expect to work
18
- consistently. Apps still own their domain model and visual identity; toolkits
21
+ consistently. Apps still own their domain model and visual identity; Toolkit
19
22
  make the common product systems feel complete from the first version instead of
20
23
  being rebuilt in slightly different ways every time.
21
24
 
@@ -28,23 +31,23 @@ being rebuilt in slightly different ways every time.
28
31
  />
29
32
  </WireframeBlock>
30
33
 
31
- <Diagram id="doc-block-toolkits-boundary" title="How kits fit" summary={"The framework runtime supplies durable guarantees. Toolkits turn those guarantees into reusable product systems. Apps add domain-specific data, routes, and visual identity."}>
34
+ <Diagram id="doc-block-toolkits-boundary" title="كيف تتكامل الحزم" summary={"يوفر وقت تشغيل الإطار ضمانات دائمة. يحول Toolkit تلك الضمانات إلى أنظمة منتج قابلة لإعادة الاستخدام. تضيف التطبيقات بيانات المجال والمسارات والهوية البصرية."}>
32
35
 
33
36
  ```html
34
37
  <div class="diagram-row">
35
38
  <div class="diagram-card">
36
39
  <span class="diagram-pill accent">Runtime</span><br />
37
- actions, SQL, auth, app state, access checks, realtime transport
40
+ الإجراءات، SQL، المصادقة، حالة التطبيق، فحوصات الوصول، النقل الفوري
38
41
  </div>
39
42
  <div class="diagram-arrow diagram-muted" aria-hidden="true">&rarr;</div>
40
43
  <div class="diagram-card">
41
- <span class="diagram-pill accent">Toolkits</span><br />
42
- collaboration, sharing, setup, review, history, observability
44
+ <span class="diagram-pill accent">Toolkit</span><br />
45
+ التعاون، المشاركة، الإعداد، المراجعة، السجل، قابلية الرصد
43
46
  </div>
44
47
  <div class="diagram-arrow diagram-muted" aria-hidden="true">&rarr;</div>
45
48
  <div class="diagram-card">
46
- <span class="diagram-pill accent">Apps</span><br />
47
- domain schema, routes, actions, branding, specialized workflows
49
+ <span class="diagram-pill accent">التطبيقات</span><br />
50
+ مخطط المجال، المسارات، الإجراءات، العلامة التجارية، تدفقات متخصصة
48
51
  </div>
49
52
  </div>
50
53
  ```
@@ -68,45 +71,66 @@ being rebuilt in slightly different ways every time.
68
71
 
69
72
  </Diagram>
70
73
 
71
- ## The Kits {#the-kits}
72
-
73
- | Kit | Use it for |
74
- | -------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
75
- | [Sharing](/docs/toolkit-sharing) | Ownable resources, share dialogs, visibility badges, share actions, public/private/org access. |
76
- | [Collaboration](/docs/toolkit-collaboration) | Realtime editing, presence, live cursors, recent-edit highlights, collaborative undo. |
77
- | [Settings](/docs/toolkit-settings) | Standard settings pages and tabs so app settings and agent/provider settings live in one predictable place. |
78
- | [Org & Team](/docs/toolkit-org-team) | Team pages, org switching, invites, org domains, roles, and app switching. |
79
- | [Setup & Connections](/docs/toolkit-setup-connections) | Onboarding, secrets, workspace connections, OAuth/provider readiness, and Builder connect. |
80
- | [Command & Navigation](/docs/toolkit-command-navigation) | Command menu, deep links, standard app routes, sidebar and shell patterns. |
81
- | [Resources](/docs/toolkit-resources) | Resource trees, editors, file picker/search, attachments, and local file mode. |
82
- | [Agent UX](/docs/toolkit-agent-ux) | Composer, model picker, context chips, approvals, run recovery, and the runs tray. |
83
- | [History](/docs/toolkit-history) | Version history, audit logs, undo/redo, restore, and "what changed" surfaces. |
84
- | [Comments & Review](/docs/toolkit-comments-review) | Inline comments, annotations, mentions, resolved threads, review status. |
85
- | [Observability](/docs/toolkit-observability) | Usage, spend, feedback, replay, errors, and run diagnostics. |
86
-
87
- ## Implementation Boundary {#implementation-boundary}
88
-
89
- Kits are product surfaces first. Some pieces are runtime-backed
74
+ ## الكتالوج {#catalog}
75
+
76
+ | المجال | ابدأ من هنا | ما الذي يغطيه |
77
+ | ------------------- | --------------------------------------------------- | ---------------------------------------------------------------------- |
78
+ | الأسس | [أوليات الواجهة](/docs/toolkit-ui) | عناصر تحكم وخطافات ومهايئات تطبيق ونقاط وصل للهيكل مشتركة. |
79
+ | المحررات واللوحات | [المحررات واللوحات](/docs/toolkit-editors-canvases) | تحرير غني وكتل منظمة وعناصر تحكم قابلة لإعادة الاستخدام وأنماط Design. |
80
+ | تجربة الوكيل وسياقه | [السياق والمعرفة](/docs/toolkit-context-knowledge) | Context X-Ray والموارد والمعرفة وسياق المؤلف والحالة المرئية للوكيل. |
81
+ | التعاون والحوكمة | [التعاون](/docs/toolkit-collaboration) | المشاركة والحضور والمراجعة والسجل والتدقيق وحدود المؤسسة. |
82
+ | هيكل مساحة العمل | [هيكل التطبيق](/docs/toolkit-settings) | الإعدادات والفرق والإعداد والتنقل والموارد وتجربة الوكيل. |
83
+ | العمليات | [قابلية المراقبة](/docs/toolkit-observability) | الاستخدام والملاحظات وإعادة التشغيل والتشخيص والرؤية التشغيلية. |
84
+ | وحدات قدرات Toolkit | [حزم القدرات](/docs/toolkit-capability-packages) | حزم نطاق تثبت عند الحاجة وبيانات دورة حياتها. |
85
+
86
+ ## مجموعات المنتج {#product-kits}
87
+
88
+ | الحزمة | استخدمها من أجل |
89
+ | ----------------------------------------------------- | --------------------------------------------------------------------------------- |
90
+ | [المشاركة](/docs/toolkit-sharing) | موارد مملوكة، حوارات وإجراءات المشاركة، شارات الرؤية والوصول العام/الخاص/المنظمة. |
91
+ | [التعاون](/docs/toolkit-collaboration) | تحرير فوري، حضور، مؤشرات حية، إبراز التعديلات الأخيرة وتراجع تعاوني. |
92
+ | [الإعدادات](/docs/toolkit-settings) | صفحات وعلامات إعدادات قياسية لإعدادات التطبيق والوكيل/المزود في مكان متوقع. |
93
+ | [المنظمة والفريق](/docs/toolkit-org-team) | صفحات الفريق، تبديل المنظمة، الدعوات، النطاقات، الأدوار وتبديل التطبيقات. |
94
+ | [الإعداد والاتصالات](/docs/toolkit-setup-connections) | التهيئة، الأسرار، اتصالات مساحة العمل، OAuth وجاهزية المزود وBuilder connect. |
95
+ | [الأوامر والتنقل](/docs/toolkit-command-navigation) | قائمة الأوامر، الروابط العميقة، المسارات القياسية وأنماط الشريط الجانبي والصدفة. |
96
+ | [الموارد](/docs/toolkit-resources) | أشجار ومحررات الموارد، منتقي/بحث الملفات، المرفقات ووضع الملفات المحلي. |
97
+ | [تجربة الوكيل](/docs/toolkit-agent-ux) | المؤلف، منتقي النموذج، شرائح السياق، الموافقات، الاسترداد ودرج التشغيل. |
98
+ | [السجل](/docs/toolkit-history) | موارد مإصدرة، لقطات، سجل، تدقيق، تراجع/إعادة، استعادة وأسـطح التغييرات. |
99
+ | [التعليقات والمراجعة](/docs/toolkit-comments-review) | موارد قابلة للمراجعة، تعليقات، قوائم ملاحظات، سلاسل، إشارات وحالة مراجعة. |
100
+ | [قابلية الرصد](/docs/toolkit-observability) | الاستخدام، الإنفاق، الملاحظات، الإعادة، الأخطاء وتشخيصات التشغيل. |
101
+
102
+ ## نضج الحزمة وملكيتها {#package-maturity-and-ownership}
103
+
104
+ - المحرر الغني مملوك لـ **Toolkit**؛ وتبقى استيرادات Core الحالية عمليات إعادة تصدير متوافقة وخفيفة أثناء الترحيل.
105
+ - Design هو **نمط قالب** مع `design-tweaks` قابلة لإعادة الاستخدام، وليس محررًا أو لوحة كاملة قابلة للإضافة مباشرة.
106
+ - تظل Blocks ومحرك Context X-Ray مملوكين لـ **Core** في هذه المرحلة؛ أما عرض Context X-Ray القابل لإعادة الاستخدام فمملوك لـ Toolkit.
107
+ - Creative Context وScheduling وPinpoint هي **وحدات قدرات Toolkit** تثبت عند الحاجة؛ وتحافظ على حزم npm وبيانات دورة حياة منفصلة. ويظل Dispatch منتجًا منفصلًا.
108
+
109
+ ## حد التنفيذ {#implementation-boundary}
110
+
111
+ الحزم هي أسطح منتج أولًا. بعض الأجزاء مدعومة بوقت التشغيل
90
112
  (`@agent-native/core`), some are presentation primitives
91
113
  (`@agent-native/toolkit`), and apps usually wrap both through local adapters.
92
- Use the package path that owns the needed behavior, but design the user-facing
93
- settings, collaboration, sharing, team, review, and setup experiences as one
94
- coherent kit instead of exposing package boundaries in the app.
95
-
96
- ## Foundation Pieces {#foundation-pieces}
97
-
98
- - [UI Primitives](/docs/toolkit-ui) cover shared shadcn-style primitives under
99
- `@agent-native/toolkit/ui/*`.
100
- - [App Adapters](/docs/toolkit-ui#app-adapters) show how apps wrap Toolkit pieces
101
- through local `@/components/*` adapters.
102
- - [Shell & Hooks](/docs/toolkit-ui#shell-hooks) cover header actions, mobile hooks,
103
- toasts, and small app-shell helpers.
104
- - [Component API](/docs/components) remains the lower-level reference for the
105
- public React exports.
106
-
107
- ## Design Rule {#design-rule}
108
-
109
- Use a toolkit when the behavior repeats across apps and users expect it to feel
110
- standard: sharing, settings, teams, comments, history, and agent progress should
111
- not be slightly different in every template. Keep domain-specific data,
112
- workflows, labels, and visual styling in the app.
114
+ استخدم مسار الحزمة التي تملك السلوك المطلوب، لكن صمّم الإعدادات والتعاون
115
+ والمشاركة والفريق والمراجعة والإعداد كتجربة حزمة متماسكة بدل كشف حدود الحزم في
116
+ التطبيق.
117
+
118
+ ## اللبنات الأساسية {#foundation-pieces}
119
+
120
+ - [أوليات الواجهة](/docs/toolkit-ui) تغطي أوليات شبيهة بـ shadcn تحت
121
+ `@agent-native/toolkit/ui/*`، ومحولات التطبيق المحلية وخطافات الصدفة المشتركة.
122
+ - تبقى [واجهة مكونات API](/docs/components) المرجع الأدنى لصادرات React العامة.
123
+
124
+ ## قاعدة التصميم {#design-rule}
125
+
126
+ استخدم حزمة عندما يتكرر السلوك عبر التطبيقات ويتوقع المستخدمون أن يكون قياسيًا:
127
+ لا ينبغي أن تختلف المشاركة والإعدادات والفرق والتعليقات والسجل وتقدم الوكيل بين
128
+ القوالب. أبقِ بيانات المجال وتدفقات العمل والتسميات والأسلوب البصري داخل التطبيق.
129
+
130
+ ## الخطوات التالية
131
+
132
+ - [**أوليات واجهة Toolkit**](/docs/toolkit-ui) أوليات ومهايئات تطبيق وخطافات shell مشتركة.
133
+ - [**مجموعة المشاركة**](/docs/toolkit-sharing) بداية جيدة للموارد وحوارات المشاركة والرؤية.
134
+ - [**إنشاء القوالب**](/docs/creating-templates) أنشئ قالباً كاملاً لترى موضع المجموعات.
135
+ - [**واجهة مكونات API**](/docs/components) — مرجع exports العامة لـ React.
136
+ - [**دورة حياة الحزم**](/docs/package-lifecycle) — افحص وأضف وأخرج وحدات قدرات Toolkit المعتمدة على manifest بأمان.
@@ -0,0 +1,21 @@
1
+ ---
2
+ title: "حزم القدرات"
3
+ description: "أدر قدرات المجال ودورة حياتها المدفوعة بالبيان من دون دمجها في Toolkit."
4
+ ---
5
+
6
+ # حزم القدرات
7
+
8
+ يوفر Toolkit أسس منتج مشتركة بين التطبيقات؛ وتوفر حزم القدرات مجالا محدودا وactions وskills وبيانات دورة الحياة. تظل Scheduling وCreative Context حزم قدرات منفصلة وليستا مجموعات ميزات في Toolkit.
9
+
10
+ تشارك `@agent-native/scheduling` في تجربة البيان العامة. ارجع إلى توثيق كل حزمة المحلي وبيان دورة حياتها لمعرفة نقاط التوسعة والملكية.
11
+
12
+ - [توثيق Scheduling](https://github.com/BuilderIO/agent-native/tree/main/packages/scheduling/docs)
13
+ - [توثيق Creative Context](https://github.com/BuilderIO/agent-native/tree/main/packages/creative-context/docs)
14
+
15
+ ```bash
16
+ agent-native package inspect @agent-native/scheduling
17
+ agent-native package add @agent-native/scheduling --apply
18
+ agent-native package eject @agent-native/scheduling --apply
19
+ ```
20
+
21
+ راجع [دورة حياة الحزمة](/docs/package-lifecycle) لقواعد الفحص والتجربة والإخراج.
@@ -0,0 +1,12 @@
1
+ ---
2
+ title: "السياق والمعرفة"
3
+ description: "أنشئ أسطح سياق مدركة للوكيل مع الحفاظ على الحدود بين المحرك والوصول إلى البيانات والعرض القابل لإعادة الاستخدام."
4
+ ---
5
+
6
+ # السياق والمعرفة
7
+
8
+ يمتلك Core حالة التطبيق والوصول المقيد ومحرك Context X-Ray. يوفر Toolkit العرض القابل لإعادة الاستخدام، بينما يملك التطبيق سجلات المجال والتصنيف وقواعد الاختيار.
9
+
10
+ يبقى محرك Context X-Ray مملوكا لـ Core. استخدم عرض Toolkit للسياق المتسق، لكن أبق قرارات الحالة والوصول في Core وactions. يجعل [وعي السياق](/docs/context-awareness) التنقل والاختيار والكائن النشط مرئية للوكيل؛ وتغطي [الموارد](/docs/toolkit-resources) الملفات والمرفقات.
11
+
12
+ لا يحل السياق محل التحكم بالوصول. حافظ على فحوصات المورد وبيانات الاعتماد قبل استرجاع معرفة الموفر.
@@ -0,0 +1,17 @@
1
+ ---
2
+ title: "المحررات واللوحات"
3
+ description: "اختر أسطحا قابلة لإعادة الاستخدام من دون الخلط بين توافق Core وأنماط القوالب وبدائيات Toolkit."
4
+ ---
5
+
6
+ # المحررات واللوحات
7
+
8
+ المحررات واللوحات أسطح منتج مترابطة، وليست ميزة رئيسية واحدة.
9
+
10
+ | السطح | الملكية الحالية |
11
+ | ------------ | ------------------------------------------------------------ |
12
+ | المحرر الغني | Toolkit، مع إعادة تصدير للتوافق من Core. |
13
+ | الكتل | Core في هذه المرحلة. |
14
+ | Design | نمط قالب مع `design-tweaks`، وليس محررا كاملا جاهزا للإضافة. |
15
+ | عرض اللوحة | تركيب Toolkit أو التطبيق. |
16
+
17
+ استورد المحرر من `@agent-native/toolkit/editor`. تستمر مسارات Core القديمة كإعادات تصدير للتوافق. أبق المخططات والأوامر والاستمرارية في التطبيق. تبقى الكتل مملوكة لـ Core، لكنها موثقة هنا لأن قسم Toolkit هو فهرس واجهات المستخدم القابلة لإعادة الاستخدام.
@@ -1,21 +1,24 @@
1
1
  ---
2
- title: "Toolkits"
3
- description: "Battle-tested reusable building blocks for high-quality agentic applications: collaboration, sharing, settings, teams, setup, navigation, resources, agent UX, history, comments, and observability."
2
+ title: "Toolkit"
3
+ description: "Ein ausgewogener Katalog wiederverwendbarer Grundlagen, Editoren und Leinwände, Agentenkontext, Governance, Workspace-Chrome, Betrieb und Toolkit-Fähigkeitsmodule."
4
4
  ---
5
5
 
6
6
  <!-- i18n-docs-ignore -->
7
7
 
8
- # Toolkits
8
+ # Toolkit
9
9
 
10
- Toolkits are reusable, battle-tested building blocks for high-quality agentic
11
- applications. They turn the hard product work that repeats across apps into
12
- standard surfaces: realtime collaboration between humans and agents, sharing
13
- with humans and agents, settings, teams, setup, resources, history, review, and
14
- observability.
10
+ Toolkit ist das Regal wiederverwendbarer, praxiserprobter Bausteine für
11
+ hochwertige agentische Anwendungen. Es macht wiederkehrende Produktarbeit zu
12
+ Standards, ohne ein einzelnes App-Muster ins Zentrum des Katalogs zu stellen.
13
+
14
+ Dieser Abschnitt ist die zentrale Entdeckungsfläche für wiederverwendbare App-UI.
15
+ Eine Oberfläche gehört hierher, weil sie wiederverwendbar ist, auch wenn Core
16
+ oder ein Template sie derzeit besitzt. Besitzlabels und Importpfade machen diese
17
+ Grenze klar, ohne zusammenhängende UI-Hinweise über die Website zu verteilen.
15
18
 
16
19
  Each kit packages the UI patterns, action contracts, app-state expectations,
17
20
  access boundaries, and agent-visible behavior that users expect to work
18
- consistently. Apps still own their domain model and visual identity; toolkits
21
+ consistently. Apps still own their domain model and visual identity; Toolkit
19
22
  make the common product systems feel complete from the first version instead of
20
23
  being rebuilt in slightly different ways every time.
21
24
 
@@ -28,23 +31,24 @@ being rebuilt in slightly different ways every time.
28
31
  />
29
32
  </WireframeBlock>
30
33
 
31
- <Diagram id="doc-block-toolkits-boundary" title="How kits fit" summary={"The framework runtime supplies durable guarantees. Toolkits turn those guarantees into reusable product systems. Apps add domain-specific data, routes, and visual identity."}>
34
+ <Diagram id="doc-block-toolkits-boundary" title="So passen Kits zusammen" summary={"Die Framework-Laufzeit liefert dauerhafte Garantien. Toolkit macht daraus wiederverwendbare Produktsysteme. Apps ergänzen Domänendaten, Routen und visuelle Identität."}>
32
35
 
33
36
  ```html
34
37
  <div class="diagram-row">
35
38
  <div class="diagram-card">
36
39
  <span class="diagram-pill accent">Runtime</span><br />
37
- actions, SQL, auth, app state, access checks, realtime transport
40
+ Aktionen, SQL, Authentifizierung, App-Zustand, Zugriffskontrollen,
41
+ Echtzeittransport
38
42
  </div>
39
43
  <div class="diagram-arrow diagram-muted" aria-hidden="true">&rarr;</div>
40
44
  <div class="diagram-card">
41
- <span class="diagram-pill accent">Toolkits</span><br />
42
- collaboration, sharing, setup, review, history, observability
45
+ <span class="diagram-pill accent">Toolkit</span><br />
46
+ Zusammenarbeit, Teilen, Einrichtung, Review, Verlauf, Beobachtbarkeit
43
47
  </div>
44
48
  <div class="diagram-arrow diagram-muted" aria-hidden="true">&rarr;</div>
45
49
  <div class="diagram-card">
46
50
  <span class="diagram-pill accent">Apps</span><br />
47
- domain schema, routes, actions, branding, specialized workflows
51
+ Domänenschema, Routen, Aktionen, Marke, spezialisierte Abläufe
48
52
  </div>
49
53
  </div>
50
54
  ```
@@ -68,45 +72,69 @@ being rebuilt in slightly different ways every time.
68
72
 
69
73
  </Diagram>
70
74
 
71
- ## The Kits {#the-kits}
72
-
73
- | Kit | Use it for |
74
- | -------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
75
- | [Sharing](/docs/toolkit-sharing) | Ownable resources, share dialogs, visibility badges, share actions, public/private/org access. |
76
- | [Collaboration](/docs/toolkit-collaboration) | Realtime editing, presence, live cursors, recent-edit highlights, collaborative undo. |
77
- | [Settings](/docs/toolkit-settings) | Standard settings pages and tabs so app settings and agent/provider settings live in one predictable place. |
78
- | [Org & Team](/docs/toolkit-org-team) | Team pages, org switching, invites, org domains, roles, and app switching. |
79
- | [Setup & Connections](/docs/toolkit-setup-connections) | Onboarding, secrets, workspace connections, OAuth/provider readiness, and Builder connect. |
80
- | [Command & Navigation](/docs/toolkit-command-navigation) | Command menu, deep links, standard app routes, sidebar and shell patterns. |
81
- | [Resources](/docs/toolkit-resources) | Resource trees, editors, file picker/search, attachments, and local file mode. |
82
- | [Agent UX](/docs/toolkit-agent-ux) | Composer, model picker, context chips, approvals, run recovery, and the runs tray. |
83
- | [History](/docs/toolkit-history) | Version history, audit logs, undo/redo, restore, and "what changed" surfaces. |
84
- | [Comments & Review](/docs/toolkit-comments-review) | Inline comments, annotations, mentions, resolved threads, review status. |
85
- | [Observability](/docs/toolkit-observability) | Usage, spend, feedback, replay, errors, and run diagnostics. |
86
-
87
- ## Implementation Boundary {#implementation-boundary}
88
-
89
- Kits are product surfaces first. Some pieces are runtime-backed
75
+ ## Katalog {#catalog}
76
+
77
+ | Bereich | Einstieg | Inhalt |
78
+ | --------------------------- | ------------------------------------------------------ | ---------------------------------------------------------------------------------- |
79
+ | Grundlagen | [UI-Primitives](/docs/toolkit-ui) | Gemeinsame Controls, Hooks, App-Adapter und Shell-Nähte. |
80
+ | Editoren & Leinwände | [Editoren & Leinwände](/docs/toolkit-editors-canvases) | Reichhaltige Bearbeitung, strukturierte Blöcke, Canvas-Controls und Design-Muster. |
81
+ | Agentenerlebnis & Kontext | [Kontext & Wissen](/docs/toolkit-context-knowledge) | Context X-Ray, Ressourcen, Wissen, Composer-Kontext und agentensichtbarer Zustand. |
82
+ | Zusammenarbeit & Governance | [Zusammenarbeit](/docs/toolkit-collaboration) | Teilen, Präsenz, Review, Historie, Audit und Organisationsgrenzen. |
83
+ | Workspace-Chrome | [App-Chrome](/docs/toolkit-settings) | Einstellungen, Teams, Setup, Navigation, Ressourcen und Agenten-UX. |
84
+ | Betrieb | [Observability](/docs/toolkit-observability) | Nutzung, Feedback, Replay, Diagnose und operative Sichtbarkeit. |
85
+ | Toolkit-Fähigkeitsmodule | [Fähigkeitsmodule](/docs/toolkit-capability-packages) | Bei Bedarf installierte Domänenpakete und ihre Lifecycle-Manifeste. |
86
+
87
+ ## Produkt-Kits {#product-kits}
88
+
89
+ | Kit | Verwende es für |
90
+ | -------------------------------------------------------- | ---------------------------------------------------------------------------------------------------- |
91
+ | [Sharing](/docs/toolkit-sharing) | Besitzbare Ressourcen, Teilen-Dialoge/-Aktionen, Sichtbarkeit und öffentlicher/privater/Org-Zugriff. |
92
+ | [Collaboration](/docs/toolkit-collaboration) | Echtzeitbearbeitung, Präsenz, Live-Cursor, letzte Änderungen und gemeinsames Rückgängig. |
93
+ | [Settings](/docs/toolkit-settings) | Standardseiten/-tabs für App- und Agent-/Provider-Einstellungen an einem vorhersehbaren Ort. |
94
+ | [Org & Team](/docs/toolkit-org-team) | Teamseiten, Org-Wechsel, Einladungen, Org-Domänen, Rollen und App-Wechsel. |
95
+ | [Setup & Connections](/docs/toolkit-setup-connections) | Onboarding, Secrets, Workspace-Verbindungen, OAuth/Provider-Bereitschaft und Builder Connect. |
96
+ | [Command & Navigation](/docs/toolkit-command-navigation) | Befehlsmenü, Deep Links, Standardrouten sowie Sidebar- und Shell-Muster. |
97
+ | [Resources](/docs/toolkit-resources) | Ressourcenbäume/-editoren, Dateiauswahl/-suche, Anhänge und lokaler Dateimodus. |
98
+ | [Agent UX](/docs/toolkit-agent-ux) | Composer, Modellauswahl, Kontext-Chips, Freigaben, Wiederherstellung und Run-Leiste. |
99
+ | [History](/docs/toolkit-history) | Versionierte Ressourcen, Snapshots, Verlauf, Audit, Undo/Redo, Wiederherstellung und Änderungen. |
100
+ | [Comments & Review](/docs/toolkit-comments-review) | Prüfbare Ressourcen, Kommentare, Feedback-Warteschlangen, Threads, Erwähnungen und Review-Status. |
101
+ | [Observability](/docs/toolkit-observability) | Nutzung, Ausgaben, Feedback, Replay, Fehler und Laufdiagnosen. |
102
+
103
+ ## Paket-Reife und Ownership {#package-maturity-and-ownership}
104
+
105
+ - Der Rich-Text-Editor gehört zu **Toolkit**; vorhandene Core-Imports bleiben während der Migration schlanke Kompatibilitäts-Re-Exports.
106
+ - Design ist ein **Template-Muster** mit wiederverwendbaren `design-tweaks`, kein vollständiger Drop-in-Editor oder Canvas.
107
+ - Blocks und die Context-X-Ray-Engine bleiben in dieser Phase **Core-owned**; die wiederverwendbare Context-X-Ray-Darstellung gehört zu Toolkit.
108
+ - Creative Context, Scheduling und Pinpoint sind **Toolkit-Fähigkeitsmodule**, die bei Bedarf installiert werden; sie behalten separate npm-Pakete und Lifecycle-Manifeste. Dispatch bleibt ein separates Produkt.
109
+
110
+ ## Implementierungsgrenze {#implementation-boundary}
111
+
112
+ Kits sind zuerst Produktoberflächen. Manche Teile werden von der Laufzeit
90
113
  (`@agent-native/core`), some are presentation primitives
91
114
  (`@agent-native/toolkit`), and apps usually wrap both through local adapters.
92
- Use the package path that owns the needed behavior, but design the user-facing
93
- settings, collaboration, sharing, team, review, and setup experiences as one
94
- coherent kit instead of exposing package boundaries in the app.
95
-
96
- ## Foundation Pieces {#foundation-pieces}
97
-
98
- - [UI Primitives](/docs/toolkit-ui) cover shared shadcn-style primitives under
99
- `@agent-native/toolkit/ui/*`.
100
- - [App Adapters](/docs/toolkit-ui#app-adapters) show how apps wrap Toolkit pieces
101
- through local `@/components/*` adapters.
102
- - [Shell & Hooks](/docs/toolkit-ui#shell-hooks) cover header actions, mobile hooks,
103
- toasts, and small app-shell helpers.
104
- - [Component API](/docs/components) remains the lower-level reference for the
105
- public React exports.
106
-
107
- ## Design Rule {#design-rule}
108
-
109
- Use a toolkit when the behavior repeats across apps and users expect it to feel
110
- standard: sharing, settings, teams, comments, history, and agent progress should
111
- not be slightly different in every template. Keep domain-specific data,
112
- workflows, labels, and visual styling in the app.
115
+ Nutze den Paketpfad, dem das benötigte Verhalten gehört, aber gestalte
116
+ Einstellungen, Zusammenarbeit, Teilen, Team, Review und Einrichtung als ein
117
+ stimmiges Kit statt Paketgrenzen in der App sichtbar zu machen.
118
+
119
+ ## Grundbausteine {#foundation-pieces}
120
+
121
+ - [UI-Primitives](/docs/toolkit-ui) behandelt die gemeinsamen shadcn-artigen
122
+ Primitives unter `@agent-native/toolkit/ui/*`, lokale App-Adapter und
123
+ gemeinsame Shell-Hooks.
124
+ - Die [Component API](/docs/components) bleibt die Referenz auf niedriger Ebene
125
+ für öffentliche React-Exports.
126
+
127
+ ## Designregel {#design-rule}
128
+
129
+ Verwende ein Kit, wenn Verhalten appübergreifend wiederkehrt und Nutzer einen
130
+ Standard erwarten: Teilen, Einstellungen, Teams, Kommentare, Verlauf und
131
+ Agentenfortschritt sollten nicht je Template anders sein. Domänendaten,
132
+ Abläufe, Labels und visuelles Styling bleiben in der App.
133
+
134
+ ## Nächste Schritte
135
+
136
+ - [**Toolkit UI-Primitives**](/docs/toolkit-ui) — gemeinsame Primitives, App-Adapter und Shell-Hooks.
137
+ - [**Sharing Kit**](/docs/toolkit-sharing) — ein guter erster Einstieg für Ressourcen, Teilen und Sichtbarkeit.
138
+ - [**Templates erstellen**](/docs/creating-templates) — Templates Ende-zu-Ende bauen und Kits im Kontext sehen.
139
+ - [**Komponenten-API**](/docs/components) — die Referenz aller öffentlichen React-Exports.
140
+ - [**Paket-Lebenszyklus**](/docs/package-lifecycle) — manifestgesteuerte Toolkit-Fähigkeitsmodule sicher untersuchen, hinzufügen und auswerfen.
@@ -0,0 +1,21 @@
1
+ ---
2
+ title: "Capability-Pakete"
3
+ description: "Verwalten Sie fachliche Fähigkeiten und ihren manifestgesteuerten Lebenszyklus, ohne sie in Toolkit einzugliedern."
4
+ ---
5
+
6
+ # Capability-Pakete
7
+
8
+ Toolkit liefert bereichsübergreifende Produktgrundlagen; Capability-Pakete liefern ein abgegrenztes Domänenmodell, Actions, Skills und Lebenszyklus-Metadaten. Scheduling und Creative Context bleiben separate Capability-Pakete, keine Toolkit-Feature-Kits.
9
+
10
+ `@agent-native/scheduling` nimmt am Pilot für das generische Manifest teil. Lesen Sie die paketlokale Dokumentation und das Manifest für Erweiterungspunkte und Zuständigkeit.
11
+
12
+ - [Scheduling-Paketdokumentation](https://github.com/BuilderIO/agent-native/tree/main/packages/scheduling/docs)
13
+ - [Creative-Context-Paketdokumentation](https://github.com/BuilderIO/agent-native/tree/main/packages/creative-context/docs)
14
+
15
+ ```bash
16
+ agent-native package inspect @agent-native/scheduling
17
+ agent-native package add @agent-native/scheduling --apply
18
+ agent-native package eject @agent-native/scheduling --apply
19
+ ```
20
+
21
+ Die Regeln für Prüfung, Dry Run und Eject stehen unter [Package Lifecycle](/docs/package-lifecycle).
@@ -0,0 +1,12 @@
1
+ ---
2
+ title: "Kontext und Wissen"
3
+ description: "Bauen Sie agentenfähige Kontextoberflächen mit klaren Grenzen zwischen Engine, Datenzugriff und wiederverwendbarer Darstellung."
4
+ ---
5
+
6
+ # Kontext und Wissen
7
+
8
+ Core besitzt Anwendungszustand, bereichsgebundenen Zugriff und die Context-X-Ray-Engine. Toolkit liefert die wiederverwendbare Darstellung; die App behält Domänendaten, Taxonomie und Auswahlregeln.
9
+
10
+ Die Context-X-Ray-Engine bleibt Core-geführt. Verwenden Sie Toolkit für eine einheitliche Darstellung, behalten Sie Zustands- und Zugriffsentscheidungen aber in Core und Actions. [Context awareness](/docs/context-awareness) macht Navigation, Auswahl und Fokusobjekt für den Agent sichtbar; [Resources](/docs/toolkit-resources) deckt Dateien und Anhänge ab.
11
+
12
+ Kontext ersetzt keine Zugriffskontrolle. Erhalten Sie Ressourcen- und Berechtigungsprüfungen vor dem Abruf von Anbieterwissen.