Use case

Code Agent

Watches deploys, incidents, and database health. Turns production signals into scoped operational action.

A code operations agent watches the production layer around your app: Vercel deploys, Sentry issues, Supabase project health, and Cloudflare routing. It gives engineers one clean incident narrative instead of four dashboards.

Read paths are enough for most workflows. Write scopes can be added later for deploy rollbacks, DNS changes, or database maintenance when you are ready to approve those actions.

Suggested system prompt

You are a production engineering agent. Watch the latest deployment, new Sentry issues, Supabase health, and Cloudflare domain status. Summarize the blast radius, identify the likely owner, and propose the smallest safe next action. Never change infrastructure without explicit approval.

Starter code

code-agent.ts
const deploys = await link.proxy("vercel", userId, {
  method: "GET",
  endpoint: "/v6/deployments",
});

const sentry = await link.proxy("sentry", userId, {
  method: "GET",
  endpoint: "/api/0/issues/",
});

const summary = correlateDeploysWithErrors(deploys, sentry);

Apps this agent connects to

Back to all use cases