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

firebreak

v0.0.1

Published

Thin npx launcher for the Firebreak Nix CLI

Readme

Firebreak

Firebreak is a VM-first control plane for running coding agents with a small public interface.

Firebreak CLI

firebreak vms
firebreak run codex
firebreak run codex --shell
firebreak run claude-code -- --help

firebreak vms lists the public VM workloads. firebreak run <vm> launches one of them through the existing Firebreak VM packages.

Local Workloads

  • nix run .#firebreak-codex launches Codex in the local Firebreak VM
  • nix run .#firebreak-claude-code launches Claude Code in the local Firebreak VM
  • FIREBREAK_VM_MODE=shell nix run .#firebreak-codex reaches the maintenance shell for the same VM package

NPX Launcher

Firebreak ships a thin Node launcher so users can run the Nix-backed CLI with npx firebreak ....

npx firebreak vms
npx firebreak run codex
npx firebreak doctor
npx firebreak init

The launcher:

  • checks that the host is x86_64-linux
  • checks that nix is installed and callable
  • checks that /dev/kvm is usable before non-diagnostic commands
  • uses the local Firebreak checkout automatically when you run it inside a cloned Firebreak repo
  • falls back to github:skadaai/firebreak when no local Firebreak checkout is present
  • forwards all arguments to the existing Bash Firebreak CLI through nix run

Project Defaults

firebreak init is interactive by default and writes a project-local .firebreak.env file tailored to the answers you choose. The file uses the same KEY=VALUE spelling as the public environment variables, and real environment variables take precedence over file values.

nix run .#firebreak -- init
nix run .#firebreak -- init --non-interactive
nix run .#firebreak -- doctor

Example .firebreak.env:

AGENT_CONFIG=workspace
# FIREBREAK_VM_MODE=run
# CODEX_CONFIG=workspace
# CLAUDE_CONFIG=workspace

Diagnostics

firebreak doctor reports:

  • project root and config-file resolution
  • public VM mode resolution
  • Codex and Claude Code config resolution
  • current working directory compatibility
  • KVM availability and primary-checkout state

Use nix run .#firebreak -- doctor --json for machine-readable output.