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

@rivet-dev/agentos-eve

v0.2.19

Published

agentOS sandbox backend for Vercel Eve

Readme

@rivet-dev/agentos-eve

Use agentOS as the sandbox for Vercel Eve. Choose a Rivet-backed agentOS actor or a standalone agentOS Core VM without coupling either hosting model to Eve.

Requires Node.js 24 or newer.

Rivet actor

pnpm add eve @rivet-dev/agentos @rivet-dev/agentos-eve

Register the VM as a normal agentOS actor. Its configuration owns software, permissions, limits, sandbox mounting, and persistence:

// actors.ts
import { agentOS, setup } from "@rivet-dev/agentos";

const vm = agentOS({
	// Configure software, permissions, limits, and mounts here.
});

export const registry = setup({
	use: { vm },
});

Select the actor by its registry key:

// agent/sandbox.ts
import { agentOSBackend } from "@rivet-dev/agentos-eve";
import { defineSandbox } from "eve/sandbox";
import { registry } from "../actors";

export default defineSandbox({
	backend: agentOSBackend({ actor: "vm", registry }),
});

Relative paths and command working directories resolve from /workspace. Configure its persistence on the actor—for example with actor durable storage or a mounted filesystem. The adapter never copies or interprets workspace data.

Each Eve session maps to a stable actor key. shutdown() stops processes opened through Eve and disconnects the client, but does not destroy the actor, so the session can reattach after actor sleep or process restart.

Advanced: standalone Core

Install Core instead of the actor package when Rivet orchestration is not needed:

pnpm add eve @rivet-dev/agentos-core @rivet-dev/agentos-eve

The factory creates one VM per Eve session. All VM configuration and filesystem persistence remain caller-owned:

import { AgentOs } from "@rivet-dev/agentos-core";
import { agentOSCoreBackend } from "@rivet-dev/agentos-eve";
import { defineSandbox } from "eve/sandbox";

export default defineSandbox({
	backend: agentOSCoreBackend({
		create: ({ sessionKey }) =>
			AgentOs.create({
				mounts: [
					{
						path: "/workspace",
						plugin: {
							id: "host_dir",
							config: {
								hostPath: `/var/lib/eve/${encodeURIComponent(sessionKey)}`,
							},
						},
						readOnly: false,
					},
				],
			}),
	}),
});

Standalone Core has no Rivet orchestration or automatic durable storage. shutdown() stops Eve processes and disposes the caller-created VM.

Network permissions belong to agentOS(...) or the Core create() factory; Eve's runtime setNetworkPolicy() operation is unsupported.