@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.
Files changed (502) hide show
  1. package/corpus/README.md +2 -2
  2. package/corpus/core/CHANGELOG.md +24 -0
  3. package/corpus/core/docs/content/actions.mdx +48 -0
  4. package/corpus/core/docs/content/locales/ar-SA/actions.mdx +38 -0
  5. package/corpus/core/docs/content/locales/de-DE/actions.mdx +38 -0
  6. package/corpus/core/docs/content/locales/es-ES/actions.mdx +38 -0
  7. package/corpus/core/docs/content/locales/fr-FR/actions.mdx +38 -0
  8. package/corpus/core/docs/content/locales/hi-IN/actions.mdx +38 -0
  9. package/corpus/core/docs/content/locales/ja-JP/actions.mdx +38 -0
  10. package/corpus/core/docs/content/locales/ko-KR/actions.mdx +38 -0
  11. package/corpus/core/docs/content/locales/pt-BR/actions.mdx +38 -0
  12. package/corpus/core/docs/content/locales/zh-CN/actions.mdx +38 -0
  13. package/corpus/core/docs/content/locales/zh-TW/actions.mdx +38 -0
  14. package/corpus/core/package.json +5 -1
  15. package/corpus/core/src/a2a/client.ts +140 -17
  16. package/corpus/core/src/a2a/handlers.ts +60 -0
  17. package/corpus/core/src/a2a/index.ts +6 -1
  18. package/corpus/core/src/a2a/invoke.ts +68 -1
  19. package/corpus/core/src/a2a/server.ts +13 -1
  20. package/corpus/core/src/a2a/types.ts +16 -0
  21. package/corpus/core/src/a2a-claims.ts +52 -0
  22. package/corpus/core/src/action.ts +7 -2
  23. package/corpus/core/src/agent/production-agent.ts +10 -4
  24. package/corpus/core/src/audit/record.ts +6 -0
  25. package/corpus/core/src/client/AssistantChat.tsx +648 -603
  26. package/corpus/core/src/client/MultiTabAssistantChat.tsx +31 -4
  27. package/corpus/core/src/client/agent-chat-adapter.ts +23 -37
  28. package/corpus/core/src/client/agent-sidebar-state.ts +4 -0
  29. package/corpus/core/src/client/analytics.ts +84 -0
  30. package/corpus/core/src/client/chat/message-components.tsx +94 -22
  31. package/corpus/core/src/client/chat/tool-call-display.tsx +170 -47
  32. package/corpus/core/src/client/chat/use-agent-chat-lifecycle-tracking.ts +74 -0
  33. package/corpus/core/src/client/chat-thread-url.ts +11 -0
  34. package/corpus/core/src/client/error-capture.ts +12 -0
  35. package/corpus/core/src/client/extensions/ExtensionSlot.tsx +37 -1
  36. package/corpus/core/src/client/feature-flags/FeatureFlagsPanel.tsx +519 -0
  37. package/corpus/core/src/client/feature-flags/helpers.ts +77 -0
  38. package/corpus/core/src/client/feature-flags/index.ts +13 -0
  39. package/corpus/core/src/client/feature-flags/types.ts +29 -0
  40. package/corpus/core/src/client/feature-flags/use-feature-flag.ts +26 -0
  41. package/corpus/core/src/client/index.ts +13 -0
  42. package/corpus/core/src/client/route-chunk-recovery.ts +20 -8
  43. package/corpus/core/src/client/session-replay.ts +31 -0
  44. package/corpus/core/src/extensions/actions.ts +2 -14
  45. package/corpus/core/src/extensions/routes.ts +1 -1
  46. package/corpus/core/src/extensions/store.ts +1 -1
  47. package/corpus/core/src/feature-flags/a2a-action-route.ts +56 -0
  48. package/corpus/core/src/feature-flags/actions/get-feature-flags.ts +24 -0
  49. package/corpus/core/src/feature-flags/actions/list-feature-flags.ts +69 -0
  50. package/corpus/core/src/feature-flags/actions/set-feature-flag.ts +89 -0
  51. package/corpus/core/src/feature-flags/index.ts +21 -0
  52. package/corpus/core/src/feature-flags/permissions.ts +53 -0
  53. package/corpus/core/src/feature-flags/plugin.ts +44 -0
  54. package/corpus/core/src/feature-flags/registry.ts +96 -0
  55. package/corpus/core/src/feature-flags/store.ts +176 -0
  56. package/corpus/core/src/index.ts +15 -0
  57. package/corpus/core/src/localization/default-messages.ts +50 -0
  58. package/corpus/core/src/mcp/build-server.ts +2 -2
  59. package/corpus/core/src/progress/actions.ts +4 -2
  60. package/corpus/core/src/provider-api/index.ts +205 -105
  61. package/corpus/core/src/scripts/call-agent.ts +137 -17
  62. package/corpus/core/src/server/action-discovery.ts +12 -0
  63. package/corpus/core/src/server/action-routes.ts +47 -5
  64. package/corpus/core/src/server/agent-chat/action-filters-a2a.ts +40 -0
  65. package/corpus/core/src/server/agent-chat-plugin.ts +31 -0
  66. package/corpus/core/src/server/index.ts +1 -0
  67. package/corpus/core/src/settings/org-settings.ts +13 -0
  68. package/corpus/core/src/settings/store.ts +57 -0
  69. package/corpus/core/src/styles/agent-conversation.css +7 -0
  70. package/corpus/core/src/templates/default/.agents/skills/feature-flags/SKILL.md +169 -0
  71. package/corpus/core/src/templates/default/AGENTS.md +1 -0
  72. package/corpus/core/src/templates/default/app/i18n/ar-SA.ts +20 -0
  73. package/corpus/core/src/templates/default/app/i18n/de-DE.ts +20 -0
  74. package/corpus/core/src/templates/default/app/i18n/en-US.ts +20 -0
  75. package/corpus/core/src/templates/default/app/i18n/es-ES.ts +20 -0
  76. package/corpus/core/src/templates/default/app/i18n/fr-FR.ts +21 -0
  77. package/corpus/core/src/templates/default/app/i18n/hi-IN.ts +19 -0
  78. package/corpus/core/src/templates/default/app/i18n/ja-JP.ts +20 -0
  79. package/corpus/core/src/templates/default/app/i18n/ko-KR.ts +19 -0
  80. package/corpus/core/src/templates/default/app/i18n/pt-BR.ts +20 -0
  81. package/corpus/core/src/templates/default/app/i18n/zh-CN.ts +19 -0
  82. package/corpus/core/src/templates/default/app/i18n/zh-TW.ts +19 -0
  83. package/corpus/core/src/templates/headless/.agents/skills/feature-flags/SKILL.md +169 -0
  84. package/corpus/core/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +28 -0
  85. package/corpus/core/src/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +5 -0
  86. package/corpus/core/src/templates/workspace-core/.agents/skills/feature-flags/SKILL.md +169 -0
  87. package/corpus/core/src/templates/workspace-core/.agents/skills/performance/SKILL.md +13 -0
  88. package/corpus/core/src/templates/workspace-core/AGENTS.md +1 -1
  89. package/corpus/core/src/templates/workspace-root/AGENTS.md +1 -1
  90. package/corpus/core/src/vite/action-types-plugin.ts +12 -0
  91. package/corpus/templates/analytics/.agents/skills/dashboard-management/SKILL.md +29 -10
  92. package/corpus/templates/analytics/.agents/skills/feature-flags/SKILL.md +169 -0
  93. package/corpus/templates/analytics/.agents/skills/gong/SKILL.md +54 -23
  94. package/corpus/templates/analytics/.builder/skills/apollo/SKILL.md +19 -41
  95. package/corpus/templates/analytics/.builder/skills/commonroom/SKILL.md +20 -35
  96. package/corpus/templates/analytics/.builder/skills/github/SKILL.md +23 -67
  97. package/corpus/templates/analytics/.builder/skills/pylon/SKILL.md +25 -43
  98. package/corpus/templates/analytics/AGENTS.md +37 -16
  99. package/corpus/templates/analytics/actions/account-deep-dive.ts +1 -0
  100. package/corpus/templates/analytics/actions/configure-gong-native-insights.ts +29 -0
  101. package/corpus/templates/analytics/actions/content-calendar-schema.ts +8 -4
  102. package/corpus/templates/analytics/actions/content-calendar.ts +12 -4
  103. package/corpus/templates/analytics/actions/dashboard-mutation-api.ts +2 -1
  104. package/corpus/templates/analytics/actions/gong-calls.ts +113 -22
  105. package/corpus/templates/analytics/actions/gong-native-insights.ts +166 -0
  106. package/corpus/templates/analytics/actions/hubspot-deals.ts +190 -46
  107. package/corpus/templates/analytics/actions/list-workspace-feature-flags.ts +15 -0
  108. package/corpus/templates/analytics/actions/navigate.ts +2 -2
  109. package/corpus/templates/analytics/actions/pylon-issues.ts +123 -0
  110. package/corpus/templates/analytics/actions/set-workspace-feature-flag.ts +45 -0
  111. package/corpus/templates/analytics/actions/slack-messages.ts +179 -27
  112. package/corpus/templates/analytics/actions/view-screen.ts +13 -0
  113. package/corpus/templates/analytics/app/components/agents/FeatureFlagsFleetPanel.tsx +243 -0
  114. package/corpus/templates/analytics/app/components/dashboard/SqlChart.tsx +48 -152
  115. package/corpus/templates/analytics/app/components/layout/CommandPalette.tsx +11 -3
  116. package/corpus/templates/analytics/app/components/ui/chart.tsx +1 -1
  117. package/corpus/templates/analytics/app/hooks/use-chart-tooltip-flip.ts +21 -6
  118. package/corpus/templates/analytics/app/hooks/use-navigation-state.ts +3 -1
  119. package/corpus/templates/analytics/app/i18n/zh-TW.ts +30 -0
  120. package/corpus/templates/analytics/app/i18n-data.ts +385 -0
  121. package/corpus/templates/analytics/app/pages/Agents.tsx +22 -2
  122. package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/PanelEditorDialog.tsx +181 -30
  123. package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/SqlChartCard.tsx +6 -0
  124. package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/types.ts +4 -3
  125. package/corpus/templates/analytics/changelog/2026-07-17-dashboard-editors-can-add-shared-extensions-or-opt-into-per-.md +6 -0
  126. package/corpus/templates/analytics/changelog/2026-07-17-dashboard-extensions-show-a-loading-skeleton.md +6 -0
  127. package/corpus/templates/analytics/changelog/2026-07-17-errors-now-group-repeat-failures-consistently-and-keep-priva.md +6 -0
  128. package/corpus/templates/analytics/changelog/2026-07-17-gong-transcript-reviews-now-batch-bounded-call-windows-for-f.md +6 -0
  129. package/corpus/templates/analytics/changelog/2026-07-17-hubspot-deal-filters-now-run-in-hubspot-before-paging-result.md +6 -0
  130. package/corpus/templates/analytics/changelog/2026-07-17-manage-feature-flag-rollouts-across-your-organization-s-apps.md +6 -0
  131. package/corpus/templates/analytics/changelog/2026-07-17-notion-content-calendars-now-discover-the-matching-database-.md +6 -0
  132. package/corpus/templates/analytics/changelog/2026-07-17-pylon-dashboard-reads-now-use-the-paginated-issue-search-api.md +6 -0
  133. package/corpus/templates/analytics/changelog/2026-07-17-slack-reads-no-longer-join-channels-and-report-pagination-coverage.md +6 -0
  134. package/corpus/templates/analytics/server/handlers/notion.ts +14 -3
  135. package/corpus/templates/analytics/server/handlers/slack.ts +182 -29
  136. package/corpus/templates/analytics/server/lib/agent-chat-plan-mode.ts +2 -6
  137. package/corpus/templates/analytics/server/lib/analytics-connector-catalog.ts +6 -2
  138. package/corpus/templates/analytics/server/lib/db-admin-connections.ts +13 -5
  139. package/corpus/templates/analytics/server/lib/error-capture.ts +75 -8
  140. package/corpus/templates/analytics/server/lib/gong-native-policy.ts +72 -0
  141. package/corpus/templates/analytics/server/lib/gong.ts +54 -66
  142. package/corpus/templates/analytics/server/lib/hubspot.ts +40 -3
  143. package/corpus/templates/analytics/server/lib/notion.ts +83 -8
  144. package/corpus/templates/analytics/server/lib/real-data-actions.ts +4 -0
  145. package/corpus/templates/analytics/server/lib/slack.ts +242 -90
  146. package/corpus/templates/analytics/server/lib/workspace-feature-flags.ts +347 -0
  147. package/corpus/templates/analytics/server/plugins/agent-chat.ts +3 -3
  148. package/corpus/templates/analytics/server/routes/api/pylon/accounts.get.ts +42 -1
  149. package/corpus/templates/analytics/server/routes/api/pylon/issues.get.ts +71 -1
  150. package/corpus/templates/analytics/server/routes/api/test-connection.post.ts +44 -4
  151. package/corpus/templates/assets/.agents/skills/feature-flags/SKILL.md +169 -0
  152. package/corpus/templates/brain/.agents/skills/feature-flags/SKILL.md +169 -0
  153. package/corpus/templates/calendar/.agents/skills/feature-flags/SKILL.md +169 -0
  154. package/corpus/templates/chat/.agents/skills/feature-flags/SKILL.md +169 -0
  155. package/corpus/templates/clips/.agents/skills/feature-flags/SKILL.md +169 -0
  156. package/corpus/templates/clips/app/components/library/bulk-action-toolbar.tsx +19 -1
  157. package/corpus/templates/clips/app/components/library/create-folder-dialog.tsx +123 -0
  158. package/corpus/templates/clips/app/components/library/library-grid.tsx +42 -4
  159. package/corpus/templates/clips/app/components/library/recording-card.tsx +30 -0
  160. package/corpus/templates/clips/app/entry.client.tsx +6 -1
  161. package/corpus/templates/clips/app/i18n/ar-SA.ts +12 -1
  162. package/corpus/templates/clips/app/i18n/de-DE.ts +12 -1
  163. package/corpus/templates/clips/app/i18n/en-US.ts +12 -1
  164. package/corpus/templates/clips/app/i18n/es-ES.ts +11 -1
  165. package/corpus/templates/clips/app/i18n/fr-FR.ts +11 -1
  166. package/corpus/templates/clips/app/i18n/hi-IN.ts +10 -1
  167. package/corpus/templates/clips/app/i18n/ja-JP.ts +12 -1
  168. package/corpus/templates/clips/app/i18n/ko-KR.ts +11 -1
  169. package/corpus/templates/clips/app/i18n/pt-BR.ts +11 -1
  170. package/corpus/templates/clips/app/i18n/zh-CN.ts +11 -1
  171. package/corpus/templates/clips/app/i18n/zh-TW.ts +11 -1
  172. package/corpus/templates/clips/app/routes/_app.settings._index.tsx +72 -1
  173. package/corpus/templates/clips/changelog/2026-07-17-choose-which-workspace-receives-new-clips-recordings-and-des.md +6 -0
  174. package/corpus/templates/clips/changelog/2026-07-17-create-folders-directly-from-the-move-menu.md +6 -0
  175. package/corpus/templates/clips/changelog/2026-07-17-failed-desktop-uploads-now-offer-a-direct-way-to-reopen-clip.md +6 -0
  176. package/corpus/templates/clips/desktop/src/app.tsx +1 -1
  177. package/corpus/templates/clips/server/plugins/feature-flags.ts +11 -0
  178. package/corpus/templates/clips/shared/feature-flags.ts +30 -37
  179. package/corpus/templates/content/.agents/skills/feature-flags/SKILL.md +169 -0
  180. package/corpus/templates/content/app/entry.client.tsx +6 -1
  181. package/corpus/templates/design/.agents/skills/feature-flags/SKILL.md +169 -0
  182. package/corpus/templates/design/AGENTS.md +5 -3
  183. package/corpus/templates/design/actions/add-fusion-screens.ts +4 -6
  184. package/corpus/templates/design/actions/apply-fusion-edits.ts +4 -6
  185. package/corpus/templates/design/actions/create-fusion-app.ts +5 -4
  186. package/corpus/templates/design/actions/deploy-fusion-app.ts +4 -3
  187. package/corpus/templates/design/actions/get-fusion-deploy-status.ts +4 -6
  188. package/corpus/templates/design/actions/list-fusion-edits.ts +4 -3
  189. package/corpus/templates/design/actions/push-fusion-app.ts +4 -6
  190. package/corpus/templates/design/actions/queue-fusion-edit.ts +4 -3
  191. package/corpus/templates/design/actions/send-fusion-message.ts +4 -6
  192. package/corpus/templates/design/actions/sync-fusion-app.ts +4 -3
  193. package/corpus/templates/design/app/components/editor/PromptDialog.tsx +1 -1
  194. package/corpus/templates/design/app/pages/Index.tsx +8 -6
  195. package/corpus/templates/design/server/plugins/feature-flags.ts +5 -0
  196. package/corpus/templates/design/shared/full-app.ts +10 -7
  197. package/corpus/templates/dispatch/.agents/skills/feature-flags/SKILL.md +169 -0
  198. package/corpus/templates/dispatch/AGENTS.md +5 -0
  199. package/corpus/templates/dispatch/changelog/2026-07-17-apps-page-links-to-other-available-apps.md +6 -0
  200. package/corpus/templates/dispatch/changelog/2026-07-17-curated-template-remixes.md +6 -0
  201. package/corpus/templates/forms/.agents/skills/feature-flags/SKILL.md +169 -0
  202. package/corpus/templates/macros/.agents/skills/feature-flags/SKILL.md +169 -0
  203. package/corpus/templates/mail/.agents/skills/feature-flags/SKILL.md +169 -0
  204. package/corpus/templates/mail/app/entry.client.tsx +6 -1
  205. package/corpus/templates/plan/.agents/skills/feature-flags/SKILL.md +169 -0
  206. package/corpus/templates/slides/.agents/skills/feature-flags/SKILL.md +169 -0
  207. package/corpus/templates/slides/.agents/skills/slide-images/SKILL.md +11 -7
  208. package/corpus/templates/slides/.env.example +0 -1
  209. package/corpus/templates/slides/AGENTS.md +4 -0
  210. package/corpus/templates/slides/DEVELOPING.md +2 -2
  211. package/corpus/templates/slides/actions/index-design-system-with-builder.ts +1 -1
  212. package/corpus/templates/slides/actions/logo-config.ts +6 -7
  213. package/corpus/templates/slides/actions/search-images.ts +11 -39
  214. package/corpus/templates/slides/actions/search-logos.ts +5 -52
  215. package/corpus/templates/slides/app/components/editor/ImageSearchPanel.tsx +1 -1
  216. package/corpus/templates/slides/app/components/editor/LogoSearchPanel.tsx +16 -26
  217. package/corpus/templates/slides/app/entry.client.tsx +6 -1
  218. package/corpus/templates/slides/server/lib/media-search-providers.ts +216 -0
  219. package/corpus/templates/slides/server/register-secrets.ts +30 -0
  220. package/corpus/templates/tasks/.agents/skills/feature-flags/SKILL.md +169 -0
  221. package/dist/a2a/client.d.ts +38 -1
  222. package/dist/a2a/client.d.ts.map +1 -1
  223. package/dist/a2a/client.js +81 -12
  224. package/dist/a2a/client.js.map +1 -1
  225. package/dist/a2a/handlers.d.ts.map +1 -1
  226. package/dist/a2a/handlers.js +47 -0
  227. package/dist/a2a/handlers.js.map +1 -1
  228. package/dist/a2a/index.d.ts +4 -4
  229. package/dist/a2a/index.d.ts.map +1 -1
  230. package/dist/a2a/index.js +2 -2
  231. package/dist/a2a/index.js.map +1 -1
  232. package/dist/a2a/invoke.d.ts +26 -2
  233. package/dist/a2a/invoke.d.ts.map +1 -1
  234. package/dist/a2a/invoke.js +30 -1
  235. package/dist/a2a/invoke.js.map +1 -1
  236. package/dist/a2a/server.d.ts.map +1 -1
  237. package/dist/a2a/server.js +14 -1
  238. package/dist/a2a/server.js.map +1 -1
  239. package/dist/a2a/types.d.ts +12 -0
  240. package/dist/a2a/types.d.ts.map +1 -1
  241. package/dist/a2a/types.js.map +1 -1
  242. package/dist/a2a-claims.d.ts +10 -0
  243. package/dist/a2a-claims.d.ts.map +1 -0
  244. package/dist/a2a-claims.js +41 -0
  245. package/dist/a2a-claims.js.map +1 -0
  246. package/dist/action.d.ts +7 -2
  247. package/dist/action.d.ts.map +1 -1
  248. package/dist/action.js.map +1 -1
  249. package/dist/agent/production-agent.d.ts +5 -0
  250. package/dist/agent/production-agent.d.ts.map +1 -1
  251. package/dist/agent/production-agent.js +5 -3
  252. package/dist/agent/production-agent.js.map +1 -1
  253. package/dist/audit/record.d.ts +3 -0
  254. package/dist/audit/record.d.ts.map +1 -1
  255. package/dist/audit/record.js +3 -0
  256. package/dist/audit/record.js.map +1 -1
  257. package/dist/client/AssistantChat.d.ts +14 -1
  258. package/dist/client/AssistantChat.d.ts.map +1 -1
  259. package/dist/client/AssistantChat.js +158 -136
  260. package/dist/client/AssistantChat.js.map +1 -1
  261. package/dist/client/MultiTabAssistantChat.d.ts.map +1 -1
  262. package/dist/client/MultiTabAssistantChat.js +27 -4
  263. package/dist/client/MultiTabAssistantChat.js.map +1 -1
  264. package/dist/client/agent-chat-adapter.d.ts.map +1 -1
  265. package/dist/client/agent-chat-adapter.js +21 -39
  266. package/dist/client/agent-chat-adapter.js.map +1 -1
  267. package/dist/client/agent-sidebar-state.d.ts +1 -0
  268. package/dist/client/agent-sidebar-state.d.ts.map +1 -1
  269. package/dist/client/agent-sidebar-state.js +4 -0
  270. package/dist/client/agent-sidebar-state.js.map +1 -1
  271. package/dist/client/analytics.d.ts +14 -0
  272. package/dist/client/analytics.d.ts.map +1 -1
  273. package/dist/client/analytics.js +67 -0
  274. package/dist/client/analytics.js.map +1 -1
  275. package/dist/client/chat/message-components.d.ts +8 -0
  276. package/dist/client/chat/message-components.d.ts.map +1 -1
  277. package/dist/client/chat/message-components.js +62 -19
  278. package/dist/client/chat/message-components.js.map +1 -1
  279. package/dist/client/chat/tool-call-display.d.ts +6 -0
  280. package/dist/client/chat/tool-call-display.d.ts.map +1 -1
  281. package/dist/client/chat/tool-call-display.js +83 -14
  282. package/dist/client/chat/tool-call-display.js.map +1 -1
  283. package/dist/client/chat/use-agent-chat-lifecycle-tracking.d.ts +8 -0
  284. package/dist/client/chat/use-agent-chat-lifecycle-tracking.d.ts.map +1 -0
  285. package/dist/client/chat/use-agent-chat-lifecycle-tracking.js +51 -0
  286. package/dist/client/chat/use-agent-chat-lifecycle-tracking.js.map +1 -0
  287. package/dist/client/chat-thread-url.d.ts +2 -0
  288. package/dist/client/chat-thread-url.d.ts.map +1 -0
  289. package/dist/client/chat-thread-url.js +12 -0
  290. package/dist/client/chat-thread-url.js.map +1 -0
  291. package/dist/client/error-capture.d.ts.map +1 -1
  292. package/dist/client/error-capture.js +7 -0
  293. package/dist/client/error-capture.js.map +1 -1
  294. package/dist/client/extensions/ExtensionSlot.d.ts +3 -1
  295. package/dist/client/extensions/ExtensionSlot.d.ts.map +1 -1
  296. package/dist/client/extensions/ExtensionSlot.js +28 -3
  297. package/dist/client/extensions/ExtensionSlot.js.map +1 -1
  298. package/dist/client/feature-flags/FeatureFlagsPanel.d.ts +10 -0
  299. package/dist/client/feature-flags/FeatureFlagsPanel.d.ts.map +1 -0
  300. package/dist/client/feature-flags/FeatureFlagsPanel.js +143 -0
  301. package/dist/client/feature-flags/FeatureFlagsPanel.js.map +1 -0
  302. package/dist/client/feature-flags/helpers.d.ts +16 -0
  303. package/dist/client/feature-flags/helpers.d.ts.map +1 -0
  304. package/dist/client/feature-flags/helpers.js +50 -0
  305. package/dist/client/feature-flags/helpers.js.map +1 -0
  306. package/dist/client/feature-flags/index.d.ts +5 -0
  307. package/dist/client/feature-flags/index.d.ts.map +1 -0
  308. package/dist/client/feature-flags/index.js +4 -0
  309. package/dist/client/feature-flags/index.js.map +1 -0
  310. package/dist/client/feature-flags/types.d.ts +27 -0
  311. package/dist/client/feature-flags/types.d.ts.map +1 -0
  312. package/dist/client/feature-flags/types.js +2 -0
  313. package/dist/client/feature-flags/types.js.map +1 -0
  314. package/dist/client/feature-flags/use-feature-flag.d.ts +8 -0
  315. package/dist/client/feature-flags/use-feature-flag.d.ts.map +1 -0
  316. package/dist/client/feature-flags/use-feature-flag.js +15 -0
  317. package/dist/client/feature-flags/use-feature-flag.js.map +1 -0
  318. package/dist/client/index.d.ts +2 -1
  319. package/dist/client/index.d.ts.map +1 -1
  320. package/dist/client/index.js +2 -1
  321. package/dist/client/index.js.map +1 -1
  322. package/dist/client/route-chunk-recovery.d.ts.map +1 -1
  323. package/dist/client/route-chunk-recovery.js +14 -9
  324. package/dist/client/route-chunk-recovery.js.map +1 -1
  325. package/dist/client/session-replay.d.ts +15 -0
  326. package/dist/client/session-replay.d.ts.map +1 -1
  327. package/dist/client/session-replay.js +20 -0
  328. package/dist/client/session-replay.js.map +1 -1
  329. package/dist/collab/struct-routes.d.ts +1 -1
  330. package/dist/extensions/actions.d.ts.map +1 -1
  331. package/dist/extensions/actions.js +2 -10
  332. package/dist/extensions/actions.js.map +1 -1
  333. package/dist/extensions/routes.d.ts.map +1 -1
  334. package/dist/extensions/routes.js +1 -1
  335. package/dist/extensions/routes.js.map +1 -1
  336. package/dist/extensions/store.js +1 -1
  337. package/dist/extensions/store.js.map +1 -1
  338. package/dist/feature-flags/a2a-action-route.d.ts +14 -0
  339. package/dist/feature-flags/a2a-action-route.d.ts.map +1 -0
  340. package/dist/feature-flags/a2a-action-route.js +50 -0
  341. package/dist/feature-flags/a2a-action-route.js.map +1 -0
  342. package/dist/feature-flags/actions/get-feature-flags.d.ts +3 -0
  343. package/dist/feature-flags/actions/get-feature-flags.d.ts.map +1 -0
  344. package/dist/feature-flags/actions/get-feature-flags.js +18 -0
  345. package/dist/feature-flags/actions/get-feature-flags.js.map +1 -0
  346. package/dist/feature-flags/actions/list-feature-flags.d.ts +28 -0
  347. package/dist/feature-flags/actions/list-feature-flags.d.ts.map +1 -0
  348. package/dist/feature-flags/actions/list-feature-flags.js +60 -0
  349. package/dist/feature-flags/actions/list-feature-flags.js.map +1 -0
  350. package/dist/feature-flags/actions/set-feature-flag.d.ts +26 -0
  351. package/dist/feature-flags/actions/set-feature-flag.d.ts.map +1 -0
  352. package/dist/feature-flags/actions/set-feature-flag.js +78 -0
  353. package/dist/feature-flags/actions/set-feature-flag.js.map +1 -0
  354. package/dist/feature-flags/index.d.ts +5 -0
  355. package/dist/feature-flags/index.d.ts.map +1 -0
  356. package/dist/feature-flags/index.js +5 -0
  357. package/dist/feature-flags/index.js.map +1 -0
  358. package/dist/feature-flags/permissions.d.ts +13 -0
  359. package/dist/feature-flags/permissions.d.ts.map +1 -0
  360. package/dist/feature-flags/permissions.js +37 -0
  361. package/dist/feature-flags/permissions.js.map +1 -0
  362. package/dist/feature-flags/plugin.d.ts +17 -0
  363. package/dist/feature-flags/plugin.d.ts.map +1 -0
  364. package/dist/feature-flags/plugin.js +29 -0
  365. package/dist/feature-flags/plugin.js.map +1 -0
  366. package/dist/feature-flags/registry.d.ts +23 -0
  367. package/dist/feature-flags/registry.d.ts.map +1 -0
  368. package/dist/feature-flags/registry.js +59 -0
  369. package/dist/feature-flags/registry.js.map +1 -0
  370. package/dist/feature-flags/store.d.ts +31 -0
  371. package/dist/feature-flags/store.d.ts.map +1 -0
  372. package/dist/feature-flags/store.js +124 -0
  373. package/dist/feature-flags/store.js.map +1 -0
  374. package/dist/index.d.ts +1 -0
  375. package/dist/index.d.ts.map +1 -1
  376. package/dist/index.js +1 -0
  377. package/dist/index.js.map +1 -1
  378. package/dist/localization/default-messages.d.ts +45 -0
  379. package/dist/localization/default-messages.d.ts.map +1 -1
  380. package/dist/localization/default-messages.js +45 -0
  381. package/dist/localization/default-messages.js.map +1 -1
  382. package/dist/mcp/build-server.d.ts +2 -0
  383. package/dist/mcp/build-server.d.ts.map +1 -1
  384. package/dist/mcp/build-server.js +2 -2
  385. package/dist/mcp/build-server.js.map +1 -1
  386. package/dist/notifications/routes.d.ts +2 -2
  387. package/dist/progress/actions.d.ts.map +1 -1
  388. package/dist/progress/actions.js +3 -2
  389. package/dist/progress/actions.js.map +1 -1
  390. package/dist/provider-api/corpus-jobs.d.ts +2 -2
  391. package/dist/provider-api/index.d.ts.map +1 -1
  392. package/dist/provider-api/index.js +91 -8
  393. package/dist/provider-api/index.js.map +1 -1
  394. package/dist/resources/handlers.d.ts +3 -3
  395. package/dist/scripts/call-agent.d.ts.map +1 -1
  396. package/dist/scripts/call-agent.js +107 -16
  397. package/dist/scripts/call-agent.js.map +1 -1
  398. package/dist/server/action-discovery.d.ts.map +1 -1
  399. package/dist/server/action-discovery.js +12 -0
  400. package/dist/server/action-discovery.js.map +1 -1
  401. package/dist/server/action-routes.d.ts +3 -0
  402. package/dist/server/action-routes.d.ts.map +1 -1
  403. package/dist/server/action-routes.js +45 -5
  404. package/dist/server/action-routes.js.map +1 -1
  405. package/dist/server/agent-chat/action-filters-a2a.d.ts +6 -0
  406. package/dist/server/agent-chat/action-filters-a2a.d.ts.map +1 -1
  407. package/dist/server/agent-chat/action-filters-a2a.js +27 -0
  408. package/dist/server/agent-chat/action-filters-a2a.js.map +1 -1
  409. package/dist/server/agent-chat-plugin.d.ts.map +1 -1
  410. package/dist/server/agent-chat-plugin.js +27 -1
  411. package/dist/server/agent-chat-plugin.js.map +1 -1
  412. package/dist/server/agent-engine-api-key-route.d.ts +1 -1
  413. package/dist/server/index.d.ts +1 -0
  414. package/dist/server/index.d.ts.map +1 -1
  415. package/dist/server/index.js +1 -0
  416. package/dist/server/index.js.map +1 -1
  417. package/dist/server/transcribe-voice.d.ts +1 -1
  418. package/dist/settings/org-settings.d.ts +2 -0
  419. package/dist/settings/org-settings.d.ts.map +1 -1
  420. package/dist/settings/org-settings.js +5 -1
  421. package/dist/settings/org-settings.js.map +1 -1
  422. package/dist/settings/store.d.ts +8 -0
  423. package/dist/settings/store.d.ts.map +1 -1
  424. package/dist/settings/store.js +48 -0
  425. package/dist/settings/store.js.map +1 -1
  426. package/dist/styles/agent-conversation.css +7 -0
  427. package/dist/templates/chat/.agents/skills/feature-flags/SKILL.md +169 -0
  428. package/dist/templates/default/.agents/skills/feature-flags/SKILL.md +169 -0
  429. package/dist/templates/default/AGENTS.md +1 -0
  430. package/dist/templates/default/app/i18n/ar-SA.ts +20 -0
  431. package/dist/templates/default/app/i18n/de-DE.ts +20 -0
  432. package/dist/templates/default/app/i18n/en-US.ts +20 -0
  433. package/dist/templates/default/app/i18n/es-ES.ts +20 -0
  434. package/dist/templates/default/app/i18n/fr-FR.ts +21 -0
  435. package/dist/templates/default/app/i18n/hi-IN.ts +19 -0
  436. package/dist/templates/default/app/i18n/ja-JP.ts +20 -0
  437. package/dist/templates/default/app/i18n/ko-KR.ts +19 -0
  438. package/dist/templates/default/app/i18n/pt-BR.ts +20 -0
  439. package/dist/templates/default/app/i18n/zh-CN.ts +19 -0
  440. package/dist/templates/default/app/i18n/zh-TW.ts +19 -0
  441. package/dist/templates/headless/.agents/skills/feature-flags/SKILL.md +169 -0
  442. package/dist/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +28 -0
  443. package/dist/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +5 -0
  444. package/dist/templates/workspace-core/.agents/skills/feature-flags/SKILL.md +169 -0
  445. package/dist/templates/workspace-core/.agents/skills/performance/SKILL.md +13 -0
  446. package/dist/templates/workspace-core/AGENTS.md +1 -1
  447. package/dist/templates/workspace-root/AGENTS.md +1 -1
  448. package/dist/vite/action-types-plugin.d.ts.map +1 -1
  449. package/dist/vite/action-types-plugin.js +12 -0
  450. package/dist/vite/action-types-plugin.js.map +1 -1
  451. package/docs/content/actions.mdx +48 -0
  452. package/docs/content/locales/ar-SA/actions.mdx +38 -0
  453. package/docs/content/locales/de-DE/actions.mdx +38 -0
  454. package/docs/content/locales/es-ES/actions.mdx +38 -0
  455. package/docs/content/locales/fr-FR/actions.mdx +38 -0
  456. package/docs/content/locales/hi-IN/actions.mdx +38 -0
  457. package/docs/content/locales/ja-JP/actions.mdx +38 -0
  458. package/docs/content/locales/ko-KR/actions.mdx +38 -0
  459. package/docs/content/locales/pt-BR/actions.mdx +38 -0
  460. package/docs/content/locales/zh-CN/actions.mdx +38 -0
  461. package/docs/content/locales/zh-TW/actions.mdx +38 -0
  462. package/package.json +5 -1
  463. package/src/templates/chat/.agents/skills/feature-flags/SKILL.md +169 -0
  464. package/src/templates/default/.agents/skills/feature-flags/SKILL.md +169 -0
  465. package/src/templates/default/AGENTS.md +1 -0
  466. package/src/templates/default/app/i18n/ar-SA.ts +20 -0
  467. package/src/templates/default/app/i18n/de-DE.ts +20 -0
  468. package/src/templates/default/app/i18n/en-US.ts +20 -0
  469. package/src/templates/default/app/i18n/es-ES.ts +20 -0
  470. package/src/templates/default/app/i18n/fr-FR.ts +21 -0
  471. package/src/templates/default/app/i18n/hi-IN.ts +19 -0
  472. package/src/templates/default/app/i18n/ja-JP.ts +20 -0
  473. package/src/templates/default/app/i18n/ko-KR.ts +19 -0
  474. package/src/templates/default/app/i18n/pt-BR.ts +20 -0
  475. package/src/templates/default/app/i18n/zh-CN.ts +19 -0
  476. package/src/templates/default/app/i18n/zh-TW.ts +19 -0
  477. package/src/templates/headless/.agents/skills/feature-flags/SKILL.md +169 -0
  478. package/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +28 -0
  479. package/src/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +5 -0
  480. package/src/templates/workspace-core/.agents/skills/feature-flags/SKILL.md +169 -0
  481. package/src/templates/workspace-core/.agents/skills/performance/SKILL.md +13 -0
  482. package/src/templates/workspace-core/AGENTS.md +1 -1
  483. package/src/templates/workspace-root/AGENTS.md +1 -1
  484. package/corpus/templates/analytics/server/handlers/github.ts +0 -200
  485. package/corpus/templates/analytics/server/handlers/pylon.ts +0 -43
  486. package/corpus/templates/analytics/server/lib/apollo.ts +0 -167
  487. package/corpus/templates/analytics/server/lib/commonroom.ts +0 -149
  488. package/corpus/templates/analytics/server/lib/github.ts +0 -660
  489. package/corpus/templates/analytics/server/lib/mixpanel.ts +0 -156
  490. package/corpus/templates/analytics/server/lib/posthog.ts +0 -194
  491. package/corpus/templates/analytics/server/lib/pylon.ts +0 -109
  492. package/corpus/templates/analytics/server/routes/api/github/graphql.post.ts +0 -1
  493. package/corpus/templates/analytics/server/routes/api/github/issue.get.ts +0 -1
  494. package/corpus/templates/analytics/server/routes/api/github/org-prs.get.ts +0 -1
  495. package/corpus/templates/analytics/server/routes/api/github/pr.get.ts +0 -1
  496. package/corpus/templates/analytics/server/routes/api/github/prs.get.ts +0 -1
  497. package/corpus/templates/analytics/server/routes/api/github/search.get.ts +0 -1
  498. package/corpus/templates/clips/actions/get-feature-flags.ts +0 -30
  499. package/corpus/templates/slides/actions/fetch-logos.ts +0 -90
  500. package/corpus/templates/slides/actions/image-search.ts +0 -64
  501. package/corpus/templates/slides/actions/import-github.ts +0 -182
  502. package/corpus/templates/slides/actions/logo-lookup.ts +0 -113
@@ -6,6 +6,7 @@ import {
6
6
  shouldPreferGlobalA2ASecret,
7
7
  signA2AToken,
8
8
  } from "../a2a/client.js";
9
+ import { invokeAgentAction } from "../a2a/invoke.js";
9
10
  import type { A2AApprovedAction, Task } from "../a2a/types.js";
10
11
  import {
11
12
  formatLlmCredentialErrorMessage,
@@ -94,12 +95,13 @@ function formatDownstreamLlmCredentialFailure(
94
95
 
95
96
  export const tool: ActionTool = {
96
97
  description:
97
- "Call a DIFFERENT, separately-deployed agent app to ask a question or delegate a task. This is strictly for cross-app A2A communication for example, asking the mail agent to send an email while you are the calendar agent. NEVER use this to call your own app or perform actions you can do with your own tools. Using call-agent on yourself will fail and waste time. " +
98
+ "Call a DIFFERENT, separately-deployed app over A2A. When you know the exact exposed read-only action, pass action + input and omit message; this invokes it directly without starting the other app's model and is the fastest path for bounded data reads. Use message only for natural-language investigation, synthesis, mutations, or multi-step work that needs the other agent. NEVER use this to call your own app or perform actions you can do with your own tools. Using call-agent on yourself will fail and waste time. " +
98
99
  'For brand-consistent generated media, the first-party Assets agent is available as agent="assets"; use it when another app needs generated heroes, diagrams, product shots, thumbnails, videos, or design imagery, unless the current app has its own generation action that already delegates there. ' +
99
100
  "IMPORTANT — handling the response: " +
100
101
  "(a) If it contains a URL or ID, copy it VERBATIM into your reply. Do not 'correct' or pluralize the path (e.g. /deck/ → /decks/), normalize casing, or change the slug — any edit breaks the link. " +
101
102
  '(b) If it does NOT contain a URL/ID and the user asked for one, say so explicitly (e.g. "the agent created the deck/image but didn\'t return a link — open the app directly to view it"). NEVER invent a URL, slug, or path — guessing produces broken links that look real. ' +
102
- "(c) If the downstream response reports missing credentials, never repeat raw env var names, Vault key names, token names, secret names, or other credential identifiers. Tell the user the target app needs its LLM/provider connection configured.",
103
+ "(c) If the downstream response reports missing credentials, never repeat raw env var names, Vault key names, token names, secret names, or other credential identifiers. Tell the user the target app needs its LLM/provider connection configured. " +
104
+ "(d) A bounded wait can expire while the remote task is still healthy. The result will include its taskId and exact retry instructions. Continue polling that SAME task with taskId; NEVER send a new check-in/follow-up message, because that starts duplicate downstream work.",
103
105
  parameters: {
104
106
  type: "object",
105
107
  properties: {
@@ -110,7 +112,24 @@ export const tool: ActionTool = {
110
112
  },
111
113
  message: {
112
114
  type: "string",
113
- description: "The message/question to send to the other agent",
115
+ description:
116
+ "The message/question to send when starting a new task. Omit when taskId is provided.",
117
+ },
118
+ taskId: {
119
+ type: "string",
120
+ description:
121
+ "Existing A2A task ID returned by a timed-out call. Polls that exact task without sending a new message. Never create a fresh check-in message for work that already has a taskId.",
122
+ },
123
+ action: {
124
+ type: "string",
125
+ description:
126
+ "Exact read-only action exposed by the target app. Use with input and omit message/taskId to skip the downstream agent loop.",
127
+ },
128
+ input: {
129
+ type: "object",
130
+ description:
131
+ "Complete input object for action. The target app validates it and refuses actions that are not explicitly exposed read-only operations.",
132
+ additionalProperties: true,
114
133
  },
115
134
  approvedActions: {
116
135
  type: "array",
@@ -126,7 +145,7 @@ export const tool: ActionTool = {
126
145
  },
127
146
  },
128
147
  },
129
- required: ["agent", "message"],
148
+ required: ["agent"],
130
149
  },
131
150
  };
132
151
 
@@ -137,12 +156,23 @@ export async function run(
137
156
  ): Promise<string> {
138
157
  const agentIdOrName = String(args.agent ?? "");
139
158
  const message = String(args.message ?? "");
159
+ const taskId = String(args.taskId ?? "").trim();
160
+ const action = String(args.action ?? "").trim();
161
+ const input = args.input ?? {};
140
162
  const approvedActions = Array.isArray(args.approvedActions)
141
163
  ? (args.approvedActions as A2AApprovedAction[])
142
164
  : undefined;
143
165
 
144
166
  if (!agentIdOrName) return "Error: --agent is required";
145
- if (!message) return "Error: --message is required";
167
+ if (!message && !taskId && !action) {
168
+ return "Error: --message, --taskId, or --action is required";
169
+ }
170
+ if (action && (message || taskId)) {
171
+ return "Error: --action direct-invoke mode cannot be combined with --message or --taskId";
172
+ }
173
+ if (action && (!input || typeof input !== "object" || Array.isArray(input))) {
174
+ return "Error: --input must be an object when --action is provided";
175
+ }
146
176
 
147
177
  // Prevent self-calls — the agent must use its own registered tools instead
148
178
  if (selfAppId && agentIdOrName.toLowerCase() === selfAppId.toLowerCase()) {
@@ -157,16 +187,36 @@ export async function run(
157
187
  return `Error: Agent "${agentIdOrName}" not found. Available agents: ${available || "(none)"}`;
158
188
  }
159
189
 
190
+ if (action) {
191
+ if (context?.send) {
192
+ context.send({ type: "agent_call", agent: agent.name, status: "start" });
193
+ }
194
+ try {
195
+ const output = await invokeReadOnlyAppAction(
196
+ agent,
197
+ action,
198
+ input as Record<string, unknown>,
199
+ );
200
+ return output;
201
+ } finally {
202
+ if (context?.send) {
203
+ context.send({ type: "agent_call", agent: agent.name, status: "done" });
204
+ }
205
+ }
206
+ }
207
+
160
208
  // Append a small cross-app hint to the outgoing message so the receiving
161
209
  // agent (which may be on an older deploy without the receiver-side hint
162
210
  // in handlers.ts) still emits fully-qualified URLs. This is belt-and-
163
211
  // suspenders with the receiver hint — but it works against any current
164
212
  // deployment, no redeploy required.
165
- const messageWithHint =
166
- `${message}${integrationSourceContextHint()}\n\n` +
167
- `[Note: this request comes from another app via A2A. The caller cannot see your local UI, deck list, or navigation — only the literal text you put in your reply. ` +
168
- `If you create or reference a deck/document/design/dashboard, include its FULLY-QUALIFIED URL (e.g. ${agent.url}/deck/<id>) in your reply, not a relative path. ` +
169
- `Use only artifact IDs and URL paths returned by successful actions never invent slugs, IDs, or hosts.]`;
213
+ const messageWithHint = taskId
214
+ ? ""
215
+ : `${message}${integrationSourceContextHint()}\n\n` +
216
+ `[Note: this request comes from another app via A2A. The caller cannot see your local UI, deck list, or navigation only the literal text you put in your reply. ` +
217
+ `If you create or reference a deck/document/design/dashboard, include its FULLY-QUALIFIED URL (e.g. ${agent.url}/deck/<id>) in your reply, not a relative path. ` +
218
+ `Use only artifact IDs and URL paths returned by successful actions — never invent slugs, IDs, or hosts. ` +
219
+ `Return a concise caller-ready synthesis rather than raw tool output or full transcripts; preserve source counts, IDs, short supporting quotes, and URLs needed to substantiate the answer.]`;
170
220
 
171
221
  try {
172
222
  // If we have a send context, use streaming so the UI shows progressive text
@@ -228,8 +278,9 @@ export async function run(
228
278
 
229
279
  let responseText = "";
230
280
  let lastSentLength = 0;
231
- const existingContinuationText =
232
- await formatExistingIntegrationContinuationIfRetry(agent, message);
281
+ const existingContinuationText = taskId
282
+ ? null
283
+ : await formatExistingIntegrationContinuationIfRetry(agent, message);
233
284
  if (existingContinuationText) return existingContinuationText;
234
285
 
235
286
  context.send({
@@ -338,13 +389,12 @@ export async function run(
338
389
  orgDomain: callerOrgDomain,
339
390
  orgSecret: callerOrgSecret,
340
391
  approvedActions,
392
+ ...(taskId ? { taskId } : {}),
341
393
  onUpdate: onRemotePollUpdate,
394
+ returnRecoverableArtifactsOnTimeout: false,
342
395
  ...(callTimeoutMs
343
396
  ? {
344
397
  timeoutMs: callTimeoutMs,
345
- // Integration callers must keep the timeout task id so the
346
- // catch below can enqueue durable continuation polling.
347
- returnRecoverableArtifactsOnTimeout: false,
348
398
  }
349
399
  : {}),
350
400
  });
@@ -387,8 +437,11 @@ export async function run(
387
437
  agent.url,
388
438
  );
389
439
  } else {
390
- const reason = pollErr?.message ?? "unknown error";
391
- responseText = `The ${agent.name} agent is taking longer than expected and didn't reply in time. (${reason})`;
440
+ responseText = formatExistingTaskWaitInstruction(
441
+ agent.name,
442
+ timeoutTaskId,
443
+ agentIdOrName,
444
+ );
392
445
  }
393
446
  }
394
447
  } else {
@@ -427,6 +480,8 @@ export async function run(
427
480
  orgDomain: domain,
428
481
  orgSecret,
429
482
  approvedActions,
483
+ ...(taskId ? { taskId } : {}),
484
+ returnRecoverableArtifactsOnTimeout: false,
430
485
  });
431
486
  const sanitized =
432
487
  formatDownstreamLlmCredentialFailure(agent.name, response) ?? response;
@@ -438,6 +493,14 @@ export async function run(
438
493
  err,
439
494
  );
440
495
  if (credentialMessage) return credentialMessage;
496
+ const timeoutTaskId = getA2ATaskTimeoutTaskId(err);
497
+ if (timeoutTaskId) {
498
+ return formatExistingTaskWaitInstruction(
499
+ agent.name,
500
+ timeoutTaskId,
501
+ agentIdOrName,
502
+ );
503
+ }
441
504
  // Friendlier message for the common timeout case so the calling agent can
442
505
  // decide whether to give up or retry.
443
506
  if (/timeout|did not complete|Inactivity|504/i.test(msg)) {
@@ -447,6 +510,63 @@ export async function run(
447
510
  }
448
511
  }
449
512
 
513
+ async function invokeReadOnlyAppAction(
514
+ agent: { name: string; url: string },
515
+ action: string,
516
+ input: Record<string, unknown>,
517
+ ): Promise<string> {
518
+ const callerEmail = getRequestUserEmail();
519
+ if (!callerEmail) {
520
+ return `Error calling ${agent.name} action ${action}: a signed-in user identity is required`;
521
+ }
522
+
523
+ let callerOrgDomain: string | undefined;
524
+ let callerOrgSecret: string | undefined;
525
+ const orgId = getRequestOrgId();
526
+ if (orgId) {
527
+ try {
528
+ callerOrgDomain = (await getOrgDomain(orgId)) ?? undefined;
529
+ } catch {}
530
+ try {
531
+ callerOrgSecret = (await getOrgA2ASecret(orgId)) ?? undefined;
532
+ } catch {}
533
+ }
534
+
535
+ if (!callerOrgSecret && !process.env.A2A_SECRET) {
536
+ return `Error calling ${agent.name} action ${action}: direct cross-app reads require A2A identity verification`;
537
+ }
538
+
539
+ try {
540
+ const invocation = await invokeAgentAction({
541
+ target: agent.url,
542
+ action,
543
+ input,
544
+ userEmail: callerEmail,
545
+ orgDomain: callerOrgDomain,
546
+ orgSecret: callerOrgSecret,
547
+ });
548
+ return invocation.result.status === "completed"
549
+ ? invocation.result.output
550
+ : `Error calling ${agent.name} action ${action}: ${invocation.result.output}`;
551
+ } catch (error) {
552
+ return `Error calling ${agent.name} action ${action}: ${
553
+ error instanceof Error ? error.message : String(error)
554
+ }`;
555
+ }
556
+ }
557
+
558
+ function formatExistingTaskWaitInstruction(
559
+ agentName: string,
560
+ taskId: string,
561
+ agentIdOrName: string,
562
+ ): string {
563
+ return (
564
+ `The ${agentName} task is still running under taskId "${taskId}". ` +
565
+ `Do not send ${agentName} a new check-in or follow-up message; that would start duplicate work. ` +
566
+ `Call call-agent again with agent="${agentIdOrName}" and taskId="${taskId}" (omit message) to continue waiting for this same task.`
567
+ );
568
+ }
569
+
450
570
  async function enqueueIntegrationContinuationIfPossible(
451
571
  taskId: string,
452
572
  agent: { name: string; url: string },
@@ -595,6 +595,18 @@ export async function mergeCoreSharingActions(
595
595
  () => import("../sharing/actions/create-agent-resource-link.js"),
596
596
  ],
597
597
  ["upload-image", () => import("../file-upload/actions/upload-image.js")],
598
+ [
599
+ "get-feature-flags",
600
+ () => import("../feature-flags/actions/get-feature-flags.js"),
601
+ ],
602
+ [
603
+ "list-feature-flags",
604
+ () => import("../feature-flags/actions/list-feature-flags.js"),
605
+ ],
606
+ [
607
+ "set-feature-flag",
608
+ () => import("../feature-flags/actions/set-feature-flag.js"),
609
+ ],
598
610
  // Agent Jobs page — UI-only scoped reads and mutations for resource-backed
599
611
  // recurring jobs and personal automations. The agent-facing native tools
600
612
  // remain the canonical conversational surface.
@@ -9,8 +9,10 @@ import {
9
9
  getRequestURL,
10
10
  } from "h3";
11
11
 
12
+ import { verifyA2ATokenWithClaims } from "../a2a-claims.js";
12
13
  import { isAgentActionStopError } from "../action.js";
13
14
  import type { ActionEntry } from "../agent/production-agent.js";
15
+ import { declaresFeatureFlagDelegation } from "../feature-flags/a2a-action-route.js";
14
16
  import { resolveOrgIdForEmail } from "../org/context.js";
15
17
  import { readBody } from "../server/h3-helpers.js";
16
18
  import { EMBED_TARGET_HEADER } from "../shared/embed-auth.js";
@@ -39,6 +41,30 @@ import { runWithRequestContext } from "./request-context.js";
39
41
 
40
42
  const ROUTE_PREFIX = "/_agent-native/actions";
41
43
 
44
+ async function resolveFeatureFlagA2ACaller(event: any, actionName: string) {
45
+ const required =
46
+ actionName === "list-feature-flags"
47
+ ? "flags:read"
48
+ : actionName === "set-feature-flag"
49
+ ? "flags:write"
50
+ : null;
51
+ if (!required) return null;
52
+ const authorization = getHeader(event, "authorization");
53
+ if (!authorization?.startsWith("Bearer ")) return null;
54
+ const token = authorization.slice(7);
55
+ if (!declaresFeatureFlagDelegation(token)) return null;
56
+ const claims = await verifyA2ATokenWithClaims(token, event);
57
+ if (!claims || !claims.scope.includes(required))
58
+ throw new Error("Invalid feature flag delegation");
59
+ return {
60
+ owner: claims.email,
61
+ orgId: claims.orgId,
62
+ anonymous: false,
63
+ delegationJti: claims.jti,
64
+ delegationIssuer: claims.issuer,
65
+ } as ActionRouteResolvedCaller;
66
+ }
67
+
42
68
  export function parseActionSearchParams(
43
69
  searchParams: URLSearchParams,
44
70
  ): Record<string, any> {
@@ -189,6 +215,9 @@ export type ActionRouteResolvedCaller = AgentRunOwnerContext & {
189
215
  * must not leak into the token caller's request context.
190
216
  */
191
217
  orgId?: string;
218
+ /** Verified A2A correlation and issuer metadata for the audit row. */
219
+ delegationJti?: string;
220
+ delegationIssuer?: string;
192
221
  };
193
222
 
194
223
  export interface ActionRouteAuthAdapter {
@@ -336,10 +365,14 @@ export function mountActionRoutes(
336
365
  // through, so a live same-origin session cookie can't silently execute
337
366
  // the request as the logged-in user.
338
367
  let resolvedCaller: ActionRouteResolvedCaller | null = null;
339
- if (options?.actionRouteAuth?.resolveCaller) {
368
+ {
340
369
  let caller: ActionRouteResolvedCaller | null;
341
370
  try {
342
- caller = await options.actionRouteAuth.resolveCaller(event);
371
+ caller = options?.actionRouteAuth?.resolveCaller
372
+ ? await options.actionRouteAuth.resolveCaller(event)
373
+ : null;
374
+ if (!caller)
375
+ caller = await resolveFeatureFlagA2ACaller(event, name);
343
376
  } catch {
344
377
  throw createError({
345
378
  statusCode: 401,
@@ -463,14 +496,23 @@ export function mountActionRoutes(
463
496
  // userEmail / orgId mirror the request context resolved above (do
464
497
  // NOT inject a dev identity — leave undefined when unauthenticated).
465
498
  try {
466
- const caller = isFrontendActionRequest(event)
467
- ? "frontend"
468
- : "http";
499
+ const caller = resolvedCaller
500
+ ? "a2a"
501
+ : isFrontendActionRequest(event)
502
+ ? "frontend"
503
+ : "http";
469
504
  const result = await entry.run(params, {
470
505
  userEmail,
471
506
  orgId: orgId ?? null,
472
507
  caller,
473
508
  actionName: name,
509
+ ...(resolvedCaller?.delegationJti
510
+ ? {
511
+ networkProtocol: "a2a",
512
+ networkId: resolvedCaller.delegationJti,
513
+ networkPeer: resolvedCaller.delegationIssuer,
514
+ }
515
+ : {}),
474
516
  });
475
517
 
476
518
  // Auto-refresh the UI after a successful mutating action. GET
@@ -15,6 +15,10 @@ import {
15
15
  } from "../../agent/production-agent.js";
16
16
  import { runAgentLoopDirectWithSoftTimeout } from "../../agent/run-loop-with-resume.js";
17
17
  import type { AgentChatEvent } from "../../agent/types.js";
18
+ import {
19
+ isAuthenticatedReadAction,
20
+ isAutoReadExcludedActionName,
21
+ } from "../../mcp/build-server.js";
18
22
  import { withConfiguredAppBasePath } from "../app-base-path.js";
19
23
  import type { AgentChatPluginOptions } from "./plugin-options.js";
20
24
 
@@ -61,6 +65,42 @@ export function filterPublicAgentActions(
61
65
  );
62
66
  }
63
67
 
68
+ /**
69
+ * Direct A2A action calls share the authenticated external-agent policy with
70
+ * MCP, but remain stricter: only explicitly exposed, authenticated read-only
71
+ * actions can skip the receiver's model loop.
72
+ */
73
+ export function filterDirectA2AActions(
74
+ actions: Record<string, ActionEntry>,
75
+ options: Pick<AgentChatPluginOptions, "connectorCatalog" | "externalAgents">,
76
+ ): Record<string, ActionEntry> {
77
+ const catalog = new Set(options.connectorCatalog ?? []);
78
+ const denied = new Set(options.externalAgents?.denyActions ?? []);
79
+ const autoReads = options.externalAgents?.authenticatedReads === "auto";
80
+
81
+ return Object.fromEntries(
82
+ Object.entries(actions).filter(([name, entry]) => {
83
+ const exposure = entry.publicAgent;
84
+ const selected =
85
+ catalog.has(name) ||
86
+ (autoReads &&
87
+ isAuthenticatedReadAction(entry) &&
88
+ !isAutoReadExcludedActionName(name));
89
+ return (
90
+ selected &&
91
+ !denied.has(name) &&
92
+ entry.agentTool !== false &&
93
+ entry.readOnly === true &&
94
+ exposure?.expose === true &&
95
+ exposure.readOnly === true &&
96
+ exposure.requiresAuth === true &&
97
+ (entry.needsApproval === undefined || entry.needsApproval === false) &&
98
+ exposure.isConsequential !== true
99
+ );
100
+ }),
101
+ );
102
+ }
103
+
64
104
  export function buildPublicAgentA2ASkills(
65
105
  actions: Record<string, ActionEntry>,
66
106
  ): Array<{
@@ -210,6 +210,7 @@ import {
210
210
  createA2AEngineToolSurface,
211
211
  filterAgentTools,
212
212
  filterPublicAgentActions,
213
+ filterDirectA2AActions,
213
214
  filterReadOnlyActions,
214
215
  resolveInitialToolNames,
215
216
  runA2AAgentLoop,
@@ -1216,6 +1217,36 @@ export function createAgentChatPlugin(
1216
1217
  publicSkillsOnly: true,
1217
1218
  streaming: true,
1218
1219
  durableBackgroundRuns: options?.durableBackgroundRuns,
1220
+ executeReadOnlyAction: async ({ action, input }) => {
1221
+ const actions = filterDirectA2AActions(
1222
+ mcpFullActions ?? allScripts,
1223
+ options ?? {},
1224
+ );
1225
+ const entry = actions[action];
1226
+ if (!entry) {
1227
+ return {
1228
+ status: "failed" as const,
1229
+ output: "Unknown or unavailable read-only action",
1230
+ };
1231
+ }
1232
+
1233
+ const result = await executeAgentToolCall({
1234
+ actions: { [action]: entry },
1235
+ name: action,
1236
+ input,
1237
+ callId: `a2a-action-${crypto.randomUUID()}`,
1238
+ ownerEmail: getRequestUserEmail(),
1239
+ orgId: getRequestOrgId() ?? null,
1240
+ caller: "a2a",
1241
+ });
1242
+ if (result.status === "approval_required") {
1243
+ return {
1244
+ status: "failed" as const,
1245
+ output: "Read-only action unexpectedly requires approval",
1246
+ };
1247
+ }
1248
+ return { status: result.status, output: result.output };
1249
+ },
1219
1250
  executeApproval: async (approval) => {
1220
1251
  const result = await executeAgentToolCall({
1221
1252
  actions: mcpFullActions ?? allScripts,
@@ -180,6 +180,7 @@ export { createSentryPlugin, defaultSentryPlugin } from "./sentry-plugin.js";
180
180
  // (which references "defaultOrgPlugin" from @agent-native/core/server) can
181
181
  // resolve it during the deploy build worker-entry generation.
182
182
  export { createOrgPlugin, defaultOrgPlugin } from "../org/plugin.js";
183
+ export { createFeatureFlagsPlugin } from "../feature-flags/plugin.js";
183
184
  export {
184
185
  createContextXrayPlugin,
185
186
  defaultContextXrayPlugin,
@@ -10,6 +10,7 @@
10
10
 
11
11
  import {
12
12
  getSetting,
13
+ mutateSetting,
13
14
  putSetting,
14
15
  deleteSetting,
15
16
  getAllSettings,
@@ -40,6 +41,18 @@ export async function putOrgSetting(
40
41
  return putSetting(orgKey(orgId, key), value, options);
41
42
  }
42
43
 
44
+ /** Atomically derive and persist an org-scoped setting. */
45
+ export async function mutateOrgSetting(
46
+ orgId: string,
47
+ key: string,
48
+ updater: (
49
+ current: Record<string, unknown> | null,
50
+ ) => Record<string, unknown> | Promise<Record<string, unknown>>,
51
+ options?: StoreWriteOptions,
52
+ ): Promise<Record<string, unknown>> {
53
+ return mutateSetting(orgKey(orgId, key), updater, options);
54
+ }
55
+
43
56
  /** Delete an org-scoped setting. */
44
57
  export async function deleteOrgSetting(
45
58
  orgId: string,
@@ -128,6 +128,63 @@ export interface StoreWriteOptions {
128
128
  requestSource?: string;
129
129
  }
130
130
 
131
+ const SETTINGS_MUTATION_ATTEMPTS = 25;
132
+
133
+ /**
134
+ * Atomically derive and persist one setting with an optimistic raw-value CAS.
135
+ * This works across SQLite/libSQL and Postgres and remains safe across
136
+ * horizontally scaled processes where an in-memory mutex would not.
137
+ * The updater may run more than once after contention and must not perform
138
+ * external side effects.
139
+ */
140
+ export async function mutateSetting(
141
+ key: string,
142
+ updater: (
143
+ current: Record<string, unknown> | null,
144
+ ) => Record<string, unknown> | Promise<Record<string, unknown>>,
145
+ options?: StoreWriteOptions,
146
+ ): Promise<Record<string, unknown>> {
147
+ await ensureTable();
148
+ const client = getDbExec();
149
+ const table = settingsTable();
150
+ for (let attempt = 0; attempt < SETTINGS_MUTATION_ATTEMPTS; attempt += 1) {
151
+ // Deliberately bypass the request cache: a failed CAS means another
152
+ // request committed a newer value and the next attempt must reread it.
153
+ const snapshot = await client.execute({
154
+ sql: `SELECT value FROM ${table} WHERE key = ?`,
155
+ args: [key],
156
+ });
157
+ const raw =
158
+ snapshot.rows.length === 0 ? null : (snapshot.rows[0]?.value as string);
159
+ const current = raw == null ? null : JSON.parse(raw);
160
+ const next = await updater(current);
161
+ const nextRaw = JSON.stringify(next);
162
+ const timestamp = Date.now();
163
+ const result =
164
+ raw == null
165
+ ? await client.execute({
166
+ sql: isPostgres()
167
+ ? `INSERT INTO ${table} (key, value, updated_at) VALUES (?, ?, ?) ON CONFLICT (key) DO NOTHING`
168
+ : `INSERT OR IGNORE INTO ${table} (key, value, updated_at) VALUES (?, ?, ?)`,
169
+ args: [key, nextRaw, timestamp],
170
+ })
171
+ : await client.execute({
172
+ sql: `UPDATE ${table} SET value = ?, updated_at = ? WHERE key = ? AND value = ?`,
173
+ args: [nextRaw, timestamp, key, raw],
174
+ });
175
+ if (result.rowsAffected === 0) continue;
176
+ requestSettingsCache()?.set(key, nextRaw);
177
+ _emitter.emit("settings", {
178
+ source: "settings",
179
+ type: "change",
180
+ key,
181
+ ...(options?.requestSource && { requestSource: options.requestSource }),
182
+ });
183
+ return JSON.parse(nextRaw);
184
+ }
185
+ throw new Error(`Setting ${key} changed too many times; retry the mutation.`);
186
+ }
187
+
131
188
  export async function putSetting(
132
189
  key: string,
133
190
  value: Record<string, unknown>,
@@ -502,6 +502,13 @@
502
502
  opacity 150ms ease-out;
503
503
  }
504
504
 
505
+ @starting-style {
506
+ .agent-chat-collapse[data-state="open"] {
507
+ grid-template-rows: 0fr;
508
+ opacity: 0;
509
+ }
510
+ }
511
+
505
512
  .agent-chat-collapse[data-state="closed"] {
506
513
  grid-template-rows: 0fr;
507
514
  opacity: 0;