@agent-native/core 0.108.0 → 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 (302) hide show
  1. package/corpus/README.md +2 -2
  2. package/corpus/core/CHANGELOG.md +18 -0
  3. package/corpus/core/package.json +1 -1
  4. package/corpus/core/src/a2a/client.ts +140 -17
  5. package/corpus/core/src/a2a/handlers.ts +60 -0
  6. package/corpus/core/src/a2a/index.ts +6 -1
  7. package/corpus/core/src/a2a/invoke.ts +68 -1
  8. package/corpus/core/src/a2a/server.ts +13 -1
  9. package/corpus/core/src/a2a/types.ts +16 -0
  10. package/corpus/core/src/action.ts +3 -2
  11. package/corpus/core/src/agent/production-agent.ts +10 -4
  12. package/corpus/core/src/client/AssistantChat.tsx +648 -603
  13. package/corpus/core/src/client/MultiTabAssistantChat.tsx +31 -4
  14. package/corpus/core/src/client/agent-chat-adapter.ts +23 -37
  15. package/corpus/core/src/client/agent-sidebar-state.ts +4 -0
  16. package/corpus/core/src/client/analytics.ts +84 -0
  17. package/corpus/core/src/client/chat/message-components.tsx +94 -22
  18. package/corpus/core/src/client/chat/tool-call-display.tsx +170 -47
  19. package/corpus/core/src/client/chat/use-agent-chat-lifecycle-tracking.ts +74 -0
  20. package/corpus/core/src/client/chat-thread-url.ts +11 -0
  21. package/corpus/core/src/client/error-capture.ts +12 -0
  22. package/corpus/core/src/client/extensions/ExtensionSlot.tsx +37 -1
  23. package/corpus/core/src/client/index.ts +2 -0
  24. package/corpus/core/src/client/route-chunk-recovery.ts +20 -8
  25. package/corpus/core/src/client/session-replay.ts +31 -0
  26. package/corpus/core/src/extensions/actions.ts +2 -14
  27. package/corpus/core/src/extensions/store.ts +1 -1
  28. package/corpus/core/src/localization/default-messages.ts +3 -0
  29. package/corpus/core/src/mcp/build-server.ts +2 -2
  30. package/corpus/core/src/progress/actions.ts +4 -2
  31. package/corpus/core/src/provider-api/index.ts +205 -105
  32. package/corpus/core/src/scripts/call-agent.ts +137 -17
  33. package/corpus/core/src/server/agent-chat/action-filters-a2a.ts +40 -0
  34. package/corpus/core/src/server/agent-chat-plugin.ts +31 -0
  35. package/corpus/core/src/styles/agent-conversation.css +7 -0
  36. package/corpus/core/src/templates/default/app/i18n/ar-SA.ts +20 -0
  37. package/corpus/core/src/templates/default/app/i18n/de-DE.ts +20 -0
  38. package/corpus/core/src/templates/default/app/i18n/en-US.ts +20 -0
  39. package/corpus/core/src/templates/default/app/i18n/es-ES.ts +20 -0
  40. package/corpus/core/src/templates/default/app/i18n/fr-FR.ts +21 -0
  41. package/corpus/core/src/templates/default/app/i18n/hi-IN.ts +19 -0
  42. package/corpus/core/src/templates/default/app/i18n/ja-JP.ts +20 -0
  43. package/corpus/core/src/templates/default/app/i18n/ko-KR.ts +19 -0
  44. package/corpus/core/src/templates/default/app/i18n/pt-BR.ts +20 -0
  45. package/corpus/core/src/templates/default/app/i18n/zh-CN.ts +19 -0
  46. package/corpus/core/src/templates/default/app/i18n/zh-TW.ts +19 -0
  47. package/corpus/core/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +28 -0
  48. package/corpus/core/src/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +5 -0
  49. package/corpus/core/src/templates/workspace-core/.agents/skills/performance/SKILL.md +13 -0
  50. package/corpus/templates/analytics/.agents/skills/dashboard-management/SKILL.md +29 -10
  51. package/corpus/templates/analytics/.agents/skills/gong/SKILL.md +54 -23
  52. package/corpus/templates/analytics/.builder/skills/apollo/SKILL.md +19 -41
  53. package/corpus/templates/analytics/.builder/skills/commonroom/SKILL.md +20 -35
  54. package/corpus/templates/analytics/.builder/skills/github/SKILL.md +23 -67
  55. package/corpus/templates/analytics/.builder/skills/pylon/SKILL.md +25 -43
  56. package/corpus/templates/analytics/AGENTS.md +22 -13
  57. package/corpus/templates/analytics/actions/account-deep-dive.ts +1 -0
  58. package/corpus/templates/analytics/actions/configure-gong-native-insights.ts +29 -0
  59. package/corpus/templates/analytics/actions/content-calendar-schema.ts +8 -4
  60. package/corpus/templates/analytics/actions/content-calendar.ts +12 -4
  61. package/corpus/templates/analytics/actions/dashboard-mutation-api.ts +2 -1
  62. package/corpus/templates/analytics/actions/gong-calls.ts +113 -22
  63. package/corpus/templates/analytics/actions/gong-native-insights.ts +166 -0
  64. package/corpus/templates/analytics/actions/hubspot-deals.ts +190 -46
  65. package/corpus/templates/analytics/actions/pylon-issues.ts +123 -0
  66. package/corpus/templates/analytics/actions/slack-messages.ts +179 -27
  67. package/corpus/templates/analytics/app/components/dashboard/SqlChart.tsx +48 -152
  68. package/corpus/templates/analytics/app/components/ui/chart.tsx +1 -1
  69. package/corpus/templates/analytics/app/hooks/use-chart-tooltip-flip.ts +21 -6
  70. package/corpus/templates/analytics/app/i18n/zh-TW.ts +13 -0
  71. package/corpus/templates/analytics/app/i18n-data.ts +134 -0
  72. package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/PanelEditorDialog.tsx +181 -30
  73. package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/SqlChartCard.tsx +6 -0
  74. package/corpus/templates/analytics/app/pages/adhoc/sql-dashboard/types.ts +4 -3
  75. package/corpus/templates/analytics/changelog/2026-07-17-dashboard-editors-can-add-shared-extensions-or-opt-into-per-.md +6 -0
  76. package/corpus/templates/analytics/changelog/2026-07-17-dashboard-extensions-show-a-loading-skeleton.md +6 -0
  77. package/corpus/templates/analytics/changelog/2026-07-17-errors-now-group-repeat-failures-consistently-and-keep-priva.md +6 -0
  78. package/corpus/templates/analytics/changelog/2026-07-17-gong-transcript-reviews-now-batch-bounded-call-windows-for-f.md +6 -0
  79. package/corpus/templates/analytics/changelog/2026-07-17-hubspot-deal-filters-now-run-in-hubspot-before-paging-result.md +6 -0
  80. package/corpus/templates/analytics/changelog/2026-07-17-notion-content-calendars-now-discover-the-matching-database-.md +6 -0
  81. package/corpus/templates/analytics/changelog/2026-07-17-pylon-dashboard-reads-now-use-the-paginated-issue-search-api.md +6 -0
  82. package/corpus/templates/analytics/changelog/2026-07-17-slack-reads-no-longer-join-channels-and-report-pagination-coverage.md +6 -0
  83. package/corpus/templates/analytics/server/handlers/notion.ts +14 -3
  84. package/corpus/templates/analytics/server/handlers/slack.ts +182 -29
  85. package/corpus/templates/analytics/server/lib/agent-chat-plan-mode.ts +2 -6
  86. package/corpus/templates/analytics/server/lib/analytics-connector-catalog.ts +6 -2
  87. package/corpus/templates/analytics/server/lib/error-capture.ts +75 -8
  88. package/corpus/templates/analytics/server/lib/gong-native-policy.ts +72 -0
  89. package/corpus/templates/analytics/server/lib/gong.ts +54 -66
  90. package/corpus/templates/analytics/server/lib/hubspot.ts +40 -3
  91. package/corpus/templates/analytics/server/lib/notion.ts +83 -8
  92. package/corpus/templates/analytics/server/lib/real-data-actions.ts +4 -0
  93. package/corpus/templates/analytics/server/lib/slack.ts +242 -90
  94. package/corpus/templates/analytics/server/plugins/agent-chat.ts +3 -3
  95. package/corpus/templates/analytics/server/routes/api/pylon/accounts.get.ts +42 -1
  96. package/corpus/templates/analytics/server/routes/api/pylon/issues.get.ts +71 -1
  97. package/corpus/templates/analytics/server/routes/api/test-connection.post.ts +44 -4
  98. package/corpus/templates/clips/app/components/library/bulk-action-toolbar.tsx +19 -1
  99. package/corpus/templates/clips/app/components/library/create-folder-dialog.tsx +123 -0
  100. package/corpus/templates/clips/app/components/library/library-grid.tsx +42 -4
  101. package/corpus/templates/clips/app/components/library/recording-card.tsx +30 -0
  102. package/corpus/templates/clips/app/entry.client.tsx +6 -1
  103. package/corpus/templates/clips/app/i18n/ar-SA.ts +12 -1
  104. package/corpus/templates/clips/app/i18n/de-DE.ts +12 -1
  105. package/corpus/templates/clips/app/i18n/en-US.ts +12 -1
  106. package/corpus/templates/clips/app/i18n/es-ES.ts +11 -1
  107. package/corpus/templates/clips/app/i18n/fr-FR.ts +11 -1
  108. package/corpus/templates/clips/app/i18n/hi-IN.ts +10 -1
  109. package/corpus/templates/clips/app/i18n/ja-JP.ts +12 -1
  110. package/corpus/templates/clips/app/i18n/ko-KR.ts +11 -1
  111. package/corpus/templates/clips/app/i18n/pt-BR.ts +11 -1
  112. package/corpus/templates/clips/app/i18n/zh-CN.ts +11 -1
  113. package/corpus/templates/clips/app/i18n/zh-TW.ts +11 -1
  114. package/corpus/templates/clips/app/routes/_app.settings._index.tsx +72 -1
  115. package/corpus/templates/clips/changelog/2026-07-17-choose-which-workspace-receives-new-clips-recordings-and-des.md +6 -0
  116. package/corpus/templates/clips/changelog/2026-07-17-create-folders-directly-from-the-move-menu.md +6 -0
  117. package/corpus/templates/clips/changelog/2026-07-17-failed-desktop-uploads-now-offer-a-direct-way-to-reopen-clip.md +6 -0
  118. package/corpus/templates/clips/desktop/src/app.tsx +1 -1
  119. package/corpus/templates/content/app/entry.client.tsx +6 -1
  120. package/corpus/templates/dispatch/AGENTS.md +5 -0
  121. package/corpus/templates/dispatch/changelog/2026-07-17-apps-page-links-to-other-available-apps.md +6 -0
  122. package/corpus/templates/dispatch/changelog/2026-07-17-curated-template-remixes.md +6 -0
  123. package/corpus/templates/mail/app/entry.client.tsx +6 -1
  124. package/corpus/templates/slides/.agents/skills/slide-images/SKILL.md +11 -7
  125. package/corpus/templates/slides/.env.example +0 -1
  126. package/corpus/templates/slides/AGENTS.md +4 -0
  127. package/corpus/templates/slides/DEVELOPING.md +2 -2
  128. package/corpus/templates/slides/actions/index-design-system-with-builder.ts +1 -1
  129. package/corpus/templates/slides/actions/logo-config.ts +6 -7
  130. package/corpus/templates/slides/actions/search-images.ts +11 -39
  131. package/corpus/templates/slides/actions/search-logos.ts +5 -52
  132. package/corpus/templates/slides/app/components/editor/ImageSearchPanel.tsx +1 -1
  133. package/corpus/templates/slides/app/components/editor/LogoSearchPanel.tsx +16 -26
  134. package/corpus/templates/slides/app/entry.client.tsx +6 -1
  135. package/corpus/templates/slides/server/lib/media-search-providers.ts +216 -0
  136. package/corpus/templates/slides/server/register-secrets.ts +30 -0
  137. package/dist/a2a/client.d.ts +38 -1
  138. package/dist/a2a/client.d.ts.map +1 -1
  139. package/dist/a2a/client.js +81 -12
  140. package/dist/a2a/client.js.map +1 -1
  141. package/dist/a2a/handlers.d.ts.map +1 -1
  142. package/dist/a2a/handlers.js +47 -0
  143. package/dist/a2a/handlers.js.map +1 -1
  144. package/dist/a2a/index.d.ts +4 -4
  145. package/dist/a2a/index.d.ts.map +1 -1
  146. package/dist/a2a/index.js +2 -2
  147. package/dist/a2a/index.js.map +1 -1
  148. package/dist/a2a/invoke.d.ts +26 -2
  149. package/dist/a2a/invoke.d.ts.map +1 -1
  150. package/dist/a2a/invoke.js +30 -1
  151. package/dist/a2a/invoke.js.map +1 -1
  152. package/dist/a2a/server.d.ts.map +1 -1
  153. package/dist/a2a/server.js +14 -1
  154. package/dist/a2a/server.js.map +1 -1
  155. package/dist/a2a/types.d.ts +12 -0
  156. package/dist/a2a/types.d.ts.map +1 -1
  157. package/dist/a2a/types.js.map +1 -1
  158. package/dist/action.d.ts +3 -2
  159. package/dist/action.d.ts.map +1 -1
  160. package/dist/action.js.map +1 -1
  161. package/dist/agent/production-agent.d.ts +5 -0
  162. package/dist/agent/production-agent.d.ts.map +1 -1
  163. package/dist/agent/production-agent.js +5 -3
  164. package/dist/agent/production-agent.js.map +1 -1
  165. package/dist/client/AssistantChat.d.ts +14 -1
  166. package/dist/client/AssistantChat.d.ts.map +1 -1
  167. package/dist/client/AssistantChat.js +158 -136
  168. package/dist/client/AssistantChat.js.map +1 -1
  169. package/dist/client/MultiTabAssistantChat.d.ts.map +1 -1
  170. package/dist/client/MultiTabAssistantChat.js +27 -4
  171. package/dist/client/MultiTabAssistantChat.js.map +1 -1
  172. package/dist/client/agent-chat-adapter.d.ts.map +1 -1
  173. package/dist/client/agent-chat-adapter.js +21 -39
  174. package/dist/client/agent-chat-adapter.js.map +1 -1
  175. package/dist/client/agent-sidebar-state.d.ts +1 -0
  176. package/dist/client/agent-sidebar-state.d.ts.map +1 -1
  177. package/dist/client/agent-sidebar-state.js +4 -0
  178. package/dist/client/agent-sidebar-state.js.map +1 -1
  179. package/dist/client/analytics.d.ts +14 -0
  180. package/dist/client/analytics.d.ts.map +1 -1
  181. package/dist/client/analytics.js +67 -0
  182. package/dist/client/analytics.js.map +1 -1
  183. package/dist/client/chat/message-components.d.ts +8 -0
  184. package/dist/client/chat/message-components.d.ts.map +1 -1
  185. package/dist/client/chat/message-components.js +62 -19
  186. package/dist/client/chat/message-components.js.map +1 -1
  187. package/dist/client/chat/tool-call-display.d.ts +6 -0
  188. package/dist/client/chat/tool-call-display.d.ts.map +1 -1
  189. package/dist/client/chat/tool-call-display.js +83 -14
  190. package/dist/client/chat/tool-call-display.js.map +1 -1
  191. package/dist/client/chat/use-agent-chat-lifecycle-tracking.d.ts +8 -0
  192. package/dist/client/chat/use-agent-chat-lifecycle-tracking.d.ts.map +1 -0
  193. package/dist/client/chat/use-agent-chat-lifecycle-tracking.js +51 -0
  194. package/dist/client/chat/use-agent-chat-lifecycle-tracking.js.map +1 -0
  195. package/dist/client/chat-thread-url.d.ts +2 -0
  196. package/dist/client/chat-thread-url.d.ts.map +1 -0
  197. package/dist/client/chat-thread-url.js +12 -0
  198. package/dist/client/chat-thread-url.js.map +1 -0
  199. package/dist/client/error-capture.d.ts.map +1 -1
  200. package/dist/client/error-capture.js +7 -0
  201. package/dist/client/error-capture.js.map +1 -1
  202. package/dist/client/extensions/ExtensionSlot.d.ts +3 -1
  203. package/dist/client/extensions/ExtensionSlot.d.ts.map +1 -1
  204. package/dist/client/extensions/ExtensionSlot.js +28 -3
  205. package/dist/client/extensions/ExtensionSlot.js.map +1 -1
  206. package/dist/client/index.d.ts +1 -1
  207. package/dist/client/index.d.ts.map +1 -1
  208. package/dist/client/index.js +1 -1
  209. package/dist/client/index.js.map +1 -1
  210. package/dist/client/route-chunk-recovery.d.ts.map +1 -1
  211. package/dist/client/route-chunk-recovery.js +14 -9
  212. package/dist/client/route-chunk-recovery.js.map +1 -1
  213. package/dist/client/session-replay.d.ts +15 -0
  214. package/dist/client/session-replay.d.ts.map +1 -1
  215. package/dist/client/session-replay.js +20 -0
  216. package/dist/client/session-replay.js.map +1 -1
  217. package/dist/collab/routes.d.ts +1 -1
  218. package/dist/collab/struct-routes.d.ts +1 -1
  219. package/dist/extensions/actions.d.ts.map +1 -1
  220. package/dist/extensions/actions.js +2 -10
  221. package/dist/extensions/actions.js.map +1 -1
  222. package/dist/extensions/store.js +1 -1
  223. package/dist/extensions/store.js.map +1 -1
  224. package/dist/localization/default-messages.d.ts +3 -0
  225. package/dist/localization/default-messages.d.ts.map +1 -1
  226. package/dist/localization/default-messages.js +3 -0
  227. package/dist/localization/default-messages.js.map +1 -1
  228. package/dist/mcp/build-server.d.ts +2 -0
  229. package/dist/mcp/build-server.d.ts.map +1 -1
  230. package/dist/mcp/build-server.js +2 -2
  231. package/dist/mcp/build-server.js.map +1 -1
  232. package/dist/notifications/routes.d.ts +2 -2
  233. package/dist/observability/routes.d.ts +1 -1
  234. package/dist/progress/actions.d.ts.map +1 -1
  235. package/dist/progress/actions.js +3 -2
  236. package/dist/progress/actions.js.map +1 -1
  237. package/dist/progress/routes.d.ts +1 -1
  238. package/dist/provider-api/corpus-jobs.d.ts +2 -2
  239. package/dist/provider-api/index.d.ts.map +1 -1
  240. package/dist/provider-api/index.js +91 -8
  241. package/dist/provider-api/index.js.map +1 -1
  242. package/dist/resources/handlers.d.ts +2 -2
  243. package/dist/scripts/call-agent.d.ts.map +1 -1
  244. package/dist/scripts/call-agent.js +107 -16
  245. package/dist/scripts/call-agent.js.map +1 -1
  246. package/dist/server/agent-chat/action-filters-a2a.d.ts +6 -0
  247. package/dist/server/agent-chat/action-filters-a2a.d.ts.map +1 -1
  248. package/dist/server/agent-chat/action-filters-a2a.js +27 -0
  249. package/dist/server/agent-chat/action-filters-a2a.js.map +1 -1
  250. package/dist/server/agent-chat-plugin.d.ts.map +1 -1
  251. package/dist/server/agent-chat-plugin.js +27 -1
  252. package/dist/server/agent-chat-plugin.js.map +1 -1
  253. package/dist/server/agent-engine-api-key-route.d.ts +1 -1
  254. package/dist/server/transcribe-voice.d.ts +1 -1
  255. package/dist/styles/agent-conversation.css +7 -0
  256. package/dist/templates/default/app/i18n/ar-SA.ts +20 -0
  257. package/dist/templates/default/app/i18n/de-DE.ts +20 -0
  258. package/dist/templates/default/app/i18n/en-US.ts +20 -0
  259. package/dist/templates/default/app/i18n/es-ES.ts +20 -0
  260. package/dist/templates/default/app/i18n/fr-FR.ts +21 -0
  261. package/dist/templates/default/app/i18n/hi-IN.ts +19 -0
  262. package/dist/templates/default/app/i18n/ja-JP.ts +20 -0
  263. package/dist/templates/default/app/i18n/ko-KR.ts +19 -0
  264. package/dist/templates/default/app/i18n/pt-BR.ts +20 -0
  265. package/dist/templates/default/app/i18n/zh-CN.ts +19 -0
  266. package/dist/templates/default/app/i18n/zh-TW.ts +19 -0
  267. package/dist/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +28 -0
  268. package/dist/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +5 -0
  269. package/dist/templates/workspace-core/.agents/skills/performance/SKILL.md +13 -0
  270. package/package.json +1 -1
  271. package/src/templates/default/app/i18n/ar-SA.ts +20 -0
  272. package/src/templates/default/app/i18n/de-DE.ts +20 -0
  273. package/src/templates/default/app/i18n/en-US.ts +20 -0
  274. package/src/templates/default/app/i18n/es-ES.ts +20 -0
  275. package/src/templates/default/app/i18n/fr-FR.ts +21 -0
  276. package/src/templates/default/app/i18n/hi-IN.ts +19 -0
  277. package/src/templates/default/app/i18n/ja-JP.ts +20 -0
  278. package/src/templates/default/app/i18n/ko-KR.ts +19 -0
  279. package/src/templates/default/app/i18n/pt-BR.ts +20 -0
  280. package/src/templates/default/app/i18n/zh-CN.ts +19 -0
  281. package/src/templates/default/app/i18n/zh-TW.ts +19 -0
  282. package/src/templates/workspace-core/.agents/skills/a2a-protocol/SKILL.md +28 -0
  283. package/src/templates/workspace-core/.agents/skills/composable-mini-apps/SKILL.md +5 -0
  284. package/src/templates/workspace-core/.agents/skills/performance/SKILL.md +13 -0
  285. package/corpus/templates/analytics/server/handlers/github.ts +0 -200
  286. package/corpus/templates/analytics/server/handlers/pylon.ts +0 -43
  287. package/corpus/templates/analytics/server/lib/apollo.ts +0 -167
  288. package/corpus/templates/analytics/server/lib/commonroom.ts +0 -149
  289. package/corpus/templates/analytics/server/lib/github.ts +0 -660
  290. package/corpus/templates/analytics/server/lib/mixpanel.ts +0 -156
  291. package/corpus/templates/analytics/server/lib/posthog.ts +0 -194
  292. package/corpus/templates/analytics/server/lib/pylon.ts +0 -109
  293. package/corpus/templates/analytics/server/routes/api/github/graphql.post.ts +0 -1
  294. package/corpus/templates/analytics/server/routes/api/github/issue.get.ts +0 -1
  295. package/corpus/templates/analytics/server/routes/api/github/org-prs.get.ts +0 -1
  296. package/corpus/templates/analytics/server/routes/api/github/pr.get.ts +0 -1
  297. package/corpus/templates/analytics/server/routes/api/github/prs.get.ts +0 -1
  298. package/corpus/templates/analytics/server/routes/api/github/search.get.ts +0 -1
  299. package/corpus/templates/slides/actions/fetch-logos.ts +0 -90
  300. package/corpus/templates/slides/actions/image-search.ts +0 -64
  301. package/corpus/templates/slides/actions/import-github.ts +0 -182
  302. package/corpus/templates/slides/actions/logo-lookup.ts +0 -113
@@ -1284,6 +1284,35 @@ const PROVIDER_CONFIGS: Record<ProviderApiId, ProviderApiConfig> = {
1284
1284
  defaultHeaders: { "Notion-Version": "2026-03-11" },
1285
1285
  templateUses: ["analytics", "brain", "content", "dispatch"],
1286
1286
  examples: [{ label: "Search", method: "POST", path: "/search", body: {} }],
1287
+ corpusRecipes: [
1288
+ {
1289
+ label: "Search a Notion data source with complete cursor coverage",
1290
+ useWhen:
1291
+ "Use for coverage-sensitive searches across one known Notion data source's page properties. This does not search page block bodies.",
1292
+ workflow: [
1293
+ "Resolve the exact data source id and apply the narrowest provider-side filter and filter_properties projection first.",
1294
+ "Start provider-corpus-job with mode=paginated-search and pass next_cursor back as start_cursor in the POST body.",
1295
+ "Search only the returned properties and report the 10,000-result API ceiling plus any incomplete request_status.",
1296
+ "For page body text, stage page ids and fetch block children through a separate bounded data program; property search is not body search.",
1297
+ ],
1298
+ request: {
1299
+ method: "POST",
1300
+ path: "/data_sources/<data-source-id>/query",
1301
+ body: { page_size: 100 },
1302
+ },
1303
+ pagination: {
1304
+ itemsPath: "results",
1305
+ nextCursorPath: "next_cursor",
1306
+ cursorBodyPath: "start_cursor",
1307
+ maxPages: 100,
1308
+ },
1309
+ search: {
1310
+ textPaths: ["properties"],
1311
+ idPaths: ["id"],
1312
+ metadataPaths: ["id", "url", "created_time", "last_edited_time"],
1313
+ },
1314
+ },
1315
+ ],
1287
1316
  },
1288
1317
  posthog: {
1289
1318
  id: "posthog",
@@ -1306,11 +1335,21 @@ const PROVIDER_CONFIGS: Record<ProviderApiId, ProviderApiConfig> = {
1306
1335
  ],
1307
1336
  examples: [
1308
1337
  {
1309
- label: "List events",
1310
- method: "GET",
1311
- path: "/api/projects/{projectId}/events/",
1338
+ label: "Aggregate events with HogQL",
1339
+ method: "POST",
1340
+ path: "/api/projects/{projectId}/query/",
1341
+ body: {
1342
+ query: {
1343
+ kind: "HogQLQuery",
1344
+ query:
1345
+ "SELECT event, count() AS events FROM events WHERE timestamp >= now() - INTERVAL 7 DAY GROUP BY event ORDER BY events DESC LIMIT 100",
1346
+ },
1347
+ },
1312
1348
  },
1313
1349
  ],
1350
+ notes: [
1351
+ "Prefer the query endpoint with a bounded HogQL projection or server-side aggregation over paging raw events into the agent context.",
1352
+ ],
1314
1353
  },
1315
1354
  prometheus: {
1316
1355
  id: "prometheus",
@@ -1400,6 +1439,39 @@ const PROVIDER_CONFIGS: Record<ProviderApiId, ProviderApiConfig> = {
1400
1439
  { label: "Search messages", method: "GET", path: "/search.messages" },
1401
1440
  { label: "Post message", method: "POST", path: "/chat.postMessage" },
1402
1441
  ],
1442
+ notes: [
1443
+ "Bot-token reads must not call conversations.join implicitly. A bot can read only conversations it is already a member of with the required history scope.",
1444
+ "search.messages requires a compatible user token; do not assume a bot token can use it. Use conversations.history for channel-scoped bot reads.",
1445
+ ],
1446
+ corpusRecipes: [
1447
+ {
1448
+ label: "Search complete Slack channel history",
1449
+ useWhen:
1450
+ "Use for all-message, mention, phrase, or absence-sensitive searches in one known Slack conversation without one agent turn per cursor page.",
1451
+ workflow: [
1452
+ "Resolve the exact channel id without joining or mutating membership.",
1453
+ "Start provider-corpus-job with mode=paginated-search against conversations.history, bounded by oldest/latest when possible.",
1454
+ "Pass response_metadata.next_cursor back as cursor and let quota_wait pause/resume rate-limited installations.",
1455
+ "Report channel id, time bounds, pages, messages searched, matches, and is_limited or access gaps.",
1456
+ ],
1457
+ request: {
1458
+ method: "GET",
1459
+ path: "/conversations.history",
1460
+ query: { channel: "<channel-id>" },
1461
+ },
1462
+ pagination: {
1463
+ itemsPath: "messages",
1464
+ nextCursorPath: "response_metadata.next_cursor",
1465
+ cursorParam: "cursor",
1466
+ maxPages: 500,
1467
+ },
1468
+ search: {
1469
+ textPaths: ["text", "blocks", "attachments"],
1470
+ idPaths: ["ts", "client_msg_id"],
1471
+ metadataPaths: ["ts", "user", "thread_ts", "type", "subtype"],
1472
+ },
1473
+ },
1474
+ ],
1403
1475
  },
1404
1476
  stripe: {
1405
1477
  id: "stripe",
@@ -1690,60 +1762,66 @@ export async function executeProviderApiRequest(
1690
1762
  // --- fetchAllPages mode ---
1691
1763
  if (args.fetchAllPages) {
1692
1764
  const pageCfg = args.fetchAllPages;
1693
- const { items, pageCount, lastStatus, lastContentType } =
1694
- await fetchAllPages(pageCfg, async (extra) => {
1695
- const queryWithCursor = extra?.query
1696
- ? mergeQueryObjects(
1697
- substituteUnknown(args.query, placeholders),
1698
- extra.query,
1699
- )
1700
- : substituteUnknown(args.query, placeholders);
1701
- const pageUrl = buildProviderUrl({
1702
- config,
1703
- baseUrl,
1704
- rawPath: substituteString(args.path, placeholders),
1705
- query: queryWithCursor,
1706
- });
1707
- const bodyWithCursor = extra?.bodyCursor
1708
- ? setValueAtPath(
1709
- substituteUnknown(args.body, placeholders),
1710
- extra.bodyCursor.path,
1711
- extra.bodyCursor.value,
1712
- )
1713
- : substituteUnknown(args.body, placeholders);
1714
- const pageBody = prepareBody(bodyWithCursor, { ...headers });
1715
- const requestKey = createProviderRequestDedupeKey({
1716
- method,
1717
- url: pageUrl.href,
1718
- body: pageBody,
1719
- headers,
1720
- });
1721
- const resp = await fetchWithTimeout(pageUrl.href, {
1765
+ const {
1766
+ items,
1767
+ pageCount,
1768
+ lastStatus,
1769
+ lastContentType,
1770
+ truncated,
1771
+ nextCursor,
1772
+ } = await fetchAllPages(pageCfg, async (extra) => {
1773
+ const queryWithCursor = extra?.query
1774
+ ? mergeQueryObjects(
1775
+ substituteUnknown(args.query, placeholders),
1776
+ extra.query,
1777
+ )
1778
+ : substituteUnknown(args.query, placeholders);
1779
+ const pageUrl = buildProviderUrl({
1780
+ config,
1781
+ baseUrl,
1782
+ rawPath: substituteString(args.path, placeholders),
1783
+ query: queryWithCursor,
1784
+ });
1785
+ const bodyWithCursor = extra?.bodyCursor
1786
+ ? setValueAtPath(
1787
+ substituteUnknown(args.body, placeholders),
1788
+ extra.bodyCursor.path,
1789
+ extra.bodyCursor.value,
1790
+ )
1791
+ : substituteUnknown(args.body, placeholders);
1792
+ const pageBody = prepareBody(bodyWithCursor, headers);
1793
+ const requestKey = createProviderRequestDedupeKey({
1794
+ method,
1795
+ url: pageUrl.href,
1796
+ body: pageBody,
1797
+ headers,
1798
+ });
1799
+ const resp = await fetchWithTimeout(pageUrl.href, {
1800
+ method,
1801
+ headers,
1802
+ body: pageBody,
1803
+ maxBytes: effectiveMaxBytes,
1804
+ timeoutMs: clampTimeout(args.timeoutMs),
1805
+ secretValues: auth.secretValues,
1806
+ quota: {
1807
+ identity: quotaIdentity,
1722
1808
  method,
1723
- headers,
1724
- body: pageBody,
1725
- maxBytes: effectiveMaxBytes,
1726
- timeoutMs: clampTimeout(args.timeoutMs),
1727
- secretValues: auth.secretValues,
1728
- quota: {
1729
- identity: quotaIdentity,
1730
- method,
1731
- target: describeProviderRequestTarget(
1732
- pageUrl.href,
1733
- auth.secretValues,
1734
- ),
1735
- requestKey,
1736
- },
1737
- });
1738
- return {
1739
- text:
1740
- resp.text ??
1741
- (resp.json !== undefined ? JSON.stringify(resp.json) : ""),
1742
- contentType: resp.contentType,
1743
- status: resp.status,
1744
- ok: resp.ok,
1745
- };
1809
+ target: describeProviderRequestTarget(
1810
+ pageUrl.href,
1811
+ auth.secretValues,
1812
+ ),
1813
+ requestKey,
1814
+ },
1746
1815
  });
1816
+ return {
1817
+ text:
1818
+ resp.text ??
1819
+ (resp.json !== undefined ? JSON.stringify(resp.json) : ""),
1820
+ contentType: resp.contentType,
1821
+ status: resp.status,
1822
+ ok: resp.ok,
1823
+ };
1824
+ });
1747
1825
 
1748
1826
  const allItemsJson = JSON.stringify(items, null, 2);
1749
1827
  const metadata = {
@@ -1751,6 +1829,8 @@ export async function executeProviderApiRequest(
1751
1829
  pagesRead: pageCount,
1752
1830
  totalItems: Array.isArray(items) ? items.length : 0,
1753
1831
  lastStatus,
1832
+ truncated,
1833
+ nextCursor,
1754
1834
  };
1755
1835
 
1756
1836
  if (args.saveToFile) {
@@ -2642,57 +2722,63 @@ async function executeCustomProviderApiRequest(
2642
2722
  // --- fetchAllPages mode (same cursor pagination as built-in providers) ---
2643
2723
  if (args.fetchAllPages) {
2644
2724
  const pageCfg = args.fetchAllPages;
2645
- const { items, pageCount, lastStatus, lastContentType } =
2646
- await fetchAllPages(pageCfg, async (extra) => {
2647
- const queryWithCursor = extra?.query
2648
- ? mergeQueryObjects(args.query, extra.query)
2649
- : args.query;
2650
- const pageUrl = buildProviderUrl({
2651
- config: syntheticConfig,
2652
- baseUrl,
2653
- rawPath: args.path,
2654
- query: queryWithCursor,
2655
- });
2656
- const bodyWithCursor = extra?.bodyCursor
2657
- ? setValueAtPath(
2658
- args.body,
2659
- extra.bodyCursor.path,
2660
- extra.bodyCursor.value,
2661
- )
2662
- : args.body;
2663
- const pageBody = prepareBody(bodyWithCursor, { ...headers });
2664
- const requestKey = createProviderRequestDedupeKey({
2665
- method,
2666
- url: pageUrl.href,
2667
- body: pageBody,
2668
- headers,
2669
- });
2670
- const resp = await fetchWithTimeout(pageUrl.href, {
2725
+ const {
2726
+ items,
2727
+ pageCount,
2728
+ lastStatus,
2729
+ lastContentType,
2730
+ truncated,
2731
+ nextCursor,
2732
+ } = await fetchAllPages(pageCfg, async (extra) => {
2733
+ const queryWithCursor = extra?.query
2734
+ ? mergeQueryObjects(args.query, extra.query)
2735
+ : args.query;
2736
+ const pageUrl = buildProviderUrl({
2737
+ config: syntheticConfig,
2738
+ baseUrl,
2739
+ rawPath: args.path,
2740
+ query: queryWithCursor,
2741
+ });
2742
+ const bodyWithCursor = extra?.bodyCursor
2743
+ ? setValueAtPath(
2744
+ args.body,
2745
+ extra.bodyCursor.path,
2746
+ extra.bodyCursor.value,
2747
+ )
2748
+ : args.body;
2749
+ const pageBody = prepareBody(bodyWithCursor, headers);
2750
+ const requestKey = createProviderRequestDedupeKey({
2751
+ method,
2752
+ url: pageUrl.href,
2753
+ body: pageBody,
2754
+ headers,
2755
+ });
2756
+ const resp = await fetchWithTimeout(pageUrl.href, {
2757
+ method,
2758
+ headers,
2759
+ body: pageBody,
2760
+ maxBytes: effectiveMaxBytes,
2761
+ timeoutMs: clampTimeout(args.timeoutMs),
2762
+ secretValues: auth.secretValues,
2763
+ quota: {
2764
+ identity: quotaIdentity,
2671
2765
  method,
2672
- headers,
2673
- body: pageBody,
2674
- maxBytes: effectiveMaxBytes,
2675
- timeoutMs: clampTimeout(args.timeoutMs),
2676
- secretValues: auth.secretValues,
2677
- quota: {
2678
- identity: quotaIdentity,
2679
- method,
2680
- target: describeProviderRequestTarget(
2681
- pageUrl.href,
2682
- auth.secretValues,
2683
- ),
2684
- requestKey,
2685
- },
2686
- });
2687
- return {
2688
- text:
2689
- resp.text ??
2690
- (resp.json !== undefined ? JSON.stringify(resp.json) : ""),
2691
- contentType: resp.contentType,
2692
- status: resp.status,
2693
- ok: resp.ok,
2694
- };
2766
+ target: describeProviderRequestTarget(
2767
+ pageUrl.href,
2768
+ auth.secretValues,
2769
+ ),
2770
+ requestKey,
2771
+ },
2695
2772
  });
2773
+ return {
2774
+ text:
2775
+ resp.text ??
2776
+ (resp.json !== undefined ? JSON.stringify(resp.json) : ""),
2777
+ contentType: resp.contentType,
2778
+ status: resp.status,
2779
+ ok: resp.ok,
2780
+ };
2781
+ });
2696
2782
 
2697
2783
  const allItemsJson = JSON.stringify(items, null, 2);
2698
2784
  const metadata = {
@@ -2704,6 +2790,8 @@ async function executeCustomProviderApiRequest(
2704
2790
  pagesRead: pageCount,
2705
2791
  totalItems: Array.isArray(items) ? items.length : 0,
2706
2792
  lastStatus,
2793
+ truncated,
2794
+ nextCursor,
2707
2795
  };
2708
2796
 
2709
2797
  if (args.saveToFile) {
@@ -5146,6 +5234,8 @@ async function fetchAllPages(
5146
5234
  pageCount: number;
5147
5235
  lastStatus: number;
5148
5236
  lastContentType: string | null;
5237
+ truncated: boolean;
5238
+ nextCursor: string | null;
5149
5239
  }> {
5150
5240
  const maxPages = Math.min(
5151
5241
  Number.isFinite(config.maxPages) && config.maxPages! > 0
@@ -5159,6 +5249,7 @@ async function fetchAllPages(
5159
5249
  let pageCount = 0;
5160
5250
  let lastStatus = 0;
5161
5251
  let lastContentType: string | null = null;
5252
+ let truncated = false;
5162
5253
 
5163
5254
  if (!config.cursorParam && !config.cursorBodyPath) {
5164
5255
  throw new Error(
@@ -5224,12 +5315,21 @@ async function fetchAllPages(
5224
5315
  nextCursor === null ||
5225
5316
  nextCursor === cursor
5226
5317
  ) {
5318
+ truncated = false;
5227
5319
  break;
5228
5320
  }
5229
5321
  cursor = String(nextCursor);
5322
+ truncated = pageCount >= maxPages;
5230
5323
  }
5231
5324
 
5232
- return { items, pageCount, lastStatus, lastContentType };
5325
+ return {
5326
+ items,
5327
+ pageCount,
5328
+ lastStatus,
5329
+ lastContentType,
5330
+ truncated,
5331
+ nextCursor: truncated ? (cursor ?? null) : null,
5332
+ };
5233
5333
  }
5234
5334
 
5235
5335
  function fingerprint(value: string): string {
@@ -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 },