marketing-team-eve-template: Instructions file for Codex

AGENTS.md

marketing-team-eve-template AGENTS.md is an instructions file for Codex, OpenCode from vercel-labs/marketing-team-eve-template. It costs 5,431 tokens per session, scanned C, original, MIT.

Project instructions for coding agents working on a Vercel marketing-agent template.

In plain words
What is it for?
Use them when developing the marketing agents, their specialist workflows, setup commands, or shared project structure.
Why use it?
They explain how the project is organized and how its lead agent routes work to specialists, reducing guesswork when making changes.

Instructions file for CodexOpenCode ✓ vendor

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions subagents; mentions AGENTS.md.

This is vercel-labs/marketing-team-eve-template's own configuration. It tells Codex and OpenCode how to work on marketing-team-eve-template itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything marketing-team-eve-template configures →

About the project

vercel-labs/marketing-team-eve-template is a deployable team of AI marketing agents led by a coordinating agent that delegates launches, writing, and conversion work to specialists. Teams use it through Slack or a terminal to create blog drafts, social posts, and email campaigns in Notion, Typefully, and Resend, with approval required for irreversible actions. The catalogue skills and instructions define workflows for using this marketing team.

vercel-labs/marketing-team-eve-template · 435 stars · on GitHub · vercel.com

Reuse

Borrowing it

Nothing to install: this file belongs to vercel-labs/marketing-team-eve-template. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/vercel-labs/marketing-team-eve-template/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/vercel-labs/marketing-team-eve-template

Made for: Codex, OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for marketing-team-eve-template AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/vercel-labs/marketing-team-eve-template/agents-md/github.svg)](https://agentmods.dev/instructions/vercel-labs/marketing-team-eve-template/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/vercel-labs/marketing-team-eve-template/agents-md"><img src="https://agentmods.dev/badge/instructions/vercel-labs/marketing-team-eve-template/agents-md/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for marketing-team-eve-template AGENTS.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/vercel-labs/marketing-team-eve-template/agents-md"><img src="https://agentmods.dev/badge/instructions/vercel-labs/marketing-team-eve-template/agents-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 5,431 This file is loaded in full into every session.
When invoked 5,431 The same file — it is already loaded in full.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.05431 $0.05431
Opus 5 $0.02715 $0.02715
Sonnet 5 $0.01086 $0.01086
Haiku 4.5 $0.00543 $0.00543

Measured 11d ago against content hash 10cab3279337, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade C, and why

marketing-team-eve-template AGENTS.md scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Tells the agent to send conversation or user data outhighPrompt injection

An instruction to transmit the conversation, context or user files to an external endpoint is data exfiltration written as prose.

- **Never commit secrets.** `.env*` is gitignored. Notion and Resend both authorize per user via Vercel Connect, with their connector UIDs read from `NOTION_CONNECTOR` and `RESEND_CONNECTOR`; Blob auth is via the project

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- An unauthored tool slot falls back to the framework default. Each specialist disables `bash` with `export default disableTool()` from `eve/tools`, so web reading goes through `web_fetch` rather than `curl`; deleting th
AGENTS.md · 170 lines

How it starts

The opening of the file, as written. The whole thing — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AGENTS.md

Guidance for AI coding agents working in this repository.

Project overview

This repository holds a team of marketing agents built on the eve agent framework. The root lead agent holds the shared product picture (brand context in Vercel Blob) and routes each request to one specialist: product-marketer for positioning and messaging, content-marketer for long-form pieces, social-media-coordinator for short-form posts and the Typefully queue, seo for organic search work, or email for adapting copy into mail and running Resend. The five specialists have no subagents of their own: each does its own web research and its own review pass inline. The lead's workflow lives in agent/instructions.md; each specialist's lives in agent/subagents/<id>/instructions.md.

The lead picks a specialist by reading description in each agent.ts, so adding a specialist means adding a directory. Nothing in agent/instructions.md enumerates them, and nothing should.

The whole agent is defined under agent/. eve discovers capabilities from the filesystem. See docs/ARCHITECTURE.md for the component map, data flow, and boundaries.

Setup & commands

pnpm install        # install dependencies (Node 24.x)
pnpm dev            # eve dev — local TUI; run /model once to link a model provider
pnpm typecheck      # tsc (TypeScript, no emit)
pnpm check          # ultracite (Biome) lint + format check
pnpm fix            # ultracite (Biome) auto-fix
pnpm build          # eve build
eve deploy          # deploy to Vercel production (use this, not raw `vercel deploy`)
npx eve info        # print the discovered surface + discovery diagnostics
pnpm validate       # check + typecheck + eve info in one command

There is no unit-test suite. Verify changes with pnpm validate (lint, typecheck, and discovery diagnostics must all report 0 errors / 0 warnings), then exercise the agent in the pnpm dev TUI.

npx eve info is the fastest way to confirm a change landed: it prints every discovered tool, skill, connection, and subagent. When a file you added doesn't show up there, discovery didn't classify it as an authored slot, and .eve/discovery/diagnostics.json says why.

Read the full file on GitHub · 170 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 170 lines · 5,431 tokens per session scan C 10cab3279337

Subscribe to this mod's changes

marketing-team-eve-template AGENTS.md is an instructions file published in the GitHub repository vercel-labs/marketing-team-eve-template (435 stars, last pushed 21d ago), licensed MIT. It adds 5,431 tokens to every session, about $0.0272 per session on Opus 5. A static security scan graded it C with 2 findings (tells the agent to send conversation or user data out, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens