From your Windows Terminal:
ssh ubuntu@64.181.198.130
Once you're SSH'd in:
cd edgeclaw
claude
This starts a new session every time.
claude --dangerously-skip-permissions
Claude won't ask you to approve each action — it just runs. Good for when you want it to work without babysitting.
claude --new
Use this if Claude keeps resuming an old conversation instead of starting fresh.
claude --dangerously-skip-permissions --new
Your work IT blocks the public domain, so you use SSH port forwarding to access the EdgeClaw dashboard locally.
Run this from your local Windows terminal (before SSH'ing in):
ssh -L 8080:localhost:8080 ubuntu@64.181.198.130
Then open http://localhost:8080/data-status in your browser.
If you just want the tunnel without a shell session, add -N:
ssh -L 8080:localhost:8080 -N ubuntu@64.181.198.130
Important: Port forwarding dies when that terminal tab closes. You'll need to re-run it each time.
Your main Claude session runs inside tmux (a tool that keeps terminal sessions alive even when you disconnect).
tmux attach -t claude
Or use the shortcut:
cg
Both do the same thing — bring you back to the main Claude session.
tmux ls
Shows every active tmux session. If you see a bunch piling up, clean them out.
tmux kill-session -t <name>
Replace <name> with whatever tmux ls shows (e.g., tmux kill-session -t 0).
tmux kill-server
This kills everything including your main session. Use with caution.
Before closing a tab, type inside Claude Code:
/exit
Then type exit to close the SSH connection. This prevents orphaned sessions from piling up.
claude (or reconnect with cg)claude --dangerously-skip-permissionsBoth work in the same folder and share the same memory files. Just avoid editing the same file in both at the same time.
Custom commands you can type inside Claude Code.
Saves your current session state, then tells you how to switch to a different project with a clean context window.
Usage:
/switch edgeclaw
/switch ecocell
What it does:
SESSION_STATE.md/clear and then cd into the other projectShortcuts: edge or claw for EdgeClaw, eco for EcoCell.
Picks up where you left off after a /switch or a fresh session.
Usage:
/resume
It reads SESSION_STATE.md in the current folder, shows you what was in progress, and continues from there.
| Alias | What it does |
|---|---|
cg |
Reconnect to the main Claude tmux session |
ssh-vultr |
SSH into the Vultr server |
ssh-phoenix |
SSH into the Phoenix server |