@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
|
@@ -28,9 +28,17 @@ const enUS = {
|
|
|
28
28
|
"Manage team access and shared workspace resources for Dispatch.",
|
|
29
29
|
openTeamSettings: "Open team settings",
|
|
30
30
|
openResourceSettings: "Open resource settings",
|
|
31
|
+
automationsTitle: "Automations",
|
|
32
|
+
automationsDescription:
|
|
33
|
+
"Review, pause, and create scheduled or event-triggered jobs.",
|
|
34
|
+
openAutomations: "Open automations",
|
|
35
|
+
deliveryTitle: "Delivery",
|
|
36
|
+
deliveryDescription:
|
|
37
|
+
"Manage message destinations and check the outbound delivery queue.",
|
|
38
|
+
openDelivery: "Open delivery",
|
|
31
39
|
agentTitle: "Agent settings",
|
|
32
40
|
agentDescription:
|
|
33
|
-
"Open the agent sidebar settings for model, API keys,
|
|
41
|
+
"Open the agent sidebar settings for model, API keys, voice, and other agent controls. Use the Automations page for scheduled and event-triggered jobs.",
|
|
34
42
|
openAgentSettings: "Open agent settings",
|
|
35
43
|
},
|
|
36
44
|
integrations: {
|
|
@@ -206,6 +214,34 @@ const enUS = {
|
|
|
206
214
|
onboardingDescription:
|
|
207
215
|
"Dispatch owns shared provider accounts. Each app owns how it uses the account.",
|
|
208
216
|
},
|
|
217
|
+
dispatch: {
|
|
218
|
+
nav: {
|
|
219
|
+
automations: "Automations",
|
|
220
|
+
approvals: "Approvals",
|
|
221
|
+
delivery: "Delivery",
|
|
222
|
+
agents: "Agents",
|
|
223
|
+
vault: "Vault",
|
|
224
|
+
audit: "Audit",
|
|
225
|
+
},
|
|
226
|
+
pages: {
|
|
227
|
+
also: "Also",
|
|
228
|
+
workspaceShortcutsAria: "Workspace shortcuts",
|
|
229
|
+
deliveryQueue: "Delivery queue",
|
|
230
|
+
failedLastHour: "{{count}} failed in the last hour",
|
|
231
|
+
processingCount: "{{count}} processing",
|
|
232
|
+
queued: "Queued",
|
|
233
|
+
active: "Active",
|
|
234
|
+
done1h: "Done 1h",
|
|
235
|
+
failed1h: "Failed 1h",
|
|
236
|
+
oldestQueued: "Oldest queued: {{age}}",
|
|
237
|
+
queueAgeNone: "none",
|
|
238
|
+
queueFailureHint:
|
|
239
|
+
"Check credentials, destinations, and recent queue errors.",
|
|
240
|
+
unknownPlatform: "unknown",
|
|
241
|
+
attemptsCount: "{{count}} attempts",
|
|
242
|
+
noErrorMessage: "(no error message)",
|
|
243
|
+
},
|
|
244
|
+
},
|
|
209
245
|
};
|
|
210
246
|
|
|
211
247
|
type Messages = typeof enUS;
|
|
@@ -238,6 +274,21 @@ function mergeMessages(overrides: PartialMessages): Messages {
|
|
|
238
274
|
...overrides.integrations?.time,
|
|
239
275
|
},
|
|
240
276
|
},
|
|
277
|
+
dispatch: {
|
|
278
|
+
...enUS.dispatch,
|
|
279
|
+
...overrides.dispatch,
|
|
280
|
+
nav: {
|
|
281
|
+
...enUS.dispatch.nav,
|
|
282
|
+
...(overrides.dispatch as { nav?: Record<string, string> } | undefined)
|
|
283
|
+
?.nav,
|
|
284
|
+
},
|
|
285
|
+
pages: {
|
|
286
|
+
...enUS.dispatch.pages,
|
|
287
|
+
...(
|
|
288
|
+
overrides.dispatch as { pages?: Record<string, string> } | undefined
|
|
289
|
+
)?.pages,
|
|
290
|
+
},
|
|
291
|
+
},
|
|
241
292
|
};
|
|
242
293
|
}
|
|
243
294
|
|
|
@@ -268,9 +319,15 @@ export const messagesByLocale = {
|
|
|
268
319
|
workspaceDescription: "管理 Dispatch 的团队访问权限和共享工作区资源。",
|
|
269
320
|
openTeamSettings: "打开团队设置",
|
|
270
321
|
openResourceSettings: "打开资源设置",
|
|
322
|
+
automationsTitle: "自动化",
|
|
323
|
+
automationsDescription: "查看、暂停并创建定时或事件触发的任务。",
|
|
324
|
+
openAutomations: "打开自动化",
|
|
325
|
+
deliveryTitle: "投递",
|
|
326
|
+
deliveryDescription: "管理消息目的地并查看出站投递队列。",
|
|
327
|
+
openDelivery: "打开投递",
|
|
271
328
|
agentTitle: "代理设置",
|
|
272
329
|
agentDescription:
|
|
273
|
-
"打开代理侧边栏设置,管理模型、API
|
|
330
|
+
"打开代理侧边栏设置,管理模型、API 密钥、语音和其他代理控制项。定时与事件触发的任务请使用自动化页面。",
|
|
274
331
|
openAgentSettings: "打开代理设置",
|
|
275
332
|
},
|
|
276
333
|
integrations: {
|
|
@@ -439,6 +496,34 @@ export const messagesByLocale = {
|
|
|
439
496
|
onboardingDescription:
|
|
440
497
|
"Dispatch 管理共享提供商账户。每个应用管理自己如何使用该账户。",
|
|
441
498
|
},
|
|
499
|
+
|
|
500
|
+
dispatch: {
|
|
501
|
+
nav: {
|
|
502
|
+
automations: "自动化",
|
|
503
|
+
approvals: "批准",
|
|
504
|
+
delivery: "投递",
|
|
505
|
+
agents: "代理",
|
|
506
|
+
vault: "保险库",
|
|
507
|
+
audit: "审计",
|
|
508
|
+
},
|
|
509
|
+
pages: {
|
|
510
|
+
also: "还有",
|
|
511
|
+
workspaceShortcutsAria: "工作区快捷入口",
|
|
512
|
+
deliveryQueue: "投递队列",
|
|
513
|
+
failedLastHour: "过去一小时失败 {{count}} 次",
|
|
514
|
+
processingCount: "{{count}} 个处理中",
|
|
515
|
+
queued: "排队中",
|
|
516
|
+
active: "进行中",
|
|
517
|
+
done1h: "完成 1 小时",
|
|
518
|
+
failed1h: "失败 1 小时",
|
|
519
|
+
oldestQueued: "最早排队:{{age}}",
|
|
520
|
+
queueAgeNone: "无",
|
|
521
|
+
queueFailureHint: "请检查凭据、目的地和最近的队列错误。",
|
|
522
|
+
unknownPlatform: "未知",
|
|
523
|
+
attemptsCount: "{{count}} 次尝试",
|
|
524
|
+
noErrorMessage: "(无错误消息)",
|
|
525
|
+
},
|
|
526
|
+
},
|
|
442
527
|
}),
|
|
443
528
|
"es-ES": mergeMessages({
|
|
444
529
|
routeTitles: {
|
|
@@ -467,9 +552,17 @@ export const messagesByLocale = {
|
|
|
467
552
|
"Gestiona el acceso del equipo y los recursos compartidos de Dispatch.",
|
|
468
553
|
openTeamSettings: "Abrir ajustes del equipo",
|
|
469
554
|
openResourceSettings: "Abrir ajustes de recursos",
|
|
555
|
+
automationsTitle: "Automatizaciones",
|
|
556
|
+
automationsDescription:
|
|
557
|
+
"Revisa, pausa y crea trabajos programados o activados por eventos.",
|
|
558
|
+
openAutomations: "Abrir automatizaciones",
|
|
559
|
+
deliveryTitle: "Entrega",
|
|
560
|
+
deliveryDescription:
|
|
561
|
+
"Gestiona destinos de mensajes y revisa la cola de entrega saliente.",
|
|
562
|
+
openDelivery: "Abrir entrega",
|
|
470
563
|
agentTitle: "Ajustes del agente",
|
|
471
564
|
agentDescription:
|
|
472
|
-
"Abre los ajustes del agente en la barra lateral para modelos, claves API,
|
|
565
|
+
"Abre los ajustes del agente en la barra lateral para modelos, claves API, voz y otros controles. Usa la página de Automatizaciones para trabajos programados y activados por eventos.",
|
|
473
566
|
openAgentSettings: "Abrir ajustes del agente",
|
|
474
567
|
},
|
|
475
568
|
integrations: {
|
|
@@ -658,6 +751,35 @@ export const messagesByLocale = {
|
|
|
658
751
|
onboardingDescription:
|
|
659
752
|
"Dispatch posee las cuentas compartidas de proveedores. Cada app posee cómo usa la cuenta.",
|
|
660
753
|
},
|
|
754
|
+
|
|
755
|
+
dispatch: {
|
|
756
|
+
nav: {
|
|
757
|
+
automations: "Automatizaciones",
|
|
758
|
+
approvals: "Aprobaciones",
|
|
759
|
+
delivery: "Entrega",
|
|
760
|
+
agents: "Agentes",
|
|
761
|
+
vault: "Bóveda",
|
|
762
|
+
audit: "Auditoría",
|
|
763
|
+
},
|
|
764
|
+
pages: {
|
|
765
|
+
also: "También",
|
|
766
|
+
workspaceShortcutsAria: "Accesos directos del espacio de trabajo",
|
|
767
|
+
deliveryQueue: "Cola de entrega",
|
|
768
|
+
failedLastHour: "{{count}} fallos en la última hora",
|
|
769
|
+
processingCount: "{{count}} en proceso",
|
|
770
|
+
queued: "En cola",
|
|
771
|
+
active: "Activo",
|
|
772
|
+
done1h: "Hecho 1 h",
|
|
773
|
+
failed1h: "Fallido 1 h",
|
|
774
|
+
oldestQueued: "Más antiguo en cola: {{age}}",
|
|
775
|
+
queueAgeNone: "ninguno",
|
|
776
|
+
queueFailureHint:
|
|
777
|
+
"Revisa las credenciales, los destinos y los errores recientes de la cola.",
|
|
778
|
+
unknownPlatform: "desconocido",
|
|
779
|
+
attemptsCount: "{{count}} intentos",
|
|
780
|
+
noErrorMessage: "(sin mensaje de error)",
|
|
781
|
+
},
|
|
782
|
+
},
|
|
661
783
|
}),
|
|
662
784
|
"fr-FR": mergeMessages({
|
|
663
785
|
routeTitles: {
|
|
@@ -686,9 +808,17 @@ export const messagesByLocale = {
|
|
|
686
808
|
"Gérez l’accès de l’équipe et les ressources partagées de Dispatch.",
|
|
687
809
|
openTeamSettings: "Ouvrir les paramètres d’équipe",
|
|
688
810
|
openResourceSettings: "Ouvrir les paramètres des ressources",
|
|
811
|
+
automationsTitle: "Automatisations",
|
|
812
|
+
automationsDescription:
|
|
813
|
+
"Consultez, mettez en pause et créez des tâches planifiées ou déclenchées par des événements.",
|
|
814
|
+
openAutomations: "Ouvrir les automatisations",
|
|
815
|
+
deliveryTitle: "Livraison",
|
|
816
|
+
deliveryDescription:
|
|
817
|
+
"Gérez les destinations de messages et consultez la file d’attente sortante.",
|
|
818
|
+
openDelivery: "Ouvrir la livraison",
|
|
689
819
|
agentTitle: "Paramètres de l’agent",
|
|
690
820
|
agentDescription:
|
|
691
|
-
"Ouvrez les paramètres de l’agent dans la barre latérale pour les modèles, clés API,
|
|
821
|
+
"Ouvrez les paramètres de l’agent dans la barre latérale pour les modèles, clés API, voix et autres contrôles. Utilisez la page Automatisations pour les tâches planifiées et déclenchées par des événements.",
|
|
692
822
|
openAgentSettings: "Ouvrir les paramètres de l’agent",
|
|
693
823
|
},
|
|
694
824
|
integrations: {
|
|
@@ -877,6 +1007,35 @@ export const messagesByLocale = {
|
|
|
877
1007
|
onboardingDescription:
|
|
878
1008
|
"Dispatch possède les comptes fournisseurs partagés. Chaque app possède la façon dont elle utilise le compte.",
|
|
879
1009
|
},
|
|
1010
|
+
|
|
1011
|
+
dispatch: {
|
|
1012
|
+
nav: {
|
|
1013
|
+
automations: "Automatisations",
|
|
1014
|
+
approvals: "Approbations",
|
|
1015
|
+
delivery: "Livraison",
|
|
1016
|
+
agents: "Agents",
|
|
1017
|
+
vault: "Coffre",
|
|
1018
|
+
audit: "Audit",
|
|
1019
|
+
},
|
|
1020
|
+
pages: {
|
|
1021
|
+
also: "Aussi",
|
|
1022
|
+
workspaceShortcutsAria: "Raccourcis de l’espace de travail",
|
|
1023
|
+
deliveryQueue: "File de livraison",
|
|
1024
|
+
failedLastHour: "{{count}} échecs au cours de la dernière heure",
|
|
1025
|
+
processingCount: "{{count}} en cours",
|
|
1026
|
+
queued: "En file",
|
|
1027
|
+
active: "Actif",
|
|
1028
|
+
done1h: "Terminé 1 h",
|
|
1029
|
+
failed1h: "Échoué 1 h",
|
|
1030
|
+
oldestQueued: "Plus ancien en file : {{age}}",
|
|
1031
|
+
queueAgeNone: "aucun",
|
|
1032
|
+
queueFailureHint:
|
|
1033
|
+
"Vérifiez les identifiants, les destinations et les erreurs récentes de la file.",
|
|
1034
|
+
unknownPlatform: "inconnu",
|
|
1035
|
+
attemptsCount: "{{count}} tentatives",
|
|
1036
|
+
noErrorMessage: "(aucun message d’erreur)",
|
|
1037
|
+
},
|
|
1038
|
+
},
|
|
880
1039
|
}),
|
|
881
1040
|
"de-DE": mergeMessages({
|
|
882
1041
|
routeTitles: {
|
|
@@ -905,9 +1064,17 @@ export const messagesByLocale = {
|
|
|
905
1064
|
"Verwalte Teamzugriff und gemeinsam genutzte Dispatch-Ressourcen.",
|
|
906
1065
|
openTeamSettings: "Teameinstellungen öffnen",
|
|
907
1066
|
openResourceSettings: "Ressourceneinstellungen öffnen",
|
|
1067
|
+
automationsTitle: "Automatisierungen",
|
|
1068
|
+
automationsDescription:
|
|
1069
|
+
"Geplante oder ereignisgesteuerte Jobs prüfen, pausieren und erstellen.",
|
|
1070
|
+
openAutomations: "Automatisierungen öffnen",
|
|
1071
|
+
deliveryTitle: "Zustellung",
|
|
1072
|
+
deliveryDescription:
|
|
1073
|
+
"Nachrichtenziele verwalten und die ausgehende Zustellungswarteschlange prüfen.",
|
|
1074
|
+
openDelivery: "Zustellung öffnen",
|
|
908
1075
|
agentTitle: "Agent-Einstellungen",
|
|
909
1076
|
agentDescription:
|
|
910
|
-
"Öffne die Agent-Einstellungen in der Seitenleiste für Modell, API-Schlüssel,
|
|
1077
|
+
"Öffne die Agent-Einstellungen in der Seitenleiste für Modell, API-Schlüssel, Sprache und weitere Steuerungen. Für geplante und ereignisgesteuerte Jobs die Automatisierungen-Seite verwenden.",
|
|
911
1078
|
openAgentSettings: "Agent-Einstellungen öffnen",
|
|
912
1079
|
},
|
|
913
1080
|
integrations: {
|
|
@@ -1086,6 +1253,35 @@ export const messagesByLocale = {
|
|
|
1086
1253
|
onboardingDescription:
|
|
1087
1254
|
"Dispatch besitzt gemeinsame Anbieter-Konten. Jede App besitzt, wie sie das Konto verwendet.",
|
|
1088
1255
|
},
|
|
1256
|
+
|
|
1257
|
+
dispatch: {
|
|
1258
|
+
nav: {
|
|
1259
|
+
automations: "Automatisierungen",
|
|
1260
|
+
approvals: "Freigaben",
|
|
1261
|
+
delivery: "Zustellung",
|
|
1262
|
+
agents: "Agenten",
|
|
1263
|
+
vault: "Tresor",
|
|
1264
|
+
audit: "Audit",
|
|
1265
|
+
},
|
|
1266
|
+
pages: {
|
|
1267
|
+
also: "Außerdem",
|
|
1268
|
+
workspaceShortcutsAria: "Workspace-Kurzbefehle",
|
|
1269
|
+
deliveryQueue: "Zustellungswarteschlange",
|
|
1270
|
+
failedLastHour: "{{count}} fehlgeschlagen in der letzten Stunde",
|
|
1271
|
+
processingCount: "{{count}} in Bearbeitung",
|
|
1272
|
+
queued: "Warteschlange",
|
|
1273
|
+
active: "Aktiv",
|
|
1274
|
+
done1h: "Erledigt 1 Std.",
|
|
1275
|
+
failed1h: "Fehlgeschlagen 1 Std.",
|
|
1276
|
+
oldestQueued: "Älteste Warteschlange: {{age}}",
|
|
1277
|
+
queueAgeNone: "keine",
|
|
1278
|
+
queueFailureHint:
|
|
1279
|
+
"Prüfe Anmeldedaten, Ziele und aktuelle Warteschlangenfehler.",
|
|
1280
|
+
unknownPlatform: "unbekannt",
|
|
1281
|
+
attemptsCount: "{{count}} Versuche",
|
|
1282
|
+
noErrorMessage: "(keine Fehlermeldung)",
|
|
1283
|
+
},
|
|
1284
|
+
},
|
|
1089
1285
|
}),
|
|
1090
1286
|
"ja-JP": mergeMessages({
|
|
1091
1287
|
routeTitles: {
|
|
@@ -1113,9 +1309,17 @@ export const messagesByLocale = {
|
|
|
1113
1309
|
"Dispatch のチームアクセスと共有ワークスペースリソースを管理します。",
|
|
1114
1310
|
openTeamSettings: "チーム設定を開く",
|
|
1115
1311
|
openResourceSettings: "リソース設定を開く",
|
|
1312
|
+
automationsTitle: "自動化",
|
|
1313
|
+
automationsDescription:
|
|
1314
|
+
"スケジュールまたはイベント駆動のジョブを確認、一時停止、作成します。",
|
|
1315
|
+
openAutomations: "自動化を開く",
|
|
1316
|
+
deliveryTitle: "配信",
|
|
1317
|
+
deliveryDescription:
|
|
1318
|
+
"メッセージの送信先を管理し、送信キューを確認します。",
|
|
1319
|
+
openDelivery: "配信を開く",
|
|
1116
1320
|
agentTitle: "エージェント設定",
|
|
1117
1321
|
agentDescription:
|
|
1118
|
-
"右サイドバーのエージェント設定を開き、モデル、API
|
|
1322
|
+
"右サイドバーのエージェント設定を開き、モデル、API キー、音声などを管理します。スケジュールおよびイベント駆動のジョブは自動化ページを使用してください。",
|
|
1119
1323
|
openAgentSettings: "エージェント設定を開く",
|
|
1120
1324
|
},
|
|
1121
1325
|
integrations: {
|
|
@@ -1293,6 +1497,35 @@ export const messagesByLocale = {
|
|
|
1293
1497
|
onboardingDescription:
|
|
1294
1498
|
"Dispatch は共有プロバイダーアカウントを管理します。各アプリはそのアカウントの使い方を管理します。",
|
|
1295
1499
|
},
|
|
1500
|
+
|
|
1501
|
+
dispatch: {
|
|
1502
|
+
nav: {
|
|
1503
|
+
automations: "自動化",
|
|
1504
|
+
approvals: "承認",
|
|
1505
|
+
delivery: "配信",
|
|
1506
|
+
agents: "エージェント",
|
|
1507
|
+
vault: "ボールト",
|
|
1508
|
+
audit: "監査",
|
|
1509
|
+
},
|
|
1510
|
+
pages: {
|
|
1511
|
+
also: "その他",
|
|
1512
|
+
workspaceShortcutsAria: "ワークスペースのショートカット",
|
|
1513
|
+
deliveryQueue: "配信キュー",
|
|
1514
|
+
failedLastHour: "過去 1 時間で {{count}} 件失敗",
|
|
1515
|
+
processingCount: "{{count}} 件処理中",
|
|
1516
|
+
queued: "待機中",
|
|
1517
|
+
active: "実行中",
|
|
1518
|
+
done1h: "完了 1h",
|
|
1519
|
+
failed1h: "失敗 1h",
|
|
1520
|
+
oldestQueued: "最古の待機: {{age}}",
|
|
1521
|
+
queueAgeNone: "なし",
|
|
1522
|
+
queueFailureHint:
|
|
1523
|
+
"認証情報、送信先、最近のキューエラーを確認してください。",
|
|
1524
|
+
unknownPlatform: "不明",
|
|
1525
|
+
attemptsCount: "{{count}} 回試行",
|
|
1526
|
+
noErrorMessage: "(エラーメッセージなし)",
|
|
1527
|
+
},
|
|
1528
|
+
},
|
|
1296
1529
|
}),
|
|
1297
1530
|
"ko-KR": mergeMessages({
|
|
1298
1531
|
routeTitles: {
|
|
@@ -1320,9 +1553,17 @@ export const messagesByLocale = {
|
|
|
1320
1553
|
"Dispatch의 팀 접근 권한과 공유 워크스페이스 리소스를 관리합니다.",
|
|
1321
1554
|
openTeamSettings: "팀 설정 열기",
|
|
1322
1555
|
openResourceSettings: "리소스 설정 열기",
|
|
1556
|
+
automationsTitle: "자동화",
|
|
1557
|
+
automationsDescription:
|
|
1558
|
+
"예약 또는 이벤트 트리거 작업을 검토, 일시 중지, 생성합니다.",
|
|
1559
|
+
openAutomations: "자동화 열기",
|
|
1560
|
+
deliveryTitle: "전달",
|
|
1561
|
+
deliveryDescription:
|
|
1562
|
+
"메시지 대상을 관리하고 발신 전달 대기열을 확인합니다.",
|
|
1563
|
+
openDelivery: "전달 열기",
|
|
1323
1564
|
agentTitle: "에이전트 설정",
|
|
1324
1565
|
agentDescription:
|
|
1325
|
-
"오른쪽 사이드바의 에이전트 설정을 열어 모델, API 키,
|
|
1566
|
+
"오른쪽 사이드바의 에이전트 설정을 열어 모델, API 키, 음성 및 기타 제어를 관리합니다. 예약 및 이벤트 트리거 작업은 자동화 페이지를 사용하세요.",
|
|
1326
1567
|
openAgentSettings: "에이전트 설정 열기",
|
|
1327
1568
|
},
|
|
1328
1569
|
integrations: {
|
|
@@ -1497,6 +1738,34 @@ export const messagesByLocale = {
|
|
|
1497
1738
|
onboardingDescription:
|
|
1498
1739
|
"Dispatch는 공유 공급자 계정을 소유합니다. 각 앱은 계정 사용 방식을 소유합니다.",
|
|
1499
1740
|
},
|
|
1741
|
+
|
|
1742
|
+
dispatch: {
|
|
1743
|
+
nav: {
|
|
1744
|
+
automations: "자동화",
|
|
1745
|
+
approvals: "승인",
|
|
1746
|
+
delivery: "전달",
|
|
1747
|
+
agents: "에이전트",
|
|
1748
|
+
vault: "볼트",
|
|
1749
|
+
audit: "감사",
|
|
1750
|
+
},
|
|
1751
|
+
pages: {
|
|
1752
|
+
also: "또한",
|
|
1753
|
+
workspaceShortcutsAria: "워크스페이스 바로가기",
|
|
1754
|
+
deliveryQueue: "전달 대기열",
|
|
1755
|
+
failedLastHour: "지난 1시간 동안 {{count}}건 실패",
|
|
1756
|
+
processingCount: "{{count}}건 처리 중",
|
|
1757
|
+
queued: "대기 중",
|
|
1758
|
+
active: "진행 중",
|
|
1759
|
+
done1h: "완료 1시간",
|
|
1760
|
+
failed1h: "실패 1시간",
|
|
1761
|
+
oldestQueued: "가장 오래된 대기: {{age}}",
|
|
1762
|
+
queueAgeNone: "없음",
|
|
1763
|
+
queueFailureHint: "자격 증명, 대상, 최근 대기열 오류를 확인하세요.",
|
|
1764
|
+
unknownPlatform: "알 수 없음",
|
|
1765
|
+
attemptsCount: "{{count}}회 시도",
|
|
1766
|
+
noErrorMessage: "(오류 메시지 없음)",
|
|
1767
|
+
},
|
|
1768
|
+
},
|
|
1500
1769
|
}),
|
|
1501
1770
|
"pt-BR": mergeMessages({
|
|
1502
1771
|
routeTitles: {
|
|
@@ -1525,9 +1794,17 @@ export const messagesByLocale = {
|
|
|
1525
1794
|
"Gerencie acesso da equipe e recursos compartilhados do Dispatch.",
|
|
1526
1795
|
openTeamSettings: "Abrir configurações da equipe",
|
|
1527
1796
|
openResourceSettings: "Abrir configurações de recursos",
|
|
1797
|
+
automationsTitle: "Automações",
|
|
1798
|
+
automationsDescription:
|
|
1799
|
+
"Revise, pause e crie trabalhos agendados ou acionados por eventos.",
|
|
1800
|
+
openAutomations: "Abrir automações",
|
|
1801
|
+
deliveryTitle: "Entrega",
|
|
1802
|
+
deliveryDescription:
|
|
1803
|
+
"Gerencie destinos de mensagens e verifique a fila de entrega de saída.",
|
|
1804
|
+
openDelivery: "Abrir entrega",
|
|
1528
1805
|
agentTitle: "Configurações do agente",
|
|
1529
1806
|
agentDescription:
|
|
1530
|
-
"Abra as configurações do agente na barra lateral para modelos, chaves de API,
|
|
1807
|
+
"Abra as configurações do agente na barra lateral para modelos, chaves de API, voz e outros controles. Use a página de Automações para trabalhos agendados e acionados por eventos.",
|
|
1531
1808
|
openAgentSettings: "Abrir configurações do agente",
|
|
1532
1809
|
},
|
|
1533
1810
|
integrations: {
|
|
@@ -1712,6 +1989,35 @@ export const messagesByLocale = {
|
|
|
1712
1989
|
onboardingDescription:
|
|
1713
1990
|
"Dispatch possui as contas compartilhadas de provedores. Cada app possui como usa a conta.",
|
|
1714
1991
|
},
|
|
1992
|
+
|
|
1993
|
+
dispatch: {
|
|
1994
|
+
nav: {
|
|
1995
|
+
automations: "Automações",
|
|
1996
|
+
approvals: "Aprovações",
|
|
1997
|
+
delivery: "Entrega",
|
|
1998
|
+
agents: "Agentes",
|
|
1999
|
+
vault: "Cofre",
|
|
2000
|
+
audit: "Auditoria",
|
|
2001
|
+
},
|
|
2002
|
+
pages: {
|
|
2003
|
+
also: "Também",
|
|
2004
|
+
workspaceShortcutsAria: "Atalhos do espaço de trabalho",
|
|
2005
|
+
deliveryQueue: "Fila de entrega",
|
|
2006
|
+
failedLastHour: "{{count}} falhas na última hora",
|
|
2007
|
+
processingCount: "{{count}} em processamento",
|
|
2008
|
+
queued: "Na fila",
|
|
2009
|
+
active: "Ativo",
|
|
2010
|
+
done1h: "Concluído 1 h",
|
|
2011
|
+
failed1h: "Falhou 1 h",
|
|
2012
|
+
oldestQueued: "Mais antigo na fila: {{age}}",
|
|
2013
|
+
queueAgeNone: "nenhum",
|
|
2014
|
+
queueFailureHint:
|
|
2015
|
+
"Verifique credenciais, destinos e erros recentes da fila.",
|
|
2016
|
+
unknownPlatform: "desconhecido",
|
|
2017
|
+
attemptsCount: "{{count}} tentativas",
|
|
2018
|
+
noErrorMessage: "(sem mensagem de erro)",
|
|
2019
|
+
},
|
|
2020
|
+
},
|
|
1715
2021
|
}),
|
|
1716
2022
|
"hi-IN": mergeMessages({
|
|
1717
2023
|
routeTitles: {
|
|
@@ -1738,9 +2044,16 @@ export const messagesByLocale = {
|
|
|
1738
2044
|
"Dispatch के लिए टीम पहुंच और साझा कार्यस्थान संसाधनों को प्रबंधित करें।",
|
|
1739
2045
|
openTeamSettings: "टीम सेटिंग्स खोलें",
|
|
1740
2046
|
openResourceSettings: "संसाधन सेटिंग्स खोलें",
|
|
2047
|
+
automationsTitle: "ऑटोमेशन",
|
|
2048
|
+
automationsDescription:
|
|
2049
|
+
"शेड्यूल या इवेंट-ट्रिगर जॉब्स की समीक्षा करें, रोकें और बनाएं।",
|
|
2050
|
+
openAutomations: "ऑटोमेशन खोलें",
|
|
2051
|
+
deliveryTitle: "डिलीवरी",
|
|
2052
|
+
deliveryDescription: "संदेश गंतव्य प्रबंधित करें और आउटबाउंड डिलीवरी कतार जांचें।",
|
|
2053
|
+
openDelivery: "डिलीवरी खोलें",
|
|
1741
2054
|
agentTitle: "एजेंट सेटिंग्स",
|
|
1742
2055
|
agentDescription:
|
|
1743
|
-
"मॉडल, API कुंजियों,
|
|
2056
|
+
"मॉडल, API कुंजियों, आवाज़ और अन्य एजेंट नियंत्रणों के लिए साइडबार सेटिंग्स खोलें। शेड्यूल और इवेंट-ट्रिगर जॉब्स के लिए ऑटोमेशन पेज का उपयोग करें।",
|
|
1744
2057
|
openAgentSettings: "एजेंट सेटिंग्स खोलें",
|
|
1745
2058
|
},
|
|
1746
2059
|
integrations: {
|
|
@@ -1911,6 +2224,34 @@ export const messagesByLocale = {
|
|
|
1911
2224
|
onboardingDescription:
|
|
1912
2225
|
"Dispatch साझा प्रदाता खातों का स्वामी है। हर ऐप खाते का उपयोग कैसे करता है, यह वही संभालता है।",
|
|
1913
2226
|
},
|
|
2227
|
+
|
|
2228
|
+
dispatch: {
|
|
2229
|
+
nav: {
|
|
2230
|
+
automations: "ऑटोमेशन",
|
|
2231
|
+
approvals: "अनुमोदन",
|
|
2232
|
+
delivery: "डिलीवरी",
|
|
2233
|
+
agents: "एजेंट",
|
|
2234
|
+
vault: "वॉल्ट",
|
|
2235
|
+
audit: "ऑडिट",
|
|
2236
|
+
},
|
|
2237
|
+
pages: {
|
|
2238
|
+
also: "और भी",
|
|
2239
|
+
workspaceShortcutsAria: "कार्यस्थान शॉर्टकट",
|
|
2240
|
+
deliveryQueue: "डिलीवरी कतार",
|
|
2241
|
+
failedLastHour: "पिछले घंटे में {{count}} विफल",
|
|
2242
|
+
processingCount: "{{count}} प्रोसेस हो रहे हैं",
|
|
2243
|
+
queued: "कतार में",
|
|
2244
|
+
active: "सक्रिय",
|
|
2245
|
+
done1h: "पूर्ण 1घं",
|
|
2246
|
+
failed1h: "विफल 1घं",
|
|
2247
|
+
oldestQueued: "सबसे पुराना कतार में: {{age}}",
|
|
2248
|
+
queueAgeNone: "कोई नहीं",
|
|
2249
|
+
queueFailureHint: "क्रेडेंशियल, गंतव्य और हाल की कतार त्रुटियाँ जाँचें।",
|
|
2250
|
+
unknownPlatform: "अज्ञात",
|
|
2251
|
+
attemptsCount: "{{count}} प्रयास",
|
|
2252
|
+
noErrorMessage: "(कोई त्रुटि संदेश नहीं)",
|
|
2253
|
+
},
|
|
2254
|
+
},
|
|
1914
2255
|
}),
|
|
1915
2256
|
"ar-SA": mergeMessages({
|
|
1916
2257
|
routeTitles: {
|
|
@@ -1937,9 +2278,16 @@ export const messagesByLocale = {
|
|
|
1937
2278
|
"إدارة وصول الفريق وموارد مساحة العمل المشتركة في Dispatch.",
|
|
1938
2279
|
openTeamSettings: "فتح إعدادات الفريق",
|
|
1939
2280
|
openResourceSettings: "فتح إعدادات الموارد",
|
|
2281
|
+
automationsTitle: "الأتمتة",
|
|
2282
|
+
automationsDescription: "راجع وأوقف وأنشئ مهامًا مجدولة أو مُشغَّلة بالأحداث.",
|
|
2283
|
+
openAutomations: "فتح الأتمتة",
|
|
2284
|
+
deliveryTitle: "التسليم",
|
|
2285
|
+
deliveryDescription:
|
|
2286
|
+
"إدارة وجهات الرسائل وفحص قائمة انتظار التسليم الصادرة.",
|
|
2287
|
+
openDelivery: "فتح التسليم",
|
|
1940
2288
|
agentTitle: "إعدادات الوكيل",
|
|
1941
2289
|
agentDescription:
|
|
1942
|
-
"افتح إعدادات الوكيل في الشريط الجانبي لإدارة النموذج ومفاتيح API
|
|
2290
|
+
"افتح إعدادات الوكيل في الشريط الجانبي لإدارة النموذج ومفاتيح API والصوت وعناصر التحكم الأخرى. استخدم صفحة الأتمتة للمهام المجدولة والمُشغَّلة بالأحداث.",
|
|
1943
2291
|
openAgentSettings: "فتح إعدادات الوكيل",
|
|
1944
2292
|
},
|
|
1945
2293
|
integrations: {
|
|
@@ -2145,5 +2493,34 @@ export const messagesByLocale = {
|
|
|
2145
2493
|
onboardingDescription:
|
|
2146
2494
|
"يمتلك Dispatch حسابات المزوّدين المشتركة. ويمتلك كل تطبيق طريقة استخدامه للحساب.",
|
|
2147
2495
|
},
|
|
2496
|
+
|
|
2497
|
+
dispatch: {
|
|
2498
|
+
nav: {
|
|
2499
|
+
automations: "الأتمتة",
|
|
2500
|
+
approvals: "الموافقات",
|
|
2501
|
+
delivery: "التسليم",
|
|
2502
|
+
agents: "الوكلاء",
|
|
2503
|
+
vault: "الخزنة",
|
|
2504
|
+
audit: "التدقيق",
|
|
2505
|
+
},
|
|
2506
|
+
pages: {
|
|
2507
|
+
also: "أيضًا",
|
|
2508
|
+
workspaceShortcutsAria: "اختصارات مساحة العمل",
|
|
2509
|
+
deliveryQueue: "قائمة انتظار التسليم",
|
|
2510
|
+
failedLastHour: "{{count}} فشل خلال الساعة الماضية",
|
|
2511
|
+
processingCount: "{{count}} قيد المعالجة",
|
|
2512
|
+
queued: "في الانتظار",
|
|
2513
|
+
active: "نشط",
|
|
2514
|
+
done1h: "تم خلال ساعة",
|
|
2515
|
+
failed1h: "فشل خلال ساعة",
|
|
2516
|
+
oldestQueued: "الأقدم في الانتظار: {{age}}",
|
|
2517
|
+
queueAgeNone: "لا شيء",
|
|
2518
|
+
queueFailureHint:
|
|
2519
|
+
"تحقق من بيانات الاعتماد والوجهات وأخطاء قائمة الانتظار الأخيرة.",
|
|
2520
|
+
unknownPlatform: "غير معروف",
|
|
2521
|
+
attemptsCount: "{{count}} محاولات",
|
|
2522
|
+
noErrorMessage: "(لا توجد رسالة خطأ)",
|
|
2523
|
+
},
|
|
2524
|
+
},
|
|
2148
2525
|
}),
|
|
2149
2526
|
} satisfies Record<LocaleCode, Messages>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default, meta } from "@agent-native/dispatch/routes/pages/automations";
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"@types/node": "^24.2.1",
|
|
35
35
|
"@types/react": "catalog:",
|
|
36
36
|
"@types/react-dom": "catalog:",
|
|
37
|
-
"@typescript/native-preview": "catalog:",
|
|
38
37
|
"oxfmt": "catalog:",
|
|
39
38
|
"react": "catalog:",
|
|
40
39
|
"react-dom": "catalog:",
|
|
41
40
|
"react-router": "^8.1.0",
|
|
42
41
|
"tailwindcss": "catalog:",
|
|
43
42
|
"tsx": "^4.20.3",
|
|
44
|
-
"typescript": "
|
|
43
|
+
"typescript": "catalog:",
|
|
44
|
+
"typescript-7": "catalog:",
|
|
45
45
|
"vite": "catalog:",
|
|
46
46
|
"vitest": "catalog:"
|
|
47
47
|
}
|
|
@@ -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
|