@agent-native/core 0.91.1 → 0.92.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/blueprints/action/crud.md +1 -1
- package/blueprints/channel/discord.md +1 -1
- package/blueprints/provider/stripe.md +1 -1
- package/blueprints/sandbox/docker.md +1 -1
- package/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +31 -0
- package/corpus/core/blueprints/action/crud.md +1 -1
- package/corpus/core/blueprints/channel/discord.md +1 -1
- package/corpus/core/blueprints/provider/stripe.md +1 -1
- package/corpus/core/blueprints/sandbox/docker.md +1 -1
- package/corpus/core/docs/content/faq.mdx +17 -0
- package/corpus/core/docs/content/notifications.mdx +12 -6
- package/corpus/core/package.json +6 -5
- package/corpus/core/src/agent/production-agent.ts +140 -46
- package/corpus/core/src/agent/run-manager.ts +23 -2
- package/corpus/core/src/agent/run-store.ts +2 -2
- package/corpus/core/src/agent/tool-search.ts +71 -4
- package/corpus/core/src/cli/add.ts +1 -1
- package/corpus/core/src/cli/create.ts +8 -3
- package/corpus/core/src/cli/index.ts +25 -4
- package/corpus/core/src/cli/upgrade.ts +798 -0
- package/corpus/core/src/client/AssistantChat.tsx +1 -1
- package/corpus/core/src/client/HighlightedCodeBlock.tsx +20 -3
- package/corpus/core/src/client/agent-chat-adapter.ts +31 -6
- package/corpus/core/src/client/chat/message-components.tsx +85 -8
- package/corpus/core/src/client/chat/tool-call-display.tsx +355 -144
- package/corpus/core/src/client/code-agent-chat-adapter.ts +2 -9
- package/corpus/core/src/client/extensions/ExtensionSlot.tsx +7 -0
- package/corpus/core/src/client/settings/SettingsPanel.tsx +533 -389
- package/corpus/core/src/client/settings/SettingsSection.tsx +154 -17
- package/corpus/core/src/client/sse-event-processor.ts +29 -2
- package/corpus/core/src/extensions/actions.ts +113 -5
- package/corpus/core/src/jobs/scheduler.ts +30 -1
- package/corpus/core/src/localization/default-messages.ts +21 -0
- package/corpus/core/src/notifications/channels.ts +88 -25
- package/corpus/core/src/notifications/registry.ts +17 -3
- package/corpus/core/src/notifications/types.ts +4 -1
- package/corpus/core/src/server/agent-chat-plugin.ts +7 -3
- package/corpus/core/src/server/request-context.ts +7 -0
- package/corpus/core/src/styles/agent-conversation.css +1 -1
- package/corpus/core/src/templates/default/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/core/src/templates/default/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/core/src/templates/default/AGENTS.md +10 -3
- package/corpus/core/src/templates/default/app/i18n/ar-SA.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/de-DE.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/en-US.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/es-ES.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/fr-FR.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/hi-IN.ts +20 -0
- package/corpus/core/src/templates/default/app/i18n/ja-JP.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/ko-KR.ts +20 -0
- package/corpus/core/src/templates/default/app/i18n/pt-BR.ts +21 -0
- package/corpus/core/src/templates/default/app/i18n/zh-CN.ts +20 -0
- package/corpus/core/src/templates/default/app/i18n/zh-TW.ts +19 -0
- package/corpus/core/src/templates/default/package.json +4 -3
- package/corpus/core/src/templates/headless/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/core/src/templates/headless/AGENTS.md +9 -3
- package/corpus/core/src/templates/headless/package.json +4 -3
- package/corpus/core/src/templates/workspace-core/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/core/src/templates/workspace-core/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/core/src/templates/workspace-core/package.json +6 -6
- package/corpus/core/src/templates/workspace-root/AGENTS.md +10 -4
- package/corpus/core/src/templates/workspace-root/package.json +3 -2
- package/corpus/core/src/triggers/dispatcher.ts +30 -2
- package/corpus/core/src/vite/client.ts +96 -1
- package/corpus/templates/analytics/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/analytics/.agents/skills/session-replay/SKILL.md +20 -2
- package/corpus/templates/analytics/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/analytics/AGENTS.md +7 -5
- package/corpus/templates/analytics/actions/save-monitor.ts +14 -0
- package/corpus/templates/analytics/app/components/dashboard/DataTable.tsx +41 -6
- package/corpus/templates/analytics/app/components/dashboard/SqlChart.tsx +122 -11
- package/corpus/templates/analytics/app/global.css +26 -10
- package/corpus/templates/analytics/app/i18n/zh-TW.ts +2 -0
- package/corpus/templates/analytics/app/i18n-data.ts +25 -0
- package/corpus/templates/analytics/app/pages/monitoring/MonitoringPage.tsx +8 -2
- package/corpus/templates/analytics/app/pages/monitoring/uptime/MonitorFormPage.tsx +151 -32
- package/corpus/templates/analytics/app/pages/monitoring/uptime/i18n.ts +17 -2
- package/corpus/templates/analytics/app/pages/monitoring/uptime/types.ts +4 -0
- package/corpus/templates/analytics/app/pages/sessions/SessionDetailPage.tsx +461 -286
- package/corpus/templates/analytics/app/pages/sessions/SessionDevToolsPanel.tsx +285 -294
- package/corpus/templates/analytics/changelog/2026-07-08-console-details-expand-inline-under-each-row-and-the-event-t.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-dashboard-tables-keep-their-size-while-loading.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-monitoring-uptime-and-errors-tabs-now-clearly-show-which-view-is-active.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-session-replay-keeps-a-usable-stage-when-dev-tools-is-open-a.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-session-replay-resumes-after-scrubbing-and-expands-console-r.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-session-replay-uses-stock-rrweb-sizing-again-so-recorded.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-session-replays-wait-for-full-load-keep-a-normal-viewport-an.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-sidebar-dashboard-menus-now-open-above-the-dashboard-canvas.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-08-uptime-alerting-clarifies-in-app-inbox-vs-email-and-lets-you-paste-slack-or-webhook-urls-per-monitor.md +6 -0
- package/corpus/templates/analytics/docs/uptime-monitoring.md +13 -11
- package/corpus/templates/analytics/package.json +2 -2
- package/corpus/templates/analytics/server/db/schema-monitoring.ts +4 -0
- package/corpus/templates/analytics/server/lib/uptime-monitors.ts +60 -12
- package/corpus/templates/analytics/server/plugins/db.ts +10 -0
- package/corpus/templates/assets/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/assets/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/assets/package.json +2 -2
- package/corpus/templates/brain/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/brain/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/brain/package.json +2 -2
- package/corpus/templates/calendar/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/calendar/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/calendar/AGENTS.md +10 -0
- package/corpus/templates/calendar/actions/create-event.ts +5 -1
- package/corpus/templates/calendar/actions/event-action-helpers.ts +41 -0
- package/corpus/templates/calendar/actions/get-attendee-timezones.ts +28 -0
- package/corpus/templates/calendar/actions/set-attendee-timezone.ts +68 -0
- package/corpus/templates/calendar/app/components/calendar/EventAttendeesSection.tsx +150 -11
- package/corpus/templates/calendar/app/components/calendar/EventDetailPanel.tsx +36 -1
- package/corpus/templates/calendar/app/components/calendar/EventDetailPopover.tsx +32 -0
- package/corpus/templates/calendar/app/hooks/use-attendee-timezones.ts +24 -0
- package/corpus/templates/calendar/app/i18n/zh-TW.ts +2 -0
- package/corpus/templates/calendar/app/i18n-data.ts +20 -0
- package/corpus/templates/calendar/app/lib/attendee-local-time.ts +122 -0
- package/corpus/templates/calendar/changelog/2026-07-08-event-details-now-support-extension-widgets-and-you-can-see-.md +6 -0
- package/corpus/templates/calendar/changelog/2026-07-08-when-you-invite-guests-to-a-new-event-you-now-appear-in.md +6 -0
- package/corpus/templates/calendar/package.json +2 -2
- package/corpus/templates/calendar/server/handlers/events.ts +5 -1
- package/corpus/templates/calendar/shared/api.ts +6 -0
- package/corpus/templates/chat/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/chat/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/chat/package.json +2 -2
- package/corpus/templates/clips/.agents/skills/meetings/SKILL.md +6 -2
- package/corpus/templates/clips/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/clips/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/clips/actions/create-meeting.ts +8 -3
- package/corpus/templates/clips/actions/list-meetings.ts +31 -3
- package/corpus/templates/clips/changelog/2026-07-08-after-finishing-a-desktop-recording-reopening-clips-restor.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-clips-now-pops-up-to-take-notes-when-you-join-an-adhoc-zoom-.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-desktop-clip-recordings-are-louder-after-capture-mic-only.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-desktop-meeting-notes-stay-active-from-tray-and-shortcut-controls.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-desktop-meeting-popovers-can-start-notes-and-join-the-meetin.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-meeting-notes-keep-their-recording-state-when-the-desktop.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-meeting-reminder-dropdowns-now-expand-fully-instead-of-being.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-meeting-reminders-now-appear-1-minute-before-start-stay-unti.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-08-the-desktop-meetings-panel-has-room-for-its-drop-shadow-and-.md +6 -0
- package/corpus/templates/clips/chrome-extension/package.json +2 -2
- package/corpus/templates/clips/desktop/package.json +2 -2
- package/corpus/templates/clips/desktop/src/app.tsx +214 -37
- package/corpus/templates/clips/desktop/src/hooks/useMeetingTranscription.ts +30 -6
- package/corpus/templates/clips/desktop/src/lib/meeting-notification-timing.ts +83 -0
- package/corpus/templates/clips/desktop/src/lib/native-recording-warm.ts +21 -0
- package/corpus/templates/clips/desktop/src/lib/recorder.ts +98 -20
- package/corpus/templates/clips/desktop/src/overlays/meeting-notification.tsx +197 -50
- package/corpus/templates/clips/desktop/src/styles.css +150 -53
- package/corpus/templates/clips/desktop/src-tauri/src/adhoc_meetings_watcher.rs +362 -0
- package/corpus/templates/clips/desktop/src-tauri/src/clips/mod.rs +41 -7
- package/corpus/templates/clips/desktop/src-tauri/src/lib.rs +9 -2
- package/corpus/templates/clips/desktop/src-tauri/src/meetings_watcher.rs +89 -11
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen.rs +71 -17
- package/corpus/templates/clips/desktop/src-tauri/src/native_speech.rs +36 -1
- package/corpus/templates/clips/desktop/src-tauri/src/notifications.rs +62 -10
- package/corpus/templates/clips/desktop/src-tauri/src/shortcuts.rs +3 -3
- package/corpus/templates/clips/desktop/src-tauri/src/silence_detector.rs +1 -25
- package/corpus/templates/clips/desktop/src-tauri/src/state.rs +5 -0
- package/corpus/templates/clips/desktop/src-tauri/src/tray.rs +18 -6
- package/corpus/templates/clips/desktop/src-tauri/src/util.rs +36 -1
- package/corpus/templates/clips/package.json +2 -2
- package/corpus/templates/content/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/content/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/content/actions/_batch-utils.ts +8 -0
- package/corpus/templates/content/actions/_builder-cms-read-client.ts +7 -5
- package/corpus/templates/content/actions/_content-database-personal-view.ts +80 -0
- package/corpus/templates/content/actions/_database-source-utils.ts +776 -319
- package/corpus/templates/content/actions/_database-utils.ts +6 -1
- package/corpus/templates/content/actions/_property-utils.ts +168 -0
- package/corpus/templates/content/actions/add-content-database-source-field-property.ts +19 -12
- package/corpus/templates/content/actions/bind-content-database-source-field.ts +19 -12
- package/corpus/templates/content/actions/delete-document.ts +9 -13
- package/corpus/templates/content/actions/get-content-database-personal-view.ts +27 -0
- package/corpus/templates/content/actions/refresh-content-database-source.ts +5 -5
- package/corpus/templates/content/actions/update-content-database-personal-view.ts +31 -0
- package/corpus/templates/content/actions/update-content-database-view.ts +3 -0
- package/corpus/templates/content/app/components/editor/DocumentProperties.tsx +1 -1
- package/corpus/templates/content/app/components/editor/body-hydration.ts +35 -11
- package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +2631 -551
- package/corpus/templates/content/app/components/editor/database/filter-sort.ts +220 -18
- package/corpus/templates/content/app/hooks/use-content-database.ts +32 -0
- package/corpus/templates/content/app/hooks/use-documents.ts +8 -2
- package/corpus/templates/content/app/i18n/zh-TW.ts +16 -0
- package/corpus/templates/content/app/i18n-data.ts +154 -0
- package/corpus/templates/content/changelog/2026-07-08-builder-source-sync-now-completes-reliably-on-hosted-databases.md +6 -0
- package/corpus/templates/content/changelog/2026-07-08-database-filters-now-support-notion-style-reset-save-for-eve.md +6 -0
- package/corpus/templates/content/changelog/2026-07-08-date-filters-can-now-target-a-between-range.md +6 -0
- package/corpus/templates/content/changelog/2026-07-08-fixed-builder-database-sync-so-large-sources-continue-past-t.md +6 -0
- package/corpus/templates/content/package.json +2 -2
- package/corpus/templates/content/parity/matrix.md +1 -1
- package/corpus/templates/content/parity/matrix.ts +2 -0
- package/corpus/templates/content/server/plugins/db.ts +19 -0
- package/corpus/templates/content/shared/api.ts +24 -0
- package/corpus/templates/design/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/design/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/design/package.json +2 -2
- package/corpus/templates/dispatch/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/dispatch/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/dispatch/app/i18n/zh-TW.ts +34 -1
- package/corpus/templates/dispatch/app/i18n-data.ts +387 -10
- package/corpus/templates/dispatch/app/routes/automations.tsx +1 -0
- package/corpus/templates/dispatch/changelog/2026-07-08-added-an-automations-page-to-review-pause-and-create.md +6 -0
- package/corpus/templates/dispatch/changelog/2026-07-08-destinations-now-shows-outbound-delivery-queue-health.md +6 -0
- package/corpus/templates/dispatch/package.json +2 -2
- package/corpus/templates/forms/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/forms/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/forms/package.json +2 -2
- package/corpus/templates/macros/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/macros/package.json +2 -2
- package/corpus/templates/mail/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/mail/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/mail/app/hooks/use-emails.ts +56 -44
- package/corpus/templates/mail/app/lib/gmail-mutation-queue.ts +325 -0
- package/corpus/templates/mail/changelog/2026-07-08-rapid-archive-and-mark-read-now-batch-gmail-updates-so-the-i.md +6 -0
- package/corpus/templates/mail/package.json +2 -2
- package/corpus/templates/plan/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/plan/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/plan/package.json +2 -2
- package/corpus/templates/slides/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/corpus/templates/slides/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/slides/app/components/editor/ImageDropPromptPopover.tsx +46 -29
- package/corpus/templates/slides/app/context/DeckContext.tsx +45 -18
- package/corpus/templates/slides/app/i18n/ar-SA.ts +4 -0
- package/corpus/templates/slides/app/i18n/de-DE.ts +4 -0
- package/corpus/templates/slides/app/i18n/en-US.ts +4 -0
- package/corpus/templates/slides/app/i18n/es-ES.ts +4 -0
- package/corpus/templates/slides/app/i18n/fr-FR.ts +4 -0
- package/corpus/templates/slides/app/i18n/hi-IN.ts +4 -0
- package/corpus/templates/slides/app/i18n/ja-JP.ts +4 -0
- package/corpus/templates/slides/app/i18n/ko-KR.ts +4 -0
- package/corpus/templates/slides/app/i18n/pt-BR.ts +4 -0
- package/corpus/templates/slides/app/i18n/zh-CN.ts +4 -0
- package/corpus/templates/slides/app/i18n/zh-TW.ts +4 -0
- package/corpus/templates/slides/app/lib/image-drop-to-agent.ts +115 -0
- package/corpus/templates/slides/app/pages/DeckEditor.tsx +22 -13
- package/corpus/templates/slides/changelog/2026-07-08-dropping-an-image-onto-a-slide-and-sending-it-to-the-agent-w.md +6 -0
- package/corpus/templates/slides/changelog/2026-07-08-undo-works-after-the-agent-edits-a-slide-so-you-can-reverse.md +6 -0
- package/corpus/templates/slides/package.json +2 -2
- package/corpus/templates/videos/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/corpus/templates/voice/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/dist/agent/production-agent.d.ts +5 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +112 -42
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/agent/run-manager.d.ts.map +1 -1
- package/dist/agent/run-manager.js +23 -2
- package/dist/agent/run-manager.js.map +1 -1
- package/dist/agent/run-store.js +2 -2
- package/dist/agent/run-store.js.map +1 -1
- package/dist/agent/tool-search.d.ts +2 -0
- package/dist/agent/tool-search.d.ts.map +1 -1
- package/dist/agent/tool-search.js +60 -4
- package/dist/agent/tool-search.js.map +1 -1
- package/dist/catalog.json +2 -2
- package/dist/cli/add.js +1 -1
- package/dist/cli/add.js.map +1 -1
- package/dist/cli/create.d.ts.map +1 -1
- package/dist/cli/create.js +8 -3
- package/dist/cli/create.js.map +1 -1
- package/dist/cli/index.js +24 -4
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/upgrade.d.ts +100 -0
- package/dist/cli/upgrade.d.ts.map +1 -0
- package/dist/cli/upgrade.js +678 -0
- package/dist/cli/upgrade.js.map +1 -0
- package/dist/client/AssistantChat.js +1 -1
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/HighlightedCodeBlock.d.ts +2 -0
- package/dist/client/HighlightedCodeBlock.d.ts.map +1 -1
- package/dist/client/HighlightedCodeBlock.js +10 -1
- package/dist/client/HighlightedCodeBlock.js.map +1 -1
- package/dist/client/agent-chat-adapter.d.ts.map +1 -1
- package/dist/client/agent-chat-adapter.js +32 -4
- package/dist/client/agent-chat-adapter.js.map +1 -1
- package/dist/client/chat/message-components.d.ts.map +1 -1
- package/dist/client/chat/message-components.js +61 -8
- package/dist/client/chat/message-components.js.map +1 -1
- package/dist/client/chat/tool-call-display.d.ts +12 -0
- package/dist/client/chat/tool-call-display.d.ts.map +1 -1
- package/dist/client/chat/tool-call-display.js +136 -42
- package/dist/client/chat/tool-call-display.js.map +1 -1
- package/dist/client/code-agent-chat-adapter.js +2 -9
- package/dist/client/code-agent-chat-adapter.js.map +1 -1
- package/dist/client/extensions/ExtensionSlot.js +6 -0
- package/dist/client/extensions/ExtensionSlot.js.map +1 -1
- package/dist/client/settings/SettingsPanel.d.ts.map +1 -1
- package/dist/client/settings/SettingsPanel.js +52 -19
- package/dist/client/settings/SettingsPanel.js.map +1 -1
- package/dist/client/settings/SettingsSection.d.ts +19 -4
- package/dist/client/settings/SettingsSection.d.ts.map +1 -1
- package/dist/client/settings/SettingsSection.js +33 -4
- package/dist/client/settings/SettingsSection.js.map +1 -1
- package/dist/client/sse-event-processor.d.ts +9 -0
- package/dist/client/sse-event-processor.d.ts.map +1 -1
- package/dist/client/sse-event-processor.js +20 -2
- package/dist/client/sse-event-processor.js.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/extensions/actions.d.ts.map +1 -1
- package/dist/extensions/actions.js +85 -5
- package/dist/extensions/actions.js.map +1 -1
- package/dist/file-upload/actions/upload-image.d.ts +1 -1
- package/dist/jobs/scheduler.js +26 -1
- package/dist/jobs/scheduler.js.map +1 -1
- package/dist/localization/default-messages.d.ts +19 -0
- package/dist/localization/default-messages.d.ts.map +1 -1
- package/dist/localization/default-messages.js +19 -0
- package/dist/localization/default-messages.js.map +1 -1
- package/dist/notifications/channels.d.ts +8 -3
- package/dist/notifications/channels.d.ts.map +1 -1
- package/dist/notifications/channels.js +61 -22
- package/dist/notifications/channels.js.map +1 -1
- package/dist/notifications/registry.d.ts.map +1 -1
- package/dist/notifications/registry.js +14 -3
- package/dist/notifications/registry.js.map +1 -1
- package/dist/notifications/routes.d.ts +1 -1
- package/dist/notifications/types.d.ts +4 -1
- package/dist/notifications/types.d.ts.map +1 -1
- package/dist/notifications/types.js.map +1 -1
- package/dist/observability/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/server/agent-chat-plugin.d.ts +5 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +2 -2
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/dist/server/request-context.d.ts +7 -0
- package/dist/server/request-context.d.ts.map +1 -1
- package/dist/server/request-context.js.map +1 -1
- package/dist/styles/agent-conversation.css +1 -1
- package/dist/templates/default/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/dist/templates/default/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/dist/templates/default/AGENTS.md +10 -3
- package/dist/templates/default/app/i18n/ar-SA.ts +21 -0
- package/dist/templates/default/app/i18n/de-DE.ts +21 -0
- package/dist/templates/default/app/i18n/en-US.ts +21 -0
- package/dist/templates/default/app/i18n/es-ES.ts +21 -0
- package/dist/templates/default/app/i18n/fr-FR.ts +21 -0
- package/dist/templates/default/app/i18n/hi-IN.ts +20 -0
- package/dist/templates/default/app/i18n/ja-JP.ts +21 -0
- package/dist/templates/default/app/i18n/ko-KR.ts +20 -0
- package/dist/templates/default/app/i18n/pt-BR.ts +21 -0
- package/dist/templates/default/app/i18n/zh-CN.ts +20 -0
- package/dist/templates/default/app/i18n/zh-TW.ts +19 -0
- package/dist/templates/default/package.json +4 -3
- package/dist/templates/headless/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/dist/templates/headless/AGENTS.md +9 -3
- package/dist/templates/headless/package.json +4 -3
- package/dist/templates/workspace-core/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/dist/templates/workspace-core/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/dist/templates/workspace-core/package.json +6 -6
- package/dist/templates/workspace-root/AGENTS.md +10 -4
- package/dist/templates/workspace-root/package.json +3 -2
- package/dist/triggers/dispatcher.js +27 -2
- package/dist/triggers/dispatcher.js.map +1 -1
- package/dist/vite/client.d.ts.map +1 -1
- package/dist/vite/client.js +70 -1
- package/dist/vite/client.js.map +1 -1
- package/docs/content/faq.mdx +17 -0
- package/docs/content/notifications.mdx +12 -6
- package/package.json +7 -6
- package/src/templates/default/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/src/templates/default/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/src/templates/default/AGENTS.md +10 -3
- package/src/templates/default/app/i18n/ar-SA.ts +21 -0
- package/src/templates/default/app/i18n/de-DE.ts +21 -0
- package/src/templates/default/app/i18n/en-US.ts +21 -0
- package/src/templates/default/app/i18n/es-ES.ts +21 -0
- package/src/templates/default/app/i18n/fr-FR.ts +21 -0
- package/src/templates/default/app/i18n/hi-IN.ts +20 -0
- package/src/templates/default/app/i18n/ja-JP.ts +21 -0
- package/src/templates/default/app/i18n/ko-KR.ts +20 -0
- package/src/templates/default/app/i18n/pt-BR.ts +21 -0
- package/src/templates/default/app/i18n/zh-CN.ts +20 -0
- package/src/templates/default/app/i18n/zh-TW.ts +19 -0
- package/src/templates/default/package.json +4 -3
- package/src/templates/headless/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/src/templates/headless/AGENTS.md +9 -3
- package/src/templates/headless/package.json +4 -3
- package/src/templates/workspace-core/.agents/skills/self-modifying-code/SKILL.md +20 -2
- package/src/templates/workspace-core/.agents/skills/upgrade-agent-native/SKILL.md +87 -0
- package/src/templates/workspace-core/package.json +6 -6
- package/src/templates/workspace-root/AGENTS.md +10 -4
- package/src/templates/workspace-root/package.json +3 -2
package/docs/content/faq.mdx
CHANGED
|
@@ -227,6 +227,23 @@ SSE gives same-process writes an immediate path to the browser, and a lightweigh
|
|
|
227
227
|
|
|
228
228
|
AI is non-deterministic, so you need conversation flow to give feedback and iterate — not one-shot buttons — and the agent already has your codebase, instructions, skills, and history that an inline call lacks. Routing everything through the agent is also what lets the app be driven from Slack, Telegram, or another agent. See [Key Concepts — Agent chat bridge](/docs/key-concepts#agent-chat-bridge).
|
|
229
229
|
|
|
230
|
+
### How do I upgrade an older Agent Native app? {#upgrade-older-app}
|
|
231
|
+
|
|
232
|
+
Run the supported upgrade path from the app or workspace root:
|
|
233
|
+
|
|
234
|
+
```bash
|
|
235
|
+
npx @agent-native/core@latest upgrade
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
That bumps `@agent-native/*` dependencies to `latest`, installs, refreshes
|
|
239
|
+
scaffold skills (`skills update scaffold --project`), and runs typecheck when
|
|
240
|
+
available. Use `upgrade check` first if you want a doctor-only report of
|
|
241
|
+
framework overrides/patches and pending bumps.
|
|
242
|
+
|
|
243
|
+
Do **not** fix a broken upgrade with `pnpm.overrides`, `patchedDependencies`,
|
|
244
|
+
or edits under `node_modules/@agent-native/*` (especially core/dispatch). If
|
|
245
|
+
upgrade or typecheck fails, fix app-level code or ask — then re-run upgrade.
|
|
246
|
+
|
|
230
247
|
### Why is this a framework and not a library? {#why-framework-not-library}
|
|
231
248
|
|
|
232
249
|
The shared database, live sync, actions system, and application state only work because they're wired together from the ground up — the UI reacts to agent changes instantly, agents communicate, and the agent understands what the user is looking at. A library gives you pieces; this is an architecture. See [Key Concepts](/docs/key-concepts).
|
|
@@ -108,12 +108,18 @@ Severity drives the badge styling in the dropdown and is passed through to chann
|
|
|
108
108
|
|
|
109
109
|
## Built-in channels {#channels}
|
|
110
110
|
|
|
111
|
-
| Channel | Delivery | Requires
|
|
112
|
-
| --------- | --------------------------------------------------------- |
|
|
113
|
-
| `inbox` | Persists to the `notifications` table; drives the bell UI | Always on — part of the primitive.
|
|
114
|
-
| `
|
|
115
|
-
|
|
116
|
-
|
|
111
|
+
| Channel | Delivery | Requires |
|
|
112
|
+
| --------- | --------------------------------------------------------- | ------------------------------------------------------------------------------------- |
|
|
113
|
+
| `inbox` | Persists to the `notifications` table; drives the bell UI | Always on — part of the primitive. |
|
|
114
|
+
| `email` | Sends email via Resend/SendGrid | Per-notification `metadata.emailRecipients` and/or `NOTIFICATIONS_EMAIL_RECIPIENTS`. |
|
|
115
|
+
| `slack` | POST Slack Block Kit JSON to an incoming webhook | Per-notification `metadata.slackWebhookUrl` and/or `NOTIFICATIONS_SLACK_WEBHOOK_URL`. |
|
|
116
|
+
| `webhook` | POST JSON to a configured URL | Per-notification `metadata.webhookUrl` and/or `NOTIFICATIONS_WEBHOOK_URL`. |
|
|
117
|
+
|
|
118
|
+
Slack and webhook are always registered. Delivery prefers the per-notification
|
|
119
|
+
metadata URL, then falls back to the matching env var. If neither is set, that
|
|
120
|
+
channel no-ops for the emission.
|
|
121
|
+
|
|
122
|
+
The webhook and Slack channels resolve `${keys.NAME}` references in both the URL and `NOTIFICATIONS_*_AUTH` against the owner's ad-hoc [secrets](/docs/security), so the raw value never enters the agent's context. Per-key URL allowlists are enforced — same rule the automations `web-request` tool uses.
|
|
117
123
|
|
|
118
124
|
<Diagram id="doc-block-1lduyog" title="Channels and severity" summary={"inbox is always on; webhook needs an env var; custom channels register at startup. Severity drives badge styling and is passed through to every channel."}>
|
|
119
125
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.92.0",
|
|
4
4
|
"description": "Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context",
|
|
5
5
|
"homepage": "https://github.com/BuilderIO/agent-native#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -315,7 +315,7 @@
|
|
|
315
315
|
"y-protocols": "^1.0.7",
|
|
316
316
|
"yjs": "^13.6.31",
|
|
317
317
|
"zod": "^4.3.6",
|
|
318
|
-
"@agent-native/toolkit": "0.4.
|
|
318
|
+
"@agent-native/toolkit": "0.4.4"
|
|
319
319
|
},
|
|
320
320
|
"devDependencies": {
|
|
321
321
|
"@ai-sdk/anthropic": "^3.0.71",
|
|
@@ -359,7 +359,8 @@
|
|
|
359
359
|
"react-dom": "^19.2.7",
|
|
360
360
|
"react-router": "^8.1.0",
|
|
361
361
|
"tailwindcss": "^4.2.4",
|
|
362
|
-
"typescript": "
|
|
362
|
+
"typescript": "npm:@typescript/typescript6@^6.0.2",
|
|
363
|
+
"typescript-7": "npm:typescript@^7.0.2",
|
|
363
364
|
"vite": "8.1.0",
|
|
364
365
|
"vitest": "^4.1.5",
|
|
365
366
|
"ws": "^8.18.0"
|
|
@@ -495,9 +496,9 @@
|
|
|
495
496
|
"node": ">=22.22.0"
|
|
496
497
|
},
|
|
497
498
|
"scripts": {
|
|
498
|
-
"build": "
|
|
499
|
-
"dev": "
|
|
500
|
-
"typecheck": "
|
|
499
|
+
"build": "tsc && tsc -p tsconfig.cli.json && node scripts/finalize-build.mjs && node scripts/check-dist-imports.mjs",
|
|
500
|
+
"dev": "tsc --watch",
|
|
501
|
+
"typecheck": "tsc --noEmit",
|
|
501
502
|
"test": "vitest --run src --maxWorkers=25%"
|
|
502
503
|
}
|
|
503
504
|
}
|
|
@@ -28,7 +28,19 @@ Not all modifications are equal. Use this to decide what level of care is needed
|
|
|
28
28
|
| 1: Data | Files in `data/` | JSON state, generated content, markdown | Nothing — these are routine |
|
|
29
29
|
| 2: Source | App code | Components, routes, styles, scripts | Run `pnpm typecheck && pnpm lint` |
|
|
30
30
|
| 3: Config | Project config | `package.json`, `tsconfig.json`, `vite.config.*` | Ask for explicit approval first |
|
|
31
|
-
| 4: Off limits | Secrets and framework | `.env`, `@agent-native
|
|
31
|
+
| 4: Off limits | Secrets and framework | `.env`, `@agent-native/*` packages & overrides | Never modify these |
|
|
32
|
+
|
|
33
|
+
Tier 4 includes **all** of the following — not only editing package source:
|
|
34
|
+
|
|
35
|
+
- Files under `node_modules/@agent-native/*` (core, dispatch, scheduling, …)
|
|
36
|
+
- `pnpm.overrides`, `overrides`, `resolutions`, or `patchedDependencies` that
|
|
37
|
+
target any `@agent-native/*` package
|
|
38
|
+
- Local patches, vendored copies, or invented "dispatch/core behavior"
|
|
39
|
+
shims meant to paper over a version skew or failed upgrade
|
|
40
|
+
|
|
41
|
+
When an older branch needs current packages, use **`agent-native upgrade`**
|
|
42
|
+
(see the `upgrade-agent-native` skill). If upgrade or typecheck fails, fix
|
|
43
|
+
**app** code or stop and ask — do not patch the framework.
|
|
32
44
|
|
|
33
45
|
## Git Checkpoint Pattern
|
|
34
46
|
|
|
@@ -74,13 +86,19 @@ inline strings in components.
|
|
|
74
86
|
## Don't
|
|
75
87
|
|
|
76
88
|
- Don't modify `.env` files or files containing secrets
|
|
77
|
-
- Don't modify `@agent-native/core
|
|
89
|
+
- Don't modify `@agent-native/core`, `@agent-native/dispatch`, or other
|
|
90
|
+
`@agent-native/*` package internals (including under `node_modules`)
|
|
91
|
+
- Don't add `pnpm.overrides` / `patchedDependencies` / `resolutions` for
|
|
92
|
+
`@agent-native/*` to "make the app run" after a version bump
|
|
93
|
+
- Don't invent local dispatch/core behavior overrides when upgrade fails —
|
|
94
|
+
run `npx @agent-native/core@latest upgrade`, then fix app-level errors only
|
|
78
95
|
- Don't modify `.agents/skills/` or `AGENTS.md` unless explicitly requested
|
|
79
96
|
- Don't skip the typecheck/lint step after editing source code
|
|
80
97
|
- Don't make source changes without a git checkpoint to roll back to
|
|
81
98
|
|
|
82
99
|
## Related Skills
|
|
83
100
|
|
|
101
|
+
- **upgrade-agent-native** — supported path to bring an older app/workspace current
|
|
84
102
|
- **storing-data** — Tier 1 modifications (data files) are the safest and most common
|
|
85
103
|
- **actions** — The agent can create or modify actions to add new capabilities
|
|
86
104
|
- **delegate-to-agent** — Self-modification requests come through the agent chat
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: upgrade-agent-native
|
|
3
|
+
description: >-
|
|
4
|
+
Bring an older Agent Native app or workspace current. Use when updating
|
|
5
|
+
@agent-native/core, fixing a broken upgrade, or when tempted to patch or
|
|
6
|
+
override core/dispatch packages to make an old branch run.
|
|
7
|
+
scope: dev
|
|
8
|
+
metadata:
|
|
9
|
+
internal: true
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Upgrade Agent Native
|
|
13
|
+
|
|
14
|
+
## Rule
|
|
15
|
+
|
|
16
|
+
When an older Agent Native app/branch needs to run on current packages, use
|
|
17
|
+
`agent-native upgrade`. Never "fix" upgrade breakage with
|
|
18
|
+
`pnpm.overrides`, `patchedDependencies`, `resolutions`, local patches, or
|
|
19
|
+
edits under `node_modules/@agent-native/*` — especially not against
|
|
20
|
+
`@agent-native/core` or `@agent-native/dispatch`.
|
|
21
|
+
|
|
22
|
+
## Why
|
|
23
|
+
|
|
24
|
+
Agents often respond to a failed core bump by inventing framework patches and
|
|
25
|
+
dispatch behavior overrides. That hides the real app-level break, drifts from
|
|
26
|
+
upstream, and makes the next upgrade worse. The supported path is bump →
|
|
27
|
+
install → refresh scaffold skills → verify, then fix **app** code only.
|
|
28
|
+
|
|
29
|
+
## How
|
|
30
|
+
|
|
31
|
+
1. **Doctor first (optional but recommended)**
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npx @agent-native/core@latest upgrade check
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
This reports framework overrides/patches and pending `@agent-native/*`
|
|
38
|
+
bumps. If overrides/patches are present, remove them before continuing.
|
|
39
|
+
|
|
40
|
+
2. **Run the upgrade**
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
npx @agent-native/core@latest upgrade
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Or from an already-installed CLI: `pnpm exec agent-native upgrade` /
|
|
47
|
+
`agent-native upgrade`.
|
|
48
|
+
|
|
49
|
+
What it does:
|
|
50
|
+
|
|
51
|
+
- Blocks (unless `--force`) when `@agent-native/*` overrides/patches exist
|
|
52
|
+
- Rewrites non-local `@agent-native/*` dependency pins to `latest`
|
|
53
|
+
- Runs the package manager install
|
|
54
|
+
- Runs `skills update scaffold --project`
|
|
55
|
+
- Runs `typecheck` when the project has that script
|
|
56
|
+
|
|
57
|
+
3. **If upgrade or typecheck fails**
|
|
58
|
+
|
|
59
|
+
- Read the concrete error
|
|
60
|
+
- Fix **app** source, actions, config, or env — not framework packages
|
|
61
|
+
- Re-run `agent-native upgrade` or `pnpm typecheck`
|
|
62
|
+
- Stop and ask the user if you cannot fix the app-level error
|
|
63
|
+
|
|
64
|
+
4. **Dry-run / partial runs**
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
agent-native upgrade --dry-run
|
|
68
|
+
agent-native upgrade --skip-verify
|
|
69
|
+
agent-native upgrade --skip-install # package.json bumps only
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Don't
|
|
73
|
+
|
|
74
|
+
- Don't add `pnpm.overrides`, `overrides`, `resolutions`, or
|
|
75
|
+
`patchedDependencies` for any `@agent-native/*` package
|
|
76
|
+
- Don't edit `node_modules/@agent-native/core` or
|
|
77
|
+
`node_modules/@agent-native/dispatch`
|
|
78
|
+
- Don't invent local "dispatch behavior" shims to paper over version skew
|
|
79
|
+
- Don't keep iterating with more framework patches after a failed install
|
|
80
|
+
- Don't skip `skills update scaffold --project` after a core bump (the
|
|
81
|
+
upgrade command does this for you)
|
|
82
|
+
|
|
83
|
+
## Related Skills
|
|
84
|
+
|
|
85
|
+
- **self-modifying-code** — Tier 4: framework packages are off limits
|
|
86
|
+
- **agent-native-docs** — version-matched docs after the bump
|
|
87
|
+
- **portability** — keep app code provider-agnostic across upgrades
|
|
@@ -38,9 +38,15 @@ Read these local package docs before implementing advanced Agent Native
|
|
|
38
38
|
features. Prefer this app's own `AGENTS.md` and `.agents/skills/` for
|
|
39
39
|
app-specific rules, then use the corpus for reusable framework/template
|
|
40
40
|
patterns.
|
|
41
|
-
|
|
42
|
-
`npx @agent-native/core@latest
|
|
43
|
-
|
|
41
|
+
To bring an older app current, run `pnpm upgrade:agent-native` or
|
|
42
|
+
`npx @agent-native/core@latest upgrade` from the app root. That bumps
|
|
43
|
+
`@agent-native/*` deps, installs, refreshes scaffold skills, and typechecks.
|
|
44
|
+
Do **not** add `pnpm.overrides` / patches against `@agent-native/*` or edit
|
|
45
|
+
`node_modules/@agent-native/*` when an upgrade fails — fix app code or ask.
|
|
46
|
+
See the `upgrade-agent-native` and `self-modifying-code` skills.
|
|
47
|
+
After a manual core bump only, `pnpm skills:update` (or
|
|
48
|
+
`npx @agent-native/core@latest skills update scaffold --project`) still
|
|
49
|
+
refreshes framework-provided `.agents/skills` and repairs `CLAUDE.md` /
|
|
44
50
|
`.claude/skills` compatibility links.
|
|
45
51
|
|
|
46
52
|
### Database Code
|
|
@@ -150,6 +156,7 @@ Skills in `.agents/skills/` provide detailed guidance for each architectural rul
|
|
|
150
156
|
| `delegate-to-agent` | Before adding LLM calls or AI delegation |
|
|
151
157
|
| `actions` | Before creating or modifying actions |
|
|
152
158
|
| `self-modifying-code` | Before editing source, components, or styles |
|
|
159
|
+
| `upgrade-agent-native` | Before updating an older app/branch or when tempted to patch `@agent-native/*` |
|
|
153
160
|
| `capture-learnings` | Before recording user preferences or corrections |
|
|
154
161
|
| `frontend-design` | Before building or restyling any UI component, page, or layout |
|
|
155
162
|
| `shadcn-ui` | Before adding, updating, or debugging shadcn/ui components |
|
|
@@ -41,6 +41,8 @@ const messages = {
|
|
|
41
41
|
destinations: "Destinations",
|
|
42
42
|
identities: "Identities",
|
|
43
43
|
approvals: "الموافقات",
|
|
44
|
+
automations: "الأتمتة",
|
|
45
|
+
delivery: "التسليم",
|
|
44
46
|
audit: "Audit",
|
|
45
47
|
dreams: "Dreams",
|
|
46
48
|
threadDebug: "تصحيح الموضوع",
|
|
@@ -159,6 +161,22 @@ const messages = {
|
|
|
159
161
|
activeUsers: "المستخدمين النشطين",
|
|
160
162
|
workspaceAppsStat: "تطبيقات مساحة العمل",
|
|
161
163
|
chatThreads: "مواضيع الدردشة",
|
|
164
|
+
also: "أيضًا",
|
|
165
|
+
workspaceShortcutsAria: "اختصارات مساحة العمل",
|
|
166
|
+
deliveryQueue: "قائمة انتظار التسليم",
|
|
167
|
+
failedLastHour: "{{count}} فشل خلال الساعة الماضية",
|
|
168
|
+
processingCount: "{{count}} قيد المعالجة",
|
|
169
|
+
queued: "في الانتظار",
|
|
170
|
+
active: "نشط",
|
|
171
|
+
done1h: "تم خلال ساعة",
|
|
172
|
+
failed1h: "فشل خلال ساعة",
|
|
173
|
+
oldestQueued: "الأقدم في الانتظار: {{age}}",
|
|
174
|
+
queueAgeNone: "لا شيء",
|
|
175
|
+
queueFailureHint:
|
|
176
|
+
"تحقق من بيانات الاعتماد والوجهات وأخطاء قائمة الانتظار الأخيرة.",
|
|
177
|
+
unknownPlatform: "غير معروف",
|
|
178
|
+
attemptsCount: "{{count}} محاولات",
|
|
179
|
+
noErrorMessage: "(لا توجد رسالة خطأ)",
|
|
162
180
|
},
|
|
163
181
|
},
|
|
164
182
|
agentPanel: {
|
|
@@ -346,6 +364,9 @@ const messages = {
|
|
|
346
364
|
contactSidebarWidget: "الاتصال القطعة الشريط الجانبي",
|
|
347
365
|
contactSidebarDescription:
|
|
348
366
|
"يظهر بجانب المحادثة الحالية مع سياق جهة الاتصال وسلسلة المحادثات.",
|
|
367
|
+
eventDetailWidget: "أداة تفاصيل الحدث",
|
|
368
|
+
eventDetailDescription:
|
|
369
|
+
"تظهر أسفل حدث التقويم المفتوح مع سياق الحدث والحضور.",
|
|
349
370
|
addWidgetHere: "أضف القطعة هنا",
|
|
350
371
|
back: "رجوع",
|
|
351
372
|
editExtension: "تحرير التمديد",
|
|
@@ -43,6 +43,8 @@ const messages = {
|
|
|
43
43
|
destinations: "Destinations",
|
|
44
44
|
identities: "Identities",
|
|
45
45
|
approvals: "Zulassungen",
|
|
46
|
+
automations: "Automatisierungen",
|
|
47
|
+
delivery: "Zustellung",
|
|
46
48
|
audit: "Audit",
|
|
47
49
|
dreams: "Dreams",
|
|
48
50
|
threadDebug: "Thread-Debug",
|
|
@@ -160,6 +162,22 @@ const messages = {
|
|
|
160
162
|
activeUsers: "Aktive Benutzer",
|
|
161
163
|
workspaceAppsStat: "Workspace-Apps",
|
|
162
164
|
chatThreads: "Chat-Threads",
|
|
165
|
+
also: "Außerdem",
|
|
166
|
+
workspaceShortcutsAria: "Workspace-Kurzbefehle",
|
|
167
|
+
deliveryQueue: "Zustellungswarteschlange",
|
|
168
|
+
failedLastHour: "{{count}} fehlgeschlagen in der letzten Stunde",
|
|
169
|
+
processingCount: "{{count}} in Bearbeitung",
|
|
170
|
+
queued: "Warteschlange",
|
|
171
|
+
active: "Aktiv",
|
|
172
|
+
done1h: "Erledigt 1 Std.",
|
|
173
|
+
failed1h: "Fehlgeschlagen 1 Std.",
|
|
174
|
+
oldestQueued: "Älteste Warteschlange: {{age}}",
|
|
175
|
+
queueAgeNone: "keine",
|
|
176
|
+
queueFailureHint:
|
|
177
|
+
"Prüfe Anmeldedaten, Ziele und aktuelle Warteschlangenfehler.",
|
|
178
|
+
unknownPlatform: "unbekannt",
|
|
179
|
+
attemptsCount: "{{count}} Versuche",
|
|
180
|
+
noErrorMessage: "(keine Fehlermeldung)",
|
|
163
181
|
},
|
|
164
182
|
},
|
|
165
183
|
agentPanel: {
|
|
@@ -339,6 +357,9 @@ const messages = {
|
|
|
339
357
|
contactSidebarWidget: "Kontakt-Sidebar-Widget",
|
|
340
358
|
contactSidebarDescription:
|
|
341
359
|
"Erscheint neben der aktuellen Konversation mit Kontakt- und Thread-Kontext.",
|
|
360
|
+
eventDetailWidget: "Ereignisdetail-Widget",
|
|
361
|
+
eventDetailDescription:
|
|
362
|
+
"Erscheint unter dem geöffneten Kalenderereignis mit Ereignis- und Teilnehmerkontext.",
|
|
342
363
|
addWidgetHere: "Widget hier hinzufügen",
|
|
343
364
|
back: "Zurück",
|
|
344
365
|
editExtension: "Erweiterung bearbeiten",
|
|
@@ -42,6 +42,8 @@ const messages = {
|
|
|
42
42
|
destinations: "Destinations",
|
|
43
43
|
identities: "Identities",
|
|
44
44
|
approvals: "Approvals",
|
|
45
|
+
automations: "Automations",
|
|
46
|
+
delivery: "Delivery",
|
|
45
47
|
audit: "Audit",
|
|
46
48
|
dreams: "Dreams",
|
|
47
49
|
threadDebug: "Thread Debug",
|
|
@@ -156,6 +158,22 @@ const messages = {
|
|
|
156
158
|
activeUsers: "Active users",
|
|
157
159
|
workspaceAppsStat: "Workspace apps",
|
|
158
160
|
chatThreads: "Chat threads",
|
|
161
|
+
also: "Also",
|
|
162
|
+
workspaceShortcutsAria: "Workspace shortcuts",
|
|
163
|
+
deliveryQueue: "Delivery queue",
|
|
164
|
+
failedLastHour: "{{count}} failed in the last hour",
|
|
165
|
+
processingCount: "{{count}} processing",
|
|
166
|
+
queued: "Queued",
|
|
167
|
+
active: "Active",
|
|
168
|
+
done1h: "Done 1h",
|
|
169
|
+
failed1h: "Failed 1h",
|
|
170
|
+
oldestQueued: "Oldest queued: {{age}}",
|
|
171
|
+
queueAgeNone: "none",
|
|
172
|
+
queueFailureHint:
|
|
173
|
+
"Check credentials, destinations, and recent queue errors.",
|
|
174
|
+
unknownPlatform: "unknown",
|
|
175
|
+
attemptsCount: "{{count}} attempts",
|
|
176
|
+
noErrorMessage: "(no error message)",
|
|
159
177
|
},
|
|
160
178
|
},
|
|
161
179
|
agentPanel: {
|
|
@@ -330,6 +348,9 @@ const messages = {
|
|
|
330
348
|
contactSidebarWidget: "Contact sidebar widget",
|
|
331
349
|
contactSidebarDescription:
|
|
332
350
|
"Appears beside the current conversation with contact and thread context.",
|
|
351
|
+
eventDetailWidget: "Event detail widget",
|
|
352
|
+
eventDetailDescription:
|
|
353
|
+
"Appears below the open calendar event with event and attendee context.",
|
|
333
354
|
addWidgetHere: "Add widget here",
|
|
334
355
|
back: "Back",
|
|
335
356
|
editExtension: "Edit Extension",
|
|
@@ -43,6 +43,8 @@ const messages = {
|
|
|
43
43
|
destinations: "Destinations",
|
|
44
44
|
identities: "Identities",
|
|
45
45
|
approvals: "Aprobaciones",
|
|
46
|
+
automations: "Automatizaciones",
|
|
47
|
+
delivery: "Entrega",
|
|
46
48
|
audit: "Audit",
|
|
47
49
|
dreams: "Dreams",
|
|
48
50
|
threadDebug: "Depuración de subprocesos",
|
|
@@ -161,6 +163,22 @@ const messages = {
|
|
|
161
163
|
activeUsers: "Usuarios activos",
|
|
162
164
|
workspaceAppsStat: "Aplicaciones de espacio de trabajo",
|
|
163
165
|
chatThreads: "Hilos de chat",
|
|
166
|
+
also: "También",
|
|
167
|
+
workspaceShortcutsAria: "Accesos directos del espacio de trabajo",
|
|
168
|
+
deliveryQueue: "Cola de entrega",
|
|
169
|
+
failedLastHour: "{{count}} fallos en la última hora",
|
|
170
|
+
processingCount: "{{count}} en proceso",
|
|
171
|
+
queued: "En cola",
|
|
172
|
+
active: "Activo",
|
|
173
|
+
done1h: "Hecho 1 h",
|
|
174
|
+
failed1h: "Fallido 1 h",
|
|
175
|
+
oldestQueued: "Más antiguo en cola: {{age}}",
|
|
176
|
+
queueAgeNone: "ninguno",
|
|
177
|
+
queueFailureHint:
|
|
178
|
+
"Revisa las credenciales, los destinos y los errores recientes de la cola.",
|
|
179
|
+
unknownPlatform: "desconocido",
|
|
180
|
+
attemptsCount: "{{count}} intentos",
|
|
181
|
+
noErrorMessage: "(sin mensaje de error)",
|
|
164
182
|
},
|
|
165
183
|
},
|
|
166
184
|
agentPanel: {
|
|
@@ -344,6 +362,9 @@ const messages = {
|
|
|
344
362
|
contactSidebarWidget: "Widget de la barra lateral de contacto",
|
|
345
363
|
contactSidebarDescription:
|
|
346
364
|
"Aparece junto a la conversación actual con el contexto del contacto y del hilo.",
|
|
365
|
+
eventDetailWidget: "Widget de detalle del evento",
|
|
366
|
+
eventDetailDescription:
|
|
367
|
+
"Aparece debajo del evento de calendario abierto con el contexto del evento y los asistentes.",
|
|
347
368
|
addWidgetHere: "Añadir widget aquí",
|
|
348
369
|
back: "Volver",
|
|
349
370
|
editExtension: "Editar extensión",
|
|
@@ -43,6 +43,8 @@ const messages = {
|
|
|
43
43
|
destinations: "Destinations",
|
|
44
44
|
identities: "Identities",
|
|
45
45
|
approvals: "Approbations",
|
|
46
|
+
automations: "Automatisations",
|
|
47
|
+
delivery: "Livraison",
|
|
46
48
|
audit: "Audit",
|
|
47
49
|
dreams: "Dreams",
|
|
48
50
|
threadDebug: "Débogage du fil de discussion",
|
|
@@ -161,6 +163,22 @@ const messages = {
|
|
|
161
163
|
activeUsers: "Utilisateurs actifs",
|
|
162
164
|
workspaceAppsStat: "Applications d'espace de travail",
|
|
163
165
|
chatThreads: "Fils de discussion",
|
|
166
|
+
also: "Aussi",
|
|
167
|
+
workspaceShortcutsAria: "Raccourcis de l’espace de travail",
|
|
168
|
+
deliveryQueue: "File de livraison",
|
|
169
|
+
failedLastHour: "{{count}} échecs au cours de la dernière heure",
|
|
170
|
+
processingCount: "{{count}} en cours",
|
|
171
|
+
queued: "En file",
|
|
172
|
+
active: "Actif",
|
|
173
|
+
done1h: "Terminé 1 h",
|
|
174
|
+
failed1h: "Échoué 1 h",
|
|
175
|
+
oldestQueued: "Plus ancien en file : {{age}}",
|
|
176
|
+
queueAgeNone: "aucun",
|
|
177
|
+
queueFailureHint:
|
|
178
|
+
"Vérifiez les identifiants, les destinations et les erreurs récentes de la file.",
|
|
179
|
+
unknownPlatform: "inconnu",
|
|
180
|
+
attemptsCount: "{{count}} tentatives",
|
|
181
|
+
noErrorMessage: "(aucun message d’erreur)",
|
|
164
182
|
},
|
|
165
183
|
},
|
|
166
184
|
agentPanel: {
|
|
@@ -342,6 +360,9 @@ const messages = {
|
|
|
342
360
|
contactSidebarWidget: "Widget de la barre latérale des contacts",
|
|
343
361
|
contactSidebarDescription:
|
|
344
362
|
"Apparaît à côté de la conversation en cours avec le contexte du contact et du fil de discussion.",
|
|
363
|
+
eventDetailWidget: "Widget de détail d'événement",
|
|
364
|
+
eventDetailDescription:
|
|
365
|
+
"Apparaît sous l'événement de calendrier ouvert avec le contexte de l'événement et des participants.",
|
|
345
366
|
addWidgetHere: "Ajouter un widget ici",
|
|
346
367
|
back: "Retour",
|
|
347
368
|
editExtension: "Modifier l'extension",
|
|
@@ -41,6 +41,8 @@ const messages = {
|
|
|
41
41
|
destinations: "Destinations",
|
|
42
42
|
identities: "Identities",
|
|
43
43
|
approvals: "स्वीकृतियाँ",
|
|
44
|
+
automations: "ऑटोमेशन",
|
|
45
|
+
delivery: "डिलीवरी",
|
|
44
46
|
audit: "Audit",
|
|
45
47
|
dreams: "Dreams",
|
|
46
48
|
threadDebug: "थ्रेड डिबग",
|
|
@@ -152,6 +154,21 @@ const messages = {
|
|
|
152
154
|
activeUsers: "सक्रिय उपयोगकर्ता",
|
|
153
155
|
workspaceAppsStat: "कार्यक्षेत्र ऐप्स",
|
|
154
156
|
chatThreads: "चैट सूत्र",
|
|
157
|
+
also: "और भी",
|
|
158
|
+
workspaceShortcutsAria: "कार्यस्थान शॉर्टकट",
|
|
159
|
+
deliveryQueue: "डिलीवरी कतार",
|
|
160
|
+
failedLastHour: "पिछले घंटे में {{count}} विफल",
|
|
161
|
+
processingCount: "{{count}} प्रोसेस हो रहे हैं",
|
|
162
|
+
queued: "कतार में",
|
|
163
|
+
active: "सक्रिय",
|
|
164
|
+
done1h: "पूर्ण 1घं",
|
|
165
|
+
failed1h: "विफल 1घं",
|
|
166
|
+
oldestQueued: "सबसे पुराना कतार में: {{age}}",
|
|
167
|
+
queueAgeNone: "कोई नहीं",
|
|
168
|
+
queueFailureHint: "क्रेडेंशियल, गंतव्य और हाल की कतार त्रुटियाँ जाँचें।",
|
|
169
|
+
unknownPlatform: "अज्ञात",
|
|
170
|
+
attemptsCount: "{{count}} प्रयास",
|
|
171
|
+
noErrorMessage: "(कोई त्रुटि संदेश नहीं)",
|
|
155
172
|
},
|
|
156
173
|
},
|
|
157
174
|
agentPanel: {
|
|
@@ -327,6 +344,9 @@ const messages = {
|
|
|
327
344
|
contactSidebarWidget: "साइडबार विजेट से संपर्क करें",
|
|
328
345
|
contactSidebarDescription:
|
|
329
346
|
"संपर्क और थ्रेड संदर्भ के साथ वर्तमान वार्तालाप के बगल में दिखाई देता है।",
|
|
347
|
+
eventDetailWidget: "इवेंट विवरण विजेट",
|
|
348
|
+
eventDetailDescription:
|
|
349
|
+
"खुले कैलेंडर इवेंट के नीचे इवेंट और उपस्थित लोगों के संदर्भ के साथ दिखाई देता है।",
|
|
330
350
|
addWidgetHere: "यहां विजेट जोड़ें",
|
|
331
351
|
back: "वापस",
|
|
332
352
|
editExtension: "एक्सटेंशन संपादित करें",
|
|
@@ -43,6 +43,8 @@ const messages = {
|
|
|
43
43
|
destinations: "Destinations",
|
|
44
44
|
identities: "Identities",
|
|
45
45
|
approvals: "承認",
|
|
46
|
+
automations: "自動化",
|
|
47
|
+
delivery: "配信",
|
|
46
48
|
audit: "Audit",
|
|
47
49
|
dreams: "Dreams",
|
|
48
50
|
threadDebug: "スレッドのデバッグ",
|
|
@@ -157,6 +159,22 @@ const messages = {
|
|
|
157
159
|
activeUsers: "アクティブユーザー",
|
|
158
160
|
workspaceAppsStat: "ワークスペースアプリ",
|
|
159
161
|
chatThreads: "チャットスレッド",
|
|
162
|
+
also: "その他",
|
|
163
|
+
workspaceShortcutsAria: "ワークスペースのショートカット",
|
|
164
|
+
deliveryQueue: "配信キュー",
|
|
165
|
+
failedLastHour: "過去 1 時間で {{count}} 件失敗",
|
|
166
|
+
processingCount: "{{count}} 件処理中",
|
|
167
|
+
queued: "待機中",
|
|
168
|
+
active: "実行中",
|
|
169
|
+
done1h: "完了 1h",
|
|
170
|
+
failed1h: "失敗 1h",
|
|
171
|
+
oldestQueued: "最古の待機: {{age}}",
|
|
172
|
+
queueAgeNone: "なし",
|
|
173
|
+
queueFailureHint:
|
|
174
|
+
"認証情報、送信先、最近のキューエラーを確認してください。",
|
|
175
|
+
unknownPlatform: "不明",
|
|
176
|
+
attemptsCount: "{{count}} 回試行",
|
|
177
|
+
noErrorMessage: "(エラーメッセージなし)",
|
|
160
178
|
},
|
|
161
179
|
},
|
|
162
180
|
agentPanel: {
|
|
@@ -332,6 +350,9 @@ const messages = {
|
|
|
332
350
|
contactSidebarWidget: "連絡先サイドバー ウィジェット",
|
|
333
351
|
contactSidebarDescription:
|
|
334
352
|
"現在の会話の横に連絡先とスレッドのコンテキストが表示されます。",
|
|
353
|
+
eventDetailWidget: "予定詳細ウィジェット",
|
|
354
|
+
eventDetailDescription:
|
|
355
|
+
"開いているカレンダー予定の下に、予定と出席者のコンテキストとともに表示されます。",
|
|
335
356
|
addWidgetHere: "ここにウィジェットを追加",
|
|
336
357
|
back: "戻る",
|
|
337
358
|
editExtension: "拡張子の編集",
|
|
@@ -42,6 +42,8 @@ const messages = {
|
|
|
42
42
|
destinations: "Destinations",
|
|
43
43
|
identities: "Identities",
|
|
44
44
|
approvals: "승인",
|
|
45
|
+
automations: "자동화",
|
|
46
|
+
delivery: "전달",
|
|
45
47
|
audit: "Audit",
|
|
46
48
|
dreams: "Dreams",
|
|
47
49
|
threadDebug: "스레드 디버그",
|
|
@@ -154,6 +156,21 @@ const messages = {
|
|
|
154
156
|
activeUsers: "활성 사용자",
|
|
155
157
|
workspaceAppsStat: "작업 공간 앱",
|
|
156
158
|
chatThreads: "채팅 스레드",
|
|
159
|
+
also: "또한",
|
|
160
|
+
workspaceShortcutsAria: "워크스페이스 바로가기",
|
|
161
|
+
deliveryQueue: "전달 대기열",
|
|
162
|
+
failedLastHour: "지난 1시간 동안 {{count}}건 실패",
|
|
163
|
+
processingCount: "{{count}}건 처리 중",
|
|
164
|
+
queued: "대기 중",
|
|
165
|
+
active: "진행 중",
|
|
166
|
+
done1h: "완료 1시간",
|
|
167
|
+
failed1h: "실패 1시간",
|
|
168
|
+
oldestQueued: "가장 오래된 대기: {{age}}",
|
|
169
|
+
queueAgeNone: "없음",
|
|
170
|
+
queueFailureHint: "자격 증명, 대상, 최근 대기열 오류를 확인하세요.",
|
|
171
|
+
unknownPlatform: "알 수 없음",
|
|
172
|
+
attemptsCount: "{{count}}회 시도",
|
|
173
|
+
noErrorMessage: "(오류 메시지 없음)",
|
|
157
174
|
},
|
|
158
175
|
},
|
|
159
176
|
agentPanel: {
|
|
@@ -326,6 +343,9 @@ const messages = {
|
|
|
326
343
|
contactSidebarWidget: "연락처 사이드바 위젯",
|
|
327
344
|
contactSidebarDescription:
|
|
328
345
|
"연락처 및 스레드 컨텍스트가 포함된 현재 대화 옆에 표시됩니다.",
|
|
346
|
+
eventDetailWidget: "일정 상세 위젯",
|
|
347
|
+
eventDetailDescription:
|
|
348
|
+
"열린 캘린더 일정 아래에 일정 및 참석자 컨텍스트와 함께 표시됩니다.",
|
|
329
349
|
addWidgetHere: "여기에 위젯 추가",
|
|
330
350
|
back: "뒤로",
|
|
331
351
|
editExtension: "확장 편집",
|
|
@@ -43,6 +43,8 @@ const messages = {
|
|
|
43
43
|
destinations: "Destinations",
|
|
44
44
|
identities: "Identities",
|
|
45
45
|
approvals: "Aprovações",
|
|
46
|
+
automations: "Automações",
|
|
47
|
+
delivery: "Entrega",
|
|
46
48
|
audit: "Audit",
|
|
47
49
|
dreams: "Dreams",
|
|
48
50
|
threadDebug: "Depuração de thread",
|
|
@@ -161,6 +163,22 @@ const messages = {
|
|
|
161
163
|
activeUsers: "Usuários ativos",
|
|
162
164
|
workspaceAppsStat: "Aplicativos de espaço de trabalho",
|
|
163
165
|
chatThreads: "Tópicos de bate-papo",
|
|
166
|
+
also: "Também",
|
|
167
|
+
workspaceShortcutsAria: "Atalhos do espaço de trabalho",
|
|
168
|
+
deliveryQueue: "Fila de entrega",
|
|
169
|
+
failedLastHour: "{{count}} falhas na última hora",
|
|
170
|
+
processingCount: "{{count}} em processamento",
|
|
171
|
+
queued: "Na fila",
|
|
172
|
+
active: "Ativo",
|
|
173
|
+
done1h: "Concluído 1 h",
|
|
174
|
+
failed1h: "Falhou 1 h",
|
|
175
|
+
oldestQueued: "Mais antigo na fila: {{age}}",
|
|
176
|
+
queueAgeNone: "nenhum",
|
|
177
|
+
queueFailureHint:
|
|
178
|
+
"Verifique credenciais, destinos e erros recentes da fila.",
|
|
179
|
+
unknownPlatform: "desconhecido",
|
|
180
|
+
attemptsCount: "{{count}} tentativas",
|
|
181
|
+
noErrorMessage: "(sem mensagem de erro)",
|
|
164
182
|
},
|
|
165
183
|
},
|
|
166
184
|
agentPanel: {
|
|
@@ -341,6 +359,9 @@ const messages = {
|
|
|
341
359
|
contactSidebarWidget: "Widget da barra lateral de contato",
|
|
342
360
|
contactSidebarDescription:
|
|
343
361
|
"Aparece ao lado da conversa atual com o contexto do contato e do tópico.",
|
|
362
|
+
eventDetailWidget: "Widget de detalhes do evento",
|
|
363
|
+
eventDetailDescription:
|
|
364
|
+
"Aparece abaixo do evento aberto do calendário com o contexto do evento e dos participantes.",
|
|
344
365
|
addWidgetHere: "Adicione widget aqui",
|
|
345
366
|
back: "Voltar",
|
|
346
367
|
editExtension: "Editar extensão",
|