Eve now supports Chat SDK adapters via a new dedicated channel, connecting a single eve agent to Facebook Messenger, WhatsApp, Resend, Liveblocks, Slack, and any other surface that has a Chat SDK adapter. The integration requires no special agent code: call send inside a standard Chat SDK handler and eve takes over.
The channel ships five behaviors by default. It mounts a webhook route per adapter (e.g., /eve/v1/chat/slack), shows a typing indicator during a turn, renders human-in-the-loop requests as button cards, persists threads so proactive schedule-triggered messages land in the correct conversation, and posts readable failure messages inline. All five are overridable via custom events handlers.
The Vercel changelog entry is worth reading in full for the handler registration pattern on bot, which mirrors a standalone Chat SDK app and reveals how thin the integration layer actually is. A working Resend example is also linked from the docs.
[READ ORIGINAL →]