PicoClaw is an open-source command-line coding agent developed by Sipeed and community contributors. Written in Go, it is engineered for lightweight footprint, fast execution, and direct terminal-driven software development workflows. In day-to-day operation, PicoClaw interacts with codebases directly through the CLI, orchestrating automated file inspection, editing, and task resolution. It supports custom OpenAI-compatible API endpoints, specialized providers such as NEAR AI Cloud, and popular LLM backends. Developers can configure fallback model chains directly to ensure continuity when primary providers experience rate limits or outages. PicoClaw differentiates itself through its minimal resource overhead and streamlined configuration management. Instead of relying on heavy graphical frontends or complex multi-container setups, it offers native CLI commands like `picoclaw model add` to discover and register remote or local LLM endpoints dynamically from base URLs. Distributed as open source under the Sipeed GitHub repository, PicoClaw is free to use and modify under standard open-source licensing, requiring only user-provided API keys or local inference endpoints.
Tags: AI, ai agent, cli, developer tools, OpenSource, productivity
picoclaw model add to inspect available models and set defaults. - Configurable Fallback Chains — Set up multi-provider model fallback sequences to gracefully handle rate limits or API downtime. - Multi-Provider Ecosystem — Native support for cloud AI providers including NEAR AI Cloud alongside standard LLM backends. - Go-Based Architecture — Implemented in Go for fast startup times, low system memory usage, and simple single-binary distribution. - Docker Deployment Options — Includes containerized setup files for isolated environment execution and repeatable development pipelines.PicoClaw is designed for developers, systems engineers, and power users who prefer minimal, fast CLI tools and want direct control over custom or self-hosted LLM endpoints. It is less suitable for users looking for integrated visual IDE extensions or graphical chat interfaces.
bash git clone https://github.com/sipeed/picoclaw.git cd picoclaw go build -o picoclaw ./cmd/picoclawbash # Add custom OpenAI-compatible provider ./picoclaw model add -b https://api.openai.com/v1 -k YOUR_API_KEY -m gpt-4o -n default # Or add a local endpoint ./picoclaw model add -b http://localhost:8000/v1 -k none -m local-model -n localbash # Inspect codebase and implement a feature picoclaw "Add unit tests for the HTTP response parser in cmd/"Part of CLI Coding Agents
Categories: AI Coding Agents, Assistant, Developer Tools, Productivity