NO PATIENT CODE

This page requires a valid patient code.

Check your status โ†’

๐Ÿ”’

SETUP LOCKED

Your setup hasn't been unlocked yet.
Redirecting to your status page...

LOADING PRESCRIPTION...
โ„ž

3.11LABS ร— OpenClaw

AGENT Rx
PERSONALIZED AI AGENT PRESCRIPTION

Installation

No local machine? Run your agent in a secure cloud environment. Pick one:

GitHub Codespaces โ€” recommended, free tier

Full Linux VM in your browser. Free 60h/month. Node.js pre-installed.

1. Go to github.com/codespaces

2. Click "New codespace" โ†’ choose "Blank" template

3. In the terminal:

npm install -g openclaw && openclaw init

4. Copy your prescription files into ~/.openclaw/workspace/

โœ… Secure sandbox ยท โœ… Free tier ยท โœ… Browser-based ยท โœ… Node.js included

Gitpod โ€” fast, auto-configured

Cloud dev environment. 50h/month free. Auto-provisions workspace.

1. Go to gitpod.io and sign in with GitHub

2. Start a new workspace

3. In the terminal:

npm install -g openclaw && openclaw init

โœ… Isolated VM ยท โœ… Free tier ยท โœ… Pre-built images available

VPS (Always-On Agent) โ€” $4-6/month

For a 24/7 agent that runs even when your laptop is closed. DigitalOcean, Railway, or Hetzner.

1. Spin up a small VPS (1GB RAM is enough to start)

2. SSH in and install Node.js:

curl -fsSL https://deb.nodesource.com/setup_22.x | sudo bash - && sudo apt-get install -y nodejs

3. Install and initialize:

npm install -g openclaw && openclaw init

4. Run as a service:

openclaw gateway start

โœ… Always on ยท โœ… Full isolation ยท โœ… SSH access ยท โš ๏ธ Requires basic server knowledge

๐Ÿ”’ SECURITY NOTE

Cloud environments are inherently sandboxed โ€” your agent can't access your local files or system. This is actually more secure than running locally. The trade-off: no local file access, no local browser control. For most people starting out, this is fine.

Run your agent in a container โ€” full isolation on your own machine.

Quick Start with Docker

1. Install Docker: docker.com/get-started

2. Pull and run:

docker run -it --name my-agent -v ~/.openclaw:/root/.openclaw node:22-slim bash -c "npm install -g openclaw && openclaw init && bash"

This creates a container with:

โ€ข Node.js 22 + OpenClaw pre-installed

โ€ข Your config mounted at ~/.openclaw

โ€ข Full isolation from your host system

Running as a Background Service

docker run -d --name openclaw-agent --restart unless-stopped -v ~/.openclaw:/root/.openclaw node:22-slim bash -c "npm install -g openclaw && openclaw gateway start --foreground"

Manage it:

docker logs openclaw-agent -f docker stop openclaw-agent docker start openclaw-agent

๐Ÿ”’ WHY DOCKER?

Your agent runs in a sandboxed container that can't access your host filesystem (except the mounted config). If something goes wrong, delete the container โ€” zero risk to your machine. Best of both worlds: local speed + cloud security.

๐Ÿ’ก PRO TIP

Want even more isolation? Use Docker with no volume mount at all โ€” copy your prescription files into the container manually. Nothing persists outside the container. Nuclear-level sandboxing.

AGENT IDENTITY

Choose a symbol for your agent. This appears in your IDENTITY.md.

โšก
๐Ÿ”ฎ
๐ŸŒ™
โœฆ
โ—†
โ–ฒ

GENERATED FILES โ€” Copy these into ~/.openclaw/workspace/

CHANNEL SETUP

Connect your agent to at least one messaging channel. Telegram is the fastest to set up.

๐Ÿ“ฑ TELEGRAM (RECOMMENDED)

Fastest setup. Works on phone + desktop. Private 1-on-1 chat with your agent.

1. Open @BotFather in Telegram

2. Send /newbot and follow the prompts

3. Copy the bot token and add it to your config:

openclaw config set telegram.token YOUR_BOT_TOKEN

4. Start chatting with your bot in Telegram

๐Ÿ’ฌ DISCORD

Best for team/community use. Your agent joins a server as a bot.

1. Create a bot at Discord Developer Portal

2. Enable Message Content Intent under Bot settings

3. Add to your config:

openclaw config set discord.token YOUR_BOT_TOKEN

๐Ÿ’ป CLI (BUILT-IN)

Talk to your agent directly in the terminal. No setup required.

openclaw chat

Recommended Skills For You

Browse all skills: clawhub.com

SUPERCHARGE YOUR AGENT

Pick one to set up now. Come back for the others anytime.

๐Ÿ—ฃ๏ธ Give It a Voice ElevenLabs
โ–ถ

Your agent can talk. Not type โ€” talk. With a custom voice. Ask it to tell you a story and hear it come alive.

1 Go to elevenlabs.io and create a free account
2 Go to Profile โ†’ API Key โ†’ copy it
3 In your terminal, run: openclaw skills install sag
4 When prompted, paste your ElevenLabs API key
5 Restart your agent: openclaw gateway restart
6 Try it: Tell your agent "Say hello to me" or "Tell me a 30 second story about my industry"
Free tier = 10,000 characters/month. Plenty to start.
๐Ÿ“… Manage Your Calendar Google Calendar
โ–ถ

Your agent reads your schedule, creates events, and sends invites. Ask "what's on my calendar this week?" and watch it pull your real meetings.

1 Go to console.cloud.google.com
2 Create a new project (any name)
3 Enable the Google Calendar API (search "Calendar API" โ†’ Enable)
4 Go to Credentials โ†’ Create Credentials โ†’ OAuth 2.0 Client ID
5 Download the credentials JSON file
6 In terminal: openclaw configure --section skills
7 When prompted for Google Calendar, provide the credentials file path
8 It will open a browser for you to authorize access to your calendar
9 Restart: openclaw gateway restart
10 Try it: Ask your agent "What's on my calendar this week?" or "Schedule a meeting with [name] tomorrow at 2pm"
Only connects to YOUR calendar. Your agent never shares your data.
๐ŸŒ Build Things Coding Agent
โ–ถ

Your agent can write code, build websites, and create apps. Tell it what you want and watch it build. No coding knowledge needed.

1 This is already built in โ€” no extra install needed!
2 Just make sure your agent is running: openclaw gateway status
3 Try it: Tell your agent "Build me a personal landing page with my name and bio"
4 It will create the files in your workspace
5 Open them: open ~/.openclaw/workspace/ Windows: explorer %USERPROFILE%\.openclaw\workspace\
6 Open the HTML file in your browser โ€” your website is ready
WANT TO GO FURTHER?
โ€ข "Build me a todo app"
โ€ข "Create a script that organizes my downloads folder"
โ€ข "Make a dashboard that shows the weather and my calendar"
Your agent runs code in a sandbox by default. Safe to experiment.

These are just the beginning. Browse 50+ skills at clawhub.com

Install any skill: openclaw skills install [name]

YOUR FIRST 7 DAYS โ€” TRAINING PROTOCOL

Day 1 โ€” Introduction
Talk to your agent. Tell it about your current projects, your team, your goals. Let it read your files. The more context it has, the better it performs.
Day 2-3 โ€” First Real Task
Give it something you'd normally do yourself. Research, draft an email, organize notes. Correct it when it's wrong. It learns from your corrections โ€” be specific about why.
Day 4-5 โ€” Build Memory
Ask it to remember your preferences. Update SOUL.md if the personality isn't right. Add project context to memory files. Your agent is only as good as what it knows.
Day 6-7 โ€” Add Tools
Connect it to your workflow: email, calendar, browser, Slack. Let it be proactive โ€” set up heartbeats so it checks in periodically. This is where it goes from assistant to collaborator.
Ongoing โ€” Evolve Together
Your agent gets better every week. Update its files when things change. Review its memory. Challenge it. The best agents are the ones their humans invest in.

RESOURCES

๐Ÿ“– Full Documentation
๐Ÿ’ฌ Community Discord
๐Ÿ™ GitHub
๐ŸŽ“ Masters of AI โ€” Advanced Training

๐Ÿฅš

Your agent is born. Now raise it.

Read the Full Aftercare Protocol โ†’
Rx-000000
Prescribed by 3.11LABS โ€” Refills unlimited
3.11LABS ร— OpenClaw