Six steps. ~4 minutes. Your existing Claude Pro / Max subscription becomes the engine that powers your Aria workspace — no developer API key, no double-billing.
claude login signs you in through your browser, and the runner token is exchanged automatically by the install command. When the runner connects, this page shows a button to open your workspace.
This path uses your $20 (Pro) or $100–$200 (Max) Anthropic subscription. If you only have a developer API key (sk-ant-...), close this and use the API key path instead.
Claude Code is Anthropic's official local CLI. It carries your Pro/Max auth and is what Aria talks to. Open your terminal and run:
which claudeWhy: Aria can't reach into your terminal to check itself. We give you the command, you tell us what you saw.
Official Anthropic installer. macOS / Linux / WSL2 — one command:
curl -fsSL https://claude.com/install.sh | bashWhy this command: the curl-bash pulls Anthropic's official installer (signed). It installs claude to ~/.local/bin or /usr/local/bin. Add that to PATH if it isn't already.
Run this in your terminal. It opens your browser; sign in with the same email you use for Claude Pro/Max, then return to your terminal — nothing to copy back out. The OAuth token is saved locally — Aria never sees it.
claude loginWhy: this is Anthropic's own sign-in flow. The token stays on your machine. Aria just sees a session-id when calls route through.
One click — we mint a runner token bound to your account. The token gives this machine permission to receive Aria's call envelopes and execute them through your local claude.
(will appear here)(will appear here)Two short lines so nothing wraps or mangles on paste — run line 1, then line 2 in the same terminal. It downloads the runner script, saves your token to ~/.aria/aria-runner.token (chmod 600), and installs an aria-runner wrapper into /usr/local/bin or ~/.local/bin.
After the install in Step 5 completes, run this:
aria-runnerTip: run inside tmux or screen so it survives a closed terminal: tmux new -d -s aria-runner 'aria-runner'
Your runner is live. Open the workspace in a new tab and start building — your Claude Pro/Max plan powers it. (This tab stays open if you need it.)