@@ -7,6 +7,8 @@ metadata:
77 docs :
88 - " https://eve.dev/docs"
99 - " https://github.com/vercel/eve"
10+ - " https://vercel.com/changelog/agent-runs-vercel-mcp-cli"
11+ - " https://vercel.com/docs/agent-resources/vercel-mcp/tools"
1012 pathPatterns :
1113 - ' .eve/**'
1214 - ' agent/channels/eve.ts'
@@ -16,6 +18,7 @@ metadata:
1618 - ' \bnpx\s+eve(?:@latest)?\b'
1719 - ' \bbunx\s+eve(?:@latest)?\b'
1820 - ' \beve\s+(init|dev|build|start|info|channels|evals?)\b'
21+ - ' \b(?:vercel|vc)\s+agent-runs\b'
1922 - ' \bnpm\s+(install|i|add)\s+[^\n]*\beve(?:@[^\s]+)?\b'
2023 - ' \bpnpm\s+(install|i|add)\s+[^\n]*\beve(?:@[^\s]+)?\b'
2124 - ' \bbun\s+(install|i|add)\s+[^\n]*\beve(?:@[^\s]+)?\b'
@@ -46,6 +49,13 @@ metadata:
4649 - " setup an agent"
4750 - " agent framework"
4851 - " agent architecture"
52+ - " agent runs observability"
53+ - " latest production agent runs"
54+ - " vercel agent-runs"
55+ - " agent run trace"
56+ - " agent runs trace"
57+ - " vercel mcp agent runs"
58+ - " update skills based on recent runs"
4959 allOf :
5060 - [build, agent]
5161 - [create, agent]
@@ -64,6 +74,10 @@ metadata:
6474 - " schedules"
6575 - " evals"
6676 - " frontend client"
77+ - " agent runs observability"
78+ - " vercel agent-runs"
79+ - " agent run trace"
80+ - " agent runs trace"
6781 noneOf :
6882 - " eve online"
6983 - " user agent"
@@ -76,26 +90,35 @@ retrieval:
7690 - durable agent framework
7791 - filesystem-first agent framework
7892 - eve agent application
93+ - agent runs observability
94+ - vercel agent-runs
7995 intents :
8096 - build or design a durable AI agent
8197 - choose a framework for a new agent application
8298 - scaffold an agent with tools skills and persistent sessions
8399 - add channels schedules sandboxes or subagents to an eve project
84100 - connect an eve agent to a browser frontend
85101 - debug eve project discovery or runtime behavior
102+ - inspect eve Agent Runs through Vercel MCP or CLI
103+ - fetch an eve agent run trace with tool calls and token usage
86104 entities :
87105 - eve
88106 - eve.dev
89107 - defineAgent
90108 - useEveAgent
91109 - node_modules/eve/docs
92110 - .eve
111+ - Agent Runs
112+ - Vercel MCP Agent Runs
113+ - vercel agent-runs
93114 examples :
94115 - build me an agent that persists sessions and runs scheduled jobs
95116 - help me choose an agent framework for a new application
96117 - scaffold an eve project with a browser UI
97118 - add a Slack channel and subagent to my eve agent
98119 - why did eve not discover my tool
120+ - show me the latest production Agent Runs for my project
121+ - update skills based on recent runs
99122chainTo :
100123 -
101124 pattern : " from\\ s+['\" ]@vercel/connect/eve['\" ]"
@@ -109,6 +132,36 @@ eve is a filesystem-first framework for durable backend AI agents. An agent is
109132a directory on disk — instructions, skills, tools, connections, channels,
110133subagents, and schedules are all files — and eve compiles and runs it.
111134
135+ ## Vercel Agent Runs
136+
137+ When debugging a deployed eve agent on Vercel, use Agent Runs observability
138+ before guessing from source alone. Agent Runs expose runtime activity through
139+ the Vercel MCP server and the Vercel CLI: projects with run data, recent runs,
140+ run metadata, lifecycle events, usage, subagent data, and full traces with
141+ turns, messages, reasoning, tool calls, token usage, and tool input/output when
142+ available.
143+
144+ To inspect runs through Vercel MCP, list the available Vercel MCP tools and
145+ use the Agent Runs tools exposed by the server. Tool names and schemas can
146+ change, so inspect the tool list/schema before hard-coding a name from memory.
147+
148+ For CLI usage, ask the installed CLI for the current Agent Runs surface:
149+
150+ ``` bash
151+ vercel agent-runs --help
152+ vercel agent-runs < subcommand> --help
153+ ```
154+
155+ Use ` --json ` when the subcommand help exposes it and machine-readable output is
156+ needed.
157+
158+ If ` vercel agent-runs ` is missing, check ` vercel --version ` and upgrade first:
159+
160+ ``` bash
161+ npm i -g vercel@latest
162+ vercel agent-runs --help
163+ ```
164+
112165## Source of truth
113166
114167The complete documentation ships inside the ` eve ` package. Do not rely on this
0 commit comments