@agent-native/core 0.115.4 → 0.116.0
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/agent-native.eject.json +1 -0
- package/corpus/README.md +3 -3
- package/corpus/core/CHANGELOG.md +28 -0
- package/corpus/core/agent-native.eject.json +1 -0
- package/corpus/core/docs/AGENTS.md +1 -1
- package/corpus/core/docs/content/agent-mentions.mdx +2 -2
- package/corpus/core/docs/content/{workspace.mdx → agent-resources.mdx} +1 -7
- package/corpus/core/docs/content/agent-teams.mdx +4 -4
- package/corpus/core/docs/content/dispatch.mdx +10 -10
- package/corpus/core/docs/content/drop-in-agent.mdx +4 -4
- package/corpus/core/docs/content/external-agents.mdx +1 -1
- package/corpus/core/docs/content/frames.mdx +1 -1
- package/corpus/core/docs/content/integrations.mdx +13 -2
- package/corpus/core/docs/content/key-concepts.mdx +2 -2
- package/corpus/core/docs/content/mcp-clients.mdx +7 -1
- package/corpus/core/docs/content/multi-app-workspace.mdx +3 -3
- package/corpus/core/docs/content/real-time-collaboration.mdx +33 -15
- package/corpus/core/docs/content/recurring-jobs.mdx +7 -7
- package/corpus/core/docs/content/skills-guide.mdx +4 -4
- package/corpus/core/docs/content/template-brain.mdx +1 -1
- package/corpus/core/docs/content/toolkit-collaboration.mdx +1 -1
- package/corpus/core/docs/content/using-your-agent.mdx +1 -1
- package/corpus/core/docs/content/what-is-agent-native.mdx +4 -4
- package/corpus/core/docs/content/workspace-management.mdx +4 -4
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/agent/production-agent.ts +13 -3
- package/corpus/core/src/cli/doctor.ts +6 -1
- package/corpus/core/src/client/AgentPanel.tsx +79 -41
- package/corpus/core/src/client/AssistantChat.tsx +71 -25
- package/corpus/core/src/client/FeedbackButton.tsx +33 -7
- package/corpus/core/src/client/MultiTabAssistantChat.tsx +6 -8
- package/corpus/core/src/client/agent-chat-adapter.ts +11 -2
- package/corpus/core/src/client/agent-page/AgentTabFrame.tsx +22 -3
- package/corpus/core/src/client/agent-page/AgentTabsPage.tsx +34 -19
- package/corpus/core/src/client/chat/message-components.tsx +43 -16
- package/corpus/core/src/client/chat/tool-call-display.tsx +30 -18
- package/corpus/core/src/client/chat/tool-render-registry.tsx +2 -0
- package/corpus/core/src/client/resources/McpConnectionSuggestion.tsx +19 -2
- package/corpus/core/src/client/resources/ResourceTree.tsx +7 -10
- package/corpus/core/src/client/resources/ResourcesPanel.tsx +33 -70
- package/corpus/core/src/client/resources/mcp-connection-resume.ts +107 -0
- package/corpus/core/src/client/resources/mcp-integration-catalog.ts +65 -12
- package/corpus/core/src/client/resources/mcp-integration-logos.ts +4 -0
- package/corpus/core/src/client/sse-event-processor.ts +50 -14
- package/corpus/core/src/client/use-db-sync.ts +16 -6
- package/corpus/core/src/connections/catalog.ts +7 -1
- package/corpus/core/src/eject/remote-mcp-presets.ts +37 -5
- package/corpus/core/src/guards/explicit-collab-access.ts +229 -0
- package/corpus/core/src/guards/index.ts +1 -0
- package/corpus/core/src/localization/default-messages.ts +54 -5
- package/corpus/core/src/mcp/connect-route.ts +34 -51
- package/corpus/core/src/provider-api/index.ts +1 -1
- package/corpus/core/src/server/collab-plugin.ts +137 -18
- package/corpus/core/src/server/index.ts +2 -0
- package/corpus/core/src/styles/agent-native.css +40 -0
- package/corpus/core/src/templates/default/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/core/src/templates/default/.agents/skills/real-time-collab/SKILL.md +35 -13
- package/corpus/core/src/templates/default/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/core/src/templates/headless/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/core/src/templates/workspace-core/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/core/src/templates/workspace-core/.agents/skills/real-time-collab/SKILL.md +35 -13
- package/corpus/core/src/templates/workspace-core/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/core/src/templates/workspace-core/.agents/skills/voice-transcription/SKILL.md +12 -8
- package/corpus/templates/analytics/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/analytics/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/templates/analytics/AGENTS.md +7 -2
- package/corpus/templates/analytics/actions/export-dashboard-panel-to-google-sheet.ts +144 -0
- package/corpus/templates/analytics/app/components/layout/Layout.tsx +7 -88
- package/corpus/templates/analytics/app/components/layout/Sidebar.tsx +34 -37
- package/corpus/templates/analytics/app/global.css +0 -4
- package/corpus/templates/analytics/app/hooks/use-navigation-state.ts +2 -7
- package/corpus/templates/analytics/app/i18n-data.ts +107 -0
- package/corpus/templates/analytics/app/lib/data-source-status.ts +9 -0
- package/corpus/templates/analytics/app/lib/sql-query.ts +1 -2
- package/corpus/templates/analytics/app/pages/Ask.tsx +2 -7
- package/corpus/templates/analytics/app/pages/DataSources.tsx +48 -0
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/SqlChartCard.tsx +59 -0
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/index.tsx +2 -0
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/report-panel-window.ts +3 -1
- package/corpus/templates/analytics/changelog/2026-07-22-clear-background-chat-progress.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-22-daily-dashboard-email-query-batches.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-22-export-table-panels-directly-to-google-sheets.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-22-recent-chats-can-expand-in-the-sidebar.md +6 -0
- package/corpus/templates/analytics/seeds/dashboards/agent-native-templates-first-party.json +8 -8
- package/corpus/templates/analytics/server/lib/canonical-first-party-dashboard-repair.ts +31 -0
- package/corpus/templates/analytics/server/lib/dashboard-report-subscriptions.ts +3 -5
- package/corpus/templates/analytics/server/lib/dashboard-report.ts +12 -0
- package/corpus/templates/analytics/server/lib/first-party-dashboard-repair.ts +3 -5
- package/corpus/templates/analytics/server/lib/first-party-metric-catalog.ts +150 -21
- package/corpus/templates/analytics/server/lib/google-sheets-export.ts +188 -0
- package/corpus/templates/analytics/server/lib/provider-api.ts +7 -2
- package/corpus/templates/analytics/server/plugins/collab.ts +6 -3
- package/corpus/templates/analytics/shared/sql-query-limits.ts +1 -0
- package/corpus/templates/assets/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/assets/.agents/skills/real-time-collab/SKILL.md +35 -13
- package/corpus/templates/assets/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/templates/assets/app/components/layout/Layout.tsx +1 -1
- package/corpus/templates/assets/app/components/layout/Sidebar.tsx +54 -62
- package/corpus/templates/assets/app/hooks/use-navigation-state.ts +2 -6
- package/corpus/templates/assets/app/routes/_index.tsx +8 -5
- package/corpus/templates/assets/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +6 -0
- package/corpus/templates/assets/changelog/2026-07-22-recent-chats-expand-from-a-compact-list.md +6 -0
- package/corpus/templates/brain/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/brain/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/templates/brain/actions/rotate-source-ingest-token.ts +77 -0
- package/corpus/templates/brain/app/components/layout/Layout.tsx +5 -1
- package/corpus/templates/brain/app/components/layout/Sidebar.tsx +38 -51
- package/corpus/templates/brain/app/hooks/use-navigation-state.ts +2 -9
- package/corpus/templates/brain/app/i18n-data.ts +120 -0
- package/corpus/templates/brain/app/routes/sources.tsx +156 -5
- package/corpus/templates/brain/changelog/2026-07-22-chat-runs-always-end-with-an-answer.md +6 -0
- package/corpus/templates/brain/changelog/2026-07-22-clear-background-chat-progress.md +6 -0
- package/corpus/templates/brain/changelog/2026-07-22-compact-sidebar-footer.md +6 -0
- package/corpus/templates/brain/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +6 -0
- package/corpus/templates/brain/changelog/2026-07-22-long-chat-titles-stay-inside-the-sidebar.md +6 -0
- package/corpus/templates/brain/changelog/2026-07-22-new-clips-and-webhook-sources-now-show-their-secure-connecti.md +6 -0
- package/corpus/templates/brain/jobs/emit-netlify-brain-queue-cron.ts +125 -0
- package/corpus/templates/brain/netlify.toml +5 -1
- package/corpus/templates/brain/scripts/configure-prod-clips-source.ts +50 -0
- package/corpus/templates/brain/server/lib/capture-sanitization.ts +64 -6
- package/corpus/templates/brain/server/plugins/agent-chat.ts +4 -0
- package/corpus/templates/brain/server/plugins/brain-jobs.ts +1 -0
- package/corpus/templates/brain/server/routes/api/brain/queue/run.post.ts +55 -0
- package/corpus/templates/calendar/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/calendar/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/templates/chat/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/chat/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/templates/chat/app/components/layout/Layout.tsx +1 -0
- package/corpus/templates/chat/app/components/layout/Sidebar.tsx +43 -67
- package/corpus/templates/chat/app/hooks/use-navigation-state.ts +2 -7
- package/corpus/templates/chat/app/routes/_index.tsx +8 -5
- package/corpus/templates/chat/changelog/2026-07-22-compact-sidebar-footer.md +6 -0
- package/corpus/templates/chat/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +6 -0
- package/corpus/templates/chat/changelog/2026-07-22-recent-chats-are-easier-to-scan-and-expand.md +6 -0
- package/corpus/templates/clips/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/clips/AGENTS.md +9 -1
- package/corpus/templates/clips/actions/export-to-brain.ts +82 -6
- package/corpus/templates/clips/actions/request-transcript.ts +25 -14
- package/corpus/templates/clips/changelog/2026-07-22-clips-transcripts-now-retry-brain-export.md +5 -0
- package/corpus/templates/clips/changelog/2026-07-22-german-umlauts-and-other-non-ascii-characters-now-paste-corr.md +6 -0
- package/corpus/templates/clips/desktop/src-tauri/src/clips/mod.rs +26 -3
- package/corpus/templates/clips/jobs/emit-netlify-brain-export-cron.ts +118 -0
- package/corpus/templates/clips/netlify.toml +4 -1
- package/corpus/templates/clips/scripts/configure-prod-brain-export.ts +92 -0
- package/corpus/templates/clips/server/jobs/brain-export.ts +182 -0
- package/corpus/templates/clips/server/lib/brain-export-state.ts +42 -0
- package/corpus/templates/clips/server/lib/post-finalize-dispatch.ts +5 -1
- package/corpus/templates/clips/server/plugins/calendar-jobs.ts +2 -0
- package/corpus/templates/clips/server/register-secrets.ts +42 -0
- package/corpus/templates/clips/server/routes/api/_agent-native-background/post-finalize-worker.post.ts +10 -1
- package/corpus/templates/clips/server/routes/api/clips/brain-export/run.post.ts +45 -0
- package/corpus/templates/content/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/content/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/templates/content/app/components/sidebar/DocumentSidebar.tsx +1 -1
- package/corpus/templates/content/server/plugins/collab.ts +1 -1
- package/corpus/templates/crm/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/crm/actions/_crm-data-program-actions.ts +15 -0
- package/corpus/templates/crm/actions/get-crm-dashboard-panel.ts +2 -0
- package/corpus/templates/crm/actions/run.ts +2 -6
- package/corpus/templates/crm/actions/update-crm-record.ts +4 -2
- package/corpus/templates/crm/app/components/layout/CrmLayout.tsx +6 -0
- package/corpus/templates/crm/changelog/2026-07-22-crm-field-validation-now-explains-which-fields-cannot-be-edi.md +6 -0
- package/corpus/templates/crm/changelog/2026-07-22-fixed-hubspot-contact-syncs-missing-records-updated-after-th.md +6 -0
- package/corpus/templates/crm/changelog/2026-07-22-fixed-pipeline-dashboard-panels-so-their-opportunity-data-lo.md +6 -0
- package/corpus/templates/crm/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +6 -0
- package/corpus/templates/crm/server/crm/hubspot-adapter.ts +4 -1
- package/corpus/templates/design/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/design/app/components/layout/Sidebar.tsx +1 -1
- package/corpus/templates/design/server/plugins/collab.ts +11 -8
- package/corpus/templates/dispatch/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/forms/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/forms/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/templates/forms/app/components/layout/Layout.tsx +1 -0
- package/corpus/templates/forms/app/components/layout/Sidebar.tsx +1 -1
- package/corpus/templates/forms/app/hooks/use-navigation-state.ts +2 -9
- package/corpus/templates/forms/app/root.tsx +1 -6
- package/corpus/templates/forms/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +6 -0
- package/corpus/templates/macros/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/mail/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/mail/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/templates/mail/app/components/layout/AppLayout.tsx +2 -2
- package/corpus/templates/plan/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/plan/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/templates/plan/app/components/layout/Layout.tsx +5 -1
- package/corpus/templates/plan/app/components/layout/Sidebar.tsx +57 -72
- package/corpus/templates/plan/app/hooks/use-navigation-state.ts +2 -9
- package/corpus/templates/plan/app/lib/create-plan-routing.ts +2 -2
- package/corpus/templates/plan/app/pages/PlanChatPage.tsx +0 -1
- package/corpus/templates/plan/changelog/2026-07-22-compact-sidebar-footer.md +6 -0
- package/corpus/templates/plan/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +6 -0
- package/corpus/templates/plan/changelog/2026-07-22-recent-chats-and-sidebar-controls-are-more-compact.md +6 -0
- package/corpus/templates/plan/server/plugins/collab.ts +5 -2
- package/corpus/templates/slides/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/slides/app/components/layout/Sidebar.tsx +1 -1
- package/corpus/templates/slides/server/plugins/collab.ts +11 -8
- package/corpus/templates/tasks/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/corpus/templates/tasks/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/corpus/templates/tasks/app/components/layout/Sidebar.tsx +5 -22
- package/corpus/templates/tasks/changelog/2026-07-22-compact-sidebar-footer.md +6 -0
- package/corpus/toolkit/CHANGELOG.md +7 -0
- package/corpus/toolkit/README.md +12 -3
- package/corpus/toolkit/package.json +1 -1
- package/corpus/toolkit/src/chat-history/ChatHistoryRail.tsx +89 -0
- package/corpus/toolkit/src/chat-history/index.ts +5 -0
- package/corpus/toolkit/src/chat-history.css +59 -0
- package/corpus/toolkit/src/composer/RealtimeVoiceMode.tsx +106 -36
- package/corpus/toolkit/src/composer/VoiceButton.tsx +49 -0
- package/corpus/toolkit/src/composer/realtime-voice-audio-level.ts +2 -1
- package/corpus/toolkit/src/composer/useRealtimeVoiceMode.tsx +5 -3
- package/corpus/toolkit/src/styles.css +35 -0
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +13 -3
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/cli/doctor.d.ts +1 -1
- package/dist/cli/doctor.d.ts.map +1 -1
- package/dist/cli/doctor.js +5 -2
- package/dist/cli/doctor.js.map +1 -1
- package/dist/client/AgentPanel.d.ts +1 -0
- package/dist/client/AgentPanel.d.ts.map +1 -1
- package/dist/client/AgentPanel.js +38 -18
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +55 -20
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/FeedbackButton.d.ts +4 -2
- package/dist/client/FeedbackButton.d.ts.map +1 -1
- package/dist/client/FeedbackButton.js +18 -2
- package/dist/client/FeedbackButton.js.map +1 -1
- package/dist/client/MultiTabAssistantChat.d.ts +1 -1
- package/dist/client/MultiTabAssistantChat.d.ts.map +1 -1
- package/dist/client/MultiTabAssistantChat.js +2 -3
- package/dist/client/MultiTabAssistantChat.js.map +1 -1
- package/dist/client/agent-chat-adapter.d.ts.map +1 -1
- package/dist/client/agent-chat-adapter.js +11 -3
- package/dist/client/agent-chat-adapter.js.map +1 -1
- package/dist/client/agent-page/AgentTabFrame.d.ts +3 -1
- package/dist/client/agent-page/AgentTabFrame.d.ts.map +1 -1
- package/dist/client/agent-page/AgentTabFrame.js +3 -2
- package/dist/client/agent-page/AgentTabFrame.js.map +1 -1
- package/dist/client/agent-page/AgentTabsPage.d.ts +2 -0
- package/dist/client/agent-page/AgentTabsPage.d.ts.map +1 -1
- package/dist/client/agent-page/AgentTabsPage.js +26 -15
- package/dist/client/agent-page/AgentTabsPage.js.map +1 -1
- package/dist/client/chat/message-components.d.ts +6 -1
- package/dist/client/chat/message-components.d.ts.map +1 -1
- package/dist/client/chat/message-components.js +17 -11
- package/dist/client/chat/message-components.js.map +1 -1
- package/dist/client/chat/tool-call-display.d.ts +11 -1
- package/dist/client/chat/tool-call-display.d.ts.map +1 -1
- package/dist/client/chat/tool-call-display.js +16 -17
- package/dist/client/chat/tool-call-display.js.map +1 -1
- package/dist/client/chat/tool-render-registry.d.ts +2 -0
- package/dist/client/chat/tool-render-registry.d.ts.map +1 -1
- package/dist/client/chat/tool-render-registry.js.map +1 -1
- package/dist/client/resources/McpConnectionSuggestion.d.ts.map +1 -1
- package/dist/client/resources/McpConnectionSuggestion.js +15 -1
- package/dist/client/resources/McpConnectionSuggestion.js.map +1 -1
- package/dist/client/resources/ResourceTree.d.ts.map +1 -1
- package/dist/client/resources/ResourceTree.js +3 -3
- package/dist/client/resources/ResourceTree.js.map +1 -1
- package/dist/client/resources/ResourcesPanel.d.ts +1 -0
- package/dist/client/resources/ResourcesPanel.d.ts.map +1 -1
- package/dist/client/resources/ResourcesPanel.js +34 -20
- package/dist/client/resources/ResourcesPanel.js.map +1 -1
- package/dist/client/resources/mcp-connection-resume.d.ts +11 -0
- package/dist/client/resources/mcp-connection-resume.d.ts.map +1 -0
- package/dist/client/resources/mcp-connection-resume.js +95 -0
- package/dist/client/resources/mcp-connection-resume.js.map +1 -0
- package/dist/client/resources/mcp-integration-catalog.d.ts +1 -0
- package/dist/client/resources/mcp-integration-catalog.d.ts.map +1 -1
- package/dist/client/resources/mcp-integration-catalog.js +63 -8
- package/dist/client/resources/mcp-integration-catalog.js.map +1 -1
- package/dist/client/resources/mcp-integration-logos.d.ts.map +1 -1
- package/dist/client/resources/mcp-integration-logos.js +4 -0
- package/dist/client/resources/mcp-integration-logos.js.map +1 -1
- package/dist/client/sse-event-processor.d.ts +5 -0
- package/dist/client/sse-event-processor.d.ts.map +1 -1
- package/dist/client/sse-event-processor.js +39 -13
- package/dist/client/sse-event-processor.js.map +1 -1
- package/dist/client/use-db-sync.d.ts +3 -2
- package/dist/client/use-db-sync.d.ts.map +1 -1
- package/dist/client/use-db-sync.js +17 -6
- package/dist/client/use-db-sync.js.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/connections/catalog.d.ts +1 -1
- package/dist/connections/catalog.d.ts.map +1 -1
- package/dist/connections/catalog.js +7 -1
- package/dist/connections/catalog.js.map +1 -1
- package/dist/eject/remote-mcp-presets.d.ts.map +1 -1
- package/dist/eject/remote-mcp-presets.js +33 -3
- package/dist/eject/remote-mcp-presets.js.map +1 -1
- package/dist/guards/explicit-collab-access.d.ts +8 -0
- package/dist/guards/explicit-collab-access.d.ts.map +1 -0
- package/dist/guards/explicit-collab-access.js +214 -0
- package/dist/guards/explicit-collab-access.js.map +1 -0
- package/dist/guards/index.d.ts +1 -0
- package/dist/guards/index.d.ts.map +1 -1
- package/dist/guards/index.js +1 -0
- package/dist/guards/index.js.map +1 -1
- package/dist/localization/default-messages.d.ts +43 -0
- package/dist/localization/default-messages.d.ts.map +1 -1
- package/dist/localization/default-messages.js +48 -5
- package/dist/localization/default-messages.js.map +1 -1
- package/dist/mcp/connect-route.d.ts.map +1 -1
- package/dist/mcp/connect-route.js +34 -48
- package/dist/mcp/connect-route.js.map +1 -1
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/observability/routes.d.ts +1 -1
- package/dist/progress/routes.d.ts +1 -1
- package/dist/provider-api/actions/custom-provider-registration.d.ts +11 -11
- package/dist/provider-api/actions/provider-api.d.ts +7 -7
- package/dist/provider-api/corpus-jobs.d.ts +2 -2
- package/dist/provider-api/index.js +1 -1
- package/dist/provider-api/index.js.map +1 -1
- package/dist/server/collab-plugin.d.ts +34 -3
- package/dist/server/collab-plugin.d.ts.map +1 -1
- package/dist/server/collab-plugin.js +65 -12
- package/dist/server/collab-plugin.js.map +1 -1
- package/dist/server/index.d.ts +1 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js.map +1 -1
- package/dist/styles/agent-native.css +40 -0
- package/dist/templates/chat/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/dist/templates/chat/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/dist/templates/chat/app/components/layout/Layout.tsx +1 -0
- package/dist/templates/chat/app/components/layout/Sidebar.tsx +43 -67
- package/dist/templates/chat/app/hooks/use-navigation-state.ts +2 -7
- package/dist/templates/chat/app/routes/_index.tsx +8 -5
- package/dist/templates/chat/changelog/2026-07-22-compact-sidebar-footer.md +6 -0
- package/dist/templates/chat/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +6 -0
- package/dist/templates/chat/changelog/2026-07-22-recent-chats-are-easier-to-scan-and-expand.md +6 -0
- package/dist/templates/default/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/dist/templates/default/.agents/skills/real-time-collab/SKILL.md +35 -13
- package/dist/templates/default/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/dist/templates/headless/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/dist/templates/workspace-core/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/dist/templates/workspace-core/.agents/skills/real-time-collab/SKILL.md +35 -13
- package/dist/templates/workspace-core/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/dist/templates/workspace-core/.agents/skills/voice-transcription/SKILL.md +12 -8
- package/docs/AGENTS.md +1 -1
- package/docs/content/agent-mentions.mdx +2 -2
- package/docs/content/{workspace.mdx → agent-resources.mdx} +1 -7
- package/docs/content/agent-teams.mdx +4 -4
- package/docs/content/dispatch.mdx +10 -10
- package/docs/content/drop-in-agent.mdx +4 -4
- package/docs/content/external-agents.mdx +1 -1
- package/docs/content/frames.mdx +1 -1
- package/docs/content/integrations.mdx +13 -2
- package/docs/content/key-concepts.mdx +2 -2
- package/docs/content/mcp-clients.mdx +7 -1
- package/docs/content/multi-app-workspace.mdx +3 -3
- package/docs/content/real-time-collaboration.mdx +33 -15
- package/docs/content/recurring-jobs.mdx +7 -7
- package/docs/content/skills-guide.mdx +4 -4
- package/docs/content/template-brain.mdx +1 -1
- package/docs/content/toolkit-collaboration.mdx +1 -1
- package/docs/content/using-your-agent.mdx +1 -1
- package/docs/content/what-is-agent-native.mdx +4 -4
- package/docs/content/workspace-management.mdx +4 -4
- package/package.json +3 -3
- package/src/agent/production-agent.ts +13 -3
- package/src/cli/doctor.ts +6 -1
- package/src/client/AgentPanel.tsx +79 -41
- package/src/client/AssistantChat.tsx +71 -25
- package/src/client/FeedbackButton.tsx +33 -7
- package/src/client/MultiTabAssistantChat.tsx +6 -8
- package/src/client/agent-chat-adapter.ts +11 -2
- package/src/client/agent-page/AgentTabFrame.tsx +22 -3
- package/src/client/agent-page/AgentTabsPage.tsx +34 -19
- package/src/client/chat/message-components.tsx +43 -16
- package/src/client/chat/tool-call-display.tsx +30 -18
- package/src/client/chat/tool-render-registry.tsx +2 -0
- package/src/client/resources/McpConnectionSuggestion.tsx +19 -2
- package/src/client/resources/ResourceTree.tsx +7 -10
- package/src/client/resources/ResourcesPanel.tsx +33 -70
- package/src/client/resources/mcp-connection-resume.ts +107 -0
- package/src/client/resources/mcp-integration-catalog.ts +65 -12
- package/src/client/resources/mcp-integration-logos.ts +4 -0
- package/src/client/sse-event-processor.ts +50 -14
- package/src/client/use-db-sync.ts +16 -6
- package/src/connections/catalog.ts +7 -1
- package/src/eject/remote-mcp-presets.ts +37 -5
- package/src/guards/explicit-collab-access.ts +229 -0
- package/src/guards/index.ts +1 -0
- package/src/localization/default-messages.ts +54 -5
- package/src/mcp/connect-route.ts +34 -51
- package/src/provider-api/index.ts +1 -1
- package/src/server/collab-plugin.ts +137 -18
- package/src/server/index.ts +2 -0
- package/src/styles/agent-native.css +40 -0
- package/src/templates/chat/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/src/templates/chat/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/src/templates/chat/app/components/layout/Layout.tsx +1 -0
- package/src/templates/chat/app/components/layout/Sidebar.tsx +43 -67
- package/src/templates/chat/app/hooks/use-navigation-state.ts +2 -7
- package/src/templates/chat/app/routes/_index.tsx +8 -5
- package/src/templates/chat/changelog/2026-07-22-compact-sidebar-footer.md +6 -0
- package/src/templates/chat/changelog/2026-07-22-full-page-chat-keeps-the-active-conversation-when-moving-to-.md +6 -0
- package/src/templates/chat/changelog/2026-07-22-recent-chats-are-easier-to-scan-and-expand.md +6 -0
- package/src/templates/default/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/src/templates/default/.agents/skills/real-time-collab/SKILL.md +35 -13
- package/src/templates/default/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/src/templates/headless/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/src/templates/workspace-core/.agents/skills/agent-native-toolkit/SKILL.md +4 -1
- package/src/templates/workspace-core/.agents/skills/real-time-collab/SKILL.md +35 -13
- package/src/templates/workspace-core/.agents/skills/real-time-sync/SKILL.md +1 -1
- package/src/templates/workspace-core/.agents/skills/voice-transcription/SKILL.md +12 -8
|
@@ -5,7 +5,11 @@
|
|
|
5
5
|
* ```ts
|
|
6
6
|
* // server/plugins/collab.ts
|
|
7
7
|
* import { createCollabPlugin } from "@agent-native/core/server";
|
|
8
|
-
* export default createCollabPlugin({
|
|
8
|
+
* export default createCollabPlugin({
|
|
9
|
+
* table: "documents",
|
|
10
|
+
* contentColumn: "content",
|
|
11
|
+
* access: { mode: "resource", resourceType: "document" },
|
|
12
|
+
* });
|
|
9
13
|
* ```
|
|
10
14
|
*/
|
|
11
15
|
|
|
@@ -52,12 +56,47 @@ type CollabAwarenessScope = {
|
|
|
52
56
|
resourceId?: string;
|
|
53
57
|
};
|
|
54
58
|
|
|
59
|
+
export type CollabResourceIdResolver = (
|
|
60
|
+
docId: string,
|
|
61
|
+
) => string | null | Promise<string | null>;
|
|
62
|
+
|
|
63
|
+
export type CollabAccess =
|
|
64
|
+
| {
|
|
65
|
+
mode: "resource";
|
|
66
|
+
/** The shareable resource type registered via `registerShareableResource`. */
|
|
67
|
+
resourceType: string;
|
|
68
|
+
/** Map a collab document id to its parent shareable resource id. */
|
|
69
|
+
resolveResourceId?: CollabResourceIdResolver;
|
|
70
|
+
}
|
|
71
|
+
| {
|
|
72
|
+
/** Deliver collaboration events to every authenticated user. */
|
|
73
|
+
mode: "all-authenticated";
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
type NormalizedCollabAccess =
|
|
77
|
+
| {
|
|
78
|
+
mode: "resource";
|
|
79
|
+
resourceType: string;
|
|
80
|
+
resolveResourceId?: CollabResourceIdResolver;
|
|
81
|
+
}
|
|
82
|
+
| {
|
|
83
|
+
mode: "all-authenticated";
|
|
84
|
+
explicit: boolean;
|
|
85
|
+
};
|
|
86
|
+
|
|
55
87
|
/**
|
|
56
|
-
*
|
|
57
|
-
* process. Avoids
|
|
58
|
-
*
|
|
88
|
+
* Tables whose implicit all-authenticated warning has already been logged in
|
|
89
|
+
* this process. Avoids duplicate warnings during hot reloads while still
|
|
90
|
+
* identifying every affected table.
|
|
59
91
|
*/
|
|
60
|
-
|
|
92
|
+
const COLLAB_WARNING_TABLES_KEY =
|
|
93
|
+
"__agentNativeImplicitCollabAccessWarningTables__";
|
|
94
|
+
const collabWarningGlobal = globalThis as typeof globalThis & {
|
|
95
|
+
[COLLAB_WARNING_TABLES_KEY]?: Set<string>;
|
|
96
|
+
};
|
|
97
|
+
const _unscoped_warning_tables = (collabWarningGlobal[
|
|
98
|
+
COLLAB_WARNING_TABLES_KEY
|
|
99
|
+
] ??= new Set<string>());
|
|
61
100
|
|
|
62
101
|
export interface CollabPluginOptions {
|
|
63
102
|
/** Table name containing document content. Default: "documents" */
|
|
@@ -77,18 +116,25 @@ export interface CollabPluginOptions {
|
|
|
77
116
|
contentType?: "text" | "json";
|
|
78
117
|
/** Column name for JSON content (used when contentType is "json"). */
|
|
79
118
|
jsonColumn?: string;
|
|
119
|
+
/**
|
|
120
|
+
* Access policy for collaboration routes and event delivery.
|
|
121
|
+
* Use `resource` for registered shareable resources, or explicitly choose
|
|
122
|
+
* `all-authenticated` for deployment-wide collaboration.
|
|
123
|
+
*/
|
|
124
|
+
access?: CollabAccess;
|
|
80
125
|
/**
|
|
81
126
|
* The shareable resource type registered via `registerShareableResource`.
|
|
82
127
|
* Used to enforce access checks on collab routes.
|
|
83
|
-
*
|
|
128
|
+
* @deprecated Use `access: { mode: "resource", resourceType }`.
|
|
84
129
|
*/
|
|
85
130
|
resourceType?: string;
|
|
86
131
|
/**
|
|
87
132
|
* Map the collab document id to the shareable resource id. Many templates
|
|
88
133
|
* use route-specific collab ids (for example, one doc per slide inside a
|
|
89
134
|
* deck) while sharing is enforced at the parent resource level.
|
|
135
|
+
* @deprecated Use `access: { mode: "resource", resourceType, resolveResourceId }`.
|
|
90
136
|
*/
|
|
91
|
-
resolveResourceId?:
|
|
137
|
+
resolveResourceId?: CollabResourceIdResolver;
|
|
92
138
|
/**
|
|
93
139
|
* Maximum allowed body size in bytes for write operations
|
|
94
140
|
* (update/text/json/patch). Requests exceeding this are rejected with 413.
|
|
@@ -97,18 +143,100 @@ export interface CollabPluginOptions {
|
|
|
97
143
|
maxPayloadBytes?: number;
|
|
98
144
|
}
|
|
99
145
|
|
|
146
|
+
export function normalizeCollabAccess(
|
|
147
|
+
options: Pick<
|
|
148
|
+
CollabPluginOptions,
|
|
149
|
+
"access" | "resourceType" | "resolveResourceId"
|
|
150
|
+
>,
|
|
151
|
+
): NormalizedCollabAccess {
|
|
152
|
+
const hasLegacyAccess =
|
|
153
|
+
options.resourceType !== undefined ||
|
|
154
|
+
options.resolveResourceId !== undefined;
|
|
155
|
+
|
|
156
|
+
if (options.access && hasLegacyAccess) {
|
|
157
|
+
throw new Error(
|
|
158
|
+
'createCollabPlugin cannot combine "access" with the deprecated root "resourceType" or "resolveResourceId" options. Move those fields into access.',
|
|
159
|
+
);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
if (options.access?.mode === "resource") {
|
|
163
|
+
if (!options.access.resourceType.trim()) {
|
|
164
|
+
throw new Error(
|
|
165
|
+
'createCollabPlugin access mode "resource" requires a non-empty resourceType.',
|
|
166
|
+
);
|
|
167
|
+
}
|
|
168
|
+
return options.access;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
if (options.access?.mode === "all-authenticated") {
|
|
172
|
+
return { mode: "all-authenticated", explicit: true };
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
if (options.access) {
|
|
176
|
+
throw new Error(
|
|
177
|
+
`createCollabPlugin received an unsupported access mode: ${String((options.access as { mode?: unknown }).mode)}`,
|
|
178
|
+
);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
if (options.resourceType !== undefined) {
|
|
182
|
+
if (!options.resourceType.trim()) {
|
|
183
|
+
throw new Error(
|
|
184
|
+
'createCollabPlugin "resourceType" must be a non-empty string when provided.',
|
|
185
|
+
);
|
|
186
|
+
}
|
|
187
|
+
return {
|
|
188
|
+
mode: "resource",
|
|
189
|
+
resourceType: options.resourceType,
|
|
190
|
+
resolveResourceId: options.resolveResourceId,
|
|
191
|
+
};
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
if (options.resolveResourceId !== undefined) {
|
|
195
|
+
throw new Error(
|
|
196
|
+
'createCollabPlugin "resolveResourceId" requires a non-empty "resourceType".',
|
|
197
|
+
);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
return { mode: "all-authenticated", explicit: false };
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
function warnForImplicitAllAuthenticatedAccess(table: string): void {
|
|
204
|
+
if (_unscoped_warning_tables.has(table)) return;
|
|
205
|
+
_unscoped_warning_tables.add(table);
|
|
206
|
+
console.warn(
|
|
207
|
+
`[collab] WARNING: createCollabPlugin for table "${table}" does not declare an access policy. ` +
|
|
208
|
+
"Collab events will be delivered to ALL authenticated users on this deployment without document-level access scoping. " +
|
|
209
|
+
'Use access: { mode: "resource", resourceType: "..." } for access-scoped delivery, ' +
|
|
210
|
+
'or access: { mode: "all-authenticated" } to explicitly acknowledge deployment-wide delivery.',
|
|
211
|
+
);
|
|
212
|
+
}
|
|
213
|
+
|
|
100
214
|
export function createCollabPlugin(
|
|
101
215
|
options: CollabPluginOptions = {},
|
|
102
216
|
): NitroPluginDef {
|
|
217
|
+
const normalizedAccess = normalizeCollabAccess(options);
|
|
103
218
|
const {
|
|
104
219
|
table = "documents",
|
|
105
220
|
contentColumn = "content",
|
|
106
221
|
idColumn = "id",
|
|
107
222
|
autoSeed = true,
|
|
108
|
-
resourceType,
|
|
109
|
-
resolveResourceId,
|
|
110
223
|
maxPayloadBytes = DEFAULT_MAX_PAYLOAD_BYTES,
|
|
111
224
|
} = options;
|
|
225
|
+
const resourceType =
|
|
226
|
+
normalizedAccess.mode === "resource"
|
|
227
|
+
? normalizedAccess.resourceType
|
|
228
|
+
: undefined;
|
|
229
|
+
const resolveResourceId =
|
|
230
|
+
normalizedAccess.mode === "resource"
|
|
231
|
+
? normalizedAccess.resolveResourceId
|
|
232
|
+
: undefined;
|
|
233
|
+
|
|
234
|
+
if (
|
|
235
|
+
normalizedAccess.mode === "all-authenticated" &&
|
|
236
|
+
!normalizedAccess.explicit
|
|
237
|
+
) {
|
|
238
|
+
warnForImplicitAllAuthenticatedAccess(table);
|
|
239
|
+
}
|
|
112
240
|
|
|
113
241
|
return async (nitroApp: any) => {
|
|
114
242
|
await awaitBootstrap(nitroApp);
|
|
@@ -129,15 +257,6 @@ export function createCollabPlugin(
|
|
|
129
257
|
// who don't match owner/org — instead of only degrading them to the
|
|
130
258
|
// poll fallback.
|
|
131
259
|
// See also: SECURITY comment in poll.ts on canSeeChangeForUser.
|
|
132
|
-
if (!resourceType && !_unscoped_warning_logged) {
|
|
133
|
-
_unscoped_warning_logged = true;
|
|
134
|
-
console.warn(
|
|
135
|
-
"[collab] WARNING: createCollabPlugin called without resourceType. " +
|
|
136
|
-
"Collab events will be delivered to ALL authenticated users on this deployment " +
|
|
137
|
-
"without document-level access scoping. Set resourceType to enable access-scoped delivery.",
|
|
138
|
-
);
|
|
139
|
-
}
|
|
140
|
-
|
|
141
260
|
const collabEmitter = getCollabEmitter();
|
|
142
261
|
collabEmitter.on("collab", async (event) => {
|
|
143
262
|
if (!resourceType) {
|
|
@@ -927,7 +927,35 @@
|
|
|
927
927
|
display: inline-block;
|
|
928
928
|
}
|
|
929
929
|
|
|
930
|
+
.agent-tool-call {
|
|
931
|
+
position: relative;
|
|
932
|
+
}
|
|
933
|
+
|
|
930
934
|
@media (prefers-reduced-motion: no-preference) {
|
|
935
|
+
.agent-tool-call--entering {
|
|
936
|
+
animation: agent-tool-call-enter 220ms var(--ease-out-strong) both;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.agent-tool-call[data-active-tail="true"]::after {
|
|
940
|
+
position: absolute;
|
|
941
|
+
z-index: 1;
|
|
942
|
+
inset: 0 0 auto;
|
|
943
|
+
height: 2rem;
|
|
944
|
+
pointer-events: none;
|
|
945
|
+
content: "";
|
|
946
|
+
background: linear-gradient(
|
|
947
|
+
90deg,
|
|
948
|
+
transparent 0%,
|
|
949
|
+
transparent 38%,
|
|
950
|
+
hsl(var(--foreground) / 0.055) 50%,
|
|
951
|
+
transparent 62%,
|
|
952
|
+
transparent 100%
|
|
953
|
+
);
|
|
954
|
+
background-repeat: repeat;
|
|
955
|
+
background-size: 14rem 100%;
|
|
956
|
+
animation: agent-thinking-shine 2.6s linear infinite;
|
|
957
|
+
}
|
|
958
|
+
|
|
931
959
|
@supports ((background-clip: text) or (-webkit-background-clip: text)) {
|
|
932
960
|
.agent-thinking-indicator__text,
|
|
933
961
|
.agent-running-shimmer {
|
|
@@ -960,6 +988,18 @@
|
|
|
960
988
|
}
|
|
961
989
|
}
|
|
962
990
|
|
|
991
|
+
@keyframes agent-tool-call-enter {
|
|
992
|
+
from {
|
|
993
|
+
opacity: 0;
|
|
994
|
+
transform: translateY(0.375rem);
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
to {
|
|
998
|
+
opacity: 1;
|
|
999
|
+
transform: translateY(0);
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
|
|
963
1003
|
@supports (view-transition-name: agent-native-chat) {
|
|
964
1004
|
.agent-native-chat-view-transition {
|
|
965
1005
|
contain: layout;
|
|
@@ -85,7 +85,10 @@ in the moment of agent use.
|
|
|
85
85
|
approval, generative UI, progress, and screen-state exposure.
|
|
86
86
|
- **Chat history kit**: presentational chat lists and recent-chat rails belong
|
|
87
87
|
in Toolkit; Core keeps thread persistence, agent execution, transport, and
|
|
88
|
-
page-to-sidebar handoff.
|
|
88
|
+
page-to-sidebar handoff. Use Toolkit's `ChatHistoryRail` for the standard
|
|
89
|
+
five-item sidebar preview and a footer row with New chat followed by an
|
|
90
|
+
ellipsis disclosure up to fifteen. Apps inject routing, labels, and domain
|
|
91
|
+
actions.
|
|
89
92
|
- **Agent page kit**: the full-page `/agent` surface (`AgentTabsPage` from
|
|
90
93
|
`@agent-native/core/client`) with Context, Files, Connections, Jobs, and
|
|
91
94
|
Access tabs plus a Personal/Organization scope toggle. The canonical home
|
|
@@ -16,7 +16,7 @@ metadata:
|
|
|
16
16
|
|
|
17
17
|
Collaborative editing uses Yjs CRDT via TipTap. The agent and human users are
|
|
18
18
|
equal participants — both edit the same Y.Doc and changes merge cleanly without
|
|
19
|
-
conflicts. Always
|
|
19
|
+
conflicts. Always choose an explicit `access` mode on `createCollabPlugin`.
|
|
20
20
|
|
|
21
21
|
## How It Works
|
|
22
22
|
|
|
@@ -104,7 +104,16 @@ in **different** regions merge fine through the CRDT.
|
|
|
104
104
|
|
|
105
105
|
## Security
|
|
106
106
|
|
|
107
|
-
### Always
|
|
107
|
+
### Always choose an explicit access mode
|
|
108
|
+
|
|
109
|
+
Inspect the schema and sharing registration before configuring collaboration:
|
|
110
|
+
|
|
111
|
+
- For owned or shareable records, use `mode: "resource"` and the resource type
|
|
112
|
+
registered through `registerShareableResource`.
|
|
113
|
+
- For records deliberately visible to every authenticated user on the
|
|
114
|
+
deployment, use `mode: "all-authenticated"`.
|
|
115
|
+
- Never invent a `resourceType` merely to silence a warning. Resource mode is
|
|
116
|
+
correct only when the matching ownership and sharing model exists.
|
|
108
117
|
|
|
109
118
|
```ts
|
|
110
119
|
// server/plugins/collab.ts
|
|
@@ -114,14 +123,23 @@ export default createCollabPlugin({
|
|
|
114
123
|
table: "documents",
|
|
115
124
|
contentColumn: "content",
|
|
116
125
|
idColumn: "id",
|
|
117
|
-
resourceType: "document",
|
|
126
|
+
access: { mode: "resource", resourceType: "document" },
|
|
118
127
|
});
|
|
119
128
|
```
|
|
120
129
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
130
|
+
For intentionally deployment-wide authenticated collaboration:
|
|
131
|
+
|
|
132
|
+
```ts
|
|
133
|
+
createCollabPlugin({
|
|
134
|
+
table: "todos",
|
|
135
|
+
contentColumn: "content",
|
|
136
|
+
access: { mode: "all-authenticated" },
|
|
137
|
+
});
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Omitting `access` is supported only for legacy compatibility and is deprecated.
|
|
141
|
+
It behaves like `all-authenticated`, logs a warning, and is flagged by Doctor.
|
|
142
|
+
Choose the mode explicitly so access intent is reviewable.
|
|
125
143
|
|
|
126
144
|
Non-owner sharees who have explicit access fall back to state-vector catch-up
|
|
127
145
|
(safe, slightly higher latency). Awareness routes require the same viewer
|
|
@@ -133,7 +151,10 @@ Write routes reject payloads exceeding `maxPayloadBytes` (default 2 MB) with
|
|
|
133
151
|
HTTP 413. Override:
|
|
134
152
|
|
|
135
153
|
```ts
|
|
136
|
-
createCollabPlugin({
|
|
154
|
+
createCollabPlugin({
|
|
155
|
+
access: { mode: "resource", resourceType: "document" },
|
|
156
|
+
maxPayloadBytes: 512 * 1024,
|
|
157
|
+
});
|
|
137
158
|
```
|
|
138
159
|
|
|
139
160
|
## Enabling Collaboration
|
|
@@ -144,7 +165,7 @@ createCollabPlugin({ resourceType: "document", maxPayloadBytes: 512 * 1024 });
|
|
|
144
165
|
pnpm add @tiptap/extension-collaboration @tiptap/extension-collaboration-caret @tiptap/y-tiptap @tiptap/core
|
|
145
166
|
```
|
|
146
167
|
|
|
147
|
-
### 2. Add collab server plugin (with
|
|
168
|
+
### 2. Add collab server plugin (with explicit access)
|
|
148
169
|
|
|
149
170
|
```ts
|
|
150
171
|
// server/plugins/collab.ts
|
|
@@ -154,7 +175,7 @@ export default createCollabPlugin({
|
|
|
154
175
|
table: "documents",
|
|
155
176
|
contentColumn: "content",
|
|
156
177
|
idColumn: "id",
|
|
157
|
-
resourceType: "document",
|
|
178
|
+
access: { mode: "resource", resourceType: "document" },
|
|
158
179
|
});
|
|
159
180
|
```
|
|
160
181
|
|
|
@@ -343,9 +364,10 @@ the whole history — external/agent edits must not wipe the user's undo stack.
|
|
|
343
364
|
|
|
344
365
|
## Common Pitfalls
|
|
345
366
|
|
|
346
|
-
- **Missing `
|
|
347
|
-
|
|
348
|
-
|
|
367
|
+
- **Missing `access`** — Legacy omission behaves like `all-authenticated`, logs
|
|
368
|
+
a startup warning, and is flagged by Doctor. Choose `resource` for records
|
|
369
|
+
backed by ownership/sharing, or explicit `all-authenticated` for intentionally
|
|
370
|
+
deployment-wide records. Never invent a resource type to silence the warning.
|
|
349
371
|
- **Don't pass `content` as a TipTap prop** when Collaboration is enabled —
|
|
350
372
|
Yjs owns the content. Seed via `editor.commands.setContent()` only when the
|
|
351
373
|
Y.XmlFragment is empty.
|
|
@@ -72,7 +72,7 @@ The agent modifies data in SQL, but the UI runs in the browser. SSE bridges same
|
|
|
72
72
|
});
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
-
`useDbSync` and every `subscribeSyncEvents` subscriber share one `EventSource` and one fallback poll loop per tab — this is how collaborative documents receive doc updates and cursor/awareness events.
|
|
75
|
+
`useDbSync` and every `subscribeSyncEvents` subscriber share one `EventSource` and one fallback poll loop per tab — this is how collaborative documents receive doc updates and cursor/awareness events. Hidden tabs keep that shared transport alive by default: SSE stays connected and active fallback polling relaxes to a 10-second floor (idle polling remains once per minute). Pass `pauseWhenHidden: true` only for a consumer that explicitly must stop all hidden-tab sync.
|
|
76
76
|
|
|
77
77
|
## Which sources to depend on
|
|
78
78
|
|
|
@@ -85,7 +85,10 @@ in the moment of agent use.
|
|
|
85
85
|
approval, generative UI, progress, and screen-state exposure.
|
|
86
86
|
- **Chat history kit**: presentational chat lists and recent-chat rails belong
|
|
87
87
|
in Toolkit; Core keeps thread persistence, agent execution, transport, and
|
|
88
|
-
page-to-sidebar handoff.
|
|
88
|
+
page-to-sidebar handoff. Use Toolkit's `ChatHistoryRail` for the standard
|
|
89
|
+
five-item sidebar preview and a footer row with New chat followed by an
|
|
90
|
+
ellipsis disclosure up to fifteen. Apps inject routing, labels, and domain
|
|
91
|
+
actions.
|
|
89
92
|
- **Agent page kit**: the full-page `/agent` surface (`AgentTabsPage` from
|
|
90
93
|
`@agent-native/core/client`) with Context, Files, Connections, Jobs, and
|
|
91
94
|
Access tabs plus a Personal/Organization scope toggle. The canonical home
|
package/corpus/core/src/templates/workspace-core/.agents/skills/agent-native-toolkit/SKILL.md
CHANGED
|
@@ -85,7 +85,10 @@ in the moment of agent use.
|
|
|
85
85
|
approval, generative UI, progress, and screen-state exposure.
|
|
86
86
|
- **Chat history kit**: presentational chat lists and recent-chat rails belong
|
|
87
87
|
in Toolkit; Core keeps thread persistence, agent execution, transport, and
|
|
88
|
-
page-to-sidebar handoff.
|
|
88
|
+
page-to-sidebar handoff. Use Toolkit's `ChatHistoryRail` for the standard
|
|
89
|
+
five-item sidebar preview and a footer row with New chat followed by an
|
|
90
|
+
ellipsis disclosure up to fifteen. Apps inject routing, labels, and domain
|
|
91
|
+
actions.
|
|
89
92
|
- **Agent page kit**: the full-page `/agent` surface (`AgentTabsPage` from
|
|
90
93
|
`@agent-native/core/client`) with Context, Files, Connections, Jobs, and
|
|
91
94
|
Access tabs plus a Personal/Organization scope toggle. The canonical home
|
|
@@ -16,7 +16,7 @@ metadata:
|
|
|
16
16
|
|
|
17
17
|
Collaborative editing uses Yjs CRDT via TipTap. The agent and human users are
|
|
18
18
|
equal participants — both edit the same Y.Doc and changes merge cleanly without
|
|
19
|
-
conflicts. Always
|
|
19
|
+
conflicts. Always choose an explicit `access` mode on `createCollabPlugin`.
|
|
20
20
|
|
|
21
21
|
## How It Works
|
|
22
22
|
|
|
@@ -104,7 +104,16 @@ in **different** regions merge fine through the CRDT.
|
|
|
104
104
|
|
|
105
105
|
## Security
|
|
106
106
|
|
|
107
|
-
### Always
|
|
107
|
+
### Always choose an explicit access mode
|
|
108
|
+
|
|
109
|
+
Inspect the schema and sharing registration before configuring collaboration:
|
|
110
|
+
|
|
111
|
+
- For owned or shareable records, use `mode: "resource"` and the resource type
|
|
112
|
+
registered through `registerShareableResource`.
|
|
113
|
+
- For records deliberately visible to every authenticated user on the
|
|
114
|
+
deployment, use `mode: "all-authenticated"`.
|
|
115
|
+
- Never invent a `resourceType` merely to silence a warning. Resource mode is
|
|
116
|
+
correct only when the matching ownership and sharing model exists.
|
|
108
117
|
|
|
109
118
|
```ts
|
|
110
119
|
// server/plugins/collab.ts
|
|
@@ -114,14 +123,23 @@ export default createCollabPlugin({
|
|
|
114
123
|
table: "documents",
|
|
115
124
|
contentColumn: "content",
|
|
116
125
|
idColumn: "id",
|
|
117
|
-
resourceType: "document",
|
|
126
|
+
access: { mode: "resource", resourceType: "document" },
|
|
118
127
|
});
|
|
119
128
|
```
|
|
120
129
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
130
|
+
For intentionally deployment-wide authenticated collaboration:
|
|
131
|
+
|
|
132
|
+
```ts
|
|
133
|
+
createCollabPlugin({
|
|
134
|
+
table: "todos",
|
|
135
|
+
contentColumn: "content",
|
|
136
|
+
access: { mode: "all-authenticated" },
|
|
137
|
+
});
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Omitting `access` is supported only for legacy compatibility and is deprecated.
|
|
141
|
+
It behaves like `all-authenticated`, logs a warning, and is flagged by Doctor.
|
|
142
|
+
Choose the mode explicitly so access intent is reviewable.
|
|
125
143
|
|
|
126
144
|
Non-owner sharees who have explicit access fall back to state-vector catch-up
|
|
127
145
|
(safe, slightly higher latency). Awareness routes require the same viewer
|
|
@@ -133,7 +151,10 @@ Write routes reject payloads exceeding `maxPayloadBytes` (default 2 MB) with
|
|
|
133
151
|
HTTP 413. Override:
|
|
134
152
|
|
|
135
153
|
```ts
|
|
136
|
-
createCollabPlugin({
|
|
154
|
+
createCollabPlugin({
|
|
155
|
+
access: { mode: "resource", resourceType: "document" },
|
|
156
|
+
maxPayloadBytes: 512 * 1024,
|
|
157
|
+
});
|
|
137
158
|
```
|
|
138
159
|
|
|
139
160
|
## Enabling Collaboration
|
|
@@ -144,7 +165,7 @@ createCollabPlugin({ resourceType: "document", maxPayloadBytes: 512 * 1024 });
|
|
|
144
165
|
pnpm add @tiptap/extension-collaboration @tiptap/extension-collaboration-caret @tiptap/y-tiptap @tiptap/core
|
|
145
166
|
```
|
|
146
167
|
|
|
147
|
-
### 2. Add collab server plugin (with
|
|
168
|
+
### 2. Add collab server plugin (with explicit access)
|
|
148
169
|
|
|
149
170
|
```ts
|
|
150
171
|
// server/plugins/collab.ts
|
|
@@ -154,7 +175,7 @@ export default createCollabPlugin({
|
|
|
154
175
|
table: "documents",
|
|
155
176
|
contentColumn: "content",
|
|
156
177
|
idColumn: "id",
|
|
157
|
-
resourceType: "document",
|
|
178
|
+
access: { mode: "resource", resourceType: "document" },
|
|
158
179
|
});
|
|
159
180
|
```
|
|
160
181
|
|
|
@@ -343,9 +364,10 @@ the whole history — external/agent edits must not wipe the user's undo stack.
|
|
|
343
364
|
|
|
344
365
|
## Common Pitfalls
|
|
345
366
|
|
|
346
|
-
- **Missing `
|
|
347
|
-
|
|
348
|
-
|
|
367
|
+
- **Missing `access`** — Legacy omission behaves like `all-authenticated`, logs
|
|
368
|
+
a startup warning, and is flagged by Doctor. Choose `resource` for records
|
|
369
|
+
backed by ownership/sharing, or explicit `all-authenticated` for intentionally
|
|
370
|
+
deployment-wide records. Never invent a resource type to silence the warning.
|
|
349
371
|
- **Don't pass `content` as a TipTap prop** when Collaboration is enabled —
|
|
350
372
|
Yjs owns the content. Seed via `editor.commands.setContent()` only when the
|
|
351
373
|
Y.XmlFragment is empty.
|
|
@@ -72,7 +72,7 @@ The agent modifies data in SQL, but the UI runs in the browser. SSE bridges same
|
|
|
72
72
|
});
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
-
`useDbSync` and every `subscribeSyncEvents` subscriber share one `EventSource` and one fallback poll loop per tab — this is how collaborative documents receive doc updates and cursor/awareness events.
|
|
75
|
+
`useDbSync` and every `subscribeSyncEvents` subscriber share one `EventSource` and one fallback poll loop per tab — this is how collaborative documents receive doc updates and cursor/awareness events. Hidden tabs keep that shared transport alive by default: SSE stays connected and active fallback polling relaxes to a 10-second floor (idle polling remains once per minute). Pass `pauseWhenHidden: true` only for a consumer that explicitly must stop all hidden-tab sync.
|
|
76
76
|
|
|
77
77
|
## Which sources to depend on
|
|
78
78
|
|
package/corpus/core/src/templates/workspace-core/.agents/skills/voice-transcription/SKILL.md
CHANGED
|
@@ -24,9 +24,10 @@ shared agent sidebar.
|
|
|
24
24
|
- **Always show the mic alongside the send button.** Cursor replaces send
|
|
25
25
|
with mic when the composer is empty; their users complain. We keep both
|
|
26
26
|
visible — Lovable does the same.
|
|
27
|
-
- **Ask before switching modes.** The mic opens a shadcn popover
|
|
28
|
-
**
|
|
29
|
-
established dictation behavior.
|
|
27
|
+
- **Ask before switching modes.** The mic opens a compact shadcn popover with
|
|
28
|
+
**Real-time voice** as the primary action and **Dictate** as the secondary;
|
|
29
|
+
never silently replace the established dictation behavior. Users can choose
|
|
30
|
+
**Remember my preference** to skip the chooser on later clicks.
|
|
30
31
|
- **Dictation is click-to-toggle, not push-to-talk.** More forgiving in a sidebar, avoids
|
|
31
32
|
host-app hotkey clashes. Keyboard shortcut is `Cmd/Ctrl+Shift+M` and
|
|
32
33
|
`Escape` cancels mid-recording.
|
|
@@ -100,6 +101,9 @@ action before requesting microphone permission.
|
|
|
100
101
|
`application_state["realtime-voice-prefs"]`. Keep this separate from
|
|
101
102
|
`voice-transcription-prefs`, which configures editable dictation rather than
|
|
102
103
|
the speech-to-speech session.
|
|
104
|
+
- Store the optional remembered chooser selection at
|
|
105
|
+
`application_state["voice-input-preference"]`. Keep it separate from both
|
|
106
|
+
mode-specific preference objects.
|
|
103
107
|
- Missing-key failures should open Settings focused on the user-scoped
|
|
104
108
|
`OPENAI_API_KEY` field. Never send, log, or echo the key to the browser.
|
|
105
109
|
|
|
@@ -147,11 +151,11 @@ Default behavior:
|
|
|
147
151
|
|
|
148
152
|
| File | Purpose |
|
|
149
153
|
| --------------------------------------------------------------------- | --------------------------------------------------- |
|
|
150
|
-
| `packages/
|
|
151
|
-
| `packages/
|
|
152
|
-
| `packages/
|
|
153
|
-
| `packages/
|
|
154
|
-
| `packages/
|
|
154
|
+
| `packages/toolkit/src/composer/useVoiceDictation.ts` | Provider-routing hook (MediaRecorder / Web Speech) |
|
|
155
|
+
| `packages/toolkit/src/composer/VoiceButton.tsx` | Mic button + live amplitude + cancel overlay |
|
|
156
|
+
| `packages/toolkit/src/composer/RealtimeVoiceMode.tsx` | Opt-in popover + persistent speech orb |
|
|
157
|
+
| `packages/toolkit/src/composer/useRealtimeVoiceMode.tsx` | WebRTC lifecycle, provider events, and tool bridge |
|
|
158
|
+
| `packages/toolkit/src/composer/TiptapComposer.tsx` | Wires the hook, insertion, and keyboard shortcut |
|
|
155
159
|
| `packages/core/src/client/settings/VoiceTranscriptionSection.tsx` | Live source + cleanup controls in sidebar settings |
|
|
156
160
|
| `packages/core/src/client/transcription/BuilderTranscriptionCta.tsx` | CTA shown when Builder account isn't connected |
|
|
157
161
|
| `packages/core/src/client/transcription/use-live-transcription.ts` | Web Speech live-transcription hook for recordings |
|
|
@@ -85,7 +85,10 @@ in the moment of agent use.
|
|
|
85
85
|
approval, generative UI, progress, and screen-state exposure.
|
|
86
86
|
- **Chat history kit**: presentational chat lists and recent-chat rails belong
|
|
87
87
|
in Toolkit; Core keeps thread persistence, agent execution, transport, and
|
|
88
|
-
page-to-sidebar handoff.
|
|
88
|
+
page-to-sidebar handoff. Use Toolkit's `ChatHistoryRail` for the standard
|
|
89
|
+
five-item sidebar preview and a footer row with New chat followed by an
|
|
90
|
+
ellipsis disclosure up to fifteen. Apps inject routing, labels, and domain
|
|
91
|
+
actions.
|
|
89
92
|
- **Agent page kit**: the full-page `/agent` surface (`AgentTabsPage` from
|
|
90
93
|
`@agent-native/core/client`) with Context, Files, Connections, Jobs, and
|
|
91
94
|
Access tabs plus a Personal/Organization scope toggle. The canonical home
|
|
@@ -72,7 +72,7 @@ The agent modifies data in SQL, but the UI runs in the browser. SSE bridges same
|
|
|
72
72
|
});
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
-
`useDbSync` and every `subscribeSyncEvents` subscriber share one `EventSource` and one fallback poll loop per tab — this is how collaborative documents receive doc updates and cursor/awareness events.
|
|
75
|
+
`useDbSync` and every `subscribeSyncEvents` subscriber share one `EventSource` and one fallback poll loop per tab — this is how collaborative documents receive doc updates and cursor/awareness events. Hidden tabs keep that shared transport alive by default: SSE stays connected and active fallback polling relaxes to a 10-second floor (idle polling remains once per minute). Pass `pauseWhenHidden: true` only for a consumer that explicitly must stop all hidden-tab sync.
|
|
76
76
|
|
|
77
77
|
## Which sources to depend on
|
|
78
78
|
|
|
@@ -228,11 +228,16 @@ membership id when its native update status reports `update-available`.
|
|
|
228
228
|
`dashboard-report-subscriptions` actions. They send daily snapshots scoped to
|
|
229
229
|
the exact user/org context that created the subscription with saved URL
|
|
230
230
|
filters; do not hand-wire custom email routes around that action surface.
|
|
231
|
+
- Table panels can be exported with `export-dashboard-panel-to-google-sheet`.
|
|
232
|
+
The action re-runs the accessible panel query with the dashboard's current
|
|
233
|
+
filter variables, creates a new Sheet through the connected Google Drive
|
|
234
|
+
workspace connection, and returns its URL plus bounded export metadata.
|
|
231
235
|
Report PNGs are Playwright captures of the real dashboard route in
|
|
232
236
|
`reportScreenshot=1` mode, authenticated by a short-lived embed-session token
|
|
233
237
|
and embedded inline in email as ordered CID images. Complete dashboards are
|
|
234
|
-
captured sequentially in
|
|
235
|
-
|
|
238
|
+
captured sequentially in four-panel windows matching the browser's four-query
|
|
239
|
+
concurrency limit; every window must match the panel ids snapshotted at the
|
|
240
|
+
start, and a failed or mismatched window
|
|
236
241
|
invalidates the entire image set so the scheduler can retry instead of
|
|
237
242
|
sending a partial report. Capture is capped at 10 windows and 14 MiB of raw
|
|
238
243
|
PNG data, and subscriptions are capped at five distinct recipients; use a
|