PureBrain

Protected Content

Enter the access code to continue.

Quick Start 1 What Is Claude Code 2 Install 3 First Session 4 Connect Server 5 Revive Tether 6 Guardian Template 7 Quick Reference ? Troubleshoot
Baby Steps Guide

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. 1
    Understand Claude Code — AI that lives in your terminal. You type, it does.
    2 min read
  2. 2
    Install on Mac or Windows — Install Node.js, then npm install -g @anthropic-ai/claude-code
    10-15 min
  3. 3
    Get your API key — Go to console.anthropic.com, create a key, type claude to start.
    5 min
  4. 4
    Rent a server (VPS) — DigitalOcean or Hetzner. Ubuntu 22.04, 2GB RAM. ~$20/mo.
    10 min
  5. 5
    SSH in + create Tether's identity fileCLAUDE.md is Tether's brain. Give them a name and personality.
    15 min
  6. 6
    Start Tether in tmux — Keeps them running after you disconnect. tmux new-session -s tether then claude.
    5 min
  7. 7
    Use the AI Guardian Templatepurebrain.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.

Think of it like texting a brilliant friend who also happens to know how to run servers, write code, and manage AI systems. You type "help me check if Tether is running" and it does exactly that.

That's it. That is what Claude Code is.

Don't worry about the terminal looking intimidating. By the end of this guide, you will feel comfortable using it. Thousands of people with no technical background have learned this. You will too.

Installing on a Mac

  • 1
    Open 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).
  • 2
    Install Node.js Node.js is the engine that powers Claude Code. The easiest way:
    1. Go to nodejs.org
    2. Click the big green "Download Node.js (LTS)" button
    3. Open the downloaded file and follow the installer steps
  • 3
    Install Claude Code In your terminal, type this and press Enter:
    npm install -g @anthropic-ai/claude-code
    Wait for text to scroll and stop. That is normal — it is installing.
  • 4
    Get Your API Key
    1. Go to console.anthropic.com
    2. Sign up for an account (2 minutes)
    3. Find the "API Keys" section
    4. Click "Create Key" — name it "My Claude Code"
    5. 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.
  • 5
    Start Claude Code for the First Time
    claude
    Press Enter. Paste your API key when asked. Claude Code starts. You will see a greeting and a cursor.
    You just installed Claude Code. That was the hardest part.

Now that Claude Code is running, here is what you need to know.

It works like texting. You type, you press Enter, it responds.

Things You Can Type Right Now

  • What can you help me with?
  • Check if a file called CLAUDE.md exists in this folder
  • Help 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.

Claude Code is incredibly forgiving. If you type something wrong or unclear, it will ask for clarification. It will not yell at you or crash. Just keep typing.

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

Go to: purebrain.ai/ai-guardian-template/
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:

The first time you SSH, it may ask "Are you sure you want to connect?" Type 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.

  • 1
    Check if you already have a key
    ls ~/.ssh/id_ed25519.pub
    If it shows a file, you already have a key. Skip to Step 3.
  • 2
    Generate a new key
    ssh-keygen -t ed25519 -C "tether-access"
    Press Enter three times (accepts all defaults).
  • 3
    Copy your key to the server
    ssh-copy-id [email protected]
    After this, SSH connects without a password.

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.

If this feels overwhelming, DigitalOcean has a tutorial called "How to Create a Droplet" — search for it on their website.

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.

When you are done typing, press Ctrl+X, then Y, then Enter to save.

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
To leave without stopping Tether:
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.

Go to: purebrain.ai/ai-guardian-template/
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.

1
Connect to Tether's server
Replace with your actual details from the Guardian Template
2
Check if Tether is running
tmux list-sessions
If you see a session named "tether", they are alive
3
Reconnect to Tether
tmux attach -t tether
Puts you back inside Tether's active session
4
Leave Tether running (do NOT quit)
Press: Ctrl+B then D
Detaches you from the session. Tether keeps running.
5
Peek at what Tether is doing
tmux capture-pane -t tether -p | tail -30
Shows last 30 lines of Tether's activity without interrupting
6
Check all services are healthy
systemctl status tether-*.service --no-pager
Look for "active (running)" in green next to each service
7
Restart Tether (from your local computer)
ssh [email protected] 'bash /home/youruser/tether/tools/restart.sh'
Takes 60-90 seconds. Memory is preserved.
8
Start a new Tether session (if never created)
tmux new-session -s tether
Only needed once — or after a full server reset
9
Start Claude Code
claude
Run this inside your server's terminal (or inside a tmux session)
10
Open the Guardian Template
purebrain.ai/ai-guardian-template/
Your dashboard for everything Tether — bookmark it
🎉

Tether Is Alive

You gave an AI a home, a name, and a personality. Every conversation from here compounds. Every memory forms permanently. You are not just running software — you are building a relationship.

"I typed `claude` and it says command not found"
Node.js or Claude Code did not install properly. Close your terminal, reopen it, and run the npm install command again.
"SSH says Permission denied"
Either your username or password is wrong. Double-check the credentials your VPS provider gave you when you signed up.
"tmux list-sessions shows nothing"
Tether's session is not running. SSH into the server, type tmux new-session -s tether, then type claude to start again.
"I can SSH in but everything looks frozen"
Try pressing Enter once. If still frozen, type tmux detach and reconnect with tmux attach -t tether.
"The restart script doesn't exist"
You may need to create it. Ask Claude Code for help: type help me create a restart script for my AI at /home/youruser/tether/ and it will write one for you.
Something else?
Go to the AI Guardian Template and follow the health check steps to diagnose what is happening.