agentsclimarketplace

Vercel eve

Skill magnus919/agent-skills/vercel-eve

Curated collection of AI agent skills for Hermes and other agent frameworks

Install
npx -y skills add magnus919/agent-skills --skill vercel-eve

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 27 days oldThe repository was created 27 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 21 stars21 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Build, develop, deploy, self-host, secure, and troubleshoot durable backend AI agents with Vercel Eve. Use when creating an Eve agent, adding tools, skills, subagents, channels, schedules, sandboxing, durable sessions, observability, or deploying Eve on Vercel or a Node host. Do not use for the separate Vercel AI SDK Agent APIs such as ToolLoopAgent or WorkflowAgent; use an AI SDK-specific skill for those.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

7.4 KB, ~1.5k tokens by cl100k_base, as published. Nobody here has run it

Vercel Eve

Eve is a filesystem-first framework for durable backend agents. Treat the agent/ directory as the application boundary and the deployment as a composition of independently replaceable HTTP, workflow, sandbox, model, credential, and observability layers.

Operating contract

  1. Start with the generated project structure. Put agent behavior in agent/instructions.md, runtime choices in agent/agent.ts, and one typed capability per file under its relevant directory.
  2. Keep authority outside the model prompt. Use typed tools, connections, sandbox boundaries, and route authentication instead of placing credentials or policy in instructions.
  3. Treat a durable session as a workflow, not an in-memory chat. Define persistence, idempotency, callback reachability, and recovery before relying on long-running or side-effecting work.
  4. On self-hosted deployments, replace every Vercel service deliberately. A Node process that starts is not evidence that workflow callbacks, persisted state, schedules, sandbox isolation, authentication, and telemetry work.
  5. Verify with a health request and a real authenticated session that exercises the workflow path. Never treat an HTTP 200 alone as a production readiness signal.

When not to use

Do not load this for the separate ai package’s ToolLoopAgent, WorkflowAgent, or HarnessAgent APIs. Do not use it for generic Next.js deployment without an Eve agent. For vendor-neutral workflow orchestration, use the relevant workflow or agent-framework skill instead.

When such a request appears, say that Eve does not apply and route to current AI SDK documentation or an AI SDK-specific skill. Do not write AI SDK API code, model configuration, or deployment guidance from this skill.

Project model

NeedDefault location
Always-on behavioragent/instructions.md
Model and runtime optionsagent/agent.ts
Typed actionsagent/tools/*.ts
On-demand proceduresagent/skills/
Narrower child agentsagent/subagents/
HTTP, Slack, or other entry pointsagent/channels/
Typed external integrationsagent/connections/
Isolated computeagent/sandbox/
OpenTelemetry setupagent/instrumentation.ts
Recurring workagent/schedules/

Read development and architecture before creating or restructuring an agent.

Quick start

npx eve@latest init my-agent
cd my-agent
npm run dev

Use the generated README and package scripts as the local source of truth. A minimal runtime configuration selects a model:

import { defineAgent } from "eve";

export default defineAgent({
  model: "anthropic/claude-opus-4.8",
});

On Vercel, a string model ID routes through AI Gateway and can use project OIDC. Outside Vercel, either configure AI_GATEWAY_API_KEY or use an AI SDK provider object with the provider’s normal credential. Do not assume that BYOK means the Gateway is bypassed.

Build capabilities deliberately

Tools

A tool is a typed boundary between model reasoning and an external action. Give it a narrow schema and a description that makes the authorization and side-effect boundary clear. A tool declares typed inputs, outputs, and side effects. It does not hold credentials or grant authority: keep integration credentials in connections and enforce authorization server-side before the effect occurs.

import { defineTool } from "eve/tools";
import { z } from "zod";

export default defineTool({
  description: "Look up a city’s current weather.",
  inputSchema: z.object({ city: z.string().min(1) }),
  async execute({ city }) {
    return { city, condition: "Sunny" };
  },
});

Use a skill for larger procedures that should load only when relevant. Use a subagent when the work needs a fresh history, narrower toolset, or isolated intermediate state.

Credentials and execution

Use agent/connections/ for typed service integrations. Use agent/sandbox/ for generated code or shell work. Never place provider keys, OAuth tokens, or route-auth secrets in instructions, tool source, generated artifacts, or logs.

For sandbox design and lifecycle choices, read development and architecture. For self-hosting backends and routing, read deployment and self-hosting.

Deploy

Vercel

Use a Git-connected project or vercel deploy. Eve emits Vercel Build Output, uses Vercel Workflows for durable sessions, and normally selects Vercel Sandbox. Replace scaffolded placeholder authentication before exposing a browser-facing route.

Self-hosted Node service

eve build
PORT=3000 eve start --host 0.0.0.0

This uses the normal Nitro Node output under .output/. Before production traffic, read deployment and self-hosting and explicitly verify persistent workflow storage, sandbox backend, model credential path, authentication, the /eve/ and /.well-known/workflow/ proxy prefixes, schedule execution, and telemetry.

Treat host paths, reverse-proxy product configuration, storage product, and scheduler implementation as target-specific evidence. If the target topology is not supplied or inspected, name the required contract and the missing evidence rather than inventing a configuration.

Security and observability

  • Replace placeholder authentication with a real policy before any production browser request. Outside Vercel, do not rely on vercelOidc() as the sole authenticator.
  • Give sandboxes the minimum network and credential access required. A sandbox does not protect secrets that are deliberately injected into it.
  • Vercel Agent Runs is convenient, but treat OpenTelemetry as the portable operational evidence path. Set recordInputs or recordOutputs to false when traces would contain sensitive data.
  • For personal, sensitive, or regulated data, assess what model inputs, tool arguments, outputs, and traces are retained and disclose collection where required.

Verification gate

  1. Build the deployed artifact.
  2. Confirm the health endpoint: GET /eve/v1/health.
  3. Start one authenticated session: POST /eve/v1/session.
  4. Attach to its stream and verify a real turn completes.
  5. For self-hosting, exercise a durable workflow callback or resume path, not only a stateless reply.
  6. Inspect the trace and ensure secrets and sensitive payloads are absent or intentionally redacted.

Exit criteria

The task is complete only when the requested agent capability is implemented, its route and authorization boundary are explicit, and the relevant local or deployed session path has been exercised with evidence. See source index when validating version-sensitive behavior.

What ships with it: 5 files

11.5 KB alongside SKILL.md

evals/

Keep looking

Skills are one crate of 327,132. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.