npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@zagents/host-rvm

v0.1.3

Published

RVM (Agentic Virtual Machine) host adapter for zagents-generator — hardware-isolated deployment via capability tokens

Readme

@zagents/host-rvm

RVM — the Agentic Virtual Machine — host adapter for the zagents-generator project.

Agents don't fit in VMs. They need something that understands how they think.

What this is for

Use RVM as the deployment target for harnesses that need hardware-level isolation — federated / multi-tenant / untrusted-peer scenarios. The kernel's claims subsystem maps directly onto RVM's capability tokens; same security model, stronger backend.

Files this adapter emits

| File | Purpose | |---|---| | rvm-partition.toml | Partition manifest (coherence domain seed, memory tier, scheduler signals) | | capability-table.json | Capability tokens derived from the gemini's kernel claims | | wasm-guest.json | Reference to the kernel WASM bundle + failure-class recovery map | | install-rvm.sh | Idempotent runbook: register partition → install caps → boot guest |

Claim → capability mapping

The kernel's Claim { capability, resource, expires_at } maps onto RVM's 7-right capability tokens:

| Kernel claim capability | RVM rights | |---|---| | * or *.* | all 7 rights (READ/WRITE/GRANT/REVOKE/EXECUTE/PROVE/GRANT_ONCE) | | *.read | READ | | *.write | WRITE | | *.execute or tool.invoke.* | EXECUTE | | *.grant / *.revoke / *.prove | GRANT / REVOKE / PROVE | | *.grant_once | GRANT_ONCE + grant_once: true | | memory.*, tool.*, etc. (prefix) | READ / WRITE / EXECUTE | | anything else | READ |

Default proof tier:

  • P3 (strongest) for grant / revoke / prove
  • P2 for write + execute
  • P1 (cheapest) for read

Usage

import adapter, { buildCapabilityTable, partitionToml } from '@zagents/host-rvm';

const config = adapter.generateConfig({
  name: 'my-bot',
  description: 'My gemini on RVM',
  mcpServers: [{ name: 'my-bot', command: ['npx', '-y', 'my-bot', 'mcp'] }],
});

// Convert kernel claims explicitly:
const caps = buildCapabilityTable([
  { capability: 'memory.read', resource: 'ns/x', expires_at: 1_700_000_000 + 86400 },
  { capability: 'tool.invoke.memory.store', expires_at: 1_700_000_000 + 86400 },
]);

Tier picture vs other host adapters

| | Isolation | Tier | |---|---|---| | claude-code / codex / pi-dev / hermes / openclaw | OS-level | Local-dev / personal use | | rvm | Hardware (microhypervisor + capability tokens + hash-chained witness) | Multi-tenant / untrusted peers |

For everyday local-dev, use the OS-level adapters. For federation across trust boundaries, RVM is the natural backend.

Pairs with @ruvector/rvf (recommended)

@ruvector/rvf — RuVector Format, a unified TypeScript SDK for vector intelligence with HNSW + SIMD — is the recommended vector-storage companion for RVM-deployed harnesses. The pairing gives you:

  • Hardware-isolated vector storage — the RVF index lives inside the RVM partition, gated by the same capability tokens
  • WASM addon (@ruvector/rvf-wasm) — runs as a sub-guest under the RVM partition, so vector ops benefit from RVM's witness-native syscalls
  • Binary format with HNSW — the same on-disk format works in Node, the browser, and inside an RVM partition

The adapter declares this pairing in the emitted wasm-guest.json:

{
  "companion": {
    "vector_format": {
      "package": "@ruvector/rvf",
      "version": "^0.2.0",
      "wasm_addon": "@ruvector/rvf-wasm",
      "recommended": true
    }
  }
}

RVF is opt-in — the partition still boots without it. Use @zagents/kernel/memory-rvf to plug it into the kernel memory subsystem.

RVM facts

  • Bare-metal microhypervisor for AArch64
  • Rust 95-99% (~500 LoC assembly); forbids unsafe in most subsystems
  • Dynamic coherence domains (graph-mincut on agent comms)
  • Witness-native syscalls — every privileged op = 64-byte SHA-256 hash-chained record
  • WASM guest runtime (where our kernel boots as a guest)
  • F1–F4 failure-class graduated rollback
  • License: Apache-2.0 OR MIT
  • Latest release: v1.5.0 (April 2026)

License

MIT