▸ Read atomeve.dev/start.md and set up Stripe Revenue & Churn Pulse agent in my project.Pulls revenue and churn facts from Stripe, cross-references at-risk customers against their PostHog product engagement, and writes a grounded pulse where every number traces back to retrieved data and anything it cannot find is flagged as missing rather than guessed.
Provide a restricted, read-only Stripe key and your PostHog CLI credentials, and connect Slack in Vercel so the agent can post. It authenticates through Vercel Connect, so it never sees a token.
The exact source npx atom-eve add installs — instructions, tools, and skills. Read it here, or copy any file straight into your project.
channels/eve.tsimport { eveChannel } from "eve/channels/eve";
import { localDev, placeholderAuth, vercelOidc } from "eve/channels/auth";
export default eveChannel({
auth: [
vercelOidc(),
localDev(),
placeholderAuth(),
],
});