22 projects. Not sure which one to pick? Start here. 22 个项目,不知道选哪个?从这里开始。
Answer one question: what do you want to do? 回答一个问题:你想用 AI agent 做什么?
| Your goal 你的目标 | Best choice 推荐项目 | Why 原因 |
|---|---|---|
| Full-featured AI assistant, no limits 功能最全的 AI 助手 | OpenClaw | 50+ integrations, most mature 50+ 集成,最成熟 |
| Enterprise AI agent with NVIDIA GPU + security NVIDIA 企业级 AI agent 部署 | NemoClaw | NVIDIA-optimized, E2E encryption, 1-click deploy NVIDIA 优化,端对端加密,一键部署 |
| Lightweight, runs on Raspberry Pi or Docker 轻量版,在树莓派或 Docker 上运行 | NanoClaw | Only 15 source files, sandbox-friendly 仅 15 个文件,沙箱友好 |
| No runtime, just download and run 不想安装运行时,直接下载运行 | PicoClaw or ZeroClaw | Pre-compiled single binary, no Node.js/Python needed 预编译单文件,无需 Node.js/Python |
| Telegram bot + scheduled automation Telegram 机器人 + 定时自动化 | BabyClaw | Single file, Claude Agent SDK, Telegram-focused 单文件,Claude Agent SDK,偏 Telegram |
| Security-first, private voice/text interactions 安全优先,隐私语音/文字交互 | SafeClaw or IronClaw | SafeClaw = Node.js runtime; IronClaw = Rust binary SafeClaw = Node.js 运行时;IronClaw = Rust 二进制 |
| Multiple AI agents working together 多个 AI agent 协同工作 | TinyClaw | Built for multi-team, multi-workspace workflows 专为多团队、多工作区工作流构建 |
| Research assistant — writes reports, takes notes 研究助手,写报告、记笔记 | HermitClaw or AngelClaw | Continuous research and report writing 持续研究和报告撰写 |
| AI on tiny hardware (ESP32 microcontroller) 在 ESP32 等微型硬件上运行 AI | ZClaw or MimiClaw | Firmware for embedded devices, no OS needed 嵌入式设备固件,无需操作系统 |
| Android mobile AI agent Android 移动端 AI agent | DroidClaw | Mobile-first, touch-optimized 移动优先,触屏优化 |
| Minimal binary, ~4MB, security isolated 极小二进制约 4MB,安全隔离 | ZeptoClaw | Ultra-light Rust binary, one-click OpenClaw migration 极轻量 Rust 二进制,一键迁移 OpenClaw |
| AI agent for edge hardware servers 边缘硬件上的 AI agent daemon | SubZeroClaw | Skill-driven daemon, runs on constrained devices Skill-driven daemon,在受限设备上持久运行 |
What each project does, who it's for, and how it differs. 每个项目的用途、目标用户以及与其他项目的区别。
Plain-English explanations of every tool you might need. No CS degree required. 通俗易懂地解释你可能需要的每个工具。不需要计算机学位。
Node.js lets your computer run JavaScript programs outside of a web browser. Think of it like installing a new language on your computer. Most Claw projects need it because they're written in JavaScript/TypeScript.
Node.js 让你的电脑在浏览器之外运行 JavaScript 程序。把它想象成在电脑上安装一种新语言。大多数 Claw 项目都需要它,因为它们是用 JavaScript/TypeScript 编写的。
npm (Node Package Manager) is a tool for downloading and managing code libraries that Node.js programs depend on. You don't install it separately — it comes bundled with Node.js. When you run npm install, it downloads everything a project needs.
npm(Node 包管理器)是下载和管理 Node.js 程序依赖代码库的工具。不需要单独安装——它随 Node.js 捆绑安装。运行 npm install 时,它会下载项目所需的一切。
Python is a popular programming language. Some Claw projects are written in Python and need the Python runtime to run. You install it once, and then Python programs can run on your machine. Make sure you install Python 3.11 or newer.
Python 是一种流行的编程语言。某些 Claw 项目用 Python 编写,需要 Python 运行时来运行。安装一次,Python 程序就可以在你的机器上运行。请确保安装 Python 3.11 或更新版本。
Go (also called Golang) is a programming language made by Google. PicoClaw is written in Go. You don't need to install Go if you download the pre-compiled PicoClaw binary from ClawDrop — it runs directly. You only need Go if you want to build PicoClaw from its source code yourself.
Go(也称 Golang)是 Google 开发的编程语言。PicoClaw 用 Go 编写。如果你从 ClawDrop 下载预编译的 PicoClaw 二进制文件,不需要安装 Go——可以直接运行。只有在想自己从源码构建 PicoClaw 时才需要 Go。
Rust is a fast, safe systems programming language. Cargo is Rust's package manager and build tool (like npm for Node.js). Several Claw projects (ZeroClaw, IronClaw, MicroClaw, SubZeroClaw, ZeptoClaw, NemoClaw) are written in Rust. You don't need Rust if you download the pre-compiled binaries from ClawDrop.
Rust 是一种快速、安全的系统编程语言。Cargo 是 Rust 的包管理器和构建工具(类似 Node.js 的 npm)。多个 Claw 项目用 Rust 编写。如果你从 ClawDrop 下载预编译的二进制文件,不需要 Rust。
Zig is a minimal, low-level programming language focused on performance and portability. NullClaw is written in Zig to achieve its tiny 678KB size. You don't need Zig if you download the NullClaw binary from ClawDrop.
Zig 是一种专注于性能和可移植性的极简低级编程语言。NullClaw 用 Zig 编写,实现了仅 678KB 的超小体积。如果从 ClawDrop 下载 NullClaw 二进制文件,不需要 Zig。
Docker lets you run programs in isolated "containers" — like a virtual machine but much lighter. NanoClaw is designed to work well in Docker containers. Docker is optional — you can run NanoClaw directly without it.
Docker 让你在隔离的"容器"中运行程序——类似虚拟机但轻量得多。NanoClaw 专门设计为在 Docker 容器中良好运行。Docker 是可选的——你也可以不用 Docker 直接运行 NanoClaw。