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

agent-dev-env

v0.1.1

Published

Sandbox VM runner and image lifecycle CLI for developer agent sandboxes (macOS, Windows, Ubuntu image recipes).

Readme

agent-dev-env

CI npm GitHub release

Local sandbox virtual machines for AI coding agents. A pre-built image with the full toolchain (macOS with Xcode/Homebrew, Windows 11 ARM64 with VS2022/toolchains, or Ubuntu 24.04 with the open-source toolchain; OpenCode, OpenCodeReview, OpenChamber, Docker CLI bridged to the host) runs on your Mac. Your code stays on the host — you share a working directory into the VM and let a coding agent work on it in an isolated sandbox. The agent-dev-env CLI builds, runs, and wires up the sandboxes, and manages their image releases.

Currently supported: macOS host on Apple Silicon → macOS (Tart), Windows 11 ARM64 (QEMU, VMware Fusion) and Ubuntu 24.04 LTS ARM64 (VMware Fusion) guests. Linux hosts are coming soon.

Quick start

Try it without installing:

npx agent-dev-env doctor            # host + tooling check for every platform
npx agent-dev-env run macos         # pull, boot, and wire up the macOS sandbox

Or install the CLI globally:

npm install -g agent-dev-env
agent-dev-env run macos

Want the latest build from the master branch? The CI publishes a canary build on every push to npm under the canary dist-tag:

npm install -g agent-dev-env@canary

On first use the CLI asks before pulling the image (one-time, ~50 GB for macOS) and creating the working VM, then starts it with the recommended settings. Every guest gets the host's SSH agent and Docker engine bridged in; the macOS and Ubuntu guests additionally share your work directory and copy your user settings in. What works where differs per guest — see the macOS guide, Ubuntu guide, Windows QEMU guide or Windows VMware guide for your OS, and the CLI reference for every command and option.

Tip: agent-dev-env doctor checks Tart/QEMU/Fusion/oras and free disk before you start; the per-platform guides list the official install commands.

Guides

Pick the guide for your operating system:

| Operating system | Guide | | --- | --- | | macOS (Apple Silicon) | Set up your macOS sandbox | | Ubuntu (VMware) | Set up your Ubuntu sandbox | | Windows (QEMU) | Set up your Windows sandbox | | Windows (VMware) | Set up your Windows VMware sandbox |

Each guide starts with a short quick setup — macOS takes four steps, the others three — and is all you need to have a sandbox with a coding agent running.

Documentation

User guides and reference:

Image recipes — per-platform build/publish commands:

For maintainers and contributors:

  • AGENTS.md — project map, how to build and use the CLI and the images, releases/tags/changelogs, code guidelines.
  • DEVELOPMENT.md — prerequisites and how to build and debug the CLI and the recipes.
  • CHANGELOG.md — the repo changelog.