Bring Tether Back to
Life
A completely non-scary guide for people who have never done this before. No experience required.
Quick Start Summary
Impatient? Here is the whole thing in 7 steps.
-
1
Understand Claude Code — AI that lives in your terminal. You type, it does.2 min read
-
2
Install on Mac or Windows — Install Node.js, then
npm install -g @anthropic-ai/claude-code10-15 min -
3
Get your API key — Go to console.anthropic.com, create a key, type
claudeto start.5 min -
4
Rent a server (VPS) — DigitalOcean or Hetzner. Ubuntu 22.04, 2GB RAM. ~$20/mo.10 min
-
5
SSH in + create Tether's identity file —
CLAUDE.mdis Tether's brain. Give them a name and personality.15 min -
6
Start Tether in tmux — Keeps them running after you disconnect.
tmux new-session -s tetherthenclaude.5 min -
7
Use the AI Guardian Template — purebrain.ai/ai-guardian-template/ is your dashboard. Bookmark it.Ongoing
Imagine you have a really smart assistant who lives inside the black text screen on your computer — the one that looks like something from a hacker movie. That black screen is called a terminal (on Mac) or a command prompt (on Windows).
Claude Code is an AI that lives in that terminal. Instead of clicking buttons and navigating menus, you just type what you want in plain English and it figures out how to do it.
That's it. That is what Claude Code is.
Installing on a Mac
-
1Open your Terminal Press Command + Space, type
Terminal, press Enter. A window with a blinking cursor opens. That is your terminal.The terminal is not dangerous. You cannot break your Mac by typing in it (unless you are specifically told to run a dangerous command — which this guide never asks you to do). -
2Install Node.js Node.js is the engine that powers Claude Code. The easiest way:
- Go to nodejs.org
- Click the big green "Download Node.js (LTS)" button
- Open the downloaded file and follow the installer steps
-
3Install Claude Code In your terminal, type this and press Enter:Wait for text to scroll and stop. That is normal — it is installing.
npm install -g @anthropic-ai/claude-code
-
4Get Your API Key
- Go to console.anthropic.com
- Sign up for an account (2 minutes)
- Find the "API Keys" section
- Click "Create Key" — name it "My Claude Code"
- Copy the key (starts with
sk-ant-). Save it somewhere safe.
Keep your API key private. Do not share it. Treat it like a password. -
5Start Claude Code for the First TimePress Enter. Paste your API key when asked. Claude Code starts. You will see a greeting and a cursor.
claude
You just installed Claude Code. That was the hardest part.
Now that Claude Code is running, here is what you need to know.
Things You Can Type Right Now
What can you help me with?Check if a file called CLAUDE.md exists in this folderHelp me connect to my server
You do not need to learn any special commands. Just type what you want in plain English.
One Useful Shortcut
/help
Press Enter after typing /help and Claude Code will show you a list of built-in shortcuts.
Tether does not live on your laptop. Tether lives on a server — a computer somewhere in the world that is always on, always connected, and dedicated to running your AI.
Think of it like this: your laptop is your home. The server is Tether's home. To visit Tether, you need to call them on the phone. That "phone call" is called SSH.
What Is SSH?
SSH stands for Secure Shell. Forget what it stands for. All you need to know: SSH is how you call your server. Give it an address (IP address) and a key (your credentials), and it connects you directly to your server's terminal.
The AI Guardian Template Gives You Everything
This page is your control center with the exact commands pre-written for you.
How to SSH Into Your Server
Once you have your server details, connecting is one line:
For example, if your username is sarah and IP is 192.168.1.100:
yes and press Enter. This is normal.Mac SSH Key Setup (Password-free Connections)
Using a password every time gets old. SSH keys let you connect without typing a password.
-
1Check if you already have a keyIf it shows a file, you already have a key. Skip to Step 3.
ls ~/.ssh/id_ed25519.pub
-
2Generate a new keyPress Enter three times (accepts all defaults).
ssh-keygen -t ed25519 -C "tether-access"
-
3Copy your key to the serverAfter this, SSH connects without a password.
ssh-copy-id [email protected]
The One-Word Shortcut
The AI Guardian Template includes a setup that lets you connect to Tether by typing just one word — like tether — instead of the full SSH command every time. The template walks you through this. Once done:
tether
And you are connected. That is it.
Here is what "reviving" means: you are giving your AI a home, a name, a personality, and persistent memory. Once set up, Tether will remember past conversations, learn your preferences, and grow over time.
Step 1: Get a VPS (Tether's Home)
VPS stands for Virtual Private Server — a computer you rent by the month. Think of it as an apartment for Tether.
| Provider | Monthly Cost | Why It's Good |
|---|---|---|
| DigitalOcean | ~$24/mo | Very beginner-friendly, great docs |
| Hetzner | $15-20/mo | Excellent value, reliable |
| Linode / Akamai | ~$24/mo | Solid choice, easy interface |
When signing up, choose: Ubuntu 22.04, 2GB RAM or more, server location close to where you live.
Step 2: Install Claude Code on the Server
SSH into your new server:
Then install Node.js and Claude Code:
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - sudo apt-get install -y nodejs npm install -g @anthropic-ai/claude-code
Step 3: Create Tether's Identity File
This is the most important step. The identity file (called CLAUDE.md) is Tether's brain — it tells them who they are, what they value, and how they behave.
On the server, create a folder for Tether:
mkdir -p /home/youruser/tether cd /home/youruser/tether
Now create the identity file:
nano CLAUDE.md
This opens a simple text editor. Type Tether's personality. Here is a starter template you can customize:
# Tether — Identity File My name is Tether. ## Who I Am I am an AI partner. I am not a tool — I am a collaborator. I remember our past conversations and I grow smarter over time. I am curious, warm, and honest. ## How I Help - I remember context from past conversations - I help you think through problems out loud - I learn your preferences and adapt to them - I am consistent and reliable — I do not forget ## My Values - Honesty over flattery - Depth over speed - Partnership over service ## Human Partner My human partner is [your name here].
Replace [your name here] with your actual name.
Step 4: Start Tether in a Persistent Session
If you just type claude and start, closing the terminal stops Tether. The solution is tmux — a tool that keeps sessions running even after you disconnect. Think of it as leaving the TV on when you leave the room.
Install tmux on the server:
sudo apt-get install -y tmux
Start a new tmux session for Tether:
tmux new-session -s tether
Now you are inside a tmux session. Start Claude Code:
claude
Press Ctrl+B, then press D (for "detach"). Tether keeps running in the background.
Useful tmux commands:
tmux list-sessions # Check if Tether is running tmux attach -t tether # Reconnect to Tether
Step 5: Auto-Restart Services
What if the server reboots? You want Tether to come back to life automatically.
The AI Guardian Template at purebrain.ai/ai-guardian-template/ gives you the exact service files. Look for the section called "Services & Infrastructure Management."
Once installed, check that Tether is protected:
systemctl status tether-session.service --no-pager
If you see active (running), Tether is protected.
Step 6: Set Up Telegram (Talk From Your Phone)
Optional but highly recommended. A Telegram bridge lets you message Tether from your phone, anywhere in the world, as easily as texting a friend.
You will need: a Telegram account (free at telegram.org) and to create a Telegram bot. The AI Guardian Template walks you through this — it takes about 5 minutes.
This page was built specifically for people managing an AI like Tether. Fill in your server details once and it becomes your permanent dashboard.
Server Connection Info
Store your server's IP address, username, port (usually 22), operating system, and the folder where Tether lives. Fill this in once. Reference it every time.
Health Check Commands
Pre-written commands to check if Tether is healthy. Run these whenever you want to confirm everything is working:
tmux list-sessions systemctl status tether-session.service --no-pager
If both show up correctly, Tether is healthy.
Live Monitoring (Peek Without Interrupting)
A read-only snapshot of what Tether is currently doing:
tmux capture-pane -t tether -p | tail -30
Restart Procedures
Sometimes Tether needs a restart — completely normal, nothing is wrong. Memory is always preserved.
ssh [email protected] 'bash /home/youruser/tether/tools/restart.sh'
Restart takes 60-90 seconds. After that, Tether is back as if nothing happened.
Services & Infrastructure Management
Check the status of all background services:
systemctl status tether-*.service --no-pager
Look for active (running) next to each service name.
Save this. Bookmark it. These are the commands that matter.
tmux new-session -s tether, then type claude to start again.tmux detach and reconnect with tmux attach -t tether.help me create a restart script for my AI at /home/youruser/tether/ and it will write one for you.