Deploy to Vercel
The agent runs the same way locally and on Vercel. Build it, deploy it, and test the live URL to confirm the dispatcher answers from the hosted environment.
The one production-specific choice is where the sandbox runs, and even that's mostly handled for you. Let's ship it.
Outcome
The Spoke & Mirror dispatcher runs on Vercel, and you've confirmed it live by hitting its deployed routes.
Hands-on exercise
Pick the sandbox backend. Your agent has a sandbox (it seeds torque-specs.md into /workspace). Locally that runs on your machine; on Vercel it runs on hosted Vercel Sandbox. One definition covers both, defaultBackend() resolves to the right one per environment:
import { defineSandbox, defaultBackend } from "eve/sandbox";
export default defineSandbox({
backend: defaultBackend(),
});Build and deploy. eve deploy runs the supported production workflow: it links the project when needed, installs dependencies, builds the app, and deploys it to Vercel. From the project root:
npx eve deployThe deployed app serves the exact same health, session, and stream routes you've been hitting since 1.3, plus the web dashboard from 4.1. If you wired up Slack in 4.2, this is the deploy that gives its webhook a real home.
Try It
Smoke-test the live agent. Health first, it's public, no auth:
curl https://<your-app>/eve/v1/health{ "ok": true }Now prove the fail-closed behavior from 5.1. With no customer cookie or Vercel OIDC token, the deployed production process rejects the request:
curl -i -X POST https://<your-app>/eve/v1/session \
-H 'content-type: application/json' \
-d '{"message":"hello"}'HTTP/2 401
{ "ok": false, "code": "unauthorized" }Then drive a real turn as a customer. The same route accepts the server-recognized demo session, returns 202, and gives you a sessionId to stream:
sid=$(curl -s -X POST https://<your-app>/eve/v1/session \
-H 'content-type: application/json' -H 'cookie: shop_session=demo-pro' \
-d '{"message":"what does a full overhaul cost?"}' \
| sed -E 's/.*"sessionId":"([^"]+)".*/\1/')
curl -sN -H 'cookie: shop_session=demo-pro' \
"https://<your-app>/eve/v1/session/$sid/stream"Or point the dev TUI at the deployment and talk to it interactively:
npx eve dev https://<your-app>The production dispatcher keeps its tools and approval gate. Ask it to book the overhaul and the turn still pauses for approval.
A 401 on every live request means the fail-closed lock rejected the caller. Send a valid shop_session cookie, or use the public /eve/v1/health route for a quick check. If eve build fails on discovery, read the printed diagnostics and .eve/diagnostics.json. A common cause is a tool file that doesn't export default its defineTool.
Done-When
agent/sandbox/sandbox.tssets a backend (defaultBackend()is fine).eve deploybuilds successfully and ships the app.curl https://<your-app>/eve/v1/healthreturnsok.- An unauthenticated session request returns
401, whileshop_session=demo-proreturns an accepted session ID. - A real turn against the deployed URL works (TUI via
eve dev <url>orcurlwith a session).
Solution
The only code is the sandbox backend; the rest is one command:
import { defineSandbox, defaultBackend } from "eve/sandbox";
export default defineSandbox({
backend: defaultBackend(),
});npx eve deployThe dispatcher now runs in production with the persona and capabilities you built throughout the course. The final lesson covers the eve directories this shop did not need and when you might use them.
Was this helpful?