Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
Cloud agent sessions (Codespaces)
Run long-lived, human-steered agent sessions (Claude Code / OpenCode) on a GitHub Codespace instead of your laptop: start a task, close the lid, steer it from anywhere with a terminal, resume tomorrow.
This is a separate devcontainer config from the laptop one in
.devcontainer/ — it ships both agent CLIs, tmux for session persistence,
Playwright system deps, and Docker-in-Docker (for testcontainers and
pnpm --filter n8n-containers services), on the same Postgres sidecar setup.
One-time setup (~5 min)
-
Add your key at github.com/settings/codespaces → New secret → name
ANTHROPIC_API_KEY, repository accessn8n-io/n8n. (Alternative for Max subscriptions:CLAUDE_CODE_OAUTH_TOKENfromclaude setup-token.) -
Give the GitHub CLI the codespace scope:
gh auth refresh -h github.com -s codespace
Daily flow
pnpm session # attach the default agent session (creates everything on first run)
pnpm session fix-flaky # a second, parallel agent in its own git worktree
pnpm session ls # what's running
pnpm session tunnel # forward n8n ports (default 5678, 8080) to localhost; Ctrl-C to stop
pnpm session stop # end of day: billing stops, disk survives
pnpm session rm # delete the codespace
- Detach with
Ctrl-b d— the agent keeps working without you. - Scroll with the mouse wheel (tmux mouse mode is on). To use the terminal's own text selection, hold Shift and drag.
- Reattach by running the same
pnpm session <name>from any machine. - Each named session gets its own worktree (
/workspaces/wt-<name>, branchsession/<name>), so parallel agents never touch each other's tree. Builds in fresh worktrees are cache-hits via a shared turbo cache. - First codespace creation takes ~20 min uncached (image + full build). After
that, sessions attach instantly; new worktrees cost a
pnpm install(~1–2 min).
Agent worker (drive a session from n8n)
agent-worker.mjs lets an n8n workflow drive a Claude Code session on the
codespace. This is how Slack (the Flaky bot) steers a session that runs here.
Each turn is one headless claude -p. The session state is on disk. So
--resume continues a conversation across turns, and across a stop/start.
The worker polls outward. Nothing inbound is exposed. GitHub sets every
forwarded port to private on start. It gives no API to make a port public. So
you cannot reach a codespace from outside reliably. The worker calls out
instead. It asks n8n for a turn addressed to this box's owner ($GITHUB_USER).
It runs the turn. It sends the result to the turn's resume URL. It uses no
tunnel, no open port, and no domain.
The worker starts on each container start (postStartCommand). It needs two
secrets. Add them at
github.com/settings/codespaces, the
same way as ANTHROPIC_API_KEY:
AGENT_WORKER_TOKEN— the shared bearer token. The worker sends it on each poll.N8N_DEQUEUE_URL— the n8n webhook that returns a pending turn.
The log is at /tmp/agent-worker.log. The tmux session is agent-worker. To
watch it, run tmux attach -t agent-worker. The worker does not start if a
secret or $GITHUB_USER is missing.
A turn stops after about 25 minutes (TURN_TIMEOUT_MS). This limit is below the
n8n Wait limit. So the worker reports a clear message before n8n reports a
generic timeout. Keep the worker limit below the n8n limit if you change either.
Build and run the app in a session
The prebuild already installed the dependencies and warmed the build. So a
session rarely needs a cold pnpm install or a full pnpm build. Both are slow
(often 10–20 minutes cold). Both can outlast a turn's limit.
- Bring the app up with one command:
pnpm dev:up. It installs missing dependencies, starts the backend, waits for health, and prints the URL. Add--buildonly when a frontend change must appear (see below). - Open the app at
https://<codespace-name>-5678.app.github.dev. The port is private. It opens for you in a browser that is signed in to GitHub. You do not need a tunnel. An anonymous or server caller gets a 302. That is why the worker polls outward instead. pnpm devno longer exists. Usepnpm dev:befor the backend (on 5678). Usepnpm dev:fe:editorfor the editor UI with hot reload (on 8080).dev:beserves the editor from thedistbuild. So a frontend edit does not hot-reload there. Runpnpm dev:up --build(orpnpm build) and restart to show it. For live frontend hot reload, usepnpm dev:fe:editor. That path needspnpm session tunnel 5678 8080from your laptop. Its API base is set tolocalhost:5678, so the-8080.app.github.devURL does not work on its own.- Run
pnpm installonly when the dependencies change.pnpm buildreuses the turbo cache and is fast when warm. - To clear stale build outputs after a branch switch, run
pnpm reset. Add--fullif that does not clear it. - Give a long build its own turn. Do not chain an install and a full build behind other work in one turn.
Flaky tools (MCP)
Claude sessions get the flaky MCP server automatically: Currents
flaky/quarantine data, the qa_* BigQuery dataset, Sentry RCA, live Linear,
and repo investigation. Login registers it from the repo-level
FLAKY_MCP_TOKEN / FLAKY_MCP_URL secrets. Forks have no secrets and skip
it. Tell the agent to call get_flaky_context first — it returns the rules
the tools assume.
Quality skills (Claude plugin)
Claude sessions can also load the private quality skills from the
n8n-io/n8n-claude-skills plugin marketplace (bug insights, defect attribution,
mutation testing, and more). post-start.mjs installs the quality plugin on
each container start, so every session gets the skills with no per-session step.
The private marketplace uses the codespace's own GitHub auth — no extra token.
devcontainer.json grants the codespace read access to
n8n-io/n8n-claude-skills via customizations.codespaces.repositories, and
each user authorizes that access once when they create the codespace (GitHub
prompts for it, then remembers). Both repos are in the same org, which is what
lets this work.
If a user does not authorize it, the clone fails and the skills step is skipped
(the worker still starts). Existing codespaces created before this change need a
recreate to get the prompt. The log is at /tmp/post-start.log.
Viewing the dev UI locally
Two terminal windows:
pnpm session # window 1: attach the agent session
pnpm session tunnel # window 2: forward 5678 + 8080 to localhost
Attaching lands you in the agent (Claude), not a shell — open a shell in a new
tmux window with Ctrl-b c (or ask the agent), then pick a dev server and open
the matching port:
pnpm dev:up— backend on 5678 (editor served from thedistbuild). Open http://localhost:5678.pnpm dev:fe:editor— editor UI with hot reload on 8080. Open http://localhost:8080. It needs the backend on 5678 too, so runpnpm dev:upalongside it.
The tunnel prints nothing while forwarding — that's normal. Connection refused means nothing is listening on that port in the codespace yet; it
starts serving as soon as the dev server is up, no restart needed. Pass ports
to override the defaults (pnpm session tunnel 5678 8080 5679), but always
forward the pair together with matching numbers: the Vite dev UI points its
API base at localhost:5678 (the N8N_PORT default), so an asymmetric or
partial mapping breaks it.
What survives what
| Event | Running processes | Disk (checkout, worktrees, chat history) |
|---|---|---|
| Detach / close laptop / network drop | ✅ keep running | ✅ |
| Stop, or idle timeout (default 30 min, max 4 h) | ❌ killed | ✅ |
Delete (pnpm session rm) |
❌ | ❌ (push your branches first) |
After a stop, pnpm session <name> restarts the codespace (~30–60 s); run
claude --resume (or --continue) inside to restore the conversation from disk.
Gotchas (learned the hard way)
- Codespaces clones the repo to
/workspaces/n8n, not/workspaces—workspaceFolderhere differs from the laptop config on purpose. - A failing
onCreateCommandis fatal: Codespaces discards the container and drops you into a minimal recovery container (no node, no CLIs). If your codespace has nothing installed, check/workspaces/.codespaces/.persistedshare/creation.log. gh codespace sshneeds sshd inside the container — provided by thesshddevcontainer feature, don't remove it.- User secrets aren't visible in ssh shells by default: the codespace
agent injects them into VS Code sessions only; they're delivered
base64-encoded to
/workspaces/.codespaces/shared/.env-secrets. The image sources/usr/local/lib/codespaces-env.shin login shells (profile.d), in interactive shells (bashrc), and in thepnpm sessionprelude. If Claude Code showsMissing environment variables: FLAKY_MCP_TOKEN, the shell that started Claude did not source the file. Run. /usr/local/lib/codespaces-env.shand start Claude again. - You cannot paste images into a remote Claude session. Image paste reads
the clipboard of the machine where
clauderuns — the codespace, not your laptop. Drag the file into the VS Code explorer (orgh codespace cp shot.png remote:/workspaces/n8n/) and give Claude the path. The file stays on disk and survives detach and--resume. git push/ghreturn 401 in tmux and long sessions — same root cause as the secrets gotcha, plus rotation: Codespaces refreshes the on-diskGITHUB_TOKENevery few minutes, so a login-time snapshot goes stale. The image fixes both: a credential helper reads the current token on eachgit push(gitcredential-refresh.sh), and a shim at/usr/local/bin/ghdoes the same forgh. The token is scoped ton8n-io/n8n: fork-based flows do not work, push branches directly. Do not add SSH keys as a workaround — they have no per-repo granularity.- Codespaces created by org members on this repo are org-owned and org-billed (organization ownership + a monthly Codespaces budget are enabled for n8n-io). Codespaces created before that change, or by non-members, bill to the personal account (free tier: 120 core-hours/month). If creation unexpectedly falls back to personal billing, the org budget is exhausted for the period.
Costs
Compute bills only while the codespace runs: ~$0.36/hr (4-core) / ~$0.72/hr
(8-core), ~nothing stopped. Usage draws from a shared monthly org budget, so
pnpm session stop when you leave; the idle timeout is the backstop, not the
plan.