5-Minute Quickstart
Get PicoCluster Claw running in under five minutes — hardware appliance or software install.
Hardware: PicoCluster Claw appliance
Section titled “Hardware: PicoCluster Claw appliance”-
Power on — plug in both nodes. ClusterClaw (RPi 5) and ClusterCrush (Jetson Orin Nano Super) boot automatically.
-
Connect — both nodes join your local network via Ethernet. Find their IPs from your router or use the mDNS hostname:
-
Verify — check that OpenClaw is running on Claw and Ollama is running on Crush:
Terminal window # On clusterclawopenclaw status# On clustercrushollama list -
Chat — open ThreadWeaver in your browser at
http://clusterclaw.local:3000. Select a local model from the Crush node and start chatting. -
Run an agent — from your workstation, point OpenClaw at the cluster:
Terminal window openclaw --hub http://clusterclaw.local:8080 "summarize my project README"
Software: Mac / Linux / Windows
Section titled “Software: Mac / Linux / Windows”Install the full stack on your own machine using Docker Compose.
Prerequisites
Section titled “Prerequisites”- Docker Desktop (Mac/Windows) or Docker Engine + Compose (Linux)
- Ollama installed and running locally (or remote)
- 8 GB RAM recommended
Install
Section titled “Install”git clone https://github.com/picocluster/picocluster-claw.gitcd picocluster-claw
# Macdocker compose -f docker-compose.yml -f overlays/mac.yml up -d
# Linuxdocker compose -f docker-compose.yml -f overlays/linux.yml up -d
# Windows (WSL2)docker compose -f docker-compose.yml -f overlays/windows.yml up -dThreadWeaver will be at http://localhost:3000.
Configure
Section titled “Configure”Edit .env (created from .env.example) to set your model preferences and any cloud API keys:
cp .env.example .env# Edit .env — set OLLAMA_BASE_URL, optional OPENAI_API_KEY, etc.Next steps
Section titled “Next steps”- MCP tools reference — all 28 tools explained
- FAQ — common questions answered
- Examples — example prompts for OpenClaw agents