Esta página se muestra en inglés. Una traducción al español está en curso.
ScriptsMay 25, 2026·3 min de lectura

IronClaw — Privacy-First Agent Operating System

An agent operating system built by NEAR AI that emphasizes privacy, security, and extensibility. IronClaw provides a sandboxed runtime for autonomous AI agents with WebAssembly-based isolation.

Listo para agents

Este activo puede ser leído e instalado directamente por agents

TokRepo expone un comando CLI universal, contrato de instalación, metadata JSON, plan según adaptador y contenido raw para que los agents evalúen compatibilidad, riesgo y próximos pasos.

Native · 98/100Política: permitir
Superficie agent
Cualquier agent MCP/CLI
Tipo
Skill
Instalación
Single
Confianza
Confianza: Established
Entrada
IronClaw Overview
Comando CLI universal
npx tokrepo install af5ce8d5-57f1-11f1-9bc6-00163e2b0d79

Introduction

IronClaw is an agent operating system from NEAR AI that provides a secure, extensible runtime for autonomous AI agents. Built in Rust with WebAssembly sandboxing, it ensures that agents execute within strict security boundaries while maintaining the flexibility to interact with external tools and data sources.

What IronClaw Does

  • Provides a sandboxed execution environment for AI agents using WebAssembly
  • Enforces capability-based security so agents can only access explicitly granted resources
  • Supports CodeAct-style agent interactions with file systems and tools
  • Manages agent lifecycle including startup, execution, and graceful termination
  • Offers an extensible plugin system for adding custom capabilities

Architecture Overview

IronClaw uses a layered architecture with a Rust core that manages agent processes inside WebAssembly sandboxes. The WASM runtime provides memory isolation and deterministic execution. A capability system controls what each agent can access: file I/O, network calls, and subprocess execution are all gated by explicit permissions. The plugin layer allows extending agent capabilities without modifying the core.

Self-Hosting & Configuration

  • Build from source with the Rust toolchain (stable channel)
  • Configure agent permissions via a TOML manifest file per agent
  • Set resource limits (memory, CPU time, file system scope) in the runtime configuration
  • Plugins are loaded from a designated directory at startup
  • Logging output can be directed to files or standard output

Key Features

  • WebAssembly-based sandboxing for strong agent isolation
  • Capability-based permission model for fine-grained access control
  • Built in Rust for memory safety and performance
  • Extensible plugin architecture for custom tools
  • Compatible with CodeAct and ReAct agent patterns

Comparison with Similar Tools

  • E2B — cloud-hosted sandboxes; IronClaw runs locally with WASM isolation
  • OpenShell (NVIDIA) — similar local agent runtime; IronClaw uses WASM for stronger isolation
  • Docker-based sandboxes — heavier weight; IronClaw's WASM sandboxes start in milliseconds
  • Daytona — cloud-first dev environments; IronClaw is a local-first agent OS

FAQ

Q: What is the performance overhead of WASM sandboxing? A: Minimal for I/O-bound agent tasks. The WASM runtime adds single-digit millisecond overhead per tool call.

Q: Can agents access the internet? A: Only if the network capability is explicitly granted in the agent's permission manifest.

Q: Which AI models can agents use? A: IronClaw is model-agnostic. Agents call external model APIs or local inference servers through granted capabilities.

Q: Is it production-ready? A: IronClaw is under active development. It is usable for experimentation and development but the API surface may change.

Sources

Discusión

Inicia sesión para unirte a la discusión.
Aún no hay comentarios. Sé el primero en compartir tus ideas.

Activos relacionados