@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.
- package/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +16 -0
- package/corpus/core/docs/content/agent-native-toolkit.mdx +46 -13
- package/corpus/core/docs/content/locales/ar-SA/agent-native-toolkit.mdx +79 -55
- package/corpus/core/docs/content/locales/ar-SA/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/ar-SA/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/ar-SA/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/de-DE/agent-native-toolkit.mdx +82 -54
- package/corpus/core/docs/content/locales/de-DE/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/de-DE/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/de-DE/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/es-ES/agent-native-toolkit.mdx +81 -52
- package/corpus/core/docs/content/locales/es-ES/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/es-ES/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/es-ES/toolkit-editors-canvases.mdx +21 -0
- package/corpus/core/docs/content/locales/fr-FR/agent-native-toolkit.mdx +84 -54
- package/corpus/core/docs/content/locales/fr-FR/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/fr-FR/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/fr-FR/toolkit-editors-canvases.mdx +21 -0
- package/corpus/core/docs/content/locales/hi-IN/agent-native-toolkit.mdx +69 -62
- package/corpus/core/docs/content/locales/hi-IN/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/hi-IN/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/hi-IN/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/ja-JP/agent-native-toolkit.mdx +69 -62
- package/corpus/core/docs/content/locales/ja-JP/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/ja-JP/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/ja-JP/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/ko-KR/agent-native-toolkit.mdx +69 -62
- package/corpus/core/docs/content/locales/ko-KR/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/ko-KR/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/ko-KR/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/pt-BR/agent-native-toolkit.mdx +82 -54
- package/corpus/core/docs/content/locales/pt-BR/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/pt-BR/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/pt-BR/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/zh-CN/agent-native-toolkit.mdx +69 -62
- package/corpus/core/docs/content/locales/zh-CN/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/zh-CN/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/zh-CN/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/locales/zh-TW/agent-native-toolkit.mdx +69 -62
- package/corpus/core/docs/content/locales/zh-TW/toolkit-capability-packages.mdx +21 -0
- package/corpus/core/docs/content/locales/zh-TW/toolkit-context-knowledge.mdx +12 -0
- package/corpus/core/docs/content/locales/zh-TW/toolkit-editors-canvases.mdx +17 -0
- package/corpus/core/docs/content/toolkit-capability-packages.mdx +52 -0
- package/corpus/core/docs/content/toolkit-context-knowledge.mdx +46 -0
- package/corpus/core/docs/content/toolkit-editors-canvases.mdx +55 -0
- package/corpus/core/package.json +35 -34
- package/corpus/core/src/cli/create.ts +57 -15
- package/corpus/core/src/cli/package-lifecycle.ts +2 -0
- package/corpus/core/src/cli/skills-content/visual-plan-skill.ts +2 -0
- package/corpus/core/src/client/context-xray/ContextMeter.tsx +31 -111
- package/corpus/core/src/client/context-xray/ContextSegmentRow.tsx +8 -111
- package/corpus/core/src/client/context-xray/ContextTreemap.tsx +6 -111
- package/corpus/core/src/client/context-xray/ContextXRayPanel.tsx +31 -391
- package/corpus/core/src/client/context-xray/SegmentProvenancePopover.tsx +4 -52
- package/corpus/core/src/client/context-xray/format.ts +0 -33
- package/corpus/core/src/client/require-session.tsx +19 -3
- package/corpus/core/src/client/rich-markdown-editor/index.ts +42 -57
- package/corpus/core/src/client/rich-markdown-editor/uploadEditorImage.ts +2 -1
- package/corpus/core/src/client/use-action.ts +145 -2
- package/corpus/core/src/client/use-session.ts +79 -48
- package/corpus/core/src/client/visual-style-controls.tsx +1 -1088
- package/corpus/core/src/collab/agent-identity.ts +5 -22
- package/corpus/core/src/collab/client.ts +1 -53
- package/corpus/core/src/db/client.ts +13 -7
- package/corpus/core/src/db/create-get-db.ts +20 -13
- package/corpus/core/src/db/request-telemetry.ts +154 -0
- package/corpus/core/src/integrations/index.ts +1 -0
- package/corpus/core/src/integrations/plugin.ts +9 -3
- package/corpus/core/src/integrations/remote-push-delivery-job.ts +48 -0
- package/corpus/core/src/integrations/remote-push-delivery.ts +370 -0
- package/corpus/core/src/integrations/remote-push-store.ts +275 -26
- package/corpus/core/src/server/better-auth-instance.ts +11 -3
- package/corpus/core/src/server/core-routes-plugin.ts +36 -14
- package/corpus/core/src/server/framework-request-handler.ts +11 -1
- package/corpus/core/src/server/http-response-telemetry.ts +233 -31
- package/corpus/core/src/styles/rich-markdown-editor.css +1 -510
- package/corpus/core/src/templates/workspace-core/.agents/skills/tracking/SKILL.md +19 -0
- package/corpus/core/src/testing.ts +1 -1
- package/corpus/core/src/vite/client.ts +3 -0
- package/corpus/templates/clips/actions/finalize-recording.ts +3 -1
- package/corpus/templates/clips/actions/set-mobile-capture-state.ts +4 -1
- package/corpus/templates/clips/app/components/library/library-layout.tsx +1 -6
- package/corpus/templates/clips/changelog/2026-07-18-new-recording-is-now-emphasized-as-the-primary-action-in-the.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-18-recordings-now-remain-safely-recoverable-until-the-stored-me.md +6 -0
- package/corpus/templates/content/app/components/editor/VisualEditor.tsx +5 -3
- package/corpus/templates/content/app/components/editor/extensions/DragHandle.tsx +4 -4
- package/corpus/templates/content/package.json +25 -25
- package/corpus/templates/design/app/components/design/TweaksPanel.tsx +2 -1
- package/corpus/templates/design/package.json +1 -1
- package/corpus/templates/mail/package.json +9 -9
- package/corpus/templates/plan/.agents/skills/visual-plan/SKILL.md +2 -0
- package/corpus/templates/plan/app/components/editor/PlanDocumentEditor.tsx +8 -8
- package/corpus/templates/plan/app/components/editor/planSlashCommands.ts +6 -6
- package/corpus/templates/plan/app/components/plan/PlanImageNode.tsx +4 -7
- package/corpus/templates/plan/app/components/plan/PlanMarkdownEditor.tsx +6 -4
- package/corpus/templates/plan/app/components/plan/PlanVisualSurface.tsx +1 -1
- package/corpus/templates/plan/changelog/2026-07-18-visual-plans-now-open-on-wireframes-by-default-when-a-protot.md +6 -0
- package/corpus/templates/plan/package.json +3 -3
- package/corpus/templates/slides/app/components/editor/SlideStyleInspector.tsx +2 -2
- package/corpus/templates/slides/app/components/editor/TweaksPanel.tsx +2 -2
- package/corpus/templates/slides/package.json +13 -13
- package/corpus/templates/tasks/AGENTS.md +3 -0
- package/corpus/templates/tasks/actions/render-task-list-inline.ts +202 -0
- package/corpus/templates/tasks/changelog/2026-07-18-task-lists-can-now-appear-as-interactive-widgets-inline-in-c.md +6 -0
- package/corpus/templates/tasks/docs/features/f8-chat.mdx +2 -0
- package/corpus/templates/tasks/server/plugins/agent-chat.ts +2 -0
- package/dist/catalog.json +39 -1
- package/dist/cli/create.d.ts +10 -1
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +49 -16
- package/dist/cli/create.js.map +1 -1
- package/dist/cli/package-lifecycle.d.ts.map +1 -1
- package/dist/cli/package-lifecycle.js +2 -0
- package/dist/cli/package-lifecycle.js.map +1 -1
- package/dist/cli/skills-content/visual-plan-skill.d.ts +1 -1
- package/dist/cli/skills-content/visual-plan-skill.d.ts.map +1 -1
- package/dist/cli/skills-content/visual-plan-skill.js +2 -0
- package/dist/cli/skills-content/visual-plan-skill.js.map +1 -1
- package/dist/client/context-xray/ContextMeter.d.ts.map +1 -1
- package/dist/client/context-xray/ContextMeter.js +8 -23
- package/dist/client/context-xray/ContextMeter.js.map +1 -1
- package/dist/client/context-xray/ContextSegmentRow.d.ts.map +1 -1
- package/dist/client/context-xray/ContextSegmentRow.js +3 -19
- package/dist/client/context-xray/ContextSegmentRow.js.map +1 -1
- package/dist/client/context-xray/ContextTreemap.d.ts.map +1 -1
- package/dist/client/context-xray/ContextTreemap.js +3 -54
- package/dist/client/context-xray/ContextTreemap.js.map +1 -1
- package/dist/client/context-xray/ContextXRayPanel.d.ts.map +1 -1
- package/dist/client/context-xray/ContextXRayPanel.js +21 -163
- package/dist/client/context-xray/ContextXRayPanel.js.map +1 -1
- package/dist/client/context-xray/SegmentProvenancePopover.d.ts.map +1 -1
- package/dist/client/context-xray/SegmentProvenancePopover.js +3 -4
- package/dist/client/context-xray/SegmentProvenancePopover.js.map +1 -1
- package/dist/client/context-xray/format.d.ts +0 -4
- package/dist/client/context-xray/format.d.ts.map +1 -1
- package/dist/client/context-xray/format.js +0 -49
- package/dist/client/context-xray/format.js.map +1 -1
- package/dist/client/require-session.d.ts.map +1 -1
- package/dist/client/require-session.js +6 -3
- package/dist/client/require-session.js.map +1 -1
- package/dist/client/rich-markdown-editor/index.d.ts +1 -12
- package/dist/client/rich-markdown-editor/index.d.ts.map +1 -1
- package/dist/client/rich-markdown-editor/index.js +1 -12
- package/dist/client/rich-markdown-editor/index.js.map +1 -1
- package/dist/client/rich-markdown-editor/uploadEditorImage.d.ts +1 -1
- package/dist/client/rich-markdown-editor/uploadEditorImage.d.ts.map +1 -1
- package/dist/client/rich-markdown-editor/uploadEditorImage.js.map +1 -1
- package/dist/client/use-action.d.ts.map +1 -1
- package/dist/client/use-action.js +117 -1
- package/dist/client/use-action.js.map +1 -1
- package/dist/client/use-session.d.ts.map +1 -1
- package/dist/client/use-session.js +72 -50
- package/dist/client/use-session.js.map +1 -1
- package/dist/client/visual-style-controls.d.ts +1 -89
- package/dist/client/visual-style-controls.d.ts.map +1 -1
- package/dist/client/visual-style-controls.js +1 -498
- package/dist/client/visual-style-controls.js.map +1 -1
- package/dist/collab/agent-identity.d.ts +1 -14
- package/dist/collab/agent-identity.d.ts.map +1 -1
- package/dist/collab/agent-identity.js +1 -13
- package/dist/collab/agent-identity.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/client.d.ts +1 -19
- package/dist/collab/client.d.ts.map +1 -1
- package/dist/collab/client.js +1 -53
- package/dist/collab/client.js.map +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/db/client.d.ts.map +1 -1
- package/dist/db/client.js +7 -1
- package/dist/db/client.js.map +1 -1
- package/dist/db/create-get-db.d.ts +3 -6
- package/dist/db/create-get-db.d.ts.map +1 -1
- package/dist/db/create-get-db.js +9 -2
- package/dist/db/create-get-db.js.map +1 -1
- package/dist/db/request-telemetry.d.ts +23 -0
- package/dist/db/request-telemetry.d.ts.map +1 -0
- package/dist/db/request-telemetry.js +95 -0
- package/dist/db/request-telemetry.js.map +1 -0
- package/dist/integrations/index.d.ts +1 -0
- package/dist/integrations/index.d.ts.map +1 -1
- package/dist/integrations/index.js +1 -0
- package/dist/integrations/index.js.map +1 -1
- package/dist/integrations/plugin.d.ts.map +1 -1
- package/dist/integrations/plugin.js +8 -3
- package/dist/integrations/plugin.js.map +1 -1
- package/dist/integrations/remote-push-delivery-job.d.ts +4 -0
- package/dist/integrations/remote-push-delivery-job.d.ts.map +1 -0
- package/dist/integrations/remote-push-delivery-job.js +44 -0
- package/dist/integrations/remote-push-delivery-job.js.map +1 -0
- package/dist/integrations/remote-push-delivery.d.ts +11 -0
- package/dist/integrations/remote-push-delivery.d.ts.map +1 -0
- package/dist/integrations/remote-push-delivery.js +265 -0
- package/dist/integrations/remote-push-delivery.js.map +1 -0
- package/dist/integrations/remote-push-store.d.ts +33 -0
- package/dist/integrations/remote-push-store.d.ts.map +1 -1
- package/dist/integrations/remote-push-store.js +195 -26
- package/dist/integrations/remote-push-store.js.map +1 -1
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/progress/routes.d.ts +1 -1
- package/dist/provider-api/corpus-jobs.d.ts +2 -2
- package/dist/resources/handlers.d.ts +3 -3
- package/dist/secrets/routes.d.ts +9 -9
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/dist/server/better-auth-instance.js +7 -3
- package/dist/server/better-auth-instance.js.map +1 -1
- package/dist/server/core-routes-plugin.d.ts +8 -0
- package/dist/server/core-routes-plugin.d.ts.map +1 -1
- package/dist/server/core-routes-plugin.js +23 -8
- package/dist/server/core-routes-plugin.js.map +1 -1
- package/dist/server/framework-request-handler.d.ts.map +1 -1
- package/dist/server/framework-request-handler.js +9 -1
- package/dist/server/framework-request-handler.js.map +1 -1
- package/dist/server/http-response-telemetry.d.ts +3 -2
- package/dist/server/http-response-telemetry.d.ts.map +1 -1
- package/dist/server/http-response-telemetry.js +160 -27
- package/dist/server/http-response-telemetry.js.map +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/dist/styles/rich-markdown-editor.css +1 -510
- package/dist/templates/workspace-core/.agents/skills/tracking/SKILL.md +19 -0
- package/dist/testing.d.ts +1 -1
- package/dist/testing.d.ts.map +1 -1
- package/dist/testing.js +1 -1
- package/dist/testing.js.map +1 -1
- package/dist/vite/client.d.ts.map +1 -1
- package/dist/vite/client.js +3 -0
- package/dist/vite/client.js.map +1 -1
- package/docs/content/agent-native-toolkit.mdx +46 -13
- package/docs/content/locales/ar-SA/agent-native-toolkit.mdx +79 -55
- package/docs/content/locales/ar-SA/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/ar-SA/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/ar-SA/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/de-DE/agent-native-toolkit.mdx +82 -54
- package/docs/content/locales/de-DE/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/de-DE/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/de-DE/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/es-ES/agent-native-toolkit.mdx +81 -52
- package/docs/content/locales/es-ES/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/es-ES/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/es-ES/toolkit-editors-canvases.mdx +21 -0
- package/docs/content/locales/fr-FR/agent-native-toolkit.mdx +84 -54
- package/docs/content/locales/fr-FR/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/fr-FR/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/fr-FR/toolkit-editors-canvases.mdx +21 -0
- package/docs/content/locales/hi-IN/agent-native-toolkit.mdx +69 -62
- package/docs/content/locales/hi-IN/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/hi-IN/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/hi-IN/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/ja-JP/agent-native-toolkit.mdx +69 -62
- package/docs/content/locales/ja-JP/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/ja-JP/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/ja-JP/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/ko-KR/agent-native-toolkit.mdx +69 -62
- package/docs/content/locales/ko-KR/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/ko-KR/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/ko-KR/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/pt-BR/agent-native-toolkit.mdx +82 -54
- package/docs/content/locales/pt-BR/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/pt-BR/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/pt-BR/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/zh-CN/agent-native-toolkit.mdx +69 -62
- package/docs/content/locales/zh-CN/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/zh-CN/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/zh-CN/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/locales/zh-TW/agent-native-toolkit.mdx +69 -62
- package/docs/content/locales/zh-TW/toolkit-capability-packages.mdx +21 -0
- package/docs/content/locales/zh-TW/toolkit-context-knowledge.mdx +12 -0
- package/docs/content/locales/zh-TW/toolkit-editors-canvases.mdx +17 -0
- package/docs/content/toolkit-capability-packages.mdx +52 -0
- package/docs/content/toolkit-context-knowledge.mdx +46 -0
- package/docs/content/toolkit-editors-canvases.mdx +55 -0
- package/package.json +27 -26
- package/src/templates/workspace-core/.agents/skills/tracking/SKILL.md +19 -0
- package/corpus/core/src/client/rich-markdown-editor/BubbleToolbar.tsx +0 -253
- package/corpus/core/src/client/rich-markdown-editor/CodeBlockNode.tsx +0 -258
- package/corpus/core/src/client/rich-markdown-editor/DragHandle.ts +0 -1437
- package/corpus/core/src/client/rich-markdown-editor/ImageExtension.ts +0 -306
- package/corpus/core/src/client/rich-markdown-editor/RichMarkdownEditor.tsx +0 -80
- package/corpus/core/src/client/rich-markdown-editor/RunId.ts +0 -61
- package/corpus/core/src/client/rich-markdown-editor/SharedRichEditor.tsx +0 -321
- package/corpus/core/src/client/rich-markdown-editor/SlashCommandMenu.tsx +0 -310
- package/corpus/core/src/client/rich-markdown-editor/extensions.ts +0 -402
- package/corpus/core/src/client/rich-markdown-editor/gfmDoc.ts +0 -92
- package/corpus/core/src/client/rich-markdown-editor/surgical-apply.ts +0 -192
- package/corpus/core/src/client/rich-markdown-editor/useCollabReconcile.ts +0 -590
- package/dist/client/rich-markdown-editor/BubbleToolbar.d.ts +0 -37
- package/dist/client/rich-markdown-editor/BubbleToolbar.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/BubbleToolbar.js +0 -171
- package/dist/client/rich-markdown-editor/BubbleToolbar.js.map +0 -1
- package/dist/client/rich-markdown-editor/CodeBlockNode.d.ts +0 -49
- package/dist/client/rich-markdown-editor/CodeBlockNode.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/CodeBlockNode.js +0 -127
- package/dist/client/rich-markdown-editor/CodeBlockNode.js.map +0 -1
- package/dist/client/rich-markdown-editor/DragHandle.d.ts +0 -97
- package/dist/client/rich-markdown-editor/DragHandle.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/DragHandle.js +0 -1066
- package/dist/client/rich-markdown-editor/DragHandle.js.map +0 -1
- package/dist/client/rich-markdown-editor/ImageExtension.d.ts +0 -63
- package/dist/client/rich-markdown-editor/ImageExtension.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/ImageExtension.js +0 -243
- package/dist/client/rich-markdown-editor/ImageExtension.js.map +0 -1
- package/dist/client/rich-markdown-editor/RichMarkdownEditor.d.ts +0 -51
- package/dist/client/rich-markdown-editor/RichMarkdownEditor.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/RichMarkdownEditor.js +0 -37
- package/dist/client/rich-markdown-editor/RichMarkdownEditor.js.map +0 -1
- package/dist/client/rich-markdown-editor/RunId.d.ts +0 -28
- package/dist/client/rich-markdown-editor/RunId.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/RunId.js +0 -60
- package/dist/client/rich-markdown-editor/RunId.js.map +0 -1
- package/dist/client/rich-markdown-editor/SharedRichEditor.d.ts +0 -110
- package/dist/client/rich-markdown-editor/SharedRichEditor.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/SharedRichEditor.js +0 -144
- package/dist/client/rich-markdown-editor/SharedRichEditor.js.map +0 -1
- package/dist/client/rich-markdown-editor/SlashCommandMenu.d.ts +0 -41
- package/dist/client/rich-markdown-editor/SlashCommandMenu.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/SlashCommandMenu.js +0 -221
- package/dist/client/rich-markdown-editor/SlashCommandMenu.js.map +0 -1
- package/dist/client/rich-markdown-editor/extensions.d.ts +0 -178
- package/dist/client/rich-markdown-editor/extensions.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/extensions.js +0 -224
- package/dist/client/rich-markdown-editor/extensions.js.map +0 -1
- package/dist/client/rich-markdown-editor/gfmDoc.d.ts +0 -24
- package/dist/client/rich-markdown-editor/gfmDoc.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/gfmDoc.js +0 -83
- package/dist/client/rich-markdown-editor/gfmDoc.js.map +0 -1
- package/dist/client/rich-markdown-editor/surgical-apply.d.ts +0 -66
- package/dist/client/rich-markdown-editor/surgical-apply.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/surgical-apply.js +0 -147
- package/dist/client/rich-markdown-editor/surgical-apply.js.map +0 -1
- package/dist/client/rich-markdown-editor/useCollabReconcile.d.ts +0 -110
- package/dist/client/rich-markdown-editor/useCollabReconcile.d.ts.map +0 -1
- package/dist/client/rich-markdown-editor/useCollabReconcile.js +0 -441
- package/dist/client/rich-markdown-editor/useCollabReconcile.js.map +0 -1
package/corpus/README.md
CHANGED
package/corpus/core/CHANGELOG.md
CHANGED
|
@@ -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: "
|
|
3
|
-
description: "
|
|
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
|
-
#
|
|
6
|
+
# Toolkit
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
applications.
|
|
10
|
-
standard surfaces
|
|
11
|
-
|
|
12
|
-
|
|
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;
|
|
17
|
-
|
|
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.
|
|
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">→</div>
|
|
38
42
|
<div class="diagram-card">
|
|
39
|
-
<span class="diagram-pill accent">
|
|
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">→</div>
|
|
@@ -66,7 +70,19 @@ being rebuilt in slightly different ways every time.
|
|
|
66
70
|
|
|
67
71
|
</Diagram>
|
|
68
72
|
|
|
69
|
-
##
|
|
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: "
|
|
3
|
-
description: "
|
|
2
|
+
title: "Toolkit"
|
|
3
|
+
description: "كتالوج متوازن للأسس القابلة لإعادة الاستخدام والمحررات واللوحات وسياق الوكيل والحوكمة وهيكل مساحة العمل والعمليات ووحدات قدرات Toolkit."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<!-- i18n-docs-ignore -->
|
|
7
7
|
|
|
8
|
-
#
|
|
8
|
+
# Toolkit
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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;
|
|
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="
|
|
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
|
-
|
|
40
|
+
الإجراءات، SQL، المصادقة، حالة التطبيق، فحوصات الوصول، النقل الفوري
|
|
38
41
|
</div>
|
|
39
42
|
<div class="diagram-arrow diagram-muted" aria-hidden="true">→</div>
|
|
40
43
|
<div class="diagram-card">
|
|
41
|
-
<span class="diagram-pill accent">
|
|
42
|
-
|
|
44
|
+
<span class="diagram-pill accent">Toolkit</span><br />
|
|
45
|
+
التعاون، المشاركة، الإعداد، المراجعة، السجل، قابلية الرصد
|
|
43
46
|
</div>
|
|
44
47
|
<div class="diagram-arrow diagram-muted" aria-hidden="true">→</div>
|
|
45
48
|
<div class="diagram-card">
|
|
46
|
-
<span class="diagram-pill accent"
|
|
47
|
-
|
|
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
|
-
##
|
|
72
|
-
|
|
73
|
-
|
|
|
74
|
-
|
|
|
75
|
-
| [
|
|
76
|
-
| [
|
|
77
|
-
| [
|
|
78
|
-
|
|
|
79
|
-
| [
|
|
80
|
-
| [
|
|
81
|
-
| [
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
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
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
##
|
|
97
|
-
|
|
98
|
-
- [
|
|
99
|
-
`@agent-native/toolkit/ui
|
|
100
|
-
- [
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
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: "
|
|
3
|
-
description: "
|
|
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
|
-
#
|
|
8
|
+
# Toolkit
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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;
|
|
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="
|
|
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
|
-
|
|
40
|
+
Aktionen, SQL, Authentifizierung, App-Zustand, Zugriffskontrollen,
|
|
41
|
+
Echtzeittransport
|
|
38
42
|
</div>
|
|
39
43
|
<div class="diagram-arrow diagram-muted" aria-hidden="true">→</div>
|
|
40
44
|
<div class="diagram-card">
|
|
41
|
-
<span class="diagram-pill accent">
|
|
42
|
-
|
|
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">→</div>
|
|
45
49
|
<div class="diagram-card">
|
|
46
50
|
<span class="diagram-pill accent">Apps</span><br />
|
|
47
|
-
|
|
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
|
-
##
|
|
72
|
-
|
|
73
|
-
|
|
|
74
|
-
|
|
|
75
|
-
| [
|
|
76
|
-
| [
|
|
77
|
-
| [
|
|
78
|
-
|
|
|
79
|
-
| [
|
|
80
|
-
| [
|
|
81
|
-
| [
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
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
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
##
|
|
97
|
-
|
|
98
|
-
- [UI
|
|
99
|
-
`@agent-native/toolkit/ui
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
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.
|