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

tuor-sandbox

v0.2.1

Published

Tuor is a convenience wrapper around [Gondolin](https://github.com/earendil-works/gondolin) to spawn microVM-based sandboxes that you can run your coding agent or other workloads in. It exposes most of Gondolin's features through a JSON config schema and

Readme

Tuor – strong sandboxing for AI agents

Tuor is a convenience wrapper around Gondolin to spawn microVM-based sandboxes that you can run your coding agent or other workloads in. It exposes most of Gondolin's features through a JSON config schema and makes them configurable on a folder-by-folder, project-by-project basis.

Features

Tuor exposes a wide number of Gondolin's features:

  • Isolation: Strong, virtualization-based isolation between workload and host system using QEMU as hypervisor with heavily constrained guest ↔ host communication.
  • Ephemeral: VM disk images are copy-on-write and treated as disposable (will be deleted upon VM shutdown).
  • Virtual file system mounts: To persist data, mount host directories into the guest (read-only or read/write).
  • Hide host files: Within a mounted directory, hide select files (e.g. .envrc files with credentials) from the VM guest.
  • Network control: Restrict network egress to HTTP and specific hosts. DNS is provided by the sandbox, so as to prevent data exfiltration through UDP 53.
  • Secret injection: Prevent the guest from seeing your auth tokens & secrets, by injecting them into HTTP requests as the latter leave the sandbox.
  • Env vars: Control which environment variables get passed through to the VM.
  • Rootfs: (Soon) Configure the VM's rootfs by providing an OCI container image. Currently, the VM's base image & kernel are based on alpine-base:latest (Gondolin's default).
  • Platform independent: Runs on Linux/MacOS/WSL.

…and adds the following convenience features:

  • File-based configuration: Easily fine-tune your VM configuration on a project-by-project or folder-by-folder basis, while defining local defaults further up the directory tree and/or defining global defaults in ~/.config/tuor/config.json.
  • Volumes: Instead of mounting an existing host directory like your workspace, mount a "volume" – similarly to a Docker volume. Useful for persisting guest directories across VM restarts. (E.g. persist the home dir and thereby shell history, agent conversations, …)
  • Overlay mounts (experimental): Define overlay mounts, whose (read-only) lower layer is a host directory and whose (writable) upper layer is persisted across VM restarts. In other words: The guest may write to the mount but host files stay unchanged.
  • Ignore files (experimental): Similarly to a .gitignore file, use a .tuorignore file to hide files within a mount from the guest. (No glob support yet, though.)
  • Convenience mode for NixOS users: Have Tuor mount Nix store & related dirs into the VM, set up PATH & other env vars, etc.

Quick start

Using NPM's npx:

npx tuor-sandbox run  # Spawns VM and starts interactive shell

Run npx tuor-sandbox --help to explore the CLI.

Further reading & documentation

Security & threat model

Project status

Tuor is in its early alpha stages and should be considered (very) experimental. Config schema and feature set might change at any time while I'm still trying to figure out what works best for my own workflow.

Similar projects

Other sandboxes I am aware of that provide comparable features & security guarantees:

Acknowledgements

Tuor wouldn't be possible without Gondolin and QEMU, which do all the heavy lifting. Huge thanks to their maintainers!