@agent-native/core 0.114.16 → 0.115.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agent-native.eject.json +2 -0
- package/corpus/README.md +3 -3
- package/corpus/core/CHANGELOG.md +29 -0
- package/corpus/core/agent-native.eject.json +2 -0
- package/corpus/core/docs/content/agent-native-toolkit.mdx +16 -0
- package/corpus/core/docs/content/recurring-jobs.mdx +35 -6
- package/corpus/core/export-snapshot.json +4 -0
- package/corpus/core/package.json +5 -1
- package/corpus/core/src/action.ts +22 -1
- package/corpus/core/src/agent/production-agent.ts +105 -3
- package/corpus/core/src/cli/templates-meta.ts +12 -0
- package/corpus/core/src/client/AssistantChat.tsx +53 -26
- package/corpus/core/src/client/agent-page/AgentJobsTab.tsx +19 -0
- package/corpus/core/src/client/agent-page/use-jobs.ts +1 -0
- package/corpus/core/src/client/chat/message-components.tsx +35 -1
- package/corpus/core/src/client/chat/tool-call-display.tsx +38 -3
- package/corpus/core/src/connections/catalog.ts +20 -1
- package/corpus/core/src/connections/reader.ts +65 -0
- package/corpus/core/src/dashboard-storage/index.ts +27 -0
- package/corpus/core/src/dashboard-storage/panel-source.ts +168 -0
- package/corpus/core/src/dashboard-storage/schema.ts +62 -0
- package/corpus/core/src/dashboard-storage/store.ts +333 -0
- package/corpus/core/src/deploy/build.ts +95 -16
- package/corpus/core/src/eject/provider-api-definitions.ts +1 -0
- package/corpus/core/src/eject/workspace-connections.ts +1 -0
- package/corpus/core/src/extensions/actions.ts +199 -73
- package/corpus/core/src/jobs/actions/list-recurring-jobs.ts +2 -0
- package/corpus/core/src/jobs/scheduler.ts +71 -4
- package/corpus/core/src/jobs/tools.ts +31 -1
- package/corpus/core/src/localization/default-messages.ts +1 -0
- package/corpus/core/src/mcp-client/index.ts +6 -0
- package/corpus/core/src/provider-api/actions/provider-api.ts +1 -1
- package/corpus/core/src/provider-api/index.ts +190 -5
- package/corpus/core/src/secrets/register-framework-secrets.ts +8 -0
- package/corpus/core/src/server/agent-chat/context-tools.ts +9 -0
- package/corpus/core/src/server/agent-chat/framework-prompts.ts +2 -2
- package/corpus/core/src/server/agent-chat-plugin.ts +22 -2
- package/corpus/core/src/server/core-routes-plugin.ts +1 -0
- package/corpus/core/src/server/credential-provider.ts +9 -3
- package/corpus/core/src/server/workspace-provider-oauth.ts +181 -4
- package/corpus/core/src/styles/agent-native.css +45 -2
- package/corpus/core/src/templates/default/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/corpus/core/src/templates/default/.agents/skills/app-branding/SKILL.md +159 -0
- package/corpus/core/src/templates/default/.agents/skills/app-permissions/SKILL.md +155 -0
- package/corpus/core/src/templates/headless/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/corpus/core/src/templates/workspace-core/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/corpus/core/src/templates/workspace-core/.agents/skills/extensions/SKILL.md +31 -18
- package/corpus/core/src/templates/workspace-core/.agents/skills/recurring-jobs/SKILL.md +15 -0
- package/corpus/core/src/triggers/actions.ts +11 -2
- package/corpus/core/src/triggers/dispatcher.ts +20 -1
- package/corpus/core/src/triggers/types.ts +5 -0
- package/corpus/core/src/vite/action-types-plugin.ts +9 -1
- package/corpus/templates/analytics/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/analytics/AGENTS.md +11 -11
- package/corpus/templates/analytics/_gitignore +39 -0
- package/corpus/templates/analytics/actions/query-dashboard-panel.ts +30 -0
- package/corpus/templates/analytics/actions/update-dashboard.ts +2 -1
- package/corpus/templates/analytics/app/lib/sql-query.ts +11 -25
- package/corpus/templates/analytics/changelog/2026-07-21-fixed-extension-updates-failing-before-changes-could-be-appl.md +6 -0
- package/corpus/templates/analytics/server/lib/dashboard-panel-query.ts +1 -0
- package/corpus/templates/analytics/server/lib/dashboard-panel-source-resolver.ts +51 -0
- package/corpus/templates/analytics/server/lib/prometheus.ts +1 -1
- package/corpus/templates/analytics/server/plugins/agent-chat.ts +1 -1
- package/corpus/templates/assets/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/brain/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/calendar/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/calendar/_gitignore +39 -0
- package/corpus/templates/chat/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/corpus/templates/chat/AGENTS.md +1 -1
- package/corpus/templates/clips/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/clips/AGENTS.md +7 -0
- package/corpus/templates/clips/actions/prepare-crm-call-evidence.ts +58 -0
- package/corpus/templates/clips/app/components/recorder/recorder-engine.ts +88 -11
- package/corpus/templates/clips/changelog/2026-07-21-crm-call-evidence-handoff.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-21-recording-retries-and-restarts-keep-their-upload-session-so-.md +6 -0
- package/corpus/templates/clips/chrome-extension/src/background.ts +20 -5
- package/corpus/templates/clips/chrome-extension/src/native-recording-state.ts +19 -0
- package/corpus/templates/clips/chrome-extension/src/offscreen.ts +8 -0
- package/corpus/templates/clips/desktop/src/overlays/recording-pill.tsx +9 -0
- package/corpus/templates/clips/desktop/src-tauri/src/recording_indicator.rs +54 -28
- package/corpus/templates/clips/server/plugins/agent-chat.ts +1 -0
- package/corpus/templates/content/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/content/_gitignore +39 -0
- package/corpus/templates/content/learnings.defaults.md +5 -0
- package/corpus/templates/crm/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/crm/.agents/skills/agent-native-toolkit/SKILL.md +133 -0
- package/corpus/templates/crm/.agents/skills/crm/SKILL.md +128 -0
- package/corpus/templates/crm/.agents/skills/customizing-agent-native/SKILL.md +145 -0
- package/corpus/templates/crm/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/crm/.agents/skills/upgrade-agent-native/SKILL.md +100 -0
- package/corpus/templates/crm/.env.example +5 -0
- package/corpus/templates/crm/AGENTS.md +120 -0
- package/corpus/templates/crm/CHANGELOG.md +1 -0
- package/corpus/templates/crm/DEVELOPING.md +66 -0
- package/corpus/templates/crm/README.md +106 -0
- package/corpus/templates/crm/_gitignore +12 -0
- package/corpus/templates/crm/actions/_crm-action-utils.ts +87 -0
- package/corpus/templates/crm/actions/_crm-dashboard.ts +69 -0
- package/corpus/templates/crm/actions/_crm-signal-utils.ts +79 -0
- package/corpus/templates/crm/actions/apply-crm-proposals.ts +203 -0
- package/corpus/templates/crm/actions/attach-call-evidence.ts +170 -0
- package/corpus/templates/crm/actions/configure-crm-connection.ts +126 -0
- package/corpus/templates/crm/actions/configure-native-crm.ts +44 -0
- package/corpus/templates/crm/actions/create-crm-record.ts +148 -0
- package/corpus/templates/crm/actions/create-crm-signal-tracker.ts +58 -0
- package/corpus/templates/crm/actions/delete-staged-dataset.ts +14 -0
- package/corpus/templates/crm/actions/get-crm-automation-recipe.ts +36 -0
- package/corpus/templates/crm/actions/get-crm-dashboard-panel.ts +33 -0
- package/corpus/templates/crm/actions/get-crm-dashboard.ts +14 -0
- package/corpus/templates/crm/actions/get-crm-overview.ts +13 -0
- package/corpus/templates/crm/actions/get-crm-pipeline-data.ts +61 -0
- package/corpus/templates/crm/actions/get-crm-record.ts +75 -0
- package/corpus/templates/crm/actions/install-crm-pipeline-dashboard.ts +81 -0
- package/corpus/templates/crm/actions/list-crm-dashboard-revisions.ts +15 -0
- package/corpus/templates/crm/actions/list-crm-dashboards.ts +15 -0
- package/corpus/templates/crm/actions/list-crm-proposals.ts +31 -0
- package/corpus/templates/crm/actions/list-crm-records.ts +79 -0
- package/corpus/templates/crm/actions/list-crm-saved-views.ts +15 -0
- package/corpus/templates/crm/actions/list-crm-signal-hits.ts +43 -0
- package/corpus/templates/crm/actions/list-crm-signal-trackers.ts +32 -0
- package/corpus/templates/crm/actions/list-crm-tasks.ts +22 -0
- package/corpus/templates/crm/actions/list-staged-datasets.ts +14 -0
- package/corpus/templates/crm/actions/list-workspace-connections.ts +47 -0
- package/corpus/templates/crm/actions/manage-crm-signal-tracker.ts +87 -0
- package/corpus/templates/crm/actions/manage-crm-task.ts +132 -0
- package/corpus/templates/crm/actions/navigate.ts +63 -0
- package/corpus/templates/crm/actions/provider-api-catalog.ts +22 -0
- package/corpus/templates/crm/actions/provider-api-docs.ts +54 -0
- package/corpus/templates/crm/actions/provider-api-request.ts +92 -0
- package/corpus/templates/crm/actions/query-staged-dataset.ts +44 -0
- package/corpus/templates/crm/actions/record-crm-call-insight.ts +160 -0
- package/corpus/templates/crm/actions/record-crm-smart-signal.ts +150 -0
- package/corpus/templates/crm/actions/restore-crm-dashboard-revision.ts +23 -0
- package/corpus/templates/crm/actions/review-crm-signal.ts +31 -0
- package/corpus/templates/crm/actions/run-crm-saved-view-program.ts +103 -0
- package/corpus/templates/crm/actions/run-crm-signal-trackers.ts +275 -0
- package/corpus/templates/crm/actions/run.ts +11 -0
- package/corpus/templates/crm/actions/save-crm-dashboard.ts +51 -0
- package/corpus/templates/crm/actions/save-crm-saved-view.ts +119 -0
- package/corpus/templates/crm/actions/sync-crm.ts +146 -0
- package/corpus/templates/crm/actions/update-crm-record.ts +508 -0
- package/corpus/templates/crm/actions/view-screen.ts +218 -0
- package/corpus/templates/crm/agent-native.app-skill.json +58 -0
- package/corpus/templates/crm/app/components/crm/CreateCrmRecordDialog.tsx +158 -0
- package/corpus/templates/crm/app/components/crm/CrmDashboardPanel.tsx +83 -0
- package/corpus/templates/crm/app/components/crm/CrmSignalsPanel.tsx +225 -0
- package/corpus/templates/crm/app/components/crm/IntelligenceSettings.tsx +413 -0
- package/corpus/templates/crm/app/components/crm/RecordActions.tsx +510 -0
- package/corpus/templates/crm/app/components/crm/RecordGrid.tsx +134 -0
- package/corpus/templates/crm/app/components/crm/RecordWorkspace.tsx +367 -0
- package/corpus/templates/crm/app/components/crm/SavedViewDataProgram.tsx +92 -0
- package/corpus/templates/crm/app/components/crm/Surface.tsx +96 -0
- package/corpus/templates/crm/app/components/crm/WorkOverview.tsx +180 -0
- package/corpus/templates/crm/app/components/layout/CrmLayout.tsx +106 -0
- package/corpus/templates/crm/app/components/layout/CrmSidebar.tsx +84 -0
- package/corpus/templates/crm/app/entry.client.tsx +16 -0
- package/corpus/templates/crm/app/entry.server.tsx +10 -0
- package/corpus/templates/crm/app/global.css +167 -0
- package/corpus/templates/crm/app/hooks/use-navigation-state.ts +60 -0
- package/corpus/templates/crm/app/i18n/en-US.ts +89 -0
- package/corpus/templates/crm/app/i18n/index.ts +34 -0
- package/corpus/templates/crm/app/lib/dashboard.ts +13 -0
- package/corpus/templates/crm/app/lib/navigation.ts +54 -0
- package/corpus/templates/crm/app/lib/tab-id.ts +1 -0
- package/corpus/templates/crm/app/lib/types.ts +172 -0
- package/corpus/templates/crm/app/lib/utils.ts +1 -0
- package/corpus/templates/crm/app/root.tsx +88 -0
- package/corpus/templates/crm/app/routes/_index.tsx +26 -0
- package/corpus/templates/crm/app/routes/accounts.tsx +41 -0
- package/corpus/templates/crm/app/routes/agent.tsx +5 -0
- package/corpus/templates/crm/app/routes/ask.tsx +53 -0
- package/corpus/templates/crm/app/routes/dashboard.tsx +118 -0
- package/corpus/templates/crm/app/routes/opportunities.tsx +41 -0
- package/corpus/templates/crm/app/routes/people.tsx +41 -0
- package/corpus/templates/crm/app/routes/proposals.tsx +266 -0
- package/corpus/templates/crm/app/routes/records.$recordId.tsx +35 -0
- package/corpus/templates/crm/app/routes/settings.tsx +63 -0
- package/corpus/templates/crm/app/routes/setup.tsx +308 -0
- package/corpus/templates/crm/app/routes/tasks.tsx +252 -0
- package/corpus/templates/crm/app/routes/views.tsx +333 -0
- package/corpus/templates/crm/app/routes.ts +17 -0
- package/corpus/templates/crm/app/vite-env.d.ts +6 -0
- package/corpus/templates/crm/changelog/2026-07-21-agent-native-crm.md +6 -0
- package/corpus/templates/crm/changelog/2026-07-21-clips-call-evidence-review-recipe.md +6 -0
- package/corpus/templates/crm/changelog/2026-07-21-crm-can-now-find-and-review-evidence-grounded-call-signals-w.md +6 -0
- package/corpus/templates/crm/changelog/2026-07-21-crm-can-now-manage-keyword-and-smart-call-signal-trackers-fr.md +6 -0
- package/corpus/templates/crm/changelog/2026-07-21-delegated-local-crm-automation.md +6 -0
- package/corpus/templates/crm/changelog/2026-07-21-native-sql.md +6 -0
- package/corpus/templates/crm/changelog/2026-07-21-pipeline-dashboard.md +6 -0
- package/corpus/templates/crm/changelog/2026-07-21-pipeline-dashboards-now-install-correctly-from-the-crm-actio.md +6 -0
- package/corpus/templates/crm/changelog/2026-07-21-salesforce-connection.md +6 -0
- package/corpus/templates/crm/components.json +20 -0
- package/corpus/templates/crm/docs/architecture/crm-contract.md +180 -0
- package/corpus/templates/crm/learnings.defaults.md +5 -0
- package/corpus/templates/crm/package.json +59 -0
- package/corpus/templates/crm/public/favicon.svg +1 -0
- package/corpus/templates/crm/public/icon-180.svg +1 -0
- package/corpus/templates/crm/public/manifest.json +11 -0
- package/corpus/templates/crm/react-router.config.ts +7 -0
- package/corpus/templates/crm/server/crm/adapter.ts +32 -0
- package/corpus/templates/crm/server/crm/crm-field-firewall.ts +64 -0
- package/corpus/templates/crm/server/crm/crm-mirror.ts +711 -0
- package/corpus/templates/crm/server/crm/hubspot-adapter.ts +1143 -0
- package/corpus/templates/crm/server/crm/native-adapter.ts +1715 -0
- package/corpus/templates/crm/server/crm/read-through.ts +207 -0
- package/corpus/templates/crm/server/crm/salesforce-adapter.ts +1255 -0
- package/corpus/templates/crm/server/db/crm-store.ts +1170 -0
- package/corpus/templates/crm/server/db/index.ts +169 -0
- package/corpus/templates/crm/server/db/schema.ts +441 -0
- package/corpus/templates/crm/server/lib/intelligence/default-detectors.ts +65 -0
- package/corpus/templates/crm/server/lib/intelligence/evidence.ts +105 -0
- package/corpus/templates/crm/server/lib/intelligence/keyword-detector.ts +100 -0
- package/corpus/templates/crm/server/lib/intelligence/smart-detector.ts +144 -0
- package/corpus/templates/crm/server/lib/intelligence/summary.ts +141 -0
- package/corpus/templates/crm/server/lib/provider-api.ts +64 -0
- package/corpus/templates/crm/server/middleware/auth.ts +4 -0
- package/corpus/templates/crm/server/plugins/agent-chat.ts +68 -0
- package/corpus/templates/crm/server/plugins/auth.ts +14 -0
- package/corpus/templates/crm/server/plugins/core-routes.ts +17 -0
- package/corpus/templates/crm/server/plugins/db.ts +454 -0
- package/corpus/templates/crm/server/routes/[...page].get.ts +5 -0
- package/corpus/templates/crm/shared/crm-automation-recipes.ts +132 -0
- package/corpus/templates/crm/shared/crm-contract.ts +254 -0
- package/corpus/templates/crm/shared/crm-sales-config.ts +63 -0
- package/corpus/templates/crm/ssr-entry.ts +11 -0
- package/corpus/templates/crm/tsconfig.json +24 -0
- package/corpus/templates/crm/vite.config.ts +15 -0
- package/corpus/templates/crm/vitest.config.ts +5 -0
- package/corpus/templates/design/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/dispatch/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/forms/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/forms/_gitignore +39 -0
- package/corpus/templates/forms/learnings.defaults.md +5 -0
- package/corpus/templates/macros/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/macros/_gitignore +39 -0
- package/corpus/templates/macros/learnings.defaults.md +5 -0
- package/corpus/templates/mail/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/mail/_gitignore +39 -0
- package/corpus/templates/plan/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/slides/.agents/skills/agent-native-docs/SKILL.md +115 -0
- package/corpus/templates/slides/_gitignore +39 -0
- package/corpus/templates/tasks/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/corpus/templates/tasks/_gitignore +39 -0
- package/corpus/toolkit/CHANGELOG.md +12 -0
- package/corpus/toolkit/README.md +30 -0
- package/corpus/toolkit/agent-native.eject.json +33 -0
- package/corpus/toolkit/package.json +15 -1
- package/corpus/toolkit/src/dashboard/DataTable.tsx +273 -0
- package/corpus/toolkit/src/dashboard/DateRangePicker.tsx +57 -0
- package/corpus/toolkit/src/dashboard/GenericChartPanel.tsx +461 -0
- package/corpus/toolkit/src/dashboard/MetricCard.tsx +54 -0
- package/corpus/toolkit/src/dashboard/StatsCard.tsx +49 -0
- package/corpus/toolkit/src/dashboard/dashboard-layout.ts +329 -0
- package/corpus/toolkit/src/dashboard/index.ts +6 -0
- package/corpus/toolkit/src/index.ts +1 -0
- package/corpus/toolkit/src/ui/calendar.tsx +8 -8
- package/corpus/toolkit/src/ui/date-picker.tsx +4 -1
- package/dist/action.d.ts +14 -1
- package/dist/action.d.ts.map +1 -1
- package/dist/action.js.map +1 -1
- package/dist/agent/production-agent.d.ts +3 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +83 -3
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/cli/templates-meta.d.ts.map +1 -1
- package/dist/cli/templates-meta.js +12 -0
- package/dist/cli/templates-meta.js.map +1 -1
- package/dist/client/AssistantChat.d.ts +4 -0
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +30 -17
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/agent-page/AgentJobsTab.d.ts.map +1 -1
- package/dist/client/agent-page/AgentJobsTab.js +3 -1
- package/dist/client/agent-page/AgentJobsTab.js.map +1 -1
- package/dist/client/agent-page/use-jobs.d.ts +1 -0
- package/dist/client/agent-page/use-jobs.d.ts.map +1 -1
- package/dist/client/agent-page/use-jobs.js.map +1 -1
- package/dist/client/chat/message-components.d.ts +5 -0
- package/dist/client/chat/message-components.d.ts.map +1 -1
- package/dist/client/chat/message-components.js +17 -1
- package/dist/client/chat/message-components.js.map +1 -1
- package/dist/client/chat/tool-call-display.d.ts +3 -1
- package/dist/client/chat/tool-call-display.d.ts.map +1 -1
- package/dist/client/chat/tool-call-display.js +17 -7
- package/dist/client/chat/tool-call-display.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/connections/catalog.d.ts +17 -3
- package/dist/connections/catalog.d.ts.map +1 -1
- package/dist/connections/catalog.js +16 -1
- package/dist/connections/catalog.js.map +1 -1
- package/dist/connections/reader.d.ts +18 -0
- package/dist/connections/reader.d.ts.map +1 -1
- package/dist/connections/reader.js +41 -0
- package/dist/connections/reader.js.map +1 -1
- package/dist/dashboard-storage/index.d.ts +4 -0
- package/dist/dashboard-storage/index.d.ts.map +1 -0
- package/dist/dashboard-storage/index.js +4 -0
- package/dist/dashboard-storage/index.js.map +1 -0
- package/dist/dashboard-storage/panel-source.d.ts +68 -0
- package/dist/dashboard-storage/panel-source.d.ts.map +1 -0
- package/dist/dashboard-storage/panel-source.js +76 -0
- package/dist/dashboard-storage/panel-source.js.map +1 -0
- package/dist/dashboard-storage/schema.d.ts +562 -0
- package/dist/dashboard-storage/schema.d.ts.map +1 -0
- package/dist/dashboard-storage/schema.js +32 -0
- package/dist/dashboard-storage/schema.js.map +1 -0
- package/dist/dashboard-storage/store.d.ts +62 -0
- package/dist/dashboard-storage/store.d.ts.map +1 -0
- package/dist/dashboard-storage/store.js +227 -0
- package/dist/dashboard-storage/store.js.map +1 -0
- package/dist/deploy/build.d.ts +7 -0
- package/dist/deploy/build.d.ts.map +1 -1
- package/dist/deploy/build.js +78 -14
- package/dist/deploy/build.js.map +1 -1
- package/dist/eject/provider-api-definitions.d.ts +2 -1
- package/dist/eject/provider-api-definitions.d.ts.map +1 -1
- package/dist/eject/provider-api-definitions.js +1 -0
- package/dist/eject/provider-api-definitions.js.map +1 -1
- package/dist/eject/workspace-connections.d.ts.map +1 -1
- package/dist/eject/workspace-connections.js +1 -0
- package/dist/eject/workspace-connections.js.map +1 -1
- package/dist/extensions/actions.d.ts.map +1 -1
- package/dist/extensions/actions.js +165 -67
- package/dist/extensions/actions.js.map +1 -1
- package/dist/file-upload/actions/upload-image.d.ts +1 -1
- package/dist/jobs/actions/list-recurring-jobs.d.ts +1 -0
- package/dist/jobs/actions/list-recurring-jobs.d.ts.map +1 -1
- package/dist/jobs/actions/list-recurring-jobs.js +1 -0
- package/dist/jobs/actions/list-recurring-jobs.js.map +1 -1
- package/dist/jobs/scheduler.d.ts +17 -2
- package/dist/jobs/scheduler.d.ts.map +1 -1
- package/dist/jobs/scheduler.js +51 -2
- package/dist/jobs/scheduler.js.map +1 -1
- package/dist/jobs/tools.d.ts.map +1 -1
- package/dist/jobs/tools.js +32 -2
- package/dist/jobs/tools.js.map +1 -1
- package/dist/localization/default-messages.d.ts +1 -0
- package/dist/localization/default-messages.d.ts.map +1 -1
- package/dist/localization/default-messages.js +1 -0
- package/dist/localization/default-messages.js.map +1 -1
- package/dist/mcp-client/index.d.ts +2 -0
- package/dist/mcp-client/index.d.ts.map +1 -1
- package/dist/mcp-client/index.js +5 -0
- package/dist/mcp-client/index.js.map +1 -1
- package/dist/notifications/routes.d.ts +3 -3
- package/dist/observability/routes.d.ts +5 -5
- package/dist/provider-api/actions/custom-provider-registration.d.ts +8 -8
- package/dist/provider-api/actions/provider-api.d.ts +8 -6
- package/dist/provider-api/actions/provider-api.d.ts.map +1 -1
- package/dist/provider-api/actions/provider-api.js +1 -1
- package/dist/provider-api/actions/provider-api.js.map +1 -1
- package/dist/provider-api/index.d.ts +11 -7
- package/dist/provider-api/index.d.ts.map +1 -1
- package/dist/provider-api/index.js +143 -5
- package/dist/provider-api/index.js.map +1 -1
- package/dist/resources/handlers.d.ts +1 -1
- package/dist/secrets/register-framework-secrets.d.ts.map +1 -1
- package/dist/secrets/register-framework-secrets.js +7 -0
- package/dist/secrets/register-framework-secrets.js.map +1 -1
- package/dist/secrets/routes.d.ts +9 -9
- package/dist/server/agent-chat/context-tools.d.ts.map +1 -1
- package/dist/server/agent-chat/context-tools.js +9 -0
- package/dist/server/agent-chat/context-tools.js.map +1 -1
- package/dist/server/agent-chat/framework-prompts.js +2 -2
- package/dist/server/agent-chat/framework-prompts.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +18 -2
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/core-routes-plugin.d.ts.map +1 -1
- package/dist/server/core-routes-plugin.js +1 -0
- package/dist/server/core-routes-plugin.js.map +1 -1
- package/dist/server/credential-provider.d.ts +4 -3
- package/dist/server/credential-provider.d.ts.map +1 -1
- package/dist/server/credential-provider.js +9 -3
- package/dist/server/credential-provider.js.map +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/dist/server/workspace-provider-oauth.d.ts +6 -1
- package/dist/server/workspace-provider-oauth.d.ts.map +1 -1
- package/dist/server/workspace-provider-oauth.js +141 -4
- package/dist/server/workspace-provider-oauth.js.map +1 -1
- package/dist/styles/agent-native.css +45 -2
- package/dist/templates/chat/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/dist/templates/chat/AGENTS.md +1 -1
- package/dist/templates/default/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/dist/templates/default/.agents/skills/app-branding/SKILL.md +159 -0
- package/dist/templates/default/.agents/skills/app-permissions/SKILL.md +155 -0
- package/dist/templates/headless/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/dist/templates/workspace-core/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/dist/templates/workspace-core/.agents/skills/extensions/SKILL.md +31 -18
- package/dist/templates/workspace-core/.agents/skills/recurring-jobs/SKILL.md +15 -0
- package/dist/triggers/actions.d.ts.map +1 -1
- package/dist/triggers/actions.js +10 -2
- package/dist/triggers/actions.js.map +1 -1
- package/dist/triggers/dispatcher.d.ts.map +1 -1
- package/dist/triggers/dispatcher.js +15 -0
- package/dist/triggers/dispatcher.js.map +1 -1
- package/dist/triggers/types.d.ts +5 -0
- package/dist/triggers/types.d.ts.map +1 -1
- package/dist/triggers/types.js.map +1 -1
- package/dist/vite/action-types-plugin.d.ts.map +1 -1
- package/dist/vite/action-types-plugin.js +4 -1
- package/dist/vite/action-types-plugin.js.map +1 -1
- package/docs/content/agent-native-toolkit.mdx +16 -0
- package/docs/content/recurring-jobs.mdx +35 -6
- package/package.json +6 -2
- package/src/action.ts +22 -1
- package/src/agent/production-agent.ts +105 -3
- package/src/cli/templates-meta.ts +12 -0
- package/src/client/AssistantChat.tsx +53 -26
- package/src/client/agent-page/AgentJobsTab.tsx +19 -0
- package/src/client/agent-page/use-jobs.ts +1 -0
- package/src/client/chat/message-components.tsx +35 -1
- package/src/client/chat/tool-call-display.tsx +38 -3
- package/src/connections/catalog.ts +20 -1
- package/src/connections/reader.ts +65 -0
- package/src/dashboard-storage/index.ts +27 -0
- package/src/dashboard-storage/panel-source.ts +168 -0
- package/src/dashboard-storage/schema.ts +62 -0
- package/src/dashboard-storage/store.ts +333 -0
- package/src/deploy/build.ts +95 -16
- package/src/eject/provider-api-definitions.ts +1 -0
- package/src/eject/workspace-connections.ts +1 -0
- package/src/extensions/actions.ts +199 -73
- package/src/jobs/actions/list-recurring-jobs.ts +2 -0
- package/src/jobs/scheduler.ts +71 -4
- package/src/jobs/tools.ts +31 -1
- package/src/localization/default-messages.ts +1 -0
- package/src/mcp-client/index.ts +6 -0
- package/src/provider-api/actions/provider-api.ts +1 -1
- package/src/provider-api/index.ts +190 -5
- package/src/secrets/register-framework-secrets.ts +8 -0
- package/src/server/agent-chat/context-tools.ts +9 -0
- package/src/server/agent-chat/framework-prompts.ts +2 -2
- package/src/server/agent-chat-plugin.ts +22 -2
- package/src/server/core-routes-plugin.ts +1 -0
- package/src/server/credential-provider.ts +9 -3
- package/src/server/workspace-provider-oauth.ts +181 -4
- package/src/styles/agent-native.css +45 -2
- package/src/templates/chat/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/src/templates/chat/AGENTS.md +1 -1
- package/src/templates/default/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/src/templates/default/.agents/skills/app-branding/SKILL.md +159 -0
- package/src/templates/default/.agents/skills/app-permissions/SKILL.md +155 -0
- package/src/templates/headless/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/src/templates/workspace-core/.agents/skills/agent-native-docs/SKILL.md +27 -0
- package/src/templates/workspace-core/.agents/skills/extensions/SKILL.md +31 -18
- package/src/templates/workspace-core/.agents/skills/recurring-jobs/SKILL.md +15 -0
- package/src/triggers/actions.ts +11 -2
- package/src/triggers/dispatcher.ts +20 -1
- package/src/triggers/types.ts +5 -0
- package/src/vite/action-types-plugin.ts +9 -1
- package/corpus/templates/analytics/server/handlers/sql-query.ts +0 -36
- package/corpus/templates/analytics/server/routes/api/sql-query.post.ts +0 -1
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { defineAction, type ActionRunContext } from "@agent-native/core/action";
|
|
2
|
+
import { accessFilter } from "@agent-native/core/sharing";
|
|
3
|
+
import { and, asc, eq } from "drizzle-orm";
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
|
|
6
|
+
import { getDb, schema } from "../server/db/index.js";
|
|
7
|
+
import { requireDashboardAccess } from "./_crm-dashboard.js";
|
|
8
|
+
|
|
9
|
+
const MAX_PIPELINE_RECORDS = 500;
|
|
10
|
+
|
|
11
|
+
export default defineAction({
|
|
12
|
+
description:
|
|
13
|
+
"Return bounded, access-scoped pipeline totals grouped by opportunity stage. This is the CRM-owned read source for the Pipeline dashboard data program.",
|
|
14
|
+
schema: z.object({}),
|
|
15
|
+
http: { method: "GET" },
|
|
16
|
+
readOnly: true,
|
|
17
|
+
run: async (_args, ctx?: ActionRunContext) => {
|
|
18
|
+
const access = requireDashboardAccess(ctx);
|
|
19
|
+
const records = await getDb()
|
|
20
|
+
.select({
|
|
21
|
+
stage: schema.crmRecords.stage,
|
|
22
|
+
amount: schema.crmRecords.amount,
|
|
23
|
+
})
|
|
24
|
+
.from(schema.crmRecords)
|
|
25
|
+
.where(
|
|
26
|
+
and(
|
|
27
|
+
eq(schema.crmRecords.kind, "opportunity"),
|
|
28
|
+
eq(schema.crmRecords.tombstone, false),
|
|
29
|
+
accessFilter(schema.crmRecords, schema.crmRecordShares, access),
|
|
30
|
+
),
|
|
31
|
+
)
|
|
32
|
+
.orderBy(asc(schema.crmRecords.stage))
|
|
33
|
+
.limit(MAX_PIPELINE_RECORDS);
|
|
34
|
+
|
|
35
|
+
const stages = new Map<
|
|
36
|
+
string,
|
|
37
|
+
{ stage: string; pipelineValue: number; opportunities: number }
|
|
38
|
+
>();
|
|
39
|
+
for (const record of records) {
|
|
40
|
+
const stage = record.stage?.trim() || "Unstaged";
|
|
41
|
+
const total = stages.get(stage) ?? {
|
|
42
|
+
stage,
|
|
43
|
+
pipelineValue: 0,
|
|
44
|
+
opportunities: 0,
|
|
45
|
+
};
|
|
46
|
+
total.pipelineValue += Number.isFinite(record.amount)
|
|
47
|
+
? record.amount!
|
|
48
|
+
: 0;
|
|
49
|
+
total.opportunities += 1;
|
|
50
|
+
stages.set(stage, total);
|
|
51
|
+
}
|
|
52
|
+
const rows = [...stages.values()].sort((a, b) =>
|
|
53
|
+
a.stage.localeCompare(b.stage),
|
|
54
|
+
);
|
|
55
|
+
return {
|
|
56
|
+
rows,
|
|
57
|
+
truncated: records.length === MAX_PIPELINE_RECORDS,
|
|
58
|
+
sourceRecordLimit: MAX_PIPELINE_RECORDS,
|
|
59
|
+
};
|
|
60
|
+
},
|
|
61
|
+
});
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { defineAction, type ActionRunContext } from "@agent-native/core/action";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
import {
|
|
5
|
+
createConnectedCrmAdapter,
|
|
6
|
+
isConnectedCrmProvider,
|
|
7
|
+
} from "../server/crm/adapter.js";
|
|
8
|
+
import { createNativeCrmAdapter } from "../server/crm/native-adapter.js";
|
|
9
|
+
import { loadVerifiedReadThroughRecord } from "../server/crm/read-through.js";
|
|
10
|
+
import {
|
|
11
|
+
getCrmRecord,
|
|
12
|
+
getCrmRecordReadContext,
|
|
13
|
+
getReadThroughRelationshipSummaries,
|
|
14
|
+
} from "../server/db/crm-store.js";
|
|
15
|
+
|
|
16
|
+
export default defineAction({
|
|
17
|
+
description:
|
|
18
|
+
"Return one access-scoped CRM record with bounded mirrored fields, recent interaction metadata, call-evidence references, and tasks. It never returns raw provider payloads, media, or transcripts.",
|
|
19
|
+
schema: z.object({
|
|
20
|
+
recordId: z.string().min(1).describe("Local CRM record ID."),
|
|
21
|
+
}),
|
|
22
|
+
http: { method: "GET" },
|
|
23
|
+
readOnly: true,
|
|
24
|
+
run: async ({ recordId }, ctx?: ActionRunContext) => {
|
|
25
|
+
const context = await getCrmRecordReadContext(recordId);
|
|
26
|
+
if (!context) {
|
|
27
|
+
const error = new Error("CRM record not found") as Error & {
|
|
28
|
+
statusCode?: number;
|
|
29
|
+
};
|
|
30
|
+
error.statusCode = 404;
|
|
31
|
+
throw error;
|
|
32
|
+
}
|
|
33
|
+
const adapter =
|
|
34
|
+
context.provider === "native"
|
|
35
|
+
? await createNativeCrmAdapter({
|
|
36
|
+
connectionId: context.connectionId,
|
|
37
|
+
accessTier: "viewer",
|
|
38
|
+
})
|
|
39
|
+
: isConnectedCrmProvider(context.provider) &&
|
|
40
|
+
context.workspaceConnectionId
|
|
41
|
+
? await createConnectedCrmAdapter({
|
|
42
|
+
provider: context.provider,
|
|
43
|
+
connectionId: context.workspaceConnectionId,
|
|
44
|
+
...(ctx?.userEmail ? { userEmail: ctx.userEmail } : {}),
|
|
45
|
+
...(ctx?.orgId !== undefined ? { orgId: ctx.orgId } : {}),
|
|
46
|
+
})
|
|
47
|
+
: null;
|
|
48
|
+
if (!adapter) {
|
|
49
|
+
throw new Error("CRM access cannot be verified for this record.");
|
|
50
|
+
}
|
|
51
|
+
const readThrough = await loadVerifiedReadThroughRecord({
|
|
52
|
+
adapter,
|
|
53
|
+
context,
|
|
54
|
+
});
|
|
55
|
+
const relatedRecords = await getReadThroughRelationshipSummaries({
|
|
56
|
+
context,
|
|
57
|
+
relationships: readThrough.relationships,
|
|
58
|
+
currentScopes: readThrough.currentScopes,
|
|
59
|
+
});
|
|
60
|
+
const record = await getCrmRecord(recordId, {
|
|
61
|
+
displayName: readThrough.remote.displayName,
|
|
62
|
+
fields: readThrough.remote.fields,
|
|
63
|
+
remoteRevision: readThrough.remote.remoteRevision,
|
|
64
|
+
remoteUpdatedAt: readThrough.remote.remoteUpdatedAt,
|
|
65
|
+
relatedRecords,
|
|
66
|
+
accessScope: readThrough.currentScope,
|
|
67
|
+
});
|
|
68
|
+
if (record) return record;
|
|
69
|
+
const error = new Error("CRM record not found") as Error & {
|
|
70
|
+
statusCode?: number;
|
|
71
|
+
};
|
|
72
|
+
error.statusCode = 404;
|
|
73
|
+
throw error;
|
|
74
|
+
},
|
|
75
|
+
});
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { defineAction, type ActionRunContext } from "@agent-native/core/action";
|
|
2
|
+
import { upsertDataProgram } from "@agent-native/core/data-programs";
|
|
3
|
+
import { z } from "zod";
|
|
4
|
+
|
|
5
|
+
import { crmDashboardStore } from "../server/db/index.js";
|
|
6
|
+
import { CRM_APP_ID } from "../server/lib/provider-api.js";
|
|
7
|
+
import {
|
|
8
|
+
createPipelineDashboardConfig,
|
|
9
|
+
crmPipelineDashboardId,
|
|
10
|
+
CRM_PIPELINE_PROGRAM_CODE,
|
|
11
|
+
CRM_PIPELINE_PROGRAM_COLUMNS,
|
|
12
|
+
CRM_PIPELINE_PROGRAM_NAME,
|
|
13
|
+
CRM_PIPELINE_PROGRAM_TITLE,
|
|
14
|
+
CRM_PIPELINE_REFRESH_TTL_MS,
|
|
15
|
+
CRM_PIPELINE_DASHBOARD_TITLE,
|
|
16
|
+
requireDashboardAccess,
|
|
17
|
+
} from "./_crm-dashboard.js";
|
|
18
|
+
import getCrmPipelineData from "./get-crm-pipeline-data.js";
|
|
19
|
+
|
|
20
|
+
export default defineAction({
|
|
21
|
+
description:
|
|
22
|
+
"Install or update your CRM Pipeline dashboard and its owned data program. Safe to rerun: it verifies the access-scoped source first, upserts the program by owner and name, then revision-writes the dashboard.",
|
|
23
|
+
schema: z.object({}),
|
|
24
|
+
run: async (_args, ctx?: ActionRunContext) => {
|
|
25
|
+
const access = requireDashboardAccess(ctx);
|
|
26
|
+
const preview = await getCrmPipelineData.run({}, ctx);
|
|
27
|
+
|
|
28
|
+
const program = await upsertDataProgram({
|
|
29
|
+
appId: CRM_APP_ID,
|
|
30
|
+
name: CRM_PIPELINE_PROGRAM_NAME,
|
|
31
|
+
title: CRM_PIPELINE_PROGRAM_TITLE,
|
|
32
|
+
description:
|
|
33
|
+
"Access-scoped opportunity totals by stage for the CRM Pipeline dashboard.",
|
|
34
|
+
code: CRM_PIPELINE_PROGRAM_CODE,
|
|
35
|
+
outputColumns: JSON.stringify(CRM_PIPELINE_PROGRAM_COLUMNS),
|
|
36
|
+
refreshMode: "ttl",
|
|
37
|
+
refreshTtlMs: CRM_PIPELINE_REFRESH_TTL_MS,
|
|
38
|
+
background: false,
|
|
39
|
+
ownerEmail: access.userEmail,
|
|
40
|
+
orgId: access.orgId ?? null,
|
|
41
|
+
});
|
|
42
|
+
if (
|
|
43
|
+
program.appId !== CRM_APP_ID ||
|
|
44
|
+
program.name !== CRM_PIPELINE_PROGRAM_NAME
|
|
45
|
+
) {
|
|
46
|
+
throw new Error(
|
|
47
|
+
"CRM Pipeline data program could not be verified after saving.",
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
const dashboardId = crmPipelineDashboardId(access);
|
|
52
|
+
const existing = await crmDashboardStore.get(dashboardId, access);
|
|
53
|
+
const dashboard = await crmDashboardStore.write(
|
|
54
|
+
{
|
|
55
|
+
id: dashboardId,
|
|
56
|
+
kind: "pipeline",
|
|
57
|
+
title: CRM_PIPELINE_DASHBOARD_TITLE,
|
|
58
|
+
config: createPipelineDashboardConfig(program.id),
|
|
59
|
+
...(existing ? { expectedUpdatedAt: existing.updatedAt } : {}),
|
|
60
|
+
},
|
|
61
|
+
access,
|
|
62
|
+
);
|
|
63
|
+
if (dashboard.config.panels.length !== 3) {
|
|
64
|
+
throw new Error(
|
|
65
|
+
"CRM Pipeline dashboard could not be verified after saving.",
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return {
|
|
70
|
+
dashboard,
|
|
71
|
+
dashboardId: dashboard.id,
|
|
72
|
+
programId: program.id,
|
|
73
|
+
created: !existing,
|
|
74
|
+
programPreview: {
|
|
75
|
+
rowCount: preview.rows.length,
|
|
76
|
+
columns: CRM_PIPELINE_PROGRAM_COLUMNS,
|
|
77
|
+
truncated: preview.truncated,
|
|
78
|
+
},
|
|
79
|
+
};
|
|
80
|
+
},
|
|
81
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { defineAction, type ActionRunContext } from "@agent-native/core/action";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
import { crmDashboardStore } from "../server/db/index.js";
|
|
5
|
+
import { requireDashboardAccess } from "./_crm-dashboard.js";
|
|
6
|
+
|
|
7
|
+
export default defineAction({
|
|
8
|
+
description:
|
|
9
|
+
"List the bounded revision history for one access-scoped CRM dashboard.",
|
|
10
|
+
schema: z.object({ id: z.string().trim().min(1).max(200) }),
|
|
11
|
+
http: { method: "GET" },
|
|
12
|
+
readOnly: true,
|
|
13
|
+
run: ({ id }, ctx?: ActionRunContext) =>
|
|
14
|
+
crmDashboardStore.listRevisions(id, requireDashboardAccess(ctx)),
|
|
15
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { defineAction, type ActionRunContext } from "@agent-native/core/action";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
import { crmDashboardStore } from "../server/db/index.js";
|
|
5
|
+
import { requireDashboardAccess } from "./_crm-dashboard.js";
|
|
6
|
+
|
|
7
|
+
export default defineAction({
|
|
8
|
+
description:
|
|
9
|
+
"List up to 50 active CRM dashboards the current user can access.",
|
|
10
|
+
schema: z.object({}),
|
|
11
|
+
http: { method: "GET" },
|
|
12
|
+
readOnly: true,
|
|
13
|
+
run: async (_args, ctx?: ActionRunContext) =>
|
|
14
|
+
(await crmDashboardStore.list(requireDashboardAccess(ctx))).slice(0, 50),
|
|
15
|
+
});
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { defineAction } from "@agent-native/core/action";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
import { listCrmProposals } from "../server/db/crm-store.js";
|
|
5
|
+
|
|
6
|
+
export default defineAction({
|
|
7
|
+
description:
|
|
8
|
+
"List bounded, access-scoped CRM mutation proposals and their review status. Proposal payloads are intentionally omitted from this list surface.",
|
|
9
|
+
schema: z.object({
|
|
10
|
+
recordId: z.string().min(1).optional(),
|
|
11
|
+
status: z
|
|
12
|
+
.enum([
|
|
13
|
+
"pending",
|
|
14
|
+
"approved",
|
|
15
|
+
"applied",
|
|
16
|
+
"rejected",
|
|
17
|
+
"conflict",
|
|
18
|
+
"failed",
|
|
19
|
+
])
|
|
20
|
+
.optional(),
|
|
21
|
+
limit: z.coerce.number().int().min(1).max(100).default(50),
|
|
22
|
+
cursor: z
|
|
23
|
+
.string()
|
|
24
|
+
.regex(/^\d+$/)
|
|
25
|
+
.optional()
|
|
26
|
+
.describe("Cursor returned by a previous page."),
|
|
27
|
+
}),
|
|
28
|
+
http: { method: "GET" },
|
|
29
|
+
readOnly: true,
|
|
30
|
+
run: (input) => listCrmProposals(input),
|
|
31
|
+
});
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { defineAction, type ActionRunContext } from "@agent-native/core/action";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
import {
|
|
5
|
+
createConnectedCrmAdapter,
|
|
6
|
+
isConnectedCrmProvider,
|
|
7
|
+
} from "../server/crm/adapter.js";
|
|
8
|
+
import { resolveNativeCrmAccessScope } from "../server/crm/native-adapter.js";
|
|
9
|
+
import { listCrmRecords } from "../server/db/crm-store.js";
|
|
10
|
+
|
|
11
|
+
const kinds = [
|
|
12
|
+
"account",
|
|
13
|
+
"person",
|
|
14
|
+
"opportunity",
|
|
15
|
+
"activity",
|
|
16
|
+
"task",
|
|
17
|
+
"custom",
|
|
18
|
+
] as const;
|
|
19
|
+
|
|
20
|
+
export default defineAction({
|
|
21
|
+
description:
|
|
22
|
+
"List a bounded, access-scoped page of thinly mirrored CRM records. Use kind, connectionId, or a short display-name query to narrow the scope; remote-only and redacted fields are excluded.",
|
|
23
|
+
schema: z.object({
|
|
24
|
+
kind: z
|
|
25
|
+
.enum(kinds)
|
|
26
|
+
.optional()
|
|
27
|
+
.describe("Optional canonical CRM record kind."),
|
|
28
|
+
connectionId: z
|
|
29
|
+
.string()
|
|
30
|
+
.min(1)
|
|
31
|
+
.optional()
|
|
32
|
+
.describe("Optional CRM connection ID."),
|
|
33
|
+
viewId: z
|
|
34
|
+
.string()
|
|
35
|
+
.min(1)
|
|
36
|
+
.max(128)
|
|
37
|
+
.optional()
|
|
38
|
+
.describe("Optional access-scoped saved CRM view ID."),
|
|
39
|
+
query: z
|
|
40
|
+
.string()
|
|
41
|
+
.trim()
|
|
42
|
+
.min(1)
|
|
43
|
+
.max(120)
|
|
44
|
+
.optional()
|
|
45
|
+
.describe("Optional display-name search."),
|
|
46
|
+
limit: z.coerce.number().int().min(1).max(100).default(50),
|
|
47
|
+
cursor: z
|
|
48
|
+
.string()
|
|
49
|
+
.regex(/^\d+$/)
|
|
50
|
+
.optional()
|
|
51
|
+
.describe("Cursor returned by a previous page."),
|
|
52
|
+
}),
|
|
53
|
+
http: { method: "GET" },
|
|
54
|
+
readOnly: true,
|
|
55
|
+
run: (input, ctx?: ActionRunContext) =>
|
|
56
|
+
listCrmRecords(input, {
|
|
57
|
+
resolveScope: async (target) => {
|
|
58
|
+
if (target.provider === "native") {
|
|
59
|
+
return resolveNativeCrmAccessScope({
|
|
60
|
+
connectionId: target.connectionId,
|
|
61
|
+
objectType: target.objectType,
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
if (
|
|
65
|
+
!isConnectedCrmProvider(target.provider) ||
|
|
66
|
+
!target.workspaceConnectionId
|
|
67
|
+
) {
|
|
68
|
+
return null;
|
|
69
|
+
}
|
|
70
|
+
const adapter = await createConnectedCrmAdapter({
|
|
71
|
+
provider: target.provider,
|
|
72
|
+
connectionId: target.workspaceConnectionId,
|
|
73
|
+
...(ctx?.userEmail ? { userEmail: ctx.userEmail } : {}),
|
|
74
|
+
...(ctx?.orgId !== undefined ? { orgId: ctx.orgId } : {}),
|
|
75
|
+
});
|
|
76
|
+
return adapter.getAccessScope(target.objectType);
|
|
77
|
+
},
|
|
78
|
+
}),
|
|
79
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { defineAction } from "@agent-native/core/action";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
import { listCrmSavedViews } from "../server/db/crm-store.js";
|
|
5
|
+
|
|
6
|
+
export default defineAction({
|
|
7
|
+
description:
|
|
8
|
+
"List access-scoped saved CRM views, including their optional linked data-program IDs.",
|
|
9
|
+
schema: z.object({
|
|
10
|
+
limit: z.coerce.number().int().min(1).max(100).default(50),
|
|
11
|
+
}),
|
|
12
|
+
http: { method: "GET" },
|
|
13
|
+
readOnly: true,
|
|
14
|
+
run: (input) => listCrmSavedViews(input),
|
|
15
|
+
});
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { defineAction } from "@agent-native/core/action";
|
|
2
|
+
import { accessFilter } from "@agent-native/core/sharing";
|
|
3
|
+
import { and, desc, eq, like, or } from "drizzle-orm";
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
|
|
6
|
+
import { getDb, schema } from "../server/db/index.js";
|
|
7
|
+
|
|
8
|
+
export default defineAction({
|
|
9
|
+
description:
|
|
10
|
+
"List bounded, access-scoped CRM signals. Results contain evidence references and short excerpts, never transcripts or media.",
|
|
11
|
+
schema: z.object({
|
|
12
|
+
recordId: z.string().trim().min(1).max(128).optional(),
|
|
13
|
+
reviewStatus: z.enum(["unreviewed", "confirmed", "dismissed"]).optional(),
|
|
14
|
+
query: z.string().trim().max(120).optional(),
|
|
15
|
+
limit: z.coerce.number().int().min(1).max(100).default(50),
|
|
16
|
+
}),
|
|
17
|
+
http: { method: "GET" },
|
|
18
|
+
readOnly: true,
|
|
19
|
+
run: async (args) => {
|
|
20
|
+
const filters = [accessFilter(schema.crmSignals, schema.crmSignalShares)];
|
|
21
|
+
if (args.recordId)
|
|
22
|
+
filters.push(eq(schema.crmSignals.recordId, args.recordId));
|
|
23
|
+
if (args.reviewStatus)
|
|
24
|
+
filters.push(eq(schema.crmSignals.reviewStatus, args.reviewStatus));
|
|
25
|
+
if (args.query) {
|
|
26
|
+
const escaped = args.query.replace(/[\\%_]/g, "\\$&");
|
|
27
|
+
filters.push(
|
|
28
|
+
or(
|
|
29
|
+
like(schema.crmSignals.label, `%${escaped}%`),
|
|
30
|
+
like(schema.crmSignals.quote, `%${escaped}%`),
|
|
31
|
+
like(schema.crmSignals.summary, `%${escaped}%`),
|
|
32
|
+
)!,
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
const signals = await getDb()
|
|
36
|
+
.select()
|
|
37
|
+
.from(schema.crmSignals)
|
|
38
|
+
.where(and(...filters))
|
|
39
|
+
.orderBy(desc(schema.crmSignals.createdAt))
|
|
40
|
+
.limit(args.limit);
|
|
41
|
+
return { signals };
|
|
42
|
+
},
|
|
43
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { defineAction } from "@agent-native/core/action";
|
|
2
|
+
import { accessFilter } from "@agent-native/core/sharing";
|
|
3
|
+
import { asc } from "drizzle-orm";
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
|
|
6
|
+
import { getDb, schema } from "../server/db/index.js";
|
|
7
|
+
import { DEFAULT_CRM_DETECTORS } from "../server/lib/intelligence/default-detectors.js";
|
|
8
|
+
|
|
9
|
+
export default defineAction({
|
|
10
|
+
description:
|
|
11
|
+
"List access-scoped CRM signal detectors and the safe default pack when none are configured.",
|
|
12
|
+
schema: z.object({}),
|
|
13
|
+
http: { method: "GET" },
|
|
14
|
+
readOnly: true,
|
|
15
|
+
run: async () => {
|
|
16
|
+
const rows = await getDb()
|
|
17
|
+
.select()
|
|
18
|
+
.from(schema.crmSignalTrackers)
|
|
19
|
+
.where(
|
|
20
|
+
accessFilter(schema.crmSignalTrackers, schema.crmSignalTrackerShares),
|
|
21
|
+
)
|
|
22
|
+
.orderBy(asc(schema.crmSignalTrackers.name));
|
|
23
|
+
return {
|
|
24
|
+
trackers: rows.map((row) => ({
|
|
25
|
+
...row,
|
|
26
|
+
keywords: JSON.parse(row.keywordsJson) as string[],
|
|
27
|
+
keywordsJson: undefined,
|
|
28
|
+
})),
|
|
29
|
+
suggestedDefaults: rows.length ? [] : DEFAULT_CRM_DETECTORS,
|
|
30
|
+
};
|
|
31
|
+
},
|
|
32
|
+
});
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { defineAction } from "@agent-native/core/action";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
import { listCrmTasks } from "../server/db/crm-store.js";
|
|
5
|
+
|
|
6
|
+
export default defineAction({
|
|
7
|
+
description:
|
|
8
|
+
"List a bounded, access-scoped page of CRM follow-up tasks. Filter by the linked record or task status when needed.",
|
|
9
|
+
schema: z.object({
|
|
10
|
+
recordId: z.string().min(1).optional(),
|
|
11
|
+
status: z.enum(["open", "done", "cancelled"]).optional(),
|
|
12
|
+
limit: z.coerce.number().int().min(1).max(100).default(50),
|
|
13
|
+
cursor: z
|
|
14
|
+
.string()
|
|
15
|
+
.regex(/^\d+$/)
|
|
16
|
+
.optional()
|
|
17
|
+
.describe("Cursor returned by a previous page."),
|
|
18
|
+
}),
|
|
19
|
+
http: { method: "GET" },
|
|
20
|
+
readOnly: true,
|
|
21
|
+
run: (input) => listCrmTasks(input),
|
|
22
|
+
});
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { createListStagedDatasetsAction } from "@agent-native/core/provider-api/actions/staged-datasets";
|
|
2
|
+
import { getCredentialContext } from "@agent-native/core/server/request-context";
|
|
3
|
+
import { z } from "zod";
|
|
4
|
+
|
|
5
|
+
import { CRM_APP_ID } from "../server/lib/provider-api.js";
|
|
6
|
+
|
|
7
|
+
export default createListStagedDatasetsAction({
|
|
8
|
+
description:
|
|
9
|
+
"List caller-scoped staged CRM provider datasets created by provider-api-request. Use a dataset id with query-staged-dataset to reduce a result, or delete-staged-dataset after analysis.",
|
|
10
|
+
schema: z.object({}),
|
|
11
|
+
appId: CRM_APP_ID,
|
|
12
|
+
getOwnerEmail: () => getCredentialContext()?.userEmail ?? null,
|
|
13
|
+
http: { method: "GET" },
|
|
14
|
+
});
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { defineAction } from "@agent-native/core/action";
|
|
2
|
+
import { listWorkspaceConnectionsForApp } from "@agent-native/core/workspace-connections";
|
|
3
|
+
import { z } from "zod";
|
|
4
|
+
|
|
5
|
+
import { CRM_APP_ID } from "../server/lib/provider-api.js";
|
|
6
|
+
|
|
7
|
+
const httpBoolean = z.preprocess((value) => {
|
|
8
|
+
if (typeof value !== "string") return value;
|
|
9
|
+
if (["true", "1"].includes(value.toLowerCase())) return true;
|
|
10
|
+
if (["false", "0"].includes(value.toLowerCase())) return false;
|
|
11
|
+
return value;
|
|
12
|
+
}, z.boolean());
|
|
13
|
+
|
|
14
|
+
export default defineAction({
|
|
15
|
+
description:
|
|
16
|
+
"List safe metadata for HubSpot and Salesforce workspace connections currently granted to CRM. Provider credentials and credential references are never returned.",
|
|
17
|
+
schema: z.object({
|
|
18
|
+
includeDisabled: httpBoolean.default(false),
|
|
19
|
+
}),
|
|
20
|
+
http: { method: "GET" },
|
|
21
|
+
readOnly: true,
|
|
22
|
+
run: async ({ includeDisabled }) => {
|
|
23
|
+
const connectionGroups = await Promise.all(
|
|
24
|
+
(["hubspot", "salesforce"] as const).map((provider) =>
|
|
25
|
+
listWorkspaceConnectionsForApp({
|
|
26
|
+
appId: CRM_APP_ID,
|
|
27
|
+
provider,
|
|
28
|
+
includeDisabled,
|
|
29
|
+
}),
|
|
30
|
+
),
|
|
31
|
+
);
|
|
32
|
+
const connections = connectionGroups.flat();
|
|
33
|
+
return {
|
|
34
|
+
connections: connections.map((connection) => ({
|
|
35
|
+
id: connection.id,
|
|
36
|
+
provider: connection.provider,
|
|
37
|
+
label: connection.label,
|
|
38
|
+
accountId: connection.accountId,
|
|
39
|
+
accountLabel: connection.accountLabel,
|
|
40
|
+
status: connection.status,
|
|
41
|
+
lastCheckedAt: connection.lastCheckedAt,
|
|
42
|
+
lastUsedAt: connection.lastUsedAt,
|
|
43
|
+
accessMode: connection.appAccess.mode,
|
|
44
|
+
})),
|
|
45
|
+
};
|
|
46
|
+
},
|
|
47
|
+
});
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { defineAction } from "@agent-native/core/action";
|
|
2
|
+
import { assertAccess } from "@agent-native/core/sharing";
|
|
3
|
+
import { eq } from "drizzle-orm";
|
|
4
|
+
import { z } from "zod";
|
|
5
|
+
|
|
6
|
+
import { getDb, schema } from "../server/db/index.js";
|
|
7
|
+
|
|
8
|
+
const inputSchema = z
|
|
9
|
+
.object({
|
|
10
|
+
trackerId: z.string().trim().min(1).max(128),
|
|
11
|
+
operation: z.enum(["set-enabled", "delete"]),
|
|
12
|
+
enabled: z.boolean().optional(),
|
|
13
|
+
})
|
|
14
|
+
.superRefine((value, ctx) => {
|
|
15
|
+
if (value.operation === "set-enabled" && value.enabled === undefined) {
|
|
16
|
+
ctx.addIssue({
|
|
17
|
+
code: "custom",
|
|
18
|
+
path: ["enabled"],
|
|
19
|
+
message: "enabled is required when changing a tracker state.",
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
if (value.operation === "delete" && value.enabled !== undefined) {
|
|
23
|
+
ctx.addIssue({
|
|
24
|
+
code: "custom",
|
|
25
|
+
path: ["enabled"],
|
|
26
|
+
message: "enabled cannot be provided when deleting a tracker.",
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
export default defineAction({
|
|
32
|
+
description:
|
|
33
|
+
"Enable, disable, or delete one access-scoped local CRM signal tracker. This never invokes a model or changes a connected provider.",
|
|
34
|
+
schema: inputSchema,
|
|
35
|
+
audit: {
|
|
36
|
+
target: (_args, result) => {
|
|
37
|
+
const tracker = result as {
|
|
38
|
+
id: string;
|
|
39
|
+
ownerEmail: string;
|
|
40
|
+
orgId: string | null;
|
|
41
|
+
visibility: "private" | "org";
|
|
42
|
+
};
|
|
43
|
+
return {
|
|
44
|
+
type: "crm-signal-tracker",
|
|
45
|
+
id: tracker.id,
|
|
46
|
+
ownerEmail: tracker.ownerEmail,
|
|
47
|
+
orgId: tracker.orgId,
|
|
48
|
+
visibility: tracker.visibility,
|
|
49
|
+
};
|
|
50
|
+
},
|
|
51
|
+
summary: (args) =>
|
|
52
|
+
args.operation === "delete"
|
|
53
|
+
? `Deleted CRM signal tracker ${args.trackerId}`
|
|
54
|
+
: `${args.enabled ? "Enabled" : "Disabled"} CRM signal tracker ${args.trackerId}`,
|
|
55
|
+
},
|
|
56
|
+
run: async (args) => {
|
|
57
|
+
await assertAccess("crm-signal-tracker", args.trackerId, "editor");
|
|
58
|
+
const db = getDb();
|
|
59
|
+
const [tracker] = await db
|
|
60
|
+
.select()
|
|
61
|
+
.from(schema.crmSignalTrackers)
|
|
62
|
+
.where(eq(schema.crmSignalTrackers.id, args.trackerId))
|
|
63
|
+
.limit(1);
|
|
64
|
+
if (!tracker) throw new Error("CRM signal tracker was not found.");
|
|
65
|
+
|
|
66
|
+
if (args.operation === "delete") {
|
|
67
|
+
await db
|
|
68
|
+
.delete(schema.crmSignalTrackers)
|
|
69
|
+
.where(eq(schema.crmSignalTrackers.id, args.trackerId));
|
|
70
|
+
return { ...tracker, deleted: true };
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const now = new Date().toISOString();
|
|
74
|
+
await db
|
|
75
|
+
.update(schema.crmSignalTrackers)
|
|
76
|
+
.set({ enabled: args.enabled!, updatedAt: now })
|
|
77
|
+
.where(eq(schema.crmSignalTrackers.id, args.trackerId));
|
|
78
|
+
const [updated] = await db
|
|
79
|
+
.select()
|
|
80
|
+
.from(schema.crmSignalTrackers)
|
|
81
|
+
.where(eq(schema.crmSignalTrackers.id, args.trackerId))
|
|
82
|
+
.limit(1);
|
|
83
|
+
if (!updated)
|
|
84
|
+
throw new Error("CRM signal tracker could not be verified after saving.");
|
|
85
|
+
return updated;
|
|
86
|
+
},
|
|
87
|
+
});
|