Self-hosted environments are in public beta on Team and Enterprise plans; Availability and limitations covers the enablement path. This page gets your first session running; see Self-hosted environments for what they are and Deploy to production for hardening and fleet recipes.
Prerequisites
Organization and roles
The claude.ai side needs:- Allow self-hosted environments turned on by an Owner or admin on the Cloud environments admin page; the New button doesn’t appear until it is. If you don’t hold the role, someone who does can create the environment and hand you its secret; the runner and terminal steps on this page need no claude.ai role, and where a step checks status in the admin UI, the runner’s own log lines give you the same signal.
- A GitHub connection for your organization, so developers can pick repositories when they start sessions.
Host and network
The runner host needs:- A Linux or macOS host or container with outbound HTTPS to
api.anthropic.com, toclaude.aiand the download hosts it redirects to for the install step below, and to your git host for the clone; the network requirements table has the full list. Windows isn’t supported as a runner host; run the runner in a Linux container instead. Developer workstations aren’t affected, since sessions start from claude.ai in a browser. - A clock synchronized to real time, for example with NTP. Authentication fails when the clock is more than five minutes off; see Troubleshooting.
Software on the runner host
Install on the host before you start:- Claude Code v2.1.224 or later, with any of the standard install methods. The runner is part of the standard
claudebinary, and earlier versions don’t recognize theself-hosted-runnersubcommand. The native installer’s defaultlatestchannel carries each release as soon as it’s published; thestablechannel, the Homebrewclaude-codecask, and the stable apt, dnf, and apk repositories trail by about a week. To pin the exact version your fleet runs, see Install a specific version. For container images, see the Dockerfile in Deploy to production. - Git 2.24 or newer. Some git options on the deploy page need newer versions; Configure git states each floor.
--environment-secret-file. On versions older than 2.1.224, the command prints the general claude --help output instead; upgrade with claude update or reinstall from the latest channel.
Set up an environment and runner
Claude Code includes a guided setup: an interactive Claude Code session that walks you through creating the environment in the admin UI, starts a local runner with the secret file you save, confirms that the runner registers, and writes a cheat sheet to./runner-setup/CHEAT-SHEET.md. Run it on a machine where you’ve signed in with claude auth login using an account that holds an Owner or admin role; it isn’t available with API keys or third-party model providers. On hosts where an interactive session isn’t possible, use the manual steps below instead. Confirm the version check passed first: on versions older than 2.1.224, this command starts an ordinary Claude session with the words as the prompt instead of the guided setup. To start the guided setup, run the setup subcommand and follow the prompts:
1
Create an environment
Go to the Cloud environments page in admin settings. Under Self-hosted environments, select New, name the environment, and select Create. On the wizard’s second step, select Copy environment key to copy the environment secret, which the admin UI labels an environment key. claude.ai shows the secret once, and you can’t retrieve it later; it expires 365 days after creation. The environment’s
ccpool_... ID stays visible in its detail dialog; you’ll need it for the aud check in token verification and for dispatching test sessions from CI.If you lose the secret or need to rotate it, create a new secret from the environment’s Configuration tab, roll the new secret out to your runners, then revoke the old one. Runners holding a revoked secret fail their next authenticated poll and exit, logging poll auth failed, and your orchestrator restarts them with the new secret.2
Start a runner
Create the secret directory. This step and the next need root for the Write the environment secret to a file. The command below reads from your terminal so the secret stays out of shell history: paste the value you copied, press Enter, then Ctrl-D, and the subshell’s Create the base directory, replacing Then start the runner with
/etc/claude path; any path the runner process can read works, so adjust both commands and the --environment-secret-file value together if you use a different one.umask makes the file readable only by its owner.<writable-dir> here and in the next command with an absolute path that the user running the runner can write to. The runner checks repositories out and creates per-session directories under this path. Without --base-dir it uses /workspace, which only works if that directory already exists and is writable or the runner runs as root.--environment-secret-file and --base-dir. The runner registers with your environment and begins polling for work. If the runner exits, restart it by hand. Production deployments run the runner under an orchestrator that restarts exited runners, normally with a fresh filesystem per restart; Reuse a pre-warmed checkout covers the supported persistent-disk setup.3
Verify the runner appears
Return to the Cloud environments page. Your environment’s status changes from No runners deployed to Healthy within a few seconds of the runner starting; open the environment and select Activity to see the runner itself.
4
Route a session to the environment
Start a session at claude.ai/code and select your environment from the environment picker, where self-hosted environments appear alongside Anthropic-hosted ones. The runner clones with whatever git credentials the host already has, so pick a repository this host can already clone, or a public one; credential options for private repositories in production are on Configure git. The next available runner picks up the queued session and logs
Picked up session <session-id> along with its active count and capacity, so you can confirm from the runner’s own output which host took the session. Watch the session work and read Claude’s replies at claude.ai/code. If the session sits queued instead, see Troubleshooting.Send a follow-up message to a running session
Once a session is running on your environment, send it a follow-up from theclaude CLI on any machine where you’re logged in with claude auth login; the command doesn’t need to run from the machine that started the session. The queue-and-exit form posts one message:
<session-id>, pass the bare session_... or cse_... ID or the session’s claude.ai/code URL. A successful send prints Sent to cloud session. with the session ID and a view link. Accepted ID forms, JSON output, the interactive attach form, the account and policy requirements, and the error reference are on Send follow-ups from the CLI, since the command works the same against Anthropic-hosted sessions.
What’s next
- Deploy to production: harden the deployment, control egress, configure git credentials, and run the fleet under Kubernetes or Compose
- Customize sessions: wrapper scripts, lifecycle hooks, on-demand runners, MCP servers, and permissions
- Test end to end: a CI smoke test that dispatches a session and reads Claude’s replies