Files
magnus919_agent-skills/vercel-eve/README.md
Magnus HedemarkandGitHub d01b8b5d73 feat: add Vercel Eve skill
Adds the public Vercel Eve Agent Skill, validated through three autonomous greenfield SkillOpt epochs and exact-head CI.\n\nAI-assisted contribution; binding self-review recorded on PR #55.
2026-07-16 00:40:12 -04:00

44 lines
2.0 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Vercel Eve skill
Build and operate durable AI agents with Vercel Eve, including the parts that matter when you leave Vercels managed platform.
## Why Install This Skill
Eve makes an agent legible: instructions, tools, skills, subagents, integrations, schedules, and sandboxing live in predictable files. That gives an agent project the shape of an application rather than a pile of prompts and callbacks.
The hard part is deployment. This skill keeps the distinction clear between “the Node server started” and “durable agent work survives restart, resumes through the proxy, protects credentials, and produces usable traces.” It covers both Vercel and self-hosted Node deployments.
## What You Get
| Resource | Purpose |
|---|---|
| `SKILL.md` | Development, deployment, security, and verification workflow |
| `references/development-and-architecture.md` | Agent-directory model, tools, skills, subagents, connections, sandboxing, and observability |
| `references/deployment-and-self-hosting.md` | Vercel versus Node hosting, persistent workflow state, reverse proxy, model, auth, scheduling, and validation requirements |
| `references/source-index.md` | Official documentation and repository sources |
| `evals/evals.json` | Representative skill-quality scenarios |
## Quick Start
```sh
npx eve@latest init my-agent
cd my-agent
npm run dev
```
For a self-hosted service:
```sh
eve build
PORT=3000 eve start --host 0.0.0.0
```
Do not expose it until persistent workflow storage, authentication, proxy routes, and a real session have been verified.
## Triggers
Use this skill when building an Eve agent, adding tools or skills, configuring subagents, sandboxes, sessions, schedules, channels, connections, telemetry, Vercel deployment, or self-hosted Eve infrastructure.
## Requirements
Current Eve requires Node.js 24+. An agent needs an LLM provider credential or AI Gateway access. Production self-hosting also needs persistent storage for workflow state, an authentication policy, and an appropriate sandbox backend for any generated command or code execution.