Threads (@yrzheee), GitHub (vercel/eve)
ai-engineeringdev-tools
Original source

Vercel 開源 Agent 框架 eve

Summary

Vercel 於 2026-06-16 開源 agent 框架 eve(public preview),TypeScript,Apache 2.0。

GitHub: https://github.com/vercel/eve Docs: https://beta.eve.dev/docs

核心設計

Filesystem-first — 用檔案結構定義 agent:

  • agent.ts: model 與 runtime config
  • instructions.md: system prompt
  • tools/: typed functions (Zod schema + defineTool())
  • skills/: 按需載入的程序(markdown)
  • channels/: 訊息通道(HTTP, Slack, Discord)
  • schedules/: recurring cron jobs

特點

  • 853 stars(建立兩天)
  • 支援 subagents、human-in-the-loop
  • Terminal UI 互動開發
  • npm package 內建完整文件供 coding agent 讀取
  • Quick start: npx eve@latest init my-agent

觀察

與 Hermes 設計有高度相似:skills、channels、schedules 概念幾乎一致。差異在於 eve 用 TypeScript 檔案結構,Hermes 用 YAML config + markdown skills。是 Vercel AI SDK 的下一步:從「呼叫模型的 library」升級到「完整 agent runtime」。