mcpbeat

Eve

vercel/eve

Build durable backend AI agents with the eve framework. Use when creating, editing, or debugging an eve project — agent instructions, skills, tools, connections, channels, sandboxes, subagents, schedules, or evals.

258 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
4337
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/vercel/vercel-plugin --skill eve

What it tells the agent to use

found in the instruction text
Task spawns other agents

The instruction itself

2 sections, as written by the author

eve

eve is a filesystem-first framework for durable backend AI agents. An agent is

a directory on disk — instructions, skills, tools, connections, channels,

subagents, and schedules are all files — and eve compiles and runs it.

Source of truth

The complete documentation ships inside the eve package. Do not rely on this

skill for guidance — always read the bundled docs, which match the installed

version exactly:

node_modules/eve/docs/

Start with node_modules/eve/docs/README.md. It contains the full

index and recommended reading order. Before writing any eve code, read the

relevant guide there first.

If eve is not installed yet, install it (npm install eve) or scaffold a new

agent with npx eve init <agent-name>, then read the bundled docs.

How to use it

Copy the folder

Take vercel/eve from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference npm, npx. Without those the skill loads but fails at the first command.