Sign inSign up

qida/picoclaw

By qida

Updated 3 days ago

picoclaw: URL: https://github.com/sipeed/picoclaw Build Date: 2026-09-14 01:53:41

Image
Machine learning & AI
1

6.5K

qida/picoclaw repository overview

1. First-run configuration initialization
docker run -d \
    --name picoclaw \
    --restart unless-stopped \
    --privileged=true \
    -e TZ=Asia/Shanghai \
    qida/picoclaw:latest
2. Copy the config file from the Docker container to a custom host directory.
mkdir /picoclaw
docker cp picoclaw:/home/picoclaw/.picoclaw /picoclaw
chmod -R 777 /picoclaw
3. Try running it with data persistence.
docker rm -f picoclaw
docker run -d --name picoclaw \
    --restart unless-stopped \
    --privileged=true \
    -e TZ=Asia/Shanghai \
    -v /picoclaw/workspace:/home/picoclaw/.picoclaw/workspace \
    -v /picoclaw/config.json:/home/picoclaw/.picoclaw/config.json \
    qida/picoclaw:latest
4. View real-time logs
docker logs --follow picoclaw
The first run will result in the following error:
Error: error creating provider: model "" not found in model_list: model "" not found in model_list or providers
Usage:
  picoclaw gateway [flags]

Aliases:
  gateway, g

Flags:
  -d, --debug   Enable debug logging
  -h, --help    help for gateway

You need to edit the configuration file.

vi /picoclaw/config.json

Tag summary

Content type

Image

Digest

sha256:3585632cd

Size

19.1 MB

Last updated

3 days ago

docker pull qida/picoclaw