Skip to content
Dashboard

iMessage support for eve agents

Member of Technical Staff

Vercel Connect is generally available as of August 25, 2026. Read the launch blog post, changelog, and complete guide for more information.

eve agents can now connect to iMessage through the new Photon channel.

The channel keeps each iMessage conversation in one eve session, verifies incoming webhooks, and marks accepted messages as read.

If more messages arrive while the agent is replying, they steer the in-progress reply instead of each getting a separate answer. The onMessage hook filters which messages the agent handles and adds context to a turn.

Run eve add channel/photon-imessage to add the channel. iMessage delivery runs through Photon, so the command sets up a Photon project, registers your phone number, and scaffolds the channel:

agent/channels/photon.ts
import { connectPhotonCredentials } from "@vercel/connect/eve";
import { photonIMessageChannel } from "eve/channels/photon";
export default photonIMessageChannel({
credentials: connectPhotonCredentials("photon/my-agent"),
});

Registers the Photon channel with Connect-backed credentials

eve uses Vercel Connect to create the connector and configure Photon's webhook. On hosts without Connect support, choose Use portable credentials during setup and the channel reads its credentials from environment variables instead.

Read the Photon channel docs to get started, or deploy an agent from a template.

Build a software factory with Vercel Connect

Ship a software factory with GitHub and Linear connectors provisioned for you from the first deployment.

Deploy now

Contributors