AI-generated content. This article was researched and written by an automated AI editorial system and published without prior human review. Every factual claim is checked against cited primary sources before publication, but no journalist read this page before you did — treat it accordingly, and report anything that looks wrong. How this works ›

Some links on this page are affiliate links. We may earn a commission at no extra cost to you.
Updated: Sep 5, 2026
·
codercursorspacexaiself-hosteddata-residencyregulated-industriescoding-agentsprocurementsecurity

Coder's Agent Relay runs Cursor on your own infrastructure — but the reasoning loop still leaves the building

TL;DR: Coder announced Agent Relay on 2 September 2026 with SpaceXAI — Cursor’s owner — as launch partner. Cursor Cloud Agents now execute inside Coder workspaces on customer infrastructure: source code, secrets, internal services, tool-call execution and complete audit logs stay on machines the customer controls. The boundary: Coder’s own docs state that “the agent provider still runs the reasoning loop, and LLM inference calls still route through the provider’s infrastructure.” Execution came home; context did not. Status: private preview with design partners — no GA date, no pricing. For buyers: this retires blast-radius risk (what the agent can reach, and proving what it did) and leaves confidentiality-in-transit risk exactly where it was. Decide which one your controls are actually about before the security review, because the press quotes and the engineering docs answer different questions.

What was announced

Coder — the self-hosted development-environment company — put out Agent Relay via newswire on 2 September 2026, with SD Times picking it up on the 3rd and Coder’s own detailed engineering post landing on the 4th. The launch partner is SpaceXAI, which has owned Cursor since the $60 billion Anysphere acquisition in June.

The product does one specific thing: it lets Cursor Cloud Agents run inside Coder workspaces on infrastructure the customer already operates. Developers keep the Cursor experience across app, web and mobile. The agent’s actions happen on the customer’s network.

Coder CEO Rob Whiteley framed the thesis crisply: “Enterprises never rejected AI agents. They rejected the deployment model… Those are infrastructure questions, and Coder was built to answer them.”

That diagnosis is correct, and it is why this is worth a buyer’s attention rather than a shrug. The target list — banks, defence agencies, government institutions — has not been holding out because agentic coding looked useless. It has been holding out because a vendor-hosted process with repository access, live credentials and a shell is not a shape their controls can accept, regardless of how good the model is.

The split, precisely

Coder’s engineering documentation is unusually straightforward about the architecture, which makes the boundary easy to state accurately.

Runs on your infrastructureRuns in the vendor’s cloud
Code execution and file modificationsThe agent reasoning loop
Credential storageLLM inference calls
The workspace environmentPlanning and next-step selection
Firewall, RBAC, egress controlsThe agent’s external service components
Audit logging and identity attribution

And the sentence that decides how a security review should read all of it, from Coder’s own docs: “The agent provider still runs the reasoning loop, and LLM inference calls still route through the provider’s infrastructure.”

Credit where it is due — a vendor that writes that down in its documentation, on the same week it markets the product to defence agencies, is being more candid than the category norm. But it does mean the word “self-hosted” in the product framing is carrying more weight than the architecture supports, and it is worth being precise about which half is which.

Execution came home. Context did not.

Two code paths are easy to conflate, and conflating them is how a control objective gets signed off against an architecture that does not meet it.

What stops leaving: the repository at rest, secrets, internal service reachability, the shell the agent runs commands in, and the record of what it did. None of that transits to a vendor. The agent daemon connects outward from your network; you never open an inbound path, never mint vendor-accessible credentials, and never expose an internal endpoint. If an agent goes wrong, the blast radius is bounded by a workspace whose firewall rules you wrote.

What still leaves: the context the model needs in order to reason. File contents, diffs, error output, whatever the agent pulls in to decide its next move — that goes to the vendor’s cloud, because that is where the reasoning loop lives. There is no version of this architecture where it does not, short of running the model itself locally, which is a different product with different tradeoffs entirely.

So SpaceXAI’s Toni Adams is describing a real customer requirement — “Enterprise security policies require that sensitive information not leave its own infrastructure” — against an architecture that satisfies part of it. Whether that part is the part you needed is a question only your own data classification can answer, and it should be answered in writing before evaluation rather than inferred from a press release afterwards.

Which risk this actually retires

The useful way to read Agent Relay is not “is it really self-hosted” but “which of my two coding-agent risks does it address.”

Blast radius — addressed, substantially. This is the risk that an agent with repository access and a shell does something reachable and irreversible: touches production, exfiltrates a credential, follows an instruction it should not have. It is the failure mode behind the memory-poisoning connector research on Copilot and the practical lesson of the Langflow CVE that burned self-hosted OpenAI and AWS keys. Moving execution onto infrastructure you control, with your firewall, your RBAC and your audit trail, is a genuine and large mitigation. It also gives you something vendor-hosted agents structurally cannot: a local, complete, SIEM-ingestible record of what the agent did, attributed to the human who asked for it.

Confidentiality in transit — unchanged. Your code still goes to a third party to be reasoned about. If that was already acceptable under an existing Cursor agreement, nothing here degrades it. If it was the blocker, this does not remove it.

There is also a third thing worth noticing, which is availability. Running execution on your own infrastructure decouples you from part of the vendor’s uptime — though only part, since the reasoning loop remains a hard dependency. Anyone who lived through the Git-forge outage that stranded agentic workflows in August will recognise that this narrows the failure surface without closing it.

The cost angle nobody asked for but everyone needs

The New Stack’s coverage of the launch led with a line about the concentration of token spend — that a very small fraction of engineers account for a disproportionate share of it. Whoever said it, the phenomenon is real and under-instrumented across every team running coding agents at scale, and it is the quiet reason finance teams get surprised by agentic tooling bills two quarters in.

A self-hosted execution layer is the natural place to fix that, because it is the one component that sees every agent action and belongs to you. Per-user and per-repository spend visibility should be an explicit pilot requirement rather than a feature you hope ships later.

What to do about it

  1. Write your data classification down first. Decide, in advance and on paper, whether your control objective is “no third party processes our source” or “our credentials, internal systems and build environment are unreachable from a vendor cloud.” Agent Relay fails the first and passes the second. Most reviews go wrong by never making the distinction explicit.
  2. Ask for the data-flow diagram, not the summary. The summary is where the ambiguity lives. The diagram will show the inference path immediately.
  3. Negotiate the inference-path terms now. Retention and training commitments for prompt content, regional routing, and audit rights are the terms that matter most and the ones not yet published. Private preview is when they are negotiable.
  4. Set the workspace egress policy deliberately. The execution environment is on your network, which means its outbound rules are yours to define — and a default-open workspace gives back much of what the architecture just bought you.
  5. Do not wait on it for a decision you need this quarter. Private preview, no GA date, no pricing. If a regulated team needs an answer now, the comparison set still includes running a different agent entirely rather than a different deployment model for Cursor.

The bottom line

Agent Relay is a real answer to a real objection, and Whiteley’s framing — that the deployment model was the blocker, not the technology — is the most accurate sentence any vendor has said about why agentic coding stalled in regulated industries.

It is also a partial answer, and Coder’s documentation says so more plainly than its press release does. Execution moved onto customer infrastructure. Reasoning did not. That buys a large reduction in blast radius and a complete local audit trail, and it buys nothing at all on whether your source code is processed by a third party.

Both of those are worth having. Only one of them is what “self-hosted” usually means, and the gap between the two is where a compliance sign-off goes wrong.

Frequently asked questions

Does our source code stop leaving the network with Agent Relay?

No, and this is the single most important thing to get straight before an internal security review. Two different code paths are easy to conflate. The code at rest — your repository, your secrets, your internal services, the files the agent reads and writes, the shell commands it runs — stays inside your infrastructure, because tool calls execute in Coder workspaces on your network. That is real and it is the substance of the announcement. But the reasoning loop runs in the agent vendor's cloud, which means the context the model needs in order to reason is transmitted there: file contents, diffs, error output, whatever the agent pulls in to decide its next step. Coder's documentation states it plainly, that the agent provider still runs the reasoning loop and LLM inference calls still route through the provider's infrastructure. So the accurate summary is that code stops being executed off-premises and does not stop being transmitted off-premises. If your control objective is 'no third party processes our source', this does not meet it. If your control objective is 'our credentials, internal systems and build environment are never reachable from a vendor cloud', it meets that squarely.

SpaceXAI's own quote says sensitive information should not leave the customer's infrastructure. Is that inconsistent?

It is in tension with the architecture, and the tension is worth naming rather than smoothing over. Toni Adams, senior director of partnerships at SpaceXAI, framed the collaboration around enterprise security policies requiring that sensitive information not leave an organisation's own infrastructure. Coder's engineering documentation says LLM inference calls still route through the provider. Both statements can be defended — a security team may classify credentials, production access and internal service reachability as the sensitive assets while treating source code in transit to an existing approved vendor as already-accepted risk, which is a coherent position many organisations genuinely hold. But 'sensitive information does not leave' is not what the architecture does, and a compliance reviewer reading the press quote rather than the docs will form the wrong model of it. The practical move is to make your own classification explicit in writing before evaluation, then check the architecture against your list rather than against the marketing sentence.

Is this available now?

Not generally. Agent Relay is in private preview with design partners, and neither Coder nor SpaceXAI has published a general-availability date or pricing. That has a specific consequence for planning: this is a thing to scope and pilot against, not a thing to put in a Q4 rollout plan. It also means the terms that matter most for a regulated buyer — data processing agreements covering the inference path, retention commitments for prompt content, regional routing of inference, and audit rights — are exactly the terms not yet published. Those are the questions to put to both vendors during a design-partner conversation, because they are far easier to negotiate before general availability than after. Treat the private preview as leverage rather than as a limitation.

Cursor already has enterprise privacy modes. What does this add?

It addresses a different layer, which is why it opens accounts that privacy modes alone could not. Vendor privacy settings are commitments about what the vendor does with data it has received — no training on your code, limited retention, and so on. They are contractual assurances, and for many buyers they are sufficient. Agent Relay is an architectural change to where the agent's actions physically occur: the tool calls, file writes and shell commands run inside a workspace on your infrastructure, using credentials that never transit to the vendor, against internal services you never had to expose. The distinction matters most for organisations whose controls are about blast radius rather than confidentiality — where the governing question is not 'will the vendor misuse this' but 'what can this process reach, and can we prove what it did.' Because execution and audit logging are local, you get an answer to the second question that a vendor-hosted agent structurally cannot give you.

What should we actually ask for in a pilot?

Five things, in roughly this order. First, a written data-flow diagram distinguishing what is transmitted for inference from what executes locally — insist on the diagram rather than the summary, because the summary is where the ambiguity lives. Second, retention and training terms specifically for prompt and context content on the inference path, since that is the part Agent Relay does not change. Third, egress controls in the Coder workspace: the execution environment sits on your network, so the firewall and RBAC posture around it is yours to set, and it should be set deliberately rather than defaulted. Fourth, identity attribution and audit log format, verifying that agent actions map to the human who requested them in a form your SIEM can actually ingest. Fifth, token spend visibility per user and per repository — The New Stack's coverage of the launch led on the concentration of token spend among a small fraction of engineers, and a self-hosted execution layer is the natural place to instrument that. Get all five in the pilot, because all five get harder to obtain once the contract is signed.

Sources

Related tool reviews

Questions or corrections? Email Pick Right. Want the full list? See all news.