Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1,234 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wetware

CI

Wetware lets you safely run code you didn't write, don't trust, and cannot see: third-party MCP servers, code your LLM produced at runtime, tools other agents handed you across the swarm. It's a decentralized operating system for multi-tool agent swarms.

Cells are WASM processes that run with zero ambient authority. Their only access to the world is through explicitly granted, typed Cap'n Proto capabilities. Those references can be attenuated to a method allowlist; the restriction travels with the reference across local and libp2p RPC boundaries and recursively confines capabilities returned through it. Argument- and resource-level filtering remain separate, application-level designs. Least privilege is enforced by the runtime, not delegated to a prompt or to the model running inside the cell.

Try it in 60 seconds

curl -sSL https://wetware.run/install | sh
curl http://localhost:2080/status
{
  "status":       "ok",
  "version":      "0.1.0",
  "peer_id":      "12D3KooWRLf8DAFsNfbv3s2DjRMbUuPc8AYdcBfokZbz6kJ2aUss",
  "listen_addrs": ["/ip4/127.0.0.1/tcp/2025", "/ip6/::1/tcp/2025", ...],
  "peer_count":   216
}

The second command hit a WebAssembly cell running inside the daemon. The default Rust kernel installs this composition directly. The cell receives only the explicit host grant, which lets the cell report peer identity and peers.

Features

  • Explicit child grants. Each ordinary cell starts with a typed bundle of capabilities and nothing else. Parent cells choose which capabilities to hand down; method-level restrictions are enforced on the capability reference and on capabilities reached through it.
  • Composable membranes. Tool A calls tool B which calls tool C, each link carrying an explicit capability set. The membrane is the boundary at every hop. See examples/oracle/ for the runnable version.
  • Content-addressed code. Cells are identified by CID. The binary that ran is the binary you pinned; no swap-under-the-rug between generation and execution.
  • WASM cell scale. ~10ms spawn, KB-scale binaries, language-agnostic via wasm32-wasip2. Per-call sandboxing is only feasible because cells are cheap; microVM cold-start is too slow for that.
  • P2P capability sharing. A cell can export a typed capability to a peer over libp2p. Service names locate a stream; they do not authorize its caller. A deployer can publish a Terminal that authenticates a login identity and issues only the method authority selected for that identity.

Quickstart

Install

curl -sSL https://wetware.run/install | sh

Or build from source:

ww doctor                         # check your dev environment
rustup target add wasm32-wasip2   # one-time
make                              # build everything (host + std + examples)

Requires a Rust toolchain with the wasm32-wasip2 target. Optional: Kubo for IPFS resolution and DHT-based peer discovery.

Run a node

ww run .                                # boot a node from current dir

Build the example cells

make examples

The repository keeps the Rust example crates as buildable guest-component references. The Rust PID0 installs only the default /status composition, so the repository does not currently ship a generic runtime composition for these examples.

How it works

ww run starts a libp2p node on port 2025 and merges any image layers into a virtual FHS filesystem. The Host selects trusted PID0 independently through KernelSource: --kernel takes precedence over WW_KERNEL, and the default is embedded std/kernel. ww build produces boot/main.wasm as the conventional application artifact; the Host does not use it as PID0 input.

Pid0 calls membrane.graft() to obtain host capabilities. Ordinary children instead call initial_grants.get() and receive exactly the immutable List(Export) selected by their parent—no host graft or fallback. After an epoch transition, delegated host capabilities stay stale until an authorized ancestor explicitly re-delegates fresh references or respawns the child.

doc/architecture.md is the canonical reference; doc/capabilities.md is the capability surface.

Cell modes

WASM processes ("cells") run with zero ambient authority. Their stdio is wired to a transport based on WW_CELL_MODE:

Mode stdio carries Use case
vat Cap'n Proto RPC Long-lived capability services
raw libp2p stream bytes Long-lived byte/session protocols
http CGI (WAGI) Stateless HTTP request adapters
(absent) Host RPC channel pid0 kernel, full membrane graft

Standard ports

Port Service
2025 libp2p swarm
2026 Local HTTP admin (/healthz, metrics, peer ID, listen addrs); disable with --with-http-admin off
2080 HTTP/WAGI

Publishing a cell

ww init myapp                                # scaffold a new cell project
cd myapp && ww build                         # compile to WASM
ww push . --ipfs-url http://localhost:5001   # publish to IPFS

The Rust PID0 does not automatically compose arbitrary guest components from an image. A published guest requires an application-specific composition path.

Learn more

Releases

Packages

Used by

Contributors

Languages