BioClaw Setup
Run all commands automatically. Only pause when user action is required (WhatsApp authentication, configuration choices).
UX Note: When asking the user questions, prefer using the AskUserQuestion tool instead of just outputting text. This integrates with Claude's built-in question/answer system for a better experience.
1. Install Dependencies
2. Install Container Runtime
First, detect the platform and check what's available:
bash
1echo "Platform: $(uname -s)"
2which container && echo "Apple Container: installed" || echo "Apple Container: not installed"
3which docker && docker info >/dev/null 2>&1 && echo "Docker: installed and running" || echo "Docker: not installed or not running"
If NOT on macOS (Linux, etc.)
Apple Container is macOS-only. Use Docker instead.
Tell the user:
You're on Linux, so we'll use Docker for container isolation. Let me set that up now.
Use the /convert-to-docker skill to convert the codebase to Docker, then continue to Section 3.
If on macOS
If Apple Container is already installed: Continue to Section 3.
If Apple Container is NOT installed: Ask the user:
BioClaw needs a container runtime for isolated agent execution. You have two options:
- Apple Container (default) - macOS-native, lightweight, designed for Apple silicon
- Docker - Cross-platform, widely used, works on macOS and Linux
Which would you prefer?
Option A: Apple Container
Tell the user:
Apple Container is required for running agents in isolated environments.
- Download the latest
.pkg from https://github.com/apple/container/releases
- Double-click to install
- Run
container system start to start the service
Let me know when you've completed these steps.
Wait for user confirmation, then verify:
bash
1container system start
2container --version
Note: BioClaw automatically starts the Apple Container system when it launches, so you don't need to start it manually after reboots.
Option B: Docker
Tell the user:
You've chosen Docker. Let me set that up now.
Use the /convert-to-docker skill to convert the codebase to Docker, then continue to Section 3.
Ask the user:
Do you want to use your Claude subscription (Pro/Max) or an Anthropic API key?
Option 1: Claude Subscription (Recommended)
Tell the user:
Open another terminal window and run:
claude setup-token
A browser window will open for you to log in. Once authenticated, the token will be displayed in your terminal. Either:
- Paste it here and I'll add it to
.env for you, or
- Add it to
.env yourself as CLAUDE_CODE_OAUTH_TOKEN=<your-token>
If they give you the token, add it to .env. Never echo the full token in commands or output — use the Write tool to write the .env file directly, or tell the user to add it themselves:
bash
1echo "CLAUDE_CODE_OAUTH_TOKEN=<token>" > .env
Option 2: API Key
Ask if they have an existing key to copy or need to create one.
Copy existing:
bash
1grep "^ANTHROPIC_API_KEY=" /path/to/source/.env > .env
Create new:
bash
1echo 'ANTHROPIC_API_KEY=' > .env
Tell the user to add their key from https://console.anthropic.com/
Verify:
bash
1KEY=$(grep "^ANTHROPIC_API_KEY=" .env | cut -d= -f2)
2[ -n "$KEY" ] && echo "API key configured: ${KEY:0:7}..." || echo "Missing"
4. Build Container Image
Build the BioClaw agent container:
bash
1./container/build.sh
This creates the bioclaw-agent:latest image with Node.js, Chromium, Claude Code CLI, and agent-browser.
Verify the build succeeded by running a simple test (this auto-detects which runtime you're using):
bash
1if which docker >/dev/null 2>&1 && docker info >/dev/null 2>&1; then
2 echo '{}' | docker run -i --entrypoint /bin/echo bioclaw-agent:latest "Container OK" || echo "Container build failed"
3else
4 echo '{}' | container run -i --entrypoint /bin/echo bioclaw-agent:latest "Container OK" || echo "Container build failed"
5fi
5. WhatsApp Authentication
USER ACTION REQUIRED
The auth script supports two methods: QR code scanning and pairing code (phone number). Ask the user which they prefer.
The auth script writes status to store/auth-status.txt:
already_authenticated — credentials already exist
pairing_code:<CODE> — pairing code generated, waiting for user to enter it
authenticated — successfully authenticated
failed:<reason> — authentication failed
The script automatically handles error 515 (stream error after pairing) by reconnecting — this is normal and expected during pairing code auth.
Ask the user which method to use
How would you like to authenticate WhatsApp?
- QR code in browser (Recommended) — Opens a page with the QR code to scan
- Pairing code — Enter a numeric code on your phone, no camera needed
- QR code in terminal — Run the auth command yourself in another terminal
Option A: QR Code in Browser (Recommended)
Clean any stale auth state and start auth in background:
bash
1rm -rf store/auth store/qr-data.txt store/auth-status.txt
2npm run auth
Run this with run_in_background: true.
Poll for QR data (up to 15 seconds):
bash
1for i in $(seq 1 15); do if [ -f store/qr-data.txt ]; then echo "qr_ready"; exit 0; fi; STATUS=$(cat store/auth-status.txt 2>/dev/null || echo "waiting"); if [ "$STATUS" = "already_authenticated" ]; then echo "$STATUS"; exit 0; fi; sleep 1; done; echo "timeout"
If already_authenticated, skip to the next step.
If QR data is ready, generate the QR as SVG and inject it into the HTML template:
bash
1node -e "
2const QR = require('qrcode');
3const fs = require('fs');
4const qrData = fs.readFileSync('store/qr-data.txt', 'utf8');
5QR.toString(qrData, { type: 'svg' }, (err, svg) => {
6 if (err) process.exit(1);
7 const template = fs.readFileSync('.claude/skills/setup/qr-auth.html', 'utf8');
8 fs.writeFileSync('store/qr-auth.html', template.replace('{{QR_SVG}}', svg));
9 console.log('done');
10});
11"
Then open it:
bash
1open store/qr-auth.html
Tell the user:
A browser window should have opened with the QR code. It expires in about 60 seconds.
Scan it with WhatsApp: Settings → Linked Devices → Link a Device
Then poll for completion (up to 120 seconds):
bash
1for i in $(seq 1 60); do STATUS=$(cat store/auth-status.txt 2>/dev/null || echo "waiting"); if [ "$STATUS" = "authenticated" ] || [ "$STATUS" = "already_authenticated" ]; then echo "$STATUS"; exit 0; elif echo "$STATUS" | grep -q "^failed:"; then echo "$STATUS"; exit 0; fi; sleep 2; done; echo "timeout"
- If
authenticated, success — clean up with rm -f store/qr-auth.html and continue.
- If
failed:qr_timeout, offer to retry (re-run the auth and regenerate the HTML page).
- If
failed:logged_out, delete store/auth/ and retry.
Option B: Pairing Code
Ask the user for their phone number (with country code, no + or spaces, e.g. 14155551234).
Clean any stale auth state and start:
bash
1rm -rf store/auth store/qr-data.txt store/auth-status.txt
2npx tsx src/whatsapp-auth.ts --pairing-code --phone PHONE_NUMBER
Run this with run_in_background: true.
Poll for the pairing code (up to 15 seconds):
bash
1for i in $(seq 1 15); do STATUS=$(cat store/auth-status.txt 2>/dev/null || echo "waiting"); if echo "$STATUS" | grep -q "^pairing_code:"; then echo "$STATUS"; exit 0; elif [ "$STATUS" = "authenticated" ] || [ "$STATUS" = "already_authenticated" ]; then echo "$STATUS"; exit 0; elif echo "$STATUS" | grep -q "^failed:"; then echo "$STATUS"; exit 0; fi; sleep 1; done; echo "timeout"
Extract the code from the status (e.g. pairing_code:ABC12DEF → ABC12DEF) and tell the user:
Your pairing code: CODE_HERE
- Open WhatsApp on your phone
- Tap Settings → Linked Devices → Link a Device
- Tap "Link with phone number instead"
- Enter the code: CODE_HERE
Then poll for completion (up to 120 seconds):
bash
1for i in $(seq 1 60); do STATUS=$(cat store/auth-status.txt 2>/dev/null || echo "waiting"); if [ "$STATUS" = "authenticated" ] || [ "$STATUS" = "already_authenticated" ]; then echo "$STATUS"; exit 0; elif echo "$STATUS" | grep -q "^failed:"; then echo "$STATUS"; exit 0; fi; sleep 2; done; echo "timeout"
- If
authenticated or already_authenticated, success — continue to next step.
- If
failed:logged_out, delete store/auth/ and retry.
- If
failed:515 or timeout, the 515 reconnect should handle this automatically. If it persists, the user may need to temporarily stop other WhatsApp-connected apps on the same device.
Option C: QR Code in Terminal
Tell the user to run the auth command in another terminal window:
Open another terminal and run:
cd PROJECT_PATH && npm run auth
Scan the QR code that appears, then let me know when it says "Successfully authenticated".
Replace PROJECT_PATH with the actual project path (use pwd).
Wait for the user to confirm authentication succeeded, then continue to the next step.
6. Configure Assistant Name and Main Channel
This step configures three things at once: the trigger word, the main channel type, and the main channel selection.
6a. Ask for trigger word
Ask the user:
What trigger word do you want to use? (default: Bio)
In group chats, messages starting with @TriggerWord will be sent to Claude.
In your main channel (and optionally solo chats), no prefix is needed — all messages are processed.
Store their choice for use in the steps below.
6b. Explain security model and ask about main channel type
Use the AskUserQuestion tool to present this:
Important: Your "main" channel is your admin control portal.
The main channel has elevated privileges:
- Can see messages from ALL other registered groups
- Can manage and delete tasks across all groups
- Can write to global memory that all groups can read
- Has read-write access to the entire BioClaw project
Recommendation: Use your personal "Message Yourself" chat or a solo WhatsApp group as your main channel. This ensures only you have admin control.
Question: Which setup will you use for your main channel?
Options:
- Personal chat (Message Yourself) - Recommended
- DM with a specific phone number (e.g. your other phone)
- Solo WhatsApp group (just me)
- Group with other people (I understand the security implications)
If they choose option 4, ask a follow-up:
You've chosen a group with other people. This means everyone in that group will have admin privileges over BioClaw.
Are you sure you want to proceed? The other members will be able to:
- Read messages from your other registered chats
- Schedule and manage tasks
- Access any directories you've mounted
Options:
- Yes, I understand and want to proceed
- No, let me use a personal chat or solo group instead
6c. Register the main channel
First build, then start the app briefly to connect to WhatsApp and sync group metadata. Use the Bash tool's timeout parameter (15000ms) — do NOT use the timeout shell command (it's not available on macOS). The app will be killed when the timeout fires, which is expected.
Then run briefly (set Bash tool timeout to 15000ms):
For personal chat (they chose option 1):
Personal chats are NOT synced to the database on startup — only groups are. The JID for "Message Yourself" is the bot's own number. Use the number from the WhatsApp auth step and construct the JID as {number}@s.whatsapp.net.
For DM with a specific number (they chose option 2):
Ask the user for the phone number (with country code, no + or spaces, e.g. 14155551234), then construct the JID as {number}@s.whatsapp.net.
For group (they chose option 3 or 4):
Groups are synced on startup via groupFetchAllParticipating. Query the database for recent groups:
bash
1sqlite3 store/messages.db "SELECT jid, name FROM chats WHERE jid LIKE '%@g.us' AND jid != '__group_sync__' ORDER BY last_message_time DESC LIMIT 40"
Show only the 10 most recent group names to the user and ask them to pick one. If they say their group isn't in the list, show the next batch from the results you already have. If they tell you the group name directly, look it up:
bash
1sqlite3 store/messages.db "SELECT jid, name FROM chats WHERE name LIKE '%GROUP_NAME%' AND jid LIKE '%@g.us'"
6d. Write the configuration
Once you have the JID, configure it. Use the assistant name from step 6a.
For personal chats (solo, no prefix needed), set requiresTrigger to false:
json
1{
2 "JID_HERE": {
3 "name": "main",
4 "folder": "main",
5 "trigger": "@ASSISTANT_NAME",
6 "added_at": "CURRENT_ISO_TIMESTAMP",
7 "requiresTrigger": false
8 }
9}
For groups, keep requiresTrigger as true (default).
Write to the database directly by creating a temporary registration script, or write data/registered_groups.json which will be auto-migrated on first run:
Then write data/registered_groups.json with the correct JID, trigger, and timestamp.
If the user chose a name other than Bio, also update:
groups/global/CLAUDE.md - Change "# Bio" and "You are Bio" to the new name
groups/main/CLAUDE.md - Same changes at the top
Ensure the groups folder exists:
bash
1mkdir -p groups/main/logs
Ask the user:
Do you want the agent to be able to access any directories outside the BioClaw project?
Examples: Git repositories, project folders, documents you want Claude to work on.
Note: This is optional. Without configuration, agents can only access their own group folders.
If no, create an empty allowlist to make this explicit:
bash
1mkdir -p ~/.config/bioclaw
2cat > ~/.config/bioclaw/mount-allowlist.json << 'EOF'
3{
4 "allowedRoots": [],
5 "blockedPatterns": [],
6 "nonMainReadOnly": true
7}
8EOF
9echo "Mount allowlist created - no external directories allowed"
Skip to the next step.
If yes, ask follow-up questions:
7a. Collect Directory Paths
Ask the user:
Which directories do you want to allow access to?
You can specify:
- A parent folder like
~/projects (allows access to anything inside)
- Specific paths like
~/repos/my-app
List them one per line, or give me a comma-separated list.
For each directory they provide, ask:
Should [directory] be read-write (agents can modify files) or read-only?
Read-write is needed for: code changes, creating files, git commits
Read-only is safer for: reference docs, config examples, templates
7b. Configure Non-Main Group Access
Ask the user:
Should non-main groups (other WhatsApp chats you add later) be restricted to read-only access even if read-write is allowed for the directory?
Recommended: Yes - this prevents other groups from modifying files even if you grant them access to a directory.
7c. Create the Allowlist
Create the allowlist file based on their answers:
bash
1mkdir -p ~/.config/bioclaw
Then write the JSON file. Example for a user who wants ~/projects (read-write) and ~/docs (read-only) with non-main read-only:
bash
1cat > ~/.config/bioclaw/mount-allowlist.json << 'EOF'
2{
3 "allowedRoots": [
4 {
5 "path": "~/projects",
6 "allowReadWrite": true,
7 "description": "Development projects"
8 },
9 {
10 "path": "~/docs",
11 "allowReadWrite": false,
12 "description": "Reference documents"
13 }
14 ],
15 "blockedPatterns": [],
16 "nonMainReadOnly": true
17}
18EOF
Verify the file:
bash
1cat ~/.config/bioclaw/mount-allowlist.json
Tell the user:
Mount allowlist configured. The following directories are now accessible:
~/projects (read-write)
~/docs (read-only)
Security notes:
- Sensitive paths (
.ssh, .gnupg, .aws, credentials) are always blocked
- This config file is stored outside the project, so agents cannot modify it
- Changes require restarting the BioClaw service
To grant a group access to a directory, add it to their config in data/registered_groups.json:
json
1"containerConfig": {
2 "additionalMounts": [
3 { "hostPath": "~/projects/my-app" }
4 ]
5}
The folder appears inside the container at /workspace/extra/<folder-name> (derived from the last segment of the path). Add "readonly": false for write access, or "containerPath": "custom-name" to override the default name.
Generate the plist file with correct paths automatically:
bash
1NODE_PATH=$(which node)
2PROJECT_PATH=$(pwd)
3HOME_PATH=$HOME
4
5cat > ~/Library/LaunchAgents/com.bioclaw.plist << EOF
6<?xml version="1.0" encoding="UTF-8"?>
7<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
8<plist version="1.0">
9<dict>
10 <key>Label</key>
11 <string>com.bioclaw</string>
12 <key>ProgramArguments</key>
13 <array>
14 <string>${NODE_PATH}</string>
15 <string>${PROJECT_PATH}/dist/index.js</string>
16 </array>
17 <key>WorkingDirectory</key>
18 <string>${PROJECT_PATH}</string>
19 <key>RunAtLoad</key>
20 <true/>
21 <key>KeepAlive</key>
22 <true/>
23 <key>EnvironmentVariables</key>
24 <dict>
25 <key>PATH</key>
26 <string>/usr/local/bin:/usr/bin:/bin:${HOME_PATH}/.local/bin</string>
27 <key>HOME</key>
28 <string>${HOME_PATH}</string>
29 </dict>
30 <key>StandardOutPath</key>
31 <string>${PROJECT_PATH}/logs/bioclaw.log</string>
32 <key>StandardErrorPath</key>
33 <string>${PROJECT_PATH}/logs/bioclaw.error.log</string>
34</dict>
35</plist>
36EOF
37
38echo "Created launchd plist with:"
39echo " Node: ${NODE_PATH}"
40echo " Project: ${PROJECT_PATH}"
Build and start the service:
bash
1npm run build
2mkdir -p logs
3launchctl load ~/Library/LaunchAgents/com.bioclaw.plist
Verify it's running:
bash
1launchctl list | grep bioclaw
9. Test
Tell the user (using the assistant name they configured):
Send @ASSISTANT_NAME hello in your registered chat.
Tip: In your main channel, you don't need the @ prefix — just send hello and the agent will respond.
Check the logs:
bash
1tail -f logs/bioclaw.log
The user should receive a response in WhatsApp.
Troubleshooting
Service not starting: Check logs/bioclaw.error.log
Container agent fails with "Claude Code process exited with code 1":
- Ensure the container runtime is running:
- Apple Container:
container system start
- Docker:
docker info (start Docker Desktop on macOS, or sudo systemctl start docker on Linux)
- Check container logs:
cat groups/main/logs/container-*.log | tail -50
No response to messages:
- Verify the trigger pattern matches (e.g.,
@AssistantName at start of message)
- Main channel doesn't require a prefix — all messages are processed
- Personal/solo chats with
requiresTrigger: false also don't need a prefix
- Check that the chat JID is in the database:
sqlite3 store/messages.db "SELECT * FROM registered_groups"
- Check
logs/bioclaw.log for errors
Messages sent but not received by BioClaw (DMs):
- WhatsApp may use LID (Linked Identity) JIDs for DMs instead of phone numbers
- Check logs for
Translated LID to phone JID — if missing, the LID isn't being resolved
- The
translateJid method in src/channels/whatsapp.ts uses sock.signalRepository.lidMapping.getPNForLID() to resolve LIDs
- Verify the registered JID doesn't have a device suffix (should be
number@s.whatsapp.net, not number:0@s.whatsapp.net)
WhatsApp disconnected:
- The service will show a macOS notification
- Run
npm run auth to re-authenticate
- Restart the service:
launchctl kickstart -k gui/$(id -u)/com.bioclaw
Unload service:
bash
1launchctl unload ~/Library/LaunchAgents/com.bioclaw.plist