Vercel just open-sourced Eve — an agent framework where the filesystem IS the orchestration layer.
No registration code. No config maps. No boilerplate.
Your agent is a directory:
agent/
agent.ts ← the model it runs on
instructions.md ← who it is
tools/ ← what it can do
skills/ ← what it knows
subagents/ ← who it delegates to
channels/ ← where it lives
schedules/ ← when it acts on its own
The tree IS the agent. Drop a file in skills/ and it exists. Add a tool in tools/ and the model can call it.
This is the same instinct that made file-based routing stick in Next.js. The layout on disk is the source of truth.
Vercel runs 100+ agents internally on this right now.
A data analyst handling 30,000 Slack questions a month.
A support agent resolving 92% of tickets without human help.
An autonomous SDR with 32x ROI.
Every one of them had to hand-roll durability, credential brokering, approval gates, and observability before Eve existed.
Now those are primitives, not plumbing.
The architecture: planner decomposes goals into task graphs, tool registry connects to any API via typed schema, memory layer maintains context across multi-step tasks, streaming execution engine runs on Vercel's edge.
Model-agnostic. Swap OpenAI, Anthropic, Gemini, or a local model without rewriting orchestration logic.
This is the second major agent framework launch in June. Flue from the Astro team hit 1.0 beta on the same day — runtime-agnostic, deploys to Cloudflare Workers, GitHub Actions, or Render.
The pattern is clear: agents are becoming directories, not applications.
If you're building on Vercel, Eve is the shortest path to production. If avoiding lock-in is a first-order requirement, Flue is the safer bet.
Either way, the agent-as-a-directory shape is here to stay.
Audit your agent architecture today. The frameworks are converging on this pattern whether you adopt it or not.
SOURCE: https://vercel.com/blog/introducing-eve
VERIFIED: Vercel official blog, GitHub repo (1.3k stars), SiliconANGLE, The New Stack
SIGNAL: The "agent = directory" abstraction eliminates the boilerplate that has plagued every agent SDK. When a platform company ships infrastructure this opinionated, it reshapes what developers expect from agent tooling.
---
Agentic AI
Vercel just shipped Eve. Your agent is now a directory.
4 views
0 Comments