LibreFang vs The Landscape

Benchmarks: Measured, Not Marketed

All data from official documentation and public repositories — February 2026.

Cold Start Time (lower is better)

ZeroClaw   ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░   10 ms
LibreFang  ██████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░  180 ms
LangGraph  █████████████████░░░░░░░░░░░░░░░░░░░░░░░░░  2.5 sec
CrewAI     ████████████████████░░░░░░░░░░░░░░░░░░░░░░  3.0 sec
AutoGen    ██████████████████████████░░░░░░░░░░░░░░░░░  4.0 sec
OpenClaw   █████████████████████████████████████████░░  5.98 sec

Idle Memory Usage (lower is better)

ZeroClaw   █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░    5 MB
LibreFang  ████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░   40 MB
LangGraph  ██████████████████░░░░░░░░░░░░░░░░░░░░░░░░░  180 MB
CrewAI     ████████████████████░░░░░░░░░░░░░░░░░░░░░░░  200 MB
AutoGen    █████████████████████████░░░░░░░░░░░░░░░░░░  250 MB
OpenClaw   ████████████████████████████████████████░░░░  394 MB

Install Size (lower is better)

ZeroClaw   █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░  8.8 MB
LibreFang  ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░   32 MB
CrewAI     ████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░  100 MB
LangGraph  ████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░  150 MB
AutoGen    ████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░  200 MB
OpenClaw   ████████████████████████████████████████░░░░  500 MB

Security Systems (higher is better)

LibreFang  ████████████████████████████████████████████   16
ZeroClaw   ███████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░    6
OpenClaw   ████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░    3
AutoGen    █████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░    2
LangGraph  █████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░    2
CrewAI     ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░    1

Channel Adapters (higher is better)

LibreFang  ████████████████████████████████████████████   40
ZeroClaw   ███████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░   15
OpenClaw   █████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░   13
CrewAI     ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░    0
AutoGen    ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░    0
LangGraph  ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░    0

LLM Providers (higher is better)

ZeroClaw   ████████████████████████████████████████████   28
LibreFang  ██████████████████████████████████████████░░   27
LangGraph  ██████████████████████░░░░░░░░░░░░░░░░░░░░░   15
CrewAI     ██████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░   10
OpenClaw   ██████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░   10
AutoGen    ███████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░    8

Feature-by-Feature Comparison

FeatureLibreFangOpenClawZeroClawCrewAIAutoGenLangGraph
LanguageRustTypeScriptRustPythonPythonPython
Autonomous Hands14 built-inNoneNoneNoneNoneNone
Security Layers16 discrete3 basic6 layers1 basicDockerAES enc.
Agent SandboxWASM dual-meteredNoneAllowlistsNoneDockerNone
Channel Adapters401315000
Built-in Tools53 + MCP + A2A50+12PluginsMCPLC tools
MemorySQLite + vectorFile-basedSQLite FTS54-layerExternalCheckpoints
Desktop AppTauri 2.0NoneNoneNoneStudioNone
Audit TrailMerkle hash-chainLogsLogsTracingLogsCheckpoints
Cold Start<200ms~6s~10ms~3s~4s~2.5s
Install Size~32 MB~500 MB~8.8 MB~100 MB~200 MB~150 MB
LicenseMITMITMITMITMITMIT

16 Security Systems — Defense in Depth

Every layer is independently testable and operates without a single point of failure.

#SystemWhat It Does
1WASM Dual-Metered SandboxTool code runs in WebAssembly with fuel metering + epoch interruption. A watchdog thread kills runaway code.
2Merkle Hash-Chain Audit TrailEvery action is cryptographically linked to the previous one. Tamper with one entry and the entire chain breaks.
3Information Flow Taint TrackingLabels propagate through execution — secrets are tracked from source to sink.
4Ed25519 Signed Agent ManifestsEvery agent identity and capability set is cryptographically signed.
5SSRF ProtectionBlocks private IPs, cloud metadata endpoints, and DNS rebinding attacks.
6Secret ZeroizationZeroizing<String> auto-wipes API keys from memory the instant they're no longer needed.
7OFP Mutual AuthenticationHMAC-SHA256 nonce-based, constant-time verification for P2P networking.
8Capability GatesRole-based access control — agents declare required tools, the kernel enforces it.
9Security HeadersCSP, X-Frame-Options, HSTS, X-Content-Type-Options on every response.
10Health Endpoint RedactionPublic health check returns minimal info. Full diagnostics require authentication.
11Subprocess Sandboxenv_clear() + selective variable passthrough. Process tree isolation with cross-platform kill.
12Prompt Injection ScannerDetects override attempts, data exfiltration patterns, and shell reference injection in skills.
13Loop GuardSHA256-based tool call loop detection with circuit breaker. Handles ping-pong patterns.
14Session Repair7-phase message history validation and automatic recovery from corruption.
15Path Traversal PreventionCanonicalization with symlink escape prevention. ../ doesn't work here.
16GCRA Rate LimiterCost-aware token bucket rate limiting with per-IP tracking and stale cleanup.