One-click deployment tools for the Clawland edge AI ecosystem.
clawland-deploy provides automated deployment recipes for all Claw family agents (picclaw, moltclaw, nanoclaw) across different environments — from a single $10 board to a fleet of hundreds.
| Method | Target | Use Case |
|---|---|---|
| Docker Compose | Any Linux host | Single-node or dev setup |
| Ansible Playbook | VPS / bare metal | Production multi-node fleet |
| Pre-built Images | SD card flash | Zero-config edge deployment |
| systemd Units | Linux boards | Lightweight daemon setup |
git clone https://github.com/Clawland-AI/clawland-deploy.git
cd clawland-deploy/docker
# Deploy picclaw edge agent
docker compose -f picclaw.yml up -d
# Deploy moltclaw cloud gateway
docker compose -f moltclaw.yml up -dcd ansible
# Edit inventory with your edge nodes
vim inventory/hosts.yml
# Deploy picclaw to all edge nodes
ansible-playbook -i inventory/hosts.yml playbooks/picclaw.yml
# Deploy moltclaw cloud gateway
ansible-playbook -i inventory/hosts.yml playbooks/moltclaw.yml- Download the latest image from Releases
- Flash to SD card:
dd if=picclaw-licheerv.img of=/dev/sdX bs=4M - Insert into board, power on — picclaw starts automatically
clawland-deploy/
├── docker/ # Docker Compose files
│ ├── picclaw.yml # Edge agent
│ ├── moltclaw.yml # Cloud gateway
│ ├── nanoclaw.yml # Mid-weight agent
│ └── fleet-stack.yml # Full fleet stack
├── ansible/ # Ansible playbooks
│ ├── inventory/
│ │ └── hosts.yml # Node inventory template
│ ├── playbooks/
│ │ ├── picclaw.yml # Deploy picclaw
│ │ ├── moltclaw.yml # Deploy moltclaw
│ │ └── fleet.yml # Deploy full fleet
│ └── roles/
│ ├── common/ # Base OS setup
│ ├── picclaw/ # picclaw role
│ └── moltclaw/ # moltclaw role
├── images/ # Pre-built image configs
│ ├── licheerv-nano/ # LicheeRV-Nano image
│ ├── milkv-duo/ # Milk-V Duo image
│ └── raspberry-pi/ # Raspberry Pi image
├── systemd/ # systemd service units
│ ├── picclaw.service
│ └── moltclaw.service
└── scripts/ # Helper scripts
├── setup-edge.sh # One-line edge setup
└── setup-cloud.sh # One-line cloud setup
| Board | Agent | Image Available |
|---|---|---|
| LicheeRV-Nano ($10) | picclaw | Planned |
| Milk-V Duo ($9) | picclaw | Planned |
| Raspberry Pi 4/5 | nanoclaw / picclaw | Planned |
| Any x86/ARM Linux | moltclaw | Docker |
| Cloud VM | moltclaw | Docker / Ansible |
- picclaw — Edge AI Agent
- moltclaw — Cloud AI Gateway
- clawland-fleet — Fleet orchestration
- clawland-kits — Hardware sensor kits
See CONTRIBUTING.md for guidelines. Deployment improvements earn contribution points toward the quarterly Revenue Pool.
Apache 2.0 — See LICENSE