|
14 | 14 | <a href="https://x.com/SipeedIO"><img src="https://img.shields.io/badge/X_(Twitter)-SipeedIO-black?style=flat&logo=x&logoColor=white" alt="Twitter"></a> |
15 | 15 | </p> |
16 | 16 |
|
17 | | - [中文](README.zh.md) | [日本語](README.ja.md) | **English** |
| 17 | + [中文](README.zh.md) | [日本語](README.ja.md) | [Português](README.pt-br.md) | [Tiếng Việt](README.vi.md) | **English** |
18 | 18 | </div> |
19 | 19 |
|
20 | 20 | --- |
|
49 | 49 |
|
50 | 50 |
|
51 | 51 | ## 📢 News |
52 | | -2026-02-16 🎉 PicoClaw hit 12K stars in one week! Thank you all for your support! PicoClaw is growing faster than we ever imagined. Given the high volume of PRs, we urgently need community maintainers. Our volunteer roles and roadmap are officially posted [here](doc/picoclaw_community_roadmap_260216.md) —we can’t wait to have you on board! |
| 52 | +2026-02-16 🎉 PicoClaw hit 12K stars in one week! Thank you all for your support! PicoClaw is growing faster than we ever imagined. Given the high volume of PRs, we urgently need community maintainers. Our volunteer roles and roadmap are officially posted [here](docs/picoclaw_community_roadmap_260216.md) —we can’t wait to have you on board! |
53 | 53 |
|
54 | 54 | 2026-02-13 🎉 PicoClaw hit 5000 stars in 4days! Thank you for the community! There are so many PRs&issues come in (during Chinese New Year holidays), we are finalizing the Project Roadmap and setting up the Developer Group to accelerate PicoClaw's development. |
55 | 55 | 🚀 Call to Action: Please submit your feature requests in GitHub Discussions. We will review and prioritize them during our upcoming weekly meeting. |
|
99 | 99 | </tr> |
100 | 100 | </table> |
101 | 101 |
|
| 102 | +### 📱 Run on old Android Phones |
| 103 | +Give your decade-old phone a second life! Turn it into a smart AI Assistant with PicoClaw. Quick Start: |
| 104 | +1. **Install Termux** (Available on F-Droid or Google Play). |
| 105 | +2. **Execute cmds** |
| 106 | +```bash |
| 107 | +# Note: Replace v0.1.1 with the latest version from the Releases page |
| 108 | +wget https://github.com/sipeed/picoclaw/releases/download/v0.1.1/picoclaw-linux-arm64 |
| 109 | +chmod +x picoclaw-linux-arm64 |
| 110 | +pkg install proot |
| 111 | +termux-chroot ./picoclaw-linux-arm64 onboard |
| 112 | +``` |
| 113 | +And then follow the instructions in the "Quick Start" section to complete the configuration! |
| 114 | +<img src="assets/termux.jpg" alt="PicoClaw" width="512"> |
| 115 | + |
102 | 116 | ### 🐜 Innovative Low-Footprint Deploy |
103 | 117 |
|
104 | 118 | PicoClaw can be deployed on almost any Linux device! |
@@ -269,7 +283,7 @@ Talk to your picoclaw through Telegram, Discord, DingTalk, or LINE |
269 | 283 | "telegram": { |
270 | 284 | "enabled": true, |
271 | 285 | "token": "YOUR_BOT_TOKEN", |
272 | | - "allowFrom": ["YOUR_USER_ID"] |
| 286 | + "allow_from": ["YOUR_USER_ID"] |
273 | 287 | } |
274 | 288 | } |
275 | 289 | } |
@@ -312,7 +326,7 @@ picoclaw gateway |
312 | 326 | "discord": { |
313 | 327 | "enabled": true, |
314 | 328 | "token": "YOUR_BOT_TOKEN", |
315 | | - "allowFrom": ["YOUR_USER_ID"] |
| 329 | + "allow_from": ["YOUR_USER_ID"] |
316 | 330 | } |
317 | 331 | } |
318 | 332 | } |
@@ -665,6 +679,16 @@ The subagent has access to tools (message, web_search, etc.) and can communicate |
665 | 679 | | `deepseek(To be tested)` | LLM (DeepSeek direct) | [platform.deepseek.com](https://platform.deepseek.com) | |
666 | 680 | | `groq` | LLM + **Voice transcription** (Whisper) | [console.groq.com](https://console.groq.com) | |
667 | 681 |
|
| 682 | +### Provider Architecture |
| 683 | + |
| 684 | +PicoClaw routes providers by protocol family: |
| 685 | + |
| 686 | +- OpenAI-compatible protocol: OpenRouter, OpenAI-compatible gateways, Groq, Zhipu, and vLLM-style endpoints. |
| 687 | +- Anthropic protocol: Claude-native API behavior. |
| 688 | +- Codex/OAuth path: OpenAI OAuth/token authentication route. |
| 689 | + |
| 690 | +This keeps the runtime lightweight while making new OpenAI-compatible backends mostly a config operation (`api_base` + `api_key`). |
| 691 | + |
668 | 692 | <details> |
669 | 693 | <summary><b>Zhipu</b></summary> |
670 | 694 |
|
@@ -760,6 +784,9 @@ picoclaw agent -m "Hello" |
760 | 784 | "enabled": true, |
761 | 785 | "max_results": 5 |
762 | 786 | } |
| 787 | + }, |
| 788 | + "cron": { |
| 789 | + "exec_timeout_minutes": 5 |
763 | 790 | } |
764 | 791 | }, |
765 | 792 | "heartbeat": { |
|
0 commit comments