@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
@@ -1,23 +1,15 @@
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은 고품질 에이전트형 애플리케이션을 위한 재사용 가능하고 실전에서 검증된 구성 요소입니다. 앱 전반에서 반복되는 어려운 제품 작업을 사람과 에이전트 사이의 실시간 협업, 사람과 에이전트를 위한 공유, 설정, 팀, 설정 과정, 리소스, 기록, 검토, 관찰 가능성과 같은 표준 화면으로 만듭니다.
15
11
 
16
- Each kit packages the UI patterns, action contracts, app-state expectations,
17
- access boundaries, and agent-visible behavior that users expect to work
18
- consistently. Apps still own their domain model and visual identity; toolkits
19
- make the common product systems feel complete from the first version instead of
20
- being rebuilt in slightly different ways every time.
12
+ 키트는 사용자가 일관되게 동작하리라 기대하는 UI 패턴, 액션 계약, 상태 기대치, 접근 경계, 에이전트에 보이는 동작을 묶습니다. 앱은 여전히 도메인 모델과 시각적 정체성을 소유합니다. Toolkit은 공통 제품 시스템을 매번 조금씩 다르게 다시 만들지 않고 첫 버전부터 완성된 느낌이 들게 합니다.
21
13
 
22
14
  <WireframeBlock id="doc-block-toolkits-index">
23
15
  <Screen
@@ -28,23 +20,23 @@ being rebuilt in slightly different ways every time.
28
20
  />
29
21
  </WireframeBlock>
30
22
 
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."}>
23
+ <Diagram id="doc-block-toolkits-boundary" title="키트의 위치" summary={"프레임워크 런타임은 지속적인 보장을 제공합니다. Toolkit은 보장을 재사용 가능한 제품 시스템으로 바꿉니다. 앱은 도메인별 데이터, 라우트, 시각적 정체성을 더합니다."}>
32
24
 
33
25
  ```html
34
26
  <div class="diagram-row">
35
27
  <div class="diagram-card">
36
- <span class="diagram-pill accent">Runtime</span><br />
37
- actions, SQL, auth, app state, access checks, realtime transport
28
+ <span class="diagram-pill accent">런타임</span><br />
29
+ 액션, SQL, 인증, 상태, 접근 검사, 실시간 전송
38
30
  </div>
39
31
  <div class="diagram-arrow diagram-muted" aria-hidden="true">&rarr;</div>
40
32
  <div class="diagram-card">
41
- <span class="diagram-pill accent">Toolkits</span><br />
42
- collaboration, sharing, setup, review, history, observability
33
+ <span class="diagram-pill accent">Toolkit</span><br />
34
+ 협업, 공유, 설정 과정, 검토, 기록, 관찰 가능성
43
35
  </div>
44
36
  <div class="diagram-arrow diagram-muted" aria-hidden="true">&rarr;</div>
45
37
  <div class="diagram-card">
46
- <span class="diagram-pill accent">Apps</span><br />
47
- domain schema, routes, actions, branding, specialized workflows
38
+ <span class="diagram-pill accent">앱</span><br />
39
+ 도메인 스키마, 라우트, 액션, 브랜딩, 전문 워크플로
48
40
  </div>
49
41
  </div>
50
42
  ```
@@ -68,45 +60,60 @@ being rebuilt in slightly different ways every time.
68
60
 
69
61
  </Diagram>
70
62
 
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
90
- (`@agent-native/core`), some are presentation primitives
91
- (`@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.
63
+ ## 카탈로그 {#catalog}
64
+
65
+ | 영역 | 시작점 | 포함 내용 |
66
+ | ------------------------ | -------------------------------------------------- | ----------------------------------------------------------------------- |
67
+ | 기반 | [UI 프리미티브](/docs/toolkit-ui) | 공유 컨트롤, 훅, 어댑터, 연결 지점. |
68
+ | 편집기와 캔버스 | [편집기와 캔버스](/docs/toolkit-editors-canvases) | 리치 편집, 구조화된 블록, 재사용 가능한 캔버스 컨트롤, Design 패턴. |
69
+ | 에이전트 경험과 컨텍스트 | [컨텍스트와 지식](/docs/toolkit-context-knowledge) | Context X-Ray, 리소스, 지식, 컴포저 컨텍스트 에이전트에 보이는 상태. |
70
+ | 협업과 거버넌스 | [협업](/docs/toolkit-collaboration) | 공유, 현재 상태, 검토, 기록, 감사 조직 경계. |
71
+ | 워크스페이스 크롬 | [ 크롬](/docs/toolkit-settings) | 설정, 팀, 설정 과정, 탐색, 리소스 에이전트 UX. |
72
+ | 운영 | [관찰 가능성](/docs/toolkit-observability) | 사용량, 피드백, 리플레이, 진단 운영 가시성. |
73
+ | Toolkit 기능 모듈 | [기능 패키지](/docs/toolkit-capability-packages) | 필요 설치하는 도메인 패키지와 수명 주기 매니페스트. |
74
+
75
+ ## 제품 키트 {#product-kits}
76
+
77
+ | 키트 | 용도 |
78
+ | ------------------------------------------------ | ------------------------------------------------------------------------------------- |
79
+ | [공유](/docs/toolkit-sharing) | 소유 가능한 리소스, 공유 대화 상자, 공개 범위 배지, 공유 액션, 공개/비공개/조직 접근. |
80
+ | [협업](/docs/toolkit-collaboration) | 실시간 편집, 현재 상태, 라이브 커서, 최근 편집 강조, 협업 실행 취소. |
81
+ | [설정](/docs/toolkit-settings) | 설정과 에이전트/프로바이더 설정을 예측 가능한 한곳에 두는 표준 설정 페이지와 탭. |
82
+ | [조직 및 팀](/docs/toolkit-org-team) | 페이지, 조직 전환, 초대, 조직 도메인, 역할, 앱 전환. |
83
+ | [설정 및 연결](/docs/toolkit-setup-connections) | 온보딩, 시크릿, 워크스페이스 연결, OAuth/프로바이더 준비 상태, Builder 연결. |
84
+ | [명령 탐색](/docs/toolkit-command-navigation) | 명령 메뉴, 링크, 표준 라우트, 사이드바와 셸 패턴. |
85
+ | [리소스](/docs/toolkit-resources) | 리소스 트리, 편집기, 파일 선택/검색, 첨부 파일, 로컬 파일 모드. |
86
+ | [에이전트 UX](/docs/toolkit-agent-ux) | 컴포저, 모델 선택기, 컨텍스트 칩, 승인, 실행 복구, 실행 트레이. |
87
+ | [기록](/docs/toolkit-history) | 버전 기록, 감사 로그, 실행 취소/다시 실행, 복원, 변경 사항 화면. |
88
+ | [댓글 검토](/docs/toolkit-comments-review) | 인라인 댓글, 주석, 멘션, 해결된 스레드, 검토 상태. |
89
+ | [관찰 가능성](/docs/toolkit-observability) | 사용량, 비용, 피드백, 재생, 오류, 실행 진단. |
90
+
91
+ ## 패키지 성숙도와 소유권 {#package-maturity-and-ownership}
92
+
93
+ - 리치 편집기는 **Toolkit** 소유입니다. 마이그레이션 동안 기존 Core import는 얇은 호환 re-export로 유지됩니다.
94
+ - Design은 재사용 가능한 `design-tweaks`를 사용하는 **템플릿 패턴**이며, 완전한 드롭인 편집기나 캔버스가 아닙니다.
95
+ - Blocks와 Context X-Ray 엔진은 이 단계에서 **Core 소유**로 유지됩니다. 재사용 가능한 Context X-Ray 표현은 Toolkit 소유입니다.
96
+ - Creative Context, Scheduling, Pinpoint는 필요 설치하는 **Toolkit 기능 모듈**이며 별도의 npm 패키지와 수명 주기 매니페스트를 유지합니다. Dispatch는 별도 제품입니다.
97
+
98
+ ## 구현 경계 {#implementation-boundary}
99
+
100
+ 키트는 우선 제품 화면입니다. 일부는 런타임을 기반으로 하고(`@agent-native/core`), 일부는 표현 프리미티브이며(`@agent-native/toolkit`), 앱은 보통 로컬 어댑터로 둘 다 감쌉니다. 필요한 동작을 소유하는 패키지 경로를 사용하되, 사용자 대상 설정, 협업, 공유, 팀, 검토, 설정 경험은 앱에서 패키지 경계를 드러내지 않는 하나의 일관된 키트로 설계하세요.
101
+
102
+ ## 기반 구성 요소 {#foundation-pieces}
103
+
104
+ - [UI 프리미티브](/docs/toolkit-ui)는 `@agent-native/toolkit/ui/*`의 공유 shadcn 스타일 프리미티브를 다룹니다.
105
+ - [앱 어댑터](/docs/toolkit-ui#app-adapters)는 앱이 로컬 `@/components/*` 어댑터로 Toolkit 구성 요소를 감싸는 방법을 보여 줍니다.
106
+ - [셸 및 훅](/docs/toolkit-ui#shell-hooks)은 헤더 액션, 모바일 훅, 토스트, 작은 앱 셸 도우미를 다룹니다.
107
+ - [컴포넌트 API](/docs/components)는 공개 React export의 하위 수준 참조입니다.
108
+
109
+ ## 설계 원칙 {#design-rule}
110
+
111
+ 동작이 앱 전체에서 반복되고 사용자가 표준적인 느낌을 기대한다면 Toolkit을 사용하세요. 공유, 설정, 팀, 댓글, 기록, 에이전트 진행 상황은 템플릿마다 조금씩 달라서는 안 됩니다. 도메인별 데이터, 워크플로, 라벨, 시각적 스타일은 앱에 유지하세요.
112
+
113
+ ## 다음 단계
114
+
115
+ - [**Toolkit UI 프리미티브**](/docs/toolkit-ui) — 공유 프리미티브, 앱 어댑터, 셸 훅.
116
+ - [**공유 키트**](/docs/toolkit-sharing) — 리소스, 공유 대화상자, 가시성을 위한 좋은 첫 키트.
117
+ - [**템플릿 만들기**](/docs/creating-templates) — 템플릿을 처음부터 만들고 키트가 어디에 맞는지 확인합니다.
118
+ - [**컴포넌트 API**](/docs/components) — 모든 공개 React export의 참조입니다.
119
+ - [**패키지 수명 주기**](/docs/package-lifecycle) — manifest 기반 Toolkit 기능 모듈을 안전하게 검사, 추가, eject합니다.
@@ -0,0 +1,21 @@
1
+ ---
2
+ title: "Capability 패키지"
3
+ description: "도메인 기능과 매니페스트 기반 수명 주기를 Toolkit에 흡수하지 않고 관리합니다."
4
+ ---
5
+
6
+ # Capability 패키지
7
+
8
+ Toolkit은 횡단적인 제품 기반을 제공하고 Capability 패키지는 제한된 도메인, actions, skills 및 수명 주기 메타데이터를 제공합니다. Scheduling과 Creative Context는 Toolkit 키트가 아닌 별도 Capability 패키지입니다.
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
+ 검사, dry run, eject 규칙은 [Package Lifecycle](/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에 둡니다. [Context awareness](/docs/context-awareness)는 탐색, 선택 및 포커스된 객체를 에이전트에 알리고 [Resources](/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 섹션이 재사용 UI 카탈로그이므로 문서는 여기에 함께 둡니다.
@@ -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: "Um catálogo equilibrado de fundações reutilizáveis, editores e telas, contexto de agente, governança, estrutura do espaço de trabalho, operações e módulos de capacidade do 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 é a prateleira de blocos reutilizáveis e testados em produção para apps
11
+ agênticos de qualidade. Ele transforma o trabalho de produto repetido entre apps
12
+ em superfícies padrão, sem colocar um padrão de app no centro do catálogo.
13
+
14
+ Esta seção é a prateleira única para descobrir UI reutilizável. Uma superfície
15
+ entra nestes documentos porque é reutilizável, mesmo quando Core ou um template
16
+ a possui hoje. Rótulos de propriedade e caminhos de importação deixam esse
17
+ limite claro sem espalhar a orientação de UI pelo site.
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,25 @@ 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="Como os kits se encaixam" summary={"O runtime do framework fornece garantias duráveis. Toolkit as transforma em sistemas de produto reutilizáveis. Apps adicionam dados de domínio, rotas e identidade visual."}>
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
+ ações, SQL, autenticação, estado do app, verificações de acesso, transporte
41
+ em tempo real
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
+ colaboração, compartilhamento, configuração, revisão, histórico,
47
+ observabilidade
43
48
  </div>
44
49
  <div class="diagram-arrow diagram-muted" aria-hidden="true">&rarr;</div>
45
50
  <div class="diagram-card">
46
51
  <span class="diagram-pill accent">Apps</span><br />
47
- domain schema, routes, actions, branding, specialized workflows
52
+ esquema de domínio, rotas, ações, marca, fluxos especializados
48
53
  </div>
49
54
  </div>
50
55
  ```
@@ -68,45 +73,68 @@ being rebuilt in slightly different ways every time.
68
73
 
69
74
  </Diagram>
70
75
 
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
76
+ ## Catálogo {#catalog}
77
+
78
+ | Área | Comece aqui | O que cobre |
79
+ | -------------------------------- | ---------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
80
+ | Fundamentos | [Primitivos de UI](/docs/toolkit-ui) | Controles, hooks, adaptadores de app e integrações de shell compartilhados. |
81
+ | Editores e telas | [Editores e telas](/docs/toolkit-editors-canvases) | Edição rica, blocos estruturados, controles de tela e padrões de Design. |
82
+ | Experiência e contexto do agente | [Contexto e conhecimento](/docs/toolkit-context-knowledge) | Context X-Ray, recursos, conhecimento, contexto do compositor e estado visível ao agente. |
83
+ | Colaboração e governança | [Colaboração](/docs/toolkit-collaboration) | Compartilhamento, presença, revisão, histórico, auditoria e limites organizacionais. |
84
+ | Estrutura do espaço de trabalho | [Chrome do app](/docs/toolkit-settings) | Configurações, equipes, setup, navegação, recursos e UX do agente. |
85
+ | Operações | [Observabilidade](/docs/toolkit-observability) | Uso, feedback, replay, diagnóstico e visibilidade operacional. |
86
+ | Módulos de capacidade do Toolkit | [Pacotes de capacidade](/docs/toolkit-capability-packages) | Pacotes de domínio instalados sob demanda e seus manifestos de ciclo de vida. |
87
+
88
+ ## Kits de produto {#product-kits}
89
+
90
+ | Kit | Use para |
91
+ | -------------------------------------------------------- | ------------------------------------------------------------------------------------------------ |
92
+ | [Sharing](/docs/toolkit-sharing) | Recursos próprios, diálogos/ações de compartilhar, visibilidade e acesso público/privado/org. |
93
+ | [Collaboration](/docs/toolkit-collaboration) | Edição em tempo real, presença, cursores ao vivo, mudanças recentes e desfazer colaborativo. |
94
+ | [Settings](/docs/toolkit-settings) | Páginas e abas padrão para configurações do app e do agente/provedor no mesmo lugar. |
95
+ | [Org & Team](/docs/toolkit-org-team) | Páginas de equipe, troca de organização, convites, domínios, papéis e troca de app. |
96
+ | [Setup & Connections](/docs/toolkit-setup-connections) | Onboarding, segredos, conexões de workspace, OAuth/prontidão de provedor e Builder connect. |
97
+ | [Command & Navigation](/docs/toolkit-command-navigation) | Menu de comandos, links profundos, rotas padrão, padrões de barra lateral e shell. |
98
+ | [Resources](/docs/toolkit-resources) | Árvores/editores de recursos, seletor/busca de arquivos, anexos e modo de arquivo local. |
99
+ | [Agent UX](/docs/toolkit-agent-ux) | Compositor, seletor de modelo, chips de contexto, aprovações, recuperação e gaveta de execuções. |
100
+ | [History](/docs/toolkit-history) | Recursos versionados, snapshots, histórico, auditoria, desfazer/refazer, restauração e mudanças. |
101
+ | [Comments & Review](/docs/toolkit-comments-review) | Recursos revisáveis, comentários, feedback, threads, menções, resolução e status de revisão. |
102
+ | [Observability](/docs/toolkit-observability) | Uso, gastos, feedback, replay, erros e diagnósticos de execução. |
103
+
104
+ ## Maturidade e propriedade de pacotes {#package-maturity-and-ownership}
105
+
106
+ - O editor rico pertence ao **Toolkit**; imports Core existentes permanecem reexports de compatibilidade leves durante a migração.
107
+ - Design é um **padrão de template** com `design-tweaks` reutilizáveis, não um editor ou tela completa pronta para uso.
108
+ - Blocks e o mecanismo Context X-Ray permanecem propriedade do **Core** nesta fase; a apresentação reutilizável de Context X-Ray pertence ao Toolkit.
109
+ - Creative Context, Scheduling e Pinpoint são **módulos de capacidade do Toolkit** instalados sob demanda; mantêm pacotes npm e manifestos de ciclo de vida separados. Dispatch permanece um produto separado.
110
+
111
+ ## Limite de implementação {#implementation-boundary}
112
+
113
+ Kits são primeiro superfícies de produto. Algumas partes usam o runtime
90
114
  (`@agent-native/core`), some are presentation primitives
91
115
  (`@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.
116
+ Use o caminho do pacote que possui o comportamento necessário, mas projete
117
+ configurações, colaboração, compartilhamento, equipe, revisão e setup como um
118
+ kit coerente, sem expor limites de pacotes no app.
119
+
120
+ ## Peças fundamentais {#foundation-pieces}
121
+
122
+ - [Primitivos de UI](/docs/toolkit-ui) cobre primitivos compartilhados no estilo
123
+ shadcn em `@agent-native/toolkit/ui/*`, adaptadores locais e hooks de shell.
124
+ - A [API de componentes](/docs/components) continua sendo a referência de baixo
125
+ nível para exports React públicos.
126
+
127
+ ## Regra de design {#design-rule}
128
+
129
+ Use um kit quando o comportamento se repete entre apps e as pessoas esperam uma
130
+ experiência padrão: compartilhamento, configurações, equipes, comentários,
131
+ histórico e progresso do agente não devem variar entre templates. Mantenha no
132
+ app os dados, fluxos, rótulos e estilo visual específicos do domínio.
133
+
134
+ ## Próximos passos
135
+
136
+ - [**Primitivos de UI do Toolkit**](/docs/toolkit-ui) — primitivos compartilhados, adaptadores de app e hooks de shell.
137
+ - [**Kit de compartilhamento**](/docs/toolkit-sharing) — um bom primeiro kit para recursos, diálogos de compartilhamento e visibilidade.
138
+ - [**Criar templates**](/docs/creating-templates) — crie um template completo e veja onde os kits se encaixam.
139
+ - [**API de componentes**](/docs/components) — a referência de todos os exports públicos do React.
140
+ - [**Ciclo de vida de pacotes**](/docs/package-lifecycle) — inspecione, adicione e ejete módulos de capacidade do Toolkit guiados por manifesto com segurança.
@@ -0,0 +1,21 @@
1
+ ---
2
+ title: "Pacotes de capacidade"
3
+ description: "Gerencie capacidades de domínio e seu ciclo de vida por manifesto sem incorporá-las ao Toolkit."
4
+ ---
5
+
6
+ # Pacotes de capacidade
7
+
8
+ O Toolkit fornece fundações de produto transversais; pacotes de capacidade trazem domínio delimitado, actions, skills e metadados de ciclo de vida. Scheduling e Creative Context permanecem pacotes de capacidade separados, não kits do Toolkit.
9
+
10
+ `@agent-native/scheduling` participa do piloto do manifesto genérico. Consulte a documentação e o manifesto locais de cada pacote para pontos de extensão e responsabilidade.
11
+
12
+ - [Documentação do pacote Scheduling](https://github.com/BuilderIO/agent-native/tree/main/packages/scheduling/docs)
13
+ - [Documentação do pacote 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
+ Veja [Ciclo de vida de pacotes](/docs/package-lifecycle) para inspeção, simulação e eject.
@@ -0,0 +1,12 @@
1
+ ---
2
+ title: "Contexto e conhecimento"
3
+ description: "Crie superfícies de contexto para agentes respeitando as camadas de mecanismo, acesso a dados e apresentação reutilizável."
4
+ ---
5
+
6
+ # Contexto e conhecimento
7
+
8
+ O Core mantém estado da aplicação, acesso com escopo e o mecanismo Context X-Ray. O Toolkit fornece a apresentação reutilizável; o app mantém registros de domínio, taxonomia e regras de seleção.
9
+
10
+ O mecanismo Context X-Ray continua no Core. Use a apresentação do Toolkit para contexto consistente, mas mantenha decisões de estado e acesso no Core e nas actions. [Context awareness](/docs/context-awareness) expõe navegação, seleção e objeto em foco ao agente; [Resources](/docs/toolkit-resources) cobre arquivos e anexos.
11
+
12
+ Contexto não substitui controles de acesso. Preserve verificações de recurso e credencial antes de recuperar conhecimento de provedores.
@@ -0,0 +1,17 @@
1
+ ---
2
+ title: "Editores e canvases"
3
+ description: "Escolha superfícies reutilizáveis sem confundir compatibilidade do Core, padrões de template e primitivas do Toolkit."
4
+ ---
5
+
6
+ # Editores e canvases
7
+
8
+ Editores e canvases são superfícies relacionadas, não um único recurso principal.
9
+
10
+ | Superfície | Responsabilidade atual |
11
+ | ---------------------- | ------------------------------------------------------------------------------- |
12
+ | Editor rico | Toolkit, com reexportações de compatibilidade pelo Core. |
13
+ | Blocos | Core nesta fase. |
14
+ | Design | Padrão de template com `design-tweaks`, não um editor completo pronto para uso. |
15
+ | Apresentação de canvas | Composição do Toolkit ou do app. |
16
+
17
+ Importe o editor de `@agent-native/toolkit/editor`. Os caminhos antigos do Core continuam como reexportações de compatibilidade. Mantenha esquemas, comandos e persistência no app. Os blocos ficam no Core, mas são documentados aqui porque a seção Toolkit é o catálogo de UI reutilizável.