Skip to main content

General

The Bridge lets you use your existing Claude subscription (20/month)insteadofpayingforAPIaccess(20/month) instead of paying for API access (200-500/month). It also keeps your code private — everything runs locally on your machine.
No. The Coder1 web app runs in your browser, but all code execution happens on YOUR computer via the Bridge. Think of it like SSH or VSCode Remote — remote control, not cloud hosting.
Your code is on YOUR computer — we never hold it. If we disappeared tomorrow, you’d still have all your files, and Claude Code CLI still works without our platform. The Bridge is also open source.
Yes. Once the Bridge is connected, you can cd into any directory on your computer from the IDE terminal.

Bridge & Connection

Codes expire after 5 minutes. Click the Bridge button in the IDE to generate a fresh code.
The installer may not have added it to your PATH:
npm install -g coder1-bridge
# Or:
export PATH="$PATH:~/.npm-global/bin"
After a server restart, the bridge infrastructure needs a moment to warm up. Wait a few seconds, refresh the browser page, and try again.
Verify Claude Code works directly in your local terminal:
claude "hello"
If that fails, Claude Code may not be installed. Download it at claude.ai/download.
No. The Bridge only executes commands you type in the IDE. Nothing runs on your computer without your action.
The Bridge will attempt to reconnect automatically. If it can’t, press Ctrl+C to stop it, then run coder1-bridge start and get a new code.
Your API key stays on YOUR computer. The Bridge doesn’t need it or transmit it anywhere.

Johnny5

Yes. Johnny5 has a persistent memory system that stores facts, preferences, and context across sessions. It learns your workflow over time.
No. Johnny5 connects through Coder1’s servers — it works without the Bridge. The Bridge is only needed for terminal commands and file-based operations.
Type /memory clear in the Johnny5 chat. You can also delete individual memories with /memory delete [id].
Try /memory list to see what it has stored. You may need to re-share context if a session was very long or memory wasn’t captured for a particular topic.

Privacy & Data

No. Your code files never leave your computer. Only commands you type and their output travel over the encrypted connection.
We collect anonymous usage metrics only: connection timestamps, command counts (not content), and crash logs. We do not collect code, file contents, or command text.
Yes:
export CODER1_TELEMETRY=false
coder1-bridge start
To make it permanent, add the export line to your ~/.zshrc or ~/.bashrc.
No. The connection is encrypted (TLS 1.3 / WSS). Your IT team can see that you’re connecting to coder1.ai, but cannot read the encrypted payload — and your files never leave your machine anyway.