@agent-native/core 0.107.2 → 0.109.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/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +24 -0
- package/corpus/core/docs/content/actions.mdx +48 -0
- package/corpus/core/docs/content/locales/ar-SA/actions.mdx +38 -0
- package/corpus/core/docs/content/locales/de-DE/actions.mdx +38 -0
- package/corpus/core/docs/content/locales/es-ES/actions.mdx +38 -0
- package/corpus/core/docs/content/locales/fr-FR/actions.mdx +38 -0
- package/corpus/core/docs/content/locales/hi-IN/actions.mdx +38 -0
- package/corpus/core/docs/content/locales/ja-JP/actions.mdx +38 -0
- package/corpus/core/docs/content/locales/ko-KR/actions.mdx +38 -0
- package/corpus/core/docs/content/locales/pt-BR/actions.mdx +38 -0
- package/corpus/core/docs/content/locales/zh-CN/actions.mdx +38 -0
- package/corpus/core/docs/content/locales/zh-TW/actions.mdx +38 -0
- package/corpus/core/package.json +5 -1
- package/corpus/core/src/a2a/client.ts +140 -17
- package/corpus/core/src/a2a/handlers.ts +60 -0
- package/corpus/core/src/a2a/index.ts +6 -1
- package/corpus/core/src/a2a/invoke.ts +68 -1
- package/corpus/core/src/a2a/server.ts +13 -1
- package/corpus/core/src/a2a/types.ts +16 -0
- package/corpus/core/src/a2a-claims.ts +52 -0
- package/corpus/core/src/action.ts +7 -2
- package/corpus/core/src/agent/production-agent.ts +10 -4
- package/corpus/core/src/audit/record.ts +6 -0
- package/corpus/core/src/client/AssistantChat.tsx +648 -603
- package/corpus/core/src/client/MultiTabAssistantChat.tsx +31 -4
- package/corpus/core/src/client/agent-chat-adapter.ts +23 -37
- package/corpus/core/src/client/agent-sidebar-state.ts +4 -0
- package/corpus/core/src/client/analytics.ts +84 -0
- package/corpus/core/src/client/chat/message-components.tsx +94 -22
- package/corpus/core/src/client/chat/tool-call-display.tsx +170 -47
- package/corpus/core/src/client/chat/use-agent-chat-lifecycle-tracking.ts +74 -0
- package/corpus/core/src/client/chat-thread-url.ts +11 -0
- package/corpus/core/src/client/error-capture.ts +12 -0
- package/corpus/core/src/client/extensions/ExtensionSlot.tsx +37 -1
- package/corpus/core/src/client/feature-flags/FeatureFlagsPanel.tsx +519 -0
- package/corpus/core/src/client/feature-flags/helpers.ts +77 -0
- package/corpus/core/src/client/feature-flags/index.ts +13 -0
- package/corpus/core/src/client/feature-flags/types.ts +29 -0
- package/corpus/core/src/client/feature-flags/use-feature-flag.ts +26 -0
- package/corpus/core/src/client/index.ts +13 -0
- package/corpus/core/src/client/route-chunk-recovery.ts +20 -8
- package/corpus/core/src/client/session-replay.ts +31 -0
- package/corpus/core/src/extensions/actions.ts +2 -14
- package/corpus/core/src/extensions/routes.ts +1 -1
- package/corpus/core/src/extensions/store.ts +1 -1
- package/corpus/core/src/feature-flags/a2a-action-route.ts +56 -0
- package/corpus/core/src/feature-flags/actions/get-feature-flags.ts +24 -0
- package/corpus/core/src/feature-flags/actions/list-feature-flags.ts +69 -0
- package/corpus/core/src/feature-flags/actions/set-feature-flag.ts +89 -0
- package/corpus/core/src/feature-flags/index.ts +21 -0
- package/corpus/core/src/feature-flags/permissions.ts +53 -0
- package/corpus/core/src/feature-flags/plugin.ts +44 -0
- package/corpus/core/src/feature-flags/registry.ts +96 -0
- package/corpus/core/src/feature-flags/store.ts +176 -0
- package/corpus/core/src/index.ts +15 -0
- package/corpus/core/src/localization/default-messages.ts +50 -0
- package/corpus/core/src/mcp/build-server.ts +2 -2
- package/corpus/core/src/progress/actions.ts +4 -2
- package/corpus/core/src/provider-api/index.ts +205 -105
- package/corpus/core/src/scripts/call-agent.ts +137 -17
- package/corpus/core/src/server/action-discovery.ts +12 -0
- package/corpus/core/src/server/action-routes.ts +47 -5
- package/corpus/core/src/server/agent-chat/action-filters-a2a.ts +40 -0
- package/corpus/core/src/server/agent-chat-plugin.ts +31 -0
- package/corpus/core/src/server/index.ts +1 -0
- package/corpus/core/src/settings/org-settings.ts +13 -0
- package/corpus/core/src/settings/store.ts +57 -0
- package/corpus/core/src/styles/agent-conversation.css +7 -0
- package/corpus/core/src/templates/default/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/core/src/templates/default/AGENTS.md +1 -0
- package/corpus/core/src/templates/default/app/i18n/ar-SA.ts +20 -0
- package/corpus/core/src/templates/default/app/i18n/de-DE.ts +20 -0
- package/corpus/core/src/templates/default/app/i18n/en-US.ts +20 -0
- package/corpus/core/src/templates/default/app/i18n/es-ES.ts +20 -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 +19 -0
- package/corpus/core/src/templates/default/app/i18n/ja-JP.ts +20 -0
- package/corpus/core/src/templates/default/app/i18n/ko-KR.ts +19 -0
- package/corpus/core/src/templates/default/app/i18n/pt-BR.ts +20 -0
- package/corpus/core/src/templates/default/app/i18n/zh-CN.ts +19 -0
- package/corpus/core/src/templates/default/app/i18n/zh-TW.ts +19 -0
- package/corpus/core/src/templates/headless/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/core/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +28 -0
- package/corpus/core/src/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +5 -0
- package/corpus/core/src/templates/workspace-core/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/core/src/templates/workspace-core/.agents/skills/performance/SKILL.md +13 -0
- package/corpus/core/src/templates/workspace-core/AGENTS.md +1 -1
- package/corpus/core/src/templates/workspace-root/AGENTS.md +1 -1
- package/corpus/core/src/vite/action-types-plugin.ts +12 -0
- package/corpus/templates/analytics/.agents/skills/dashboard-management/SKILL.md +29 -10
- package/corpus/templates/analytics/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/analytics/.agents/skills/gong/SKILL.md +54 -23
- package/corpus/templates/analytics/.builder/skills/apollo/SKILL.md +19 -41
- package/corpus/templates/analytics/.builder/skills/commonroom/SKILL.md +20 -35
- package/corpus/templates/analytics/.builder/skills/github/SKILL.md +23 -67
- package/corpus/templates/analytics/.builder/skills/pylon/SKILL.md +25 -43
- package/corpus/templates/analytics/AGENTS.md +37 -16
- package/corpus/templates/analytics/actions/account-deep-dive.ts +1 -0
- package/corpus/templates/analytics/actions/configure-gong-native-insights.ts +29 -0
- package/corpus/templates/analytics/actions/content-calendar-schema.ts +8 -4
- package/corpus/templates/analytics/actions/content-calendar.ts +12 -4
- package/corpus/templates/analytics/actions/dashboard-mutation-api.ts +2 -1
- package/corpus/templates/analytics/actions/gong-calls.ts +113 -22
- package/corpus/templates/analytics/actions/gong-native-insights.ts +166 -0
- package/corpus/templates/analytics/actions/hubspot-deals.ts +190 -46
- package/corpus/templates/analytics/actions/list-workspace-feature-flags.ts +15 -0
- package/corpus/templates/analytics/actions/navigate.ts +2 -2
- package/corpus/templates/analytics/actions/pylon-issues.ts +123 -0
- package/corpus/templates/analytics/actions/set-workspace-feature-flag.ts +45 -0
- package/corpus/templates/analytics/actions/slack-messages.ts +179 -27
- package/corpus/templates/analytics/actions/view-screen.ts +13 -0
- package/corpus/templates/analytics/app/components/agents/FeatureFlagsFleetPanel.tsx +243 -0
- package/corpus/templates/analytics/app/components/dashboard/SqlChart.tsx +48 -152
- package/corpus/templates/analytics/app/components/layout/CommandPalette.tsx +11 -3
- package/corpus/templates/analytics/app/components/ui/chart.tsx +1 -1
- package/corpus/templates/analytics/app/hooks/use-chart-tooltip-flip.ts +21 -6
- package/corpus/templates/analytics/app/hooks/use-navigation-state.ts +3 -1
- package/corpus/templates/analytics/app/i18n/zh-TW.ts +30 -0
- package/corpus/templates/analytics/app/i18n-data.ts +385 -0
- package/corpus/templates/analytics/app/pages/Agents.tsx +22 -2
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/PanelEditorDialog.tsx +181 -30
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/SqlChartCard.tsx +6 -0
- package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/types.ts +4 -3
- package/corpus/templates/analytics/changelog/2026-07-17-dashboard-editors-can-add-shared-extensions-or-opt-into-per-.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-17-dashboard-extensions-show-a-loading-skeleton.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-17-errors-now-group-repeat-failures-consistently-and-keep-priva.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-17-gong-transcript-reviews-now-batch-bounded-call-windows-for-f.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-17-hubspot-deal-filters-now-run-in-hubspot-before-paging-result.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-17-manage-feature-flag-rollouts-across-your-organization-s-apps.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-17-notion-content-calendars-now-discover-the-matching-database-.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-17-pylon-dashboard-reads-now-use-the-paginated-issue-search-api.md +6 -0
- package/corpus/templates/analytics/changelog/2026-07-17-slack-reads-no-longer-join-channels-and-report-pagination-coverage.md +6 -0
- package/corpus/templates/analytics/server/handlers/notion.ts +14 -3
- package/corpus/templates/analytics/server/handlers/slack.ts +182 -29
- package/corpus/templates/analytics/server/lib/agent-chat-plan-mode.ts +2 -6
- package/corpus/templates/analytics/server/lib/analytics-connector-catalog.ts +6 -2
- package/corpus/templates/analytics/server/lib/db-admin-connections.ts +13 -5
- package/corpus/templates/analytics/server/lib/error-capture.ts +75 -8
- package/corpus/templates/analytics/server/lib/gong-native-policy.ts +72 -0
- package/corpus/templates/analytics/server/lib/gong.ts +54 -66
- package/corpus/templates/analytics/server/lib/hubspot.ts +40 -3
- package/corpus/templates/analytics/server/lib/notion.ts +83 -8
- package/corpus/templates/analytics/server/lib/real-data-actions.ts +4 -0
- package/corpus/templates/analytics/server/lib/slack.ts +242 -90
- package/corpus/templates/analytics/server/lib/workspace-feature-flags.ts +347 -0
- package/corpus/templates/analytics/server/plugins/agent-chat.ts +3 -3
- package/corpus/templates/analytics/server/routes/api/pylon/accounts.get.ts +42 -1
- package/corpus/templates/analytics/server/routes/api/pylon/issues.get.ts +71 -1
- package/corpus/templates/analytics/server/routes/api/test-connection.post.ts +44 -4
- package/corpus/templates/assets/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/brain/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/calendar/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/chat/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/clips/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/clips/app/components/library/bulk-action-toolbar.tsx +19 -1
- package/corpus/templates/clips/app/components/library/create-folder-dialog.tsx +123 -0
- package/corpus/templates/clips/app/components/library/library-grid.tsx +42 -4
- package/corpus/templates/clips/app/components/library/recording-card.tsx +30 -0
- package/corpus/templates/clips/app/entry.client.tsx +6 -1
- package/corpus/templates/clips/app/i18n/ar-SA.ts +12 -1
- package/corpus/templates/clips/app/i18n/de-DE.ts +12 -1
- package/corpus/templates/clips/app/i18n/en-US.ts +12 -1
- package/corpus/templates/clips/app/i18n/es-ES.ts +11 -1
- package/corpus/templates/clips/app/i18n/fr-FR.ts +11 -1
- package/corpus/templates/clips/app/i18n/hi-IN.ts +10 -1
- package/corpus/templates/clips/app/i18n/ja-JP.ts +12 -1
- package/corpus/templates/clips/app/i18n/ko-KR.ts +11 -1
- package/corpus/templates/clips/app/i18n/pt-BR.ts +11 -1
- package/corpus/templates/clips/app/i18n/zh-CN.ts +11 -1
- package/corpus/templates/clips/app/i18n/zh-TW.ts +11 -1
- package/corpus/templates/clips/app/routes/_app.settings._index.tsx +72 -1
- package/corpus/templates/clips/changelog/2026-07-17-choose-which-workspace-receives-new-clips-recordings-and-des.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-17-create-folders-directly-from-the-move-menu.md +6 -0
- package/corpus/templates/clips/changelog/2026-07-17-failed-desktop-uploads-now-offer-a-direct-way-to-reopen-clip.md +6 -0
- package/corpus/templates/clips/desktop/src/app.tsx +1 -1
- package/corpus/templates/clips/server/plugins/feature-flags.ts +11 -0
- package/corpus/templates/clips/shared/feature-flags.ts +30 -37
- package/corpus/templates/content/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/content/app/entry.client.tsx +6 -1
- package/corpus/templates/design/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/design/AGENTS.md +5 -3
- package/corpus/templates/design/actions/add-fusion-screens.ts +4 -6
- package/corpus/templates/design/actions/apply-fusion-edits.ts +4 -6
- package/corpus/templates/design/actions/create-fusion-app.ts +5 -4
- package/corpus/templates/design/actions/deploy-fusion-app.ts +4 -3
- package/corpus/templates/design/actions/get-fusion-deploy-status.ts +4 -6
- package/corpus/templates/design/actions/list-fusion-edits.ts +4 -3
- package/corpus/templates/design/actions/push-fusion-app.ts +4 -6
- package/corpus/templates/design/actions/queue-fusion-edit.ts +4 -3
- package/corpus/templates/design/actions/send-fusion-message.ts +4 -6
- package/corpus/templates/design/actions/sync-fusion-app.ts +4 -3
- package/corpus/templates/design/app/components/editor/PromptDialog.tsx +1 -1
- package/corpus/templates/design/app/pages/Index.tsx +8 -6
- package/corpus/templates/design/server/plugins/feature-flags.ts +5 -0
- package/corpus/templates/design/shared/full-app.ts +10 -7
- package/corpus/templates/dispatch/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/dispatch/AGENTS.md +5 -0
- package/corpus/templates/dispatch/changelog/2026-07-17-apps-page-links-to-other-available-apps.md +6 -0
- package/corpus/templates/dispatch/changelog/2026-07-17-curated-template-remixes.md +6 -0
- package/corpus/templates/forms/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/macros/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/mail/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/mail/app/entry.client.tsx +6 -1
- package/corpus/templates/plan/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/slides/.agents/skills/feature-flags/SKILL.md +169 -0
- package/corpus/templates/slides/.agents/skills/slide-images/SKILL.md +11 -7
- package/corpus/templates/slides/.env.example +0 -1
- package/corpus/templates/slides/AGENTS.md +4 -0
- package/corpus/templates/slides/DEVELOPING.md +2 -2
- package/corpus/templates/slides/actions/index-design-system-with-builder.ts +1 -1
- package/corpus/templates/slides/actions/logo-config.ts +6 -7
- package/corpus/templates/slides/actions/search-images.ts +11 -39
- package/corpus/templates/slides/actions/search-logos.ts +5 -52
- package/corpus/templates/slides/app/components/editor/ImageSearchPanel.tsx +1 -1
- package/corpus/templates/slides/app/components/editor/LogoSearchPanel.tsx +16 -26
- package/corpus/templates/slides/app/entry.client.tsx +6 -1
- package/corpus/templates/slides/server/lib/media-search-providers.ts +216 -0
- package/corpus/templates/slides/server/register-secrets.ts +30 -0
- package/corpus/templates/tasks/.agents/skills/feature-flags/SKILL.md +169 -0
- package/dist/a2a/client.d.ts +38 -1
- package/dist/a2a/client.d.ts.map +1 -1
- package/dist/a2a/client.js +81 -12
- package/dist/a2a/client.js.map +1 -1
- package/dist/a2a/handlers.d.ts.map +1 -1
- package/dist/a2a/handlers.js +47 -0
- package/dist/a2a/handlers.js.map +1 -1
- package/dist/a2a/index.d.ts +4 -4
- package/dist/a2a/index.d.ts.map +1 -1
- package/dist/a2a/index.js +2 -2
- package/dist/a2a/index.js.map +1 -1
- package/dist/a2a/invoke.d.ts +26 -2
- package/dist/a2a/invoke.d.ts.map +1 -1
- package/dist/a2a/invoke.js +30 -1
- package/dist/a2a/invoke.js.map +1 -1
- package/dist/a2a/server.d.ts.map +1 -1
- package/dist/a2a/server.js +14 -1
- package/dist/a2a/server.js.map +1 -1
- package/dist/a2a/types.d.ts +12 -0
- package/dist/a2a/types.d.ts.map +1 -1
- package/dist/a2a/types.js.map +1 -1
- package/dist/a2a-claims.d.ts +10 -0
- package/dist/a2a-claims.d.ts.map +1 -0
- package/dist/a2a-claims.js +41 -0
- package/dist/a2a-claims.js.map +1 -0
- package/dist/action.d.ts +7 -2
- package/dist/action.d.ts.map +1 -1
- package/dist/action.js.map +1 -1
- package/dist/agent/production-agent.d.ts +5 -0
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +5 -3
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/audit/record.d.ts +3 -0
- package/dist/audit/record.d.ts.map +1 -1
- package/dist/audit/record.js +3 -0
- package/dist/audit/record.js.map +1 -1
- package/dist/client/AssistantChat.d.ts +14 -1
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +158 -136
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/MultiTabAssistantChat.d.ts.map +1 -1
- package/dist/client/MultiTabAssistantChat.js +27 -4
- package/dist/client/MultiTabAssistantChat.js.map +1 -1
- package/dist/client/agent-chat-adapter.d.ts.map +1 -1
- package/dist/client/agent-chat-adapter.js +21 -39
- package/dist/client/agent-chat-adapter.js.map +1 -1
- package/dist/client/agent-sidebar-state.d.ts +1 -0
- package/dist/client/agent-sidebar-state.d.ts.map +1 -1
- package/dist/client/agent-sidebar-state.js +4 -0
- package/dist/client/agent-sidebar-state.js.map +1 -1
- package/dist/client/analytics.d.ts +14 -0
- package/dist/client/analytics.d.ts.map +1 -1
- package/dist/client/analytics.js +67 -0
- package/dist/client/analytics.js.map +1 -1
- package/dist/client/chat/message-components.d.ts +8 -0
- package/dist/client/chat/message-components.d.ts.map +1 -1
- package/dist/client/chat/message-components.js +62 -19
- package/dist/client/chat/message-components.js.map +1 -1
- package/dist/client/chat/tool-call-display.d.ts +6 -0
- package/dist/client/chat/tool-call-display.d.ts.map +1 -1
- package/dist/client/chat/tool-call-display.js +83 -14
- package/dist/client/chat/tool-call-display.js.map +1 -1
- package/dist/client/chat/use-agent-chat-lifecycle-tracking.d.ts +8 -0
- package/dist/client/chat/use-agent-chat-lifecycle-tracking.d.ts.map +1 -0
- package/dist/client/chat/use-agent-chat-lifecycle-tracking.js +51 -0
- package/dist/client/chat/use-agent-chat-lifecycle-tracking.js.map +1 -0
- package/dist/client/chat-thread-url.d.ts +2 -0
- package/dist/client/chat-thread-url.d.ts.map +1 -0
- package/dist/client/chat-thread-url.js +12 -0
- package/dist/client/chat-thread-url.js.map +1 -0
- package/dist/client/error-capture.d.ts.map +1 -1
- package/dist/client/error-capture.js +7 -0
- package/dist/client/error-capture.js.map +1 -1
- package/dist/client/extensions/ExtensionSlot.d.ts +3 -1
- package/dist/client/extensions/ExtensionSlot.d.ts.map +1 -1
- package/dist/client/extensions/ExtensionSlot.js +28 -3
- package/dist/client/extensions/ExtensionSlot.js.map +1 -1
- package/dist/client/feature-flags/FeatureFlagsPanel.d.ts +10 -0
- package/dist/client/feature-flags/FeatureFlagsPanel.d.ts.map +1 -0
- package/dist/client/feature-flags/FeatureFlagsPanel.js +143 -0
- package/dist/client/feature-flags/FeatureFlagsPanel.js.map +1 -0
- package/dist/client/feature-flags/helpers.d.ts +16 -0
- package/dist/client/feature-flags/helpers.d.ts.map +1 -0
- package/dist/client/feature-flags/helpers.js +50 -0
- package/dist/client/feature-flags/helpers.js.map +1 -0
- package/dist/client/feature-flags/index.d.ts +5 -0
- package/dist/client/feature-flags/index.d.ts.map +1 -0
- package/dist/client/feature-flags/index.js +4 -0
- package/dist/client/feature-flags/index.js.map +1 -0
- package/dist/client/feature-flags/types.d.ts +27 -0
- package/dist/client/feature-flags/types.d.ts.map +1 -0
- package/dist/client/feature-flags/types.js +2 -0
- package/dist/client/feature-flags/types.js.map +1 -0
- package/dist/client/feature-flags/use-feature-flag.d.ts +8 -0
- package/dist/client/feature-flags/use-feature-flag.d.ts.map +1 -0
- package/dist/client/feature-flags/use-feature-flag.js +15 -0
- package/dist/client/feature-flags/use-feature-flag.js.map +1 -0
- package/dist/client/index.d.ts +2 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +2 -1
- package/dist/client/index.js.map +1 -1
- package/dist/client/route-chunk-recovery.d.ts.map +1 -1
- package/dist/client/route-chunk-recovery.js +14 -9
- package/dist/client/route-chunk-recovery.js.map +1 -1
- package/dist/client/session-replay.d.ts +15 -0
- package/dist/client/session-replay.d.ts.map +1 -1
- package/dist/client/session-replay.js +20 -0
- package/dist/client/session-replay.js.map +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 +2 -10
- package/dist/extensions/actions.js.map +1 -1
- package/dist/extensions/routes.d.ts.map +1 -1
- package/dist/extensions/routes.js +1 -1
- package/dist/extensions/routes.js.map +1 -1
- package/dist/extensions/store.js +1 -1
- package/dist/extensions/store.js.map +1 -1
- package/dist/feature-flags/a2a-action-route.d.ts +14 -0
- package/dist/feature-flags/a2a-action-route.d.ts.map +1 -0
- package/dist/feature-flags/a2a-action-route.js +50 -0
- package/dist/feature-flags/a2a-action-route.js.map +1 -0
- package/dist/feature-flags/actions/get-feature-flags.d.ts +3 -0
- package/dist/feature-flags/actions/get-feature-flags.d.ts.map +1 -0
- package/dist/feature-flags/actions/get-feature-flags.js +18 -0
- package/dist/feature-flags/actions/get-feature-flags.js.map +1 -0
- package/dist/feature-flags/actions/list-feature-flags.d.ts +28 -0
- package/dist/feature-flags/actions/list-feature-flags.d.ts.map +1 -0
- package/dist/feature-flags/actions/list-feature-flags.js +60 -0
- package/dist/feature-flags/actions/list-feature-flags.js.map +1 -0
- package/dist/feature-flags/actions/set-feature-flag.d.ts +26 -0
- package/dist/feature-flags/actions/set-feature-flag.d.ts.map +1 -0
- package/dist/feature-flags/actions/set-feature-flag.js +78 -0
- package/dist/feature-flags/actions/set-feature-flag.js.map +1 -0
- package/dist/feature-flags/index.d.ts +5 -0
- package/dist/feature-flags/index.d.ts.map +1 -0
- package/dist/feature-flags/index.js +5 -0
- package/dist/feature-flags/index.js.map +1 -0
- package/dist/feature-flags/permissions.d.ts +13 -0
- package/dist/feature-flags/permissions.d.ts.map +1 -0
- package/dist/feature-flags/permissions.js +37 -0
- package/dist/feature-flags/permissions.js.map +1 -0
- package/dist/feature-flags/plugin.d.ts +17 -0
- package/dist/feature-flags/plugin.d.ts.map +1 -0
- package/dist/feature-flags/plugin.js +29 -0
- package/dist/feature-flags/plugin.js.map +1 -0
- package/dist/feature-flags/registry.d.ts +23 -0
- package/dist/feature-flags/registry.d.ts.map +1 -0
- package/dist/feature-flags/registry.js +59 -0
- package/dist/feature-flags/registry.js.map +1 -0
- package/dist/feature-flags/store.d.ts +31 -0
- package/dist/feature-flags/store.d.ts.map +1 -0
- package/dist/feature-flags/store.js +124 -0
- package/dist/feature-flags/store.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/localization/default-messages.d.ts +45 -0
- package/dist/localization/default-messages.d.ts.map +1 -1
- package/dist/localization/default-messages.js +45 -0
- package/dist/localization/default-messages.js.map +1 -1
- package/dist/mcp/build-server.d.ts +2 -0
- package/dist/mcp/build-server.d.ts.map +1 -1
- package/dist/mcp/build-server.js +2 -2
- package/dist/mcp/build-server.js.map +1 -1
- package/dist/notifications/routes.d.ts +2 -2
- package/dist/progress/actions.d.ts.map +1 -1
- package/dist/progress/actions.js +3 -2
- package/dist/progress/actions.js.map +1 -1
- package/dist/provider-api/corpus-jobs.d.ts +2 -2
- package/dist/provider-api/index.d.ts.map +1 -1
- package/dist/provider-api/index.js +91 -8
- package/dist/provider-api/index.js.map +1 -1
- package/dist/resources/handlers.d.ts +3 -3
- package/dist/scripts/call-agent.d.ts.map +1 -1
- package/dist/scripts/call-agent.js +107 -16
- package/dist/scripts/call-agent.js.map +1 -1
- package/dist/server/action-discovery.d.ts.map +1 -1
- package/dist/server/action-discovery.js +12 -0
- package/dist/server/action-discovery.js.map +1 -1
- package/dist/server/action-routes.d.ts +3 -0
- package/dist/server/action-routes.d.ts.map +1 -1
- package/dist/server/action-routes.js +45 -5
- package/dist/server/action-routes.js.map +1 -1
- package/dist/server/agent-chat/action-filters-a2a.d.ts +6 -0
- package/dist/server/agent-chat/action-filters-a2a.d.ts.map +1 -1
- package/dist/server/agent-chat/action-filters-a2a.js +27 -0
- package/dist/server/agent-chat/action-filters-a2a.js.map +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +27 -1
- 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/index.d.ts +1 -0
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +1 -0
- package/dist/server/index.js.map +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/dist/settings/org-settings.d.ts +2 -0
- package/dist/settings/org-settings.d.ts.map +1 -1
- package/dist/settings/org-settings.js +5 -1
- package/dist/settings/org-settings.js.map +1 -1
- package/dist/settings/store.d.ts +8 -0
- package/dist/settings/store.d.ts.map +1 -1
- package/dist/settings/store.js +48 -0
- package/dist/settings/store.js.map +1 -1
- package/dist/styles/agent-conversation.css +7 -0
- package/dist/templates/chat/.agents/skills/feature-flags/SKILL.md +169 -0
- package/dist/templates/default/.agents/skills/feature-flags/SKILL.md +169 -0
- package/dist/templates/default/AGENTS.md +1 -0
- package/dist/templates/default/app/i18n/ar-SA.ts +20 -0
- package/dist/templates/default/app/i18n/de-DE.ts +20 -0
- package/dist/templates/default/app/i18n/en-US.ts +20 -0
- package/dist/templates/default/app/i18n/es-ES.ts +20 -0
- package/dist/templates/default/app/i18n/fr-FR.ts +21 -0
- package/dist/templates/default/app/i18n/hi-IN.ts +19 -0
- package/dist/templates/default/app/i18n/ja-JP.ts +20 -0
- package/dist/templates/default/app/i18n/ko-KR.ts +19 -0
- package/dist/templates/default/app/i18n/pt-BR.ts +20 -0
- package/dist/templates/default/app/i18n/zh-CN.ts +19 -0
- package/dist/templates/default/app/i18n/zh-TW.ts +19 -0
- package/dist/templates/headless/.agents/skills/feature-flags/SKILL.md +169 -0
- package/dist/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +28 -0
- package/dist/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +5 -0
- package/dist/templates/workspace-core/.agents/skills/feature-flags/SKILL.md +169 -0
- package/dist/templates/workspace-core/.agents/skills/performance/SKILL.md +13 -0
- package/dist/templates/workspace-core/AGENTS.md +1 -1
- package/dist/templates/workspace-root/AGENTS.md +1 -1
- package/dist/vite/action-types-plugin.d.ts.map +1 -1
- package/dist/vite/action-types-plugin.js +12 -0
- package/dist/vite/action-types-plugin.js.map +1 -1
- package/docs/content/actions.mdx +48 -0
- package/docs/content/locales/ar-SA/actions.mdx +38 -0
- package/docs/content/locales/de-DE/actions.mdx +38 -0
- package/docs/content/locales/es-ES/actions.mdx +38 -0
- package/docs/content/locales/fr-FR/actions.mdx +38 -0
- package/docs/content/locales/hi-IN/actions.mdx +38 -0
- package/docs/content/locales/ja-JP/actions.mdx +38 -0
- package/docs/content/locales/ko-KR/actions.mdx +38 -0
- package/docs/content/locales/pt-BR/actions.mdx +38 -0
- package/docs/content/locales/zh-CN/actions.mdx +38 -0
- package/docs/content/locales/zh-TW/actions.mdx +38 -0
- package/package.json +5 -1
- package/src/templates/chat/.agents/skills/feature-flags/SKILL.md +169 -0
- package/src/templates/default/.agents/skills/feature-flags/SKILL.md +169 -0
- package/src/templates/default/AGENTS.md +1 -0
- package/src/templates/default/app/i18n/ar-SA.ts +20 -0
- package/src/templates/default/app/i18n/de-DE.ts +20 -0
- package/src/templates/default/app/i18n/en-US.ts +20 -0
- package/src/templates/default/app/i18n/es-ES.ts +20 -0
- package/src/templates/default/app/i18n/fr-FR.ts +21 -0
- package/src/templates/default/app/i18n/hi-IN.ts +19 -0
- package/src/templates/default/app/i18n/ja-JP.ts +20 -0
- package/src/templates/default/app/i18n/ko-KR.ts +19 -0
- package/src/templates/default/app/i18n/pt-BR.ts +20 -0
- package/src/templates/default/app/i18n/zh-CN.ts +19 -0
- package/src/templates/default/app/i18n/zh-TW.ts +19 -0
- package/src/templates/headless/.agents/skills/feature-flags/SKILL.md +169 -0
- package/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +28 -0
- package/src/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +5 -0
- package/src/templates/workspace-core/.agents/skills/feature-flags/SKILL.md +169 -0
- package/src/templates/workspace-core/.agents/skills/performance/SKILL.md +13 -0
- package/src/templates/workspace-core/AGENTS.md +1 -1
- package/src/templates/workspace-root/AGENTS.md +1 -1
- package/corpus/templates/analytics/server/handlers/github.ts +0 -200
- package/corpus/templates/analytics/server/handlers/pylon.ts +0 -43
- package/corpus/templates/analytics/server/lib/apollo.ts +0 -167
- package/corpus/templates/analytics/server/lib/commonroom.ts +0 -149
- package/corpus/templates/analytics/server/lib/github.ts +0 -660
- package/corpus/templates/analytics/server/lib/mixpanel.ts +0 -156
- package/corpus/templates/analytics/server/lib/posthog.ts +0 -194
- package/corpus/templates/analytics/server/lib/pylon.ts +0 -109
- package/corpus/templates/analytics/server/routes/api/github/graphql.post.ts +0 -1
- package/corpus/templates/analytics/server/routes/api/github/issue.get.ts +0 -1
- package/corpus/templates/analytics/server/routes/api/github/org-prs.get.ts +0 -1
- package/corpus/templates/analytics/server/routes/api/github/pr.get.ts +0 -1
- package/corpus/templates/analytics/server/routes/api/github/prs.get.ts +0 -1
- package/corpus/templates/analytics/server/routes/api/github/search.get.ts +0 -1
- package/corpus/templates/clips/actions/get-feature-flags.ts +0 -30
- package/corpus/templates/slides/actions/fetch-logos.ts +0 -90
- package/corpus/templates/slides/actions/image-search.ts +0 -64
- package/corpus/templates/slides/actions/import-github.ts +0 -182
- package/corpus/templates/slides/actions/logo-lookup.ts +0 -113
|
@@ -4,9 +4,8 @@ import { z } from "zod";
|
|
|
4
4
|
import {
|
|
5
5
|
getChannelHistory,
|
|
6
6
|
getTeamInfo,
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
searchMessages,
|
|
7
|
+
listChannelsWithCoverage,
|
|
8
|
+
resolveUsersWithCoverage,
|
|
10
9
|
type SlackMessage,
|
|
11
10
|
type Workspace,
|
|
12
11
|
} from "../server/lib/slack";
|
|
@@ -41,7 +40,7 @@ function enrichMessages(messages: SlackMessage[]): SlackMessage[] {
|
|
|
41
40
|
|
|
42
41
|
export default defineAction({
|
|
43
42
|
description:
|
|
44
|
-
"Query the analytics app's configured Slack workspace: team info, channels, channel history, multi-channel history
|
|
43
|
+
"Query the analytics app's configured Slack workspace: team info, channels, channel history, or multi-channel history. Slack messages returned by this action are real source evidence; you may count mentions, code themes, classify sentiment, and summarize qualitative patterns from them while stating the sample size. The legacy search mode is preserved for compatibility but returns migration guidance because the configured bot credential cannot call Slack global search; use the Slack provider corpus recipe for channel-scoped exhaustive search.",
|
|
45
44
|
schema: z.object({
|
|
46
45
|
mode: z
|
|
47
46
|
.enum(["team", "channels", "history", "multi-history", "search"])
|
|
@@ -68,7 +67,10 @@ export default defineAction({
|
|
|
68
67
|
.max(200)
|
|
69
68
|
.default(50)
|
|
70
69
|
.describe("Message limit for history"),
|
|
71
|
-
cursor: z
|
|
70
|
+
cursor: z
|
|
71
|
+
.string()
|
|
72
|
+
.optional()
|
|
73
|
+
.describe("Slack history/latest timestamp or channel-list cursor"),
|
|
72
74
|
cursors: z
|
|
73
75
|
.record(z.string(), z.string())
|
|
74
76
|
.optional()
|
|
@@ -99,12 +101,31 @@ export default defineAction({
|
|
|
99
101
|
const userIds = messages
|
|
100
102
|
.map((message) => message.user)
|
|
101
103
|
.filter((id): id is string => !!id);
|
|
102
|
-
const
|
|
104
|
+
const resolution = await resolveUsersWithCoverage(
|
|
105
|
+
workspace,
|
|
106
|
+
userIds,
|
|
107
|
+
messages,
|
|
108
|
+
);
|
|
103
109
|
return {
|
|
104
110
|
messages,
|
|
105
|
-
users,
|
|
111
|
+
users: resolution.users,
|
|
106
112
|
has_more: result.has_more,
|
|
107
113
|
next_cursor: result.next_cursor,
|
|
114
|
+
truncated: result.truncated,
|
|
115
|
+
pagination: result.pagination,
|
|
116
|
+
coverage: {
|
|
117
|
+
...result.coverage,
|
|
118
|
+
coverage_complete:
|
|
119
|
+
result.coverage.coverage_complete &&
|
|
120
|
+
resolution.coverage.coverage_complete,
|
|
121
|
+
truncated:
|
|
122
|
+
result.coverage.truncated || resolution.coverage.truncated,
|
|
123
|
+
truncation_reasons: [
|
|
124
|
+
...result.coverage.truncation_reasons,
|
|
125
|
+
...resolution.coverage.truncation_reasons,
|
|
126
|
+
],
|
|
127
|
+
authors: resolution.coverage,
|
|
128
|
+
},
|
|
108
129
|
};
|
|
109
130
|
}
|
|
110
131
|
|
|
@@ -113,57 +134,188 @@ export default defineAction({
|
|
|
113
134
|
const channelIds = args.channels.split(",").filter(Boolean);
|
|
114
135
|
const channelNames = args.names ? args.names.split(",") : channelIds;
|
|
115
136
|
const pageSize = Math.min(args.limit, 200);
|
|
116
|
-
const
|
|
117
|
-
channelIds.map((
|
|
118
|
-
getChannelHistory(
|
|
137
|
+
const channelResults = await Promise.allSettled(
|
|
138
|
+
channelIds.map((channelId) =>
|
|
139
|
+
getChannelHistory(
|
|
140
|
+
workspace,
|
|
141
|
+
channelId,
|
|
142
|
+
pageSize,
|
|
143
|
+
args.cursors?.[channelId],
|
|
144
|
+
),
|
|
119
145
|
),
|
|
120
146
|
);
|
|
147
|
+
const successfulResults = channelResults.flatMap((entry, index) =>
|
|
148
|
+
entry.status === "fulfilled"
|
|
149
|
+
? [{ channelId: channelIds[index], result: entry.value }]
|
|
150
|
+
: [],
|
|
151
|
+
);
|
|
152
|
+
const failedChannelIds = channelResults.flatMap((entry, index) =>
|
|
153
|
+
entry.status === "rejected" ? [channelIds[index]] : [],
|
|
154
|
+
);
|
|
121
155
|
|
|
122
|
-
const allMessages: (SlackMessage & {
|
|
156
|
+
const allMessages: (SlackMessage & {
|
|
157
|
+
channel_id: string;
|
|
158
|
+
channel_name: string;
|
|
159
|
+
})[] = [];
|
|
123
160
|
const perChannelHasMore: Record<string, boolean> = {};
|
|
124
161
|
const nextCursors: Record<string, string> = {};
|
|
125
162
|
|
|
126
|
-
|
|
127
|
-
const channelId = channelIds[idx];
|
|
163
|
+
successfulResults.forEach(({ channelId, result }) => {
|
|
128
164
|
perChannelHasMore[channelId] = result.has_more;
|
|
129
|
-
if (result.next_cursor) nextCursors[channelId] = result.next_cursor;
|
|
130
165
|
for (const message of result.messages) {
|
|
131
166
|
allMessages.push({
|
|
132
167
|
...message,
|
|
133
|
-
|
|
168
|
+
channel_id: channelId,
|
|
169
|
+
channel_name:
|
|
170
|
+
channelNames[channelIds.indexOf(channelId)] || channelId,
|
|
134
171
|
});
|
|
135
172
|
}
|
|
136
173
|
});
|
|
174
|
+
failedChannelIds.forEach((channelId) => {
|
|
175
|
+
perChannelHasMore[channelId] = true;
|
|
176
|
+
});
|
|
137
177
|
|
|
138
178
|
allMessages.sort((a, b) => parseFloat(b.ts) - parseFloat(a.ts));
|
|
139
|
-
const
|
|
179
|
+
const pageMessages = allMessages.slice(0, pageSize);
|
|
180
|
+
const emittedByChannel = new Map<string, SlackMessage[]>();
|
|
181
|
+
for (const message of pageMessages) {
|
|
182
|
+
const emitted = emittedByChannel.get(message.channel_id) ?? [];
|
|
183
|
+
emitted.push(message);
|
|
184
|
+
emittedByChannel.set(message.channel_id, emitted);
|
|
185
|
+
}
|
|
186
|
+
for (const channelId of channelIds) {
|
|
187
|
+
const emitted = emittedByChannel.get(channelId);
|
|
188
|
+
const nextCursor = emitted?.[emitted.length - 1]?.ts;
|
|
189
|
+
if (nextCursor) nextCursors[channelId] = nextCursor;
|
|
190
|
+
else if (args.cursors?.[channelId]) {
|
|
191
|
+
nextCursors[channelId] = args.cursors[channelId];
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
const messages = pageMessages.map((message) => {
|
|
196
|
+
const enriched = enrichMessages([message])[0] ?? message;
|
|
197
|
+
const { channel_id: _channelId, ...rest } =
|
|
198
|
+
enriched as typeof message;
|
|
199
|
+
return rest;
|
|
200
|
+
});
|
|
140
201
|
const userIds = messages
|
|
141
202
|
.map((message) => message.user)
|
|
142
203
|
.filter((id): id is string => !!id);
|
|
143
|
-
const
|
|
204
|
+
const resolution = await resolveUsersWithCoverage(
|
|
205
|
+
workspace,
|
|
206
|
+
userIds,
|
|
207
|
+
messages,
|
|
208
|
+
);
|
|
209
|
+
const providerTruncated = successfulResults.some(
|
|
210
|
+
({ result }) => result.truncated,
|
|
211
|
+
);
|
|
212
|
+
const mergedResultTruncated = allMessages.length > pageSize;
|
|
213
|
+
const truncated =
|
|
214
|
+
providerTruncated ||
|
|
215
|
+
mergedResultTruncated ||
|
|
216
|
+
failedChannelIds.length > 0;
|
|
217
|
+
const truncationReasons = [
|
|
218
|
+
...(providerTruncated ? ["provider_has_more"] : []),
|
|
219
|
+
...(mergedResultTruncated ? ["merged_result_limit"] : []),
|
|
220
|
+
...failedChannelIds.map(
|
|
221
|
+
(channelId) => `channel_fetch_failed:${channelId}`,
|
|
222
|
+
),
|
|
223
|
+
];
|
|
224
|
+
const channelPagination = Object.fromEntries(
|
|
225
|
+
channelResults.map((entry, index) => [
|
|
226
|
+
channelIds[index],
|
|
227
|
+
entry.status === "fulfilled"
|
|
228
|
+
? entry.value.pagination
|
|
229
|
+
: {
|
|
230
|
+
cursor_type: "latest_ts" as const,
|
|
231
|
+
...(args.cursors?.[channelIds[index]]
|
|
232
|
+
? { request_cursor: args.cursors[channelIds[index]] }
|
|
233
|
+
: {}),
|
|
234
|
+
},
|
|
235
|
+
]),
|
|
236
|
+
);
|
|
237
|
+
const channelCoverage = Object.fromEntries(
|
|
238
|
+
channelResults.map((entry, index) => [
|
|
239
|
+
channelIds[index],
|
|
240
|
+
entry.status === "fulfilled"
|
|
241
|
+
? entry.value.coverage
|
|
242
|
+
: {
|
|
243
|
+
requested: pageSize,
|
|
244
|
+
fetched: 0,
|
|
245
|
+
returned: 0,
|
|
246
|
+
pages_fetched: 0,
|
|
247
|
+
coverage_complete: false,
|
|
248
|
+
truncated: true,
|
|
249
|
+
truncation_reasons: [
|
|
250
|
+
`channel_fetch_failed:${channelIds[index]}`,
|
|
251
|
+
],
|
|
252
|
+
},
|
|
253
|
+
]),
|
|
254
|
+
);
|
|
144
255
|
return {
|
|
145
256
|
messages,
|
|
146
|
-
users,
|
|
257
|
+
users: resolution.users,
|
|
147
258
|
has_more:
|
|
148
259
|
Object.values(perChannelHasMore).some(Boolean) ||
|
|
149
|
-
allMessages.length > pageSize
|
|
260
|
+
allMessages.length > pageSize ||
|
|
261
|
+
failedChannelIds.length > 0,
|
|
150
262
|
next_cursors: nextCursors,
|
|
151
263
|
total: allMessages.length,
|
|
264
|
+
truncated,
|
|
265
|
+
pagination: {
|
|
266
|
+
cursor_type: "per_channel_latest_ts",
|
|
267
|
+
request_cursors: args.cursors ?? {},
|
|
268
|
+
next_cursors: nextCursors,
|
|
269
|
+
channels: channelPagination,
|
|
270
|
+
},
|
|
271
|
+
coverage: {
|
|
272
|
+
requested: channelIds.length * pageSize,
|
|
273
|
+
fetched: allMessages.length,
|
|
274
|
+
returned: messages.length,
|
|
275
|
+
pages_fetched: successfulResults.length,
|
|
276
|
+
coverage_complete:
|
|
277
|
+
!truncated && resolution.coverage.coverage_complete,
|
|
278
|
+
truncated: truncated || resolution.coverage.truncated,
|
|
279
|
+
truncation_reasons: [
|
|
280
|
+
...truncationReasons,
|
|
281
|
+
...resolution.coverage.truncation_reasons,
|
|
282
|
+
],
|
|
283
|
+
channels: channelCoverage,
|
|
284
|
+
authors: resolution.coverage,
|
|
285
|
+
},
|
|
152
286
|
};
|
|
153
287
|
}
|
|
154
288
|
|
|
155
289
|
if (args.mode === "search") {
|
|
156
290
|
if (!args.query) return { error: "query is required" };
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
291
|
+
return {
|
|
292
|
+
messages: [],
|
|
293
|
+
users: {},
|
|
294
|
+
total: 0,
|
|
295
|
+
unsupported: true,
|
|
296
|
+
truncated: true,
|
|
297
|
+
coverage: {
|
|
298
|
+
requested: 0,
|
|
299
|
+
fetched: 0,
|
|
300
|
+
returned: 0,
|
|
301
|
+
pages_fetched: 0,
|
|
302
|
+
coverage_complete: false,
|
|
303
|
+
truncated: true,
|
|
304
|
+
truncation_reasons: ["bot_token_global_search_unsupported"],
|
|
305
|
+
},
|
|
306
|
+
guidance:
|
|
307
|
+
"Slack global search is not available with the configured bot credential. Resolve a channel id, then use provider-api-catalog(provider='slack') and provider-corpus-job with the Slack conversations.history corpus recipe so cursor pages are fetched inside one resumable operation.",
|
|
308
|
+
};
|
|
163
309
|
}
|
|
164
310
|
|
|
165
|
-
const
|
|
166
|
-
return {
|
|
311
|
+
const result = await listChannelsWithCoverage(workspace, args.cursor);
|
|
312
|
+
return {
|
|
313
|
+
channels: result.channels,
|
|
314
|
+
total: result.total,
|
|
315
|
+
truncated: result.truncated,
|
|
316
|
+
pagination: result.pagination,
|
|
317
|
+
coverage: result.coverage,
|
|
318
|
+
};
|
|
167
319
|
} catch (err) {
|
|
168
320
|
return providerError(err);
|
|
169
321
|
}
|
|
@@ -456,6 +456,19 @@ export default defineAction({
|
|
|
456
456
|
"SQL editor",
|
|
457
457
|
],
|
|
458
458
|
},
|
|
459
|
+
{
|
|
460
|
+
id: "flags",
|
|
461
|
+
label: "Feature flags",
|
|
462
|
+
path: "/agents?view=flags",
|
|
463
|
+
adminOnly: true,
|
|
464
|
+
action: "list-workspace-feature-flags",
|
|
465
|
+
includes: [
|
|
466
|
+
"workspace app flag definitions",
|
|
467
|
+
"rollout state",
|
|
468
|
+
"exact user and organization targeting",
|
|
469
|
+
"deterministic percentage rollout",
|
|
470
|
+
],
|
|
471
|
+
},
|
|
459
472
|
];
|
|
460
473
|
if (screen.agentsView === "dashboards") {
|
|
461
474
|
screen.dashboardUsageStatsAction = "list-dashboard-usage-stats";
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
import {
|
|
2
|
+
FeatureFlagsEditor,
|
|
3
|
+
useActionMutation,
|
|
4
|
+
useActionQuery,
|
|
5
|
+
useT,
|
|
6
|
+
type FeatureFlagMetadata,
|
|
7
|
+
type SetFeatureFlagInput,
|
|
8
|
+
} from "@agent-native/core/client";
|
|
9
|
+
import { IconRefresh } from "@tabler/icons-react";
|
|
10
|
+
import { useQueryClient } from "@tanstack/react-query";
|
|
11
|
+
|
|
12
|
+
import { Badge } from "@/components/ui/badge";
|
|
13
|
+
import { Button } from "@/components/ui/button";
|
|
14
|
+
|
|
15
|
+
export interface FeatureFlag {
|
|
16
|
+
key: string;
|
|
17
|
+
displayName?: string | null;
|
|
18
|
+
description?: string | null;
|
|
19
|
+
defaultValue?: boolean;
|
|
20
|
+
rules?: FeatureFlagMetadata["rules"];
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface FlagApp {
|
|
24
|
+
appId?: string;
|
|
25
|
+
appName?: string;
|
|
26
|
+
appOrigin?: string;
|
|
27
|
+
state?: string;
|
|
28
|
+
id?: string;
|
|
29
|
+
name?: string;
|
|
30
|
+
url?: string;
|
|
31
|
+
status?: string;
|
|
32
|
+
reason?: string;
|
|
33
|
+
flags?: FeatureFlag[];
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface FlagDirectory {
|
|
37
|
+
directoryStatus?: string;
|
|
38
|
+
apps?: FlagApp[];
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function asDirectory(value: unknown): FlagDirectory {
|
|
42
|
+
return value && typeof value === "object" ? (value as FlagDirectory) : {};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function isReady(app: FlagApp) {
|
|
46
|
+
return app.state === "ready" || app.status === "ready";
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function statusLabel(app: FlagApp) {
|
|
50
|
+
return app.state || app.status || "unknown-legacy";
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function appId(app: FlagApp) {
|
|
54
|
+
return app.appId || app.id || "";
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function appName(app: FlagApp) {
|
|
58
|
+
return app.appName || app.name || appId(app);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export function qualifyFleetMutation(
|
|
62
|
+
appId: string,
|
|
63
|
+
input: SetFeatureFlagInput,
|
|
64
|
+
) {
|
|
65
|
+
return { appId, ...input };
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export function FeatureFlagsFleetPanel() {
|
|
69
|
+
const t = useT();
|
|
70
|
+
const client = useQueryClient();
|
|
71
|
+
const flags = useActionQuery<unknown>(
|
|
72
|
+
"list-workspace-feature-flags",
|
|
73
|
+
undefined,
|
|
74
|
+
{ retry: false },
|
|
75
|
+
);
|
|
76
|
+
const mutation = useActionMutation<
|
|
77
|
+
unknown,
|
|
78
|
+
{ appId: string } & SetFeatureFlagInput
|
|
79
|
+
>("set-workspace-feature-flag", {
|
|
80
|
+
onMutate: async (input) => {
|
|
81
|
+
await client.cancelQueries({
|
|
82
|
+
queryKey: ["action", "list-workspace-feature-flags"],
|
|
83
|
+
});
|
|
84
|
+
const key = ["action", "list-workspace-feature-flags", undefined];
|
|
85
|
+
const previous = client.getQueryData(key);
|
|
86
|
+
client.setQueryData(key, (old: unknown) => {
|
|
87
|
+
const data = asDirectory(old);
|
|
88
|
+
return {
|
|
89
|
+
...data,
|
|
90
|
+
apps: data.apps?.map((app) =>
|
|
91
|
+
appId(app) !== input.appId
|
|
92
|
+
? app
|
|
93
|
+
: {
|
|
94
|
+
...app,
|
|
95
|
+
flags: app.flags?.map((flag) =>
|
|
96
|
+
flag.key !== input.key
|
|
97
|
+
? flag
|
|
98
|
+
: {
|
|
99
|
+
...flag,
|
|
100
|
+
rules:
|
|
101
|
+
input.operation === "replace-rules" && input.rules
|
|
102
|
+
? input.rules
|
|
103
|
+
: input.operation === "off"
|
|
104
|
+
? {
|
|
105
|
+
...flag.rules!,
|
|
106
|
+
mode: "off",
|
|
107
|
+
emails: [],
|
|
108
|
+
orgIds: [],
|
|
109
|
+
percentage: 0,
|
|
110
|
+
}
|
|
111
|
+
: flag.rules,
|
|
112
|
+
},
|
|
113
|
+
),
|
|
114
|
+
},
|
|
115
|
+
),
|
|
116
|
+
};
|
|
117
|
+
});
|
|
118
|
+
return { previous, key };
|
|
119
|
+
},
|
|
120
|
+
onError: (_error, _input, context: any) => {
|
|
121
|
+
if (context) client.setQueryData(context.key, context.previous);
|
|
122
|
+
},
|
|
123
|
+
onSettled: () =>
|
|
124
|
+
void client.invalidateQueries({
|
|
125
|
+
queryKey: ["action", "list-workspace-feature-flags"],
|
|
126
|
+
}),
|
|
127
|
+
});
|
|
128
|
+
const directory = asDirectory(flags.data);
|
|
129
|
+
const apps = directory.apps ?? [];
|
|
130
|
+
if (flags.isLoading) return <PanelLoading />;
|
|
131
|
+
if (flags.error || directory.directoryStatus === "unavailable")
|
|
132
|
+
return (
|
|
133
|
+
<StatusState
|
|
134
|
+
title={t("agents.flagsUnavailable")}
|
|
135
|
+
detail={flags.error?.message || t("agents.flagsUnreachable")}
|
|
136
|
+
onRetry={() => void flags.refetch()}
|
|
137
|
+
/>
|
|
138
|
+
);
|
|
139
|
+
if (apps.length === 0)
|
|
140
|
+
return (
|
|
141
|
+
<StatusState
|
|
142
|
+
title={t("agents.flagsEmpty")}
|
|
143
|
+
detail={t("agents.flagsEmptyDetail")}
|
|
144
|
+
onRetry={() => void flags.refetch()}
|
|
145
|
+
/>
|
|
146
|
+
);
|
|
147
|
+
return (
|
|
148
|
+
<div className="flex flex-col gap-4">
|
|
149
|
+
<div className="flex items-start justify-between gap-3">
|
|
150
|
+
<div>
|
|
151
|
+
<h2 className="text-sm font-semibold">{t("agents.featureFlags")}</h2>
|
|
152
|
+
<p className="mt-1 text-sm text-muted-foreground">
|
|
153
|
+
{t("agents.featureFlagsDescription")}
|
|
154
|
+
</p>
|
|
155
|
+
</div>
|
|
156
|
+
<Button
|
|
157
|
+
variant="outline"
|
|
158
|
+
size="sm"
|
|
159
|
+
onClick={() => void flags.refetch()}
|
|
160
|
+
>
|
|
161
|
+
<IconRefresh className="me-2 size-4" />
|
|
162
|
+
{t("agents.reloadFlags")}
|
|
163
|
+
</Button>
|
|
164
|
+
</div>
|
|
165
|
+
{apps.map((app) => (
|
|
166
|
+
<section key={appId(app)} className="overflow-hidden rounded-lg border">
|
|
167
|
+
<div className="flex items-center justify-between gap-3 border-b bg-muted/30 px-4 py-3">
|
|
168
|
+
<div>
|
|
169
|
+
<h3 className="text-sm font-medium">{appName(app)}</h3>
|
|
170
|
+
{app.reason ? (
|
|
171
|
+
<p className="text-xs text-muted-foreground">{app.reason}</p>
|
|
172
|
+
) : null}
|
|
173
|
+
</div>
|
|
174
|
+
{!isReady(app) ? (
|
|
175
|
+
<Badge variant="outline">{statusLabel(app)}</Badge>
|
|
176
|
+
) : null}
|
|
177
|
+
</div>
|
|
178
|
+
{isReady(app) ? (
|
|
179
|
+
<div className="p-4">
|
|
180
|
+
<FeatureFlagsEditor
|
|
181
|
+
flags={(app.flags ?? []).filter(
|
|
182
|
+
(flag): flag is FeatureFlagMetadata =>
|
|
183
|
+
!!flag.rules && typeof flag.defaultValue === "boolean",
|
|
184
|
+
)}
|
|
185
|
+
isPending={mutation.isPending}
|
|
186
|
+
error={
|
|
187
|
+
mutation.variables?.appId === appId(app)
|
|
188
|
+
? mutation.error
|
|
189
|
+
: null
|
|
190
|
+
}
|
|
191
|
+
errorFlagKey={
|
|
192
|
+
mutation.variables?.appId === appId(app)
|
|
193
|
+
? mutation.variables.key
|
|
194
|
+
: null
|
|
195
|
+
}
|
|
196
|
+
showHeader={false}
|
|
197
|
+
onMutate={(input) =>
|
|
198
|
+
mutation.mutate(qualifyFleetMutation(appId(app), input))
|
|
199
|
+
}
|
|
200
|
+
/>
|
|
201
|
+
</div>
|
|
202
|
+
) : (
|
|
203
|
+
<div className="p-4 text-sm text-muted-foreground">
|
|
204
|
+
{statusLabel(app) === "no-definitions"
|
|
205
|
+
? t("agents.noFlagDefinitions")
|
|
206
|
+
: t("agents.flagsNotReady", { status: statusLabel(app) })}
|
|
207
|
+
</div>
|
|
208
|
+
)}
|
|
209
|
+
</section>
|
|
210
|
+
))}
|
|
211
|
+
</div>
|
|
212
|
+
);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
function PanelLoading() {
|
|
216
|
+
const t = useT();
|
|
217
|
+
return (
|
|
218
|
+
<div className="flex min-h-52 items-center justify-center rounded-lg border text-sm text-muted-foreground">
|
|
219
|
+
{t("agents.loading")}
|
|
220
|
+
</div>
|
|
221
|
+
);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
function StatusState({
|
|
225
|
+
title,
|
|
226
|
+
detail,
|
|
227
|
+
onRetry,
|
|
228
|
+
}: {
|
|
229
|
+
title: string;
|
|
230
|
+
detail: string;
|
|
231
|
+
onRetry: () => void;
|
|
232
|
+
}) {
|
|
233
|
+
const t = useT();
|
|
234
|
+
return (
|
|
235
|
+
<div className="rounded-lg border p-6">
|
|
236
|
+
<h2 className="text-sm font-semibold">{title}</h2>
|
|
237
|
+
<p className="mt-1 text-sm text-muted-foreground">{detail}</p>
|
|
238
|
+
<Button className="mt-4" size="sm" variant="outline" onClick={onRetry}>
|
|
239
|
+
{t("sidebar.retry")}
|
|
240
|
+
</Button>
|
|
241
|
+
</div>
|
|
242
|
+
);
|
|
243
|
+
}
|