Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Draft blog posts, LinkedIn posts, release notes, and newsletters in your team's house voice without leaving Slack.
eve Content Agent Template is an AI agent starter kit from Vercel Labs that converts Slack into a content drafting workspace: writers @mention the bot and it produces blog posts, LinkedIn and X posts, release notes, and newsletters in the team's house voice, grounded in Notion and publishing approved drafts back to Notion as the signed-in writer. Built on the eve agent framework with strict TypeScript (ESM), the template runs entirely on Vercel — using Vercel Connect for Slack and Notion authentication, Vercel Blob for asset storage, Vercel AI Gateway for model access, and Vercel Sandbox for tool execution — with zero static API keys or client secrets in .env files.
The eve Content Agent Template is a Slack-based content assistant template built on the eve agent framework by Vercel Labs. It takes an @mention or DM in Slack as input and outputs drafts for blog posts, LinkedIn posts, X posts, release notes, and newsletters, pulling source material from Notion and publishing approved pieces back to Notion under the writer's own identity. The template is open source in the vercel-labs/eve-content-agent-template GitHub repository and is designed to be deployed via a one-click Vercel button.
blog-style, linkedin-style, x-style, release-notes-style, newsletter-style) each contain a SKILL.md, best-practices.md, and format/post specs; a deterministic lint_against_style.ts tool checks drafts against banned words.upload_asset, list_assets, get_asset_info, download_asset, delete_asset) store and retrieve text or binary content, authenticated by the project's OIDC token with no static keys.pnpm sync:shared copies shared house rules into every skill, regenerates the SURFACES enum and the reviewer rubric from the skill folders, and also runs automatically on pnpm dev and pnpm build..env files.Content marketers, developer advocates, and small content teams that already work in Slack and need drafts grounded in Notion without leaving chat. It's also for engineering teams that want an agent whose style rules are code-reviewed: the per-surface skills and shared writing rules live in markdown files and can be version-controlled. Each use case is supported by per-writer Notion OAuth, so individuals get their own permissions and preferences.
shared-references/ (the source of truth), then running pnpm sync:shared to propagate the rules into every skill and regenerate the reviewer rubric.The template is built on the eve agent framework and written in strict TypeScript with ESM. It runs on Vercel, using Vercel Connect for Slack and Notion credentials, Vercel Blob for asset storage, Vercel AI Gateway for model access, and Vercel Sandbox as the execution backend. The codebase is linted and formatted with Ultracite, a Biome preset, and the project includes a scripts/sync-shared.mjs generator for skill syncing.
Deploying to Vercel with the Deploy button provisions a Slack connector (with an event trigger at /eve/v1/slack), a Notion connector, and a Vercel Blob store, then wires their credentials into the project. Once deployed, writers @mention the bot in Slack; the agent gathers context from Notion, drafts content using the selected surface's style skill, runs the style-lint tool, and sends an approval button. For local development, run vercel link, vercel env pull, and pnpm dev to chat with the agent in the dev TUI (the Slack surface only runs against a deployment), then ship changes with eve deploy.
Use the Deploy with Vercel button on the template page. It clones the repository and provisions a Slack connector (with the event trigger pointed at /eve/v1/slack), a Notion connector, and a Vercel Blob store, then sets the environment variables automatically. After deployment, @mention the bot in your Slack workspace to start drafting.
No. Authentication runs entirely on Vercel Connect for Slack and Notion and Vercel OIDC for Vercel Blob and the AI Gateway. There are no API keys or client secrets to store in code or .env files, and Notion is authorized per writer in the browser.
Yes. Add a new <surface>-style skill folder under agent/skills/ and run pnpm sync:shared. The script regenerates the SURFACES enum, the reviewer rubric, and the shared-references sections in each SKILL.md, so there's no separate list to edit.
No. The template publishes approved drafts back to Notion as the signed-in writer. LinkedIn and X are output formats for the drafts; the agent itself does not post to social networks.
The template uses the eve agent framework, TypeScript in strict ESM mode, Vercel Connect for Slack and Notion, Vercel Blob for asset storage, Vercel AI Gateway for model access, and Vercel Sandbox for tool execution. Linting and formatting use Ultracite, a Biome preset.
