From 18bdbef815c1dcc1e537e110417fab839c8ab09b Mon Sep 17 00:00:00 2001 From: Harshdeep Sharma <24f2006619@ds.study.iitm.ac.in> Date: Wed, 11 Feb 2026 17:39:13 +0530 Subject: [PATCH 1/2] Fix typos and update API keys in README --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 1cf7173..534e5aa 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ ### 🐜 Innovative Low-Footprint Deploy PicoClaw can be deployed on almost any Linux device! -- $9.9 [LicheeRV-Nano](https://www.aliexpress.com/item/1005006519668532.html) E(Ethernet) or W(WiFi6) version, for Minimal Home Assitant +- $9.9 [LicheeRV-Nano](https://www.aliexpress.com/item/1005006519668532.html) E(Ethernet) or W(WiFi6) version, for Minimal Home Assistant - $30~50 [NanoKVM](https://www.aliexpress.com/item/1005007369816019.html), or $100 [NanoKVM-Pro](https://www.aliexpress.com/item/1005010048471263.html) for Automated Server Maintenance - $50 [MaixCAM](https://www.aliexpress.com/item/1005008053333693.html) or $100 [MaixCAM2](https://www.kickstarter.com/projects/zepan/maixcam2-build-your-next-gen-4k-ai-camera) for Smart Monitoring @@ -144,7 +144,7 @@ picoclaw onboard "providers": { "openrouter": { "api_key": "xxx", - "api_base": "https://open.bigmodel.cn/api/paas/v4" + "api_base": "https://openrouter.ai/api/v1" } }, "tools": { @@ -165,7 +165,7 @@ picoclaw onboard > **Note**: See `config.example.json` for a complete configuration template. -**3. Chat** +**4. Chat** ```bash picoclaw agent -m "What is 2+2?" @@ -396,17 +396,17 @@ picoclaw agent -m "Hello" }, "providers": { "openrouter": { - "apiKey": "sk-or-v1-xxx" + "api_key": "sk-or-v1-xxx" }, "groq": { - "apiKey": "gsk_xxx" + "api_key": "gsk_xxx" } }, "channels": { "telegram": { "enabled": true, "token": "123456:ABC...", - "allowFrom": ["123456789"] + "allow_from": ["123456789"] }, "discord": { "enabled": true, @@ -418,11 +418,11 @@ picoclaw agent -m "Hello" }, "feishu": { "enabled": false, - "appId": "cli_xxx", - "appSecret": "xxx", - "encryptKey": "", - "verificationToken": "", - "allowFrom": [] + "app_id": "cli_xxx", + "app_secret": "xxx", + "encrypt_key": "", + "verification_token": "", + "allow_from": [] }, "qq": { "enabled": false, @@ -434,7 +434,7 @@ picoclaw agent -m "Hello" "tools": { "web": { "search": { - "apiKey": "BSA..." + "api_key": "BSA..." } } } From ae9cfc2f317a79da57a4b75a93695751d7c9efd8 Mon Sep 17 00:00:00 2001 From: Harshdeep Sharma <24f2006619@ds.study.iitm.ac.in> Date: Wed, 11 Feb 2026 20:41:40 +0800 Subject: [PATCH 2/2] Fix typos and update API keys in README --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d2c9456..9cc2354 100644 --- a/Makefile +++ b/Makefile @@ -162,13 +162,12 @@ help: @echo "" @echo "Examples:" @echo " make build # Build for current platform" - @echo " make install # Install to /usr/local/bin" - @echo " make install-user # Install to ~/.local/bin" + @echo " make install # Install to ~/.local/bin" @echo " make uninstall # Remove from /usr/local/bin" @echo " make install-skills # Install skills to workspace" @echo "" @echo "Environment Variables:" - @echo " INSTALL_PREFIX # Installation prefix (default: /usr/local)" + @echo " INSTALL_PREFIX # Installation prefix (default: ~/.local)" @echo " WORKSPACE_DIR # Workspace directory (default: ~/.picoclaw/workspace)" @echo " VERSION # Version string (default: git describe)" @echo ""