Three ways to use Claude Code with your container. All three use your own Claude account — Vibesies doesn't resell tokens.
Anthropic's desktop app added native SSH support in early 2026 (Linux Feb 2026, macOS extended in April 2026). You point the desktop session at your Vibesies container, and Claude Code runs inside your container against your container's files — with a full graphical UI on your laptop.
/workspace shows up as a normal project folder.
Launch the app and sign in with your Claude account. Claude Code requires Pro, Max, Team, or Enterprise — the free Claude.ai tier doesn't include Claude Code.
This single paste adds your Vibesies container to ~/.ssh/config so Claude Desktop can find it. Safe to run more than once.
Mac / Linux Terminal:
mkdir -p ~/.ssh && touch ~/.ssh/config && \
grep -q "^Host vibesies$" ~/.ssh/config || \
printf '\nHost vibesies\n HostName your-name.vibesies.com\n User vibe\n Port 22XX\n IdentityFile ~/.ssh/id_ed25519\n ServerAliveInterval 60\n' >> ~/.ssh/config
echo "✓ Vibesies SSH config added. Restart Claude Desktop and pick SSH → vibesies."
Windows PowerShell:
New-Item -ItemType Directory -Force "$HOME\.ssh" | Out-Null
$ssh = "$HOME\.ssh\config"; if (!(Test-Path $ssh)) { New-Item -ItemType File $ssh | Out-Null }
if (!(Select-String -Path $ssh -Pattern "^Host vibesies$" -Quiet)) {
Add-Content $ssh "`nHost vibesies`n HostName your-name.vibesies.com`n User vibe`n Port 22XX`n IdentityFile ~/.ssh/id_ed25519`n ServerAliveInterval 60"
}
Write-Host "✓ Vibesies SSH config added."
Verify ssh vibesies works from your terminal before continuing. (Exact HostName and Port are on your dashboard.)
vibesies host you just configured./workspace is your container's home.Claude Desktop opens a session against your container's filesystem. The chat, diff view, file editor, and integrated terminal all operate on your container's files.
Type what you want. Claude proposes edits, shows you a diff, you accept or reject. Files write to /workspace on the container. Your site at your-domain.vibesies.com reflects changes instantly.
If you already use VS Code or Cursor as your daily editor, this is the natural path. Edit files in VS Code's familiar UI, run claude in the integrated terminal — both connected to your Vibesies container.
code.visualstudio.com · cursor.com
Ctrl/Cmd-Shift-X → search "Remote - SSH" (Microsoft) → Install.
~/.ssh/configSame config block as Option 1 above.
F1 → Remote-SSH: Connect to Host → vibesies. Open Folder → /workspace.
Open the terminal (Ctrl-`) and run:
claude
# inside Claude's TUI:
/login
A paste-back auth flow appears. Open the URL on your laptop's browser, sign in to your Claude account, paste the token back. One-time per container; tokens persist in /workspace.
claude CLIPure terminal. No editor, no extension, no desktop app. Pre-installed and ready.
ssh -p 22XX vibe@your-name.vibesies.com
claude
# then in Claude's TUI:
/login
The MOTD on first SSH login walks through this. cat /workspace/HELLO.md for the full orientation.
You bring your own Claude account. Vibesies doesn't resell tokens or take a cut.
A free Claude.ai account does NOT include Claude Code — the desktop app's Code tab will prompt you to upgrade.
~/.ssh/config on your laptop. Make sure your Host vibesies block is there and that ssh vibesies works from your terminal independently. Restart the app after editing the SSH config.df -h /workspace in your container; Studio has 100 GB, Starter has 10 GB.curl -fsSL https://claude.ai/install.sh | bash (the native installer auto-updates from there). Or npm install -g @anthropic-ai/claude-code@latest if you prefer npm.Open the dashboard, copy your SSH info, fire up Claude Desktop.
Open dashboard Connecting Codex instead?