> Arbiter / blog
· orchestration, supervision, security

What Is Remote Agent Supervision?

As developers hand more work to long-running AI agents, a new problem appears: supervising agents you cannot watch, from wherever you are, without shipping your keys or your code to someone else's cloud. Here is what good looks like.

Developers are handing more and more work to agents that run for hours instead of seconds. That shift creates a problem the tools were not built for. Once an agent runs long enough that you cannot sit and watch it, you need a way to supervise it from wherever you happen to be. Not to babysit it, but to see the truth of what it is doing, to approve the moments that matter, and to stop it if it goes wrong. That is a category, and it deserves a name. Call it remote agent supervision. This post lays out what the category is and what a good answer to it looks like.

The problem the long-running agent creates

A short agent task is self-supervising: you watch it finish. A long one is not. It keeps working while you are in a meeting, asleep, or on the far side of the city, and the honest question becomes how you stay in control of something you are not looking at. The naive fix is to hand the whole thing to a hosted service that watches it for you, but that fix quietly asks you to ship your keys and your code to someone else’s cloud to get supervision back. Remote agent supervision is the problem of keeping control at a distance without paying that price.

What good looks like

A real answer to this category has a few properties, and they are worth stating plainly.

  • Status you can trust. You need to see what is actually running, live, not a stale dashboard that lags behind reality. Supervision starts with an honest picture of the current state.
  • Plan approval. You should be able to read what an agent intends to do before it does it, cheaply and safely, and then decide. Seeing the plan is the difference between supervising and hoping.
  • A second factor on the acting. Reading is safe; acting is not. Configure sensitive work to stop and ask for a single-use code from your authenticator app. The gate belongs on the doing, not the looking.
  • Provider-agnostic reach. Your agents are not all the same tool. Good supervision reaches Claude Code and Codex through one path, so you are not learning a different control scheme for each.

Miss any of these and you have a piece of supervision, not the whole thing.

Where the keys and the code should live

The property that separates a real answer from a convenient one is where your secrets sit. If getting remote supervision means uploading your source and your credentials to a middleman, you have traded control for surveillance and called it a feature. The better shape keeps the reasoning on hardware you own and keeps you as the only party in the loop. Supervision should extend your reach, not widen the circle of who can see your work.

How Arbiter answers the category

Arbiter is built as an answer to exactly this question, and its design choices map to the properties above. The local brain can keep orchestration reasoning on hardware you control. With supported channel adapters and approval policy configured, it can provide session status, plans, and gated remote actions. It reaches Claude Code and Codex through the same path. These working-alpha capabilities show the category has a practical answer while public binary release preparation continues.

The short version

Remote agent supervision is the discipline of staying in control of long-running agents you cannot watch, from anywhere, without surrendering your keys or your code to get there. Good looks like trustworthy live status, plan approval, a second factor on anything that acts, and reach across the agents you actually use. The design that delivers it keeps the brain and the secrets on your side of the line. That is the bet Arbiter is built on.

Arbiter is a proprietary working alpha in public binary release preparation. Follow the public release channel or RSS feed for updates.