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

iris-runtime

v0.4.0

Published

Iris CLI — iris init/build/inspect/verify/push/pull/run. Command functions over @irisrun/agent (so they are unit-testable with injected deps) + a zero-dep argv dispatcher. push/pull operate on a local OCI layout (real registry = manual); run drives the ex

Readme

iris-runtime

The iris command — author an agent, compile it to a portable image, run it anywhere. The install-free CLI for Iris: scaffold a config-plus-folder agent, build it into an open, content-addressed image, and run / serve / chat / deploy it — across hosts, models, and vendors — with the durable journal that makes a session resume byte-identical wherever it lands.

What it is

The unscoped npm package iris-runtime installs the iris binary. It wraps the Iris runtime behind a zero-dependency argv dispatcher: each subcommand is a unit-tested command function over @irisrun/agent, wired here to real fs / host defaults (the SQLite store + the provider named by the image's model-id prefix). Node ≥ 24, no build step.

Use it

npm i -g iris-runtime        # or run ad hoc: npx iris-runtime <command>

iris init my-agent           # scaffold agent.yaml + instructions.md + a tools/now tool
cd my-agent
iris build --out ./image     # compile the content-addressed agent image
iris chat ./image --session s1 --fake   # talk to it — no API key needed

Drop --fake and set the provider key (ANTHROPIC_API_KEY / OPENAI_API_KEY) for a real model.

Command groups:

  • Author & inspectinit, build, inspect, schema, providers
  • Distributeverify, push, pull (local OCI layout; a real registry is manual)
  • Runrun, serve, chat, deploy (--target <name> scaffolds for 9 platforms across edge / container / serverless; --list-targets)
  • Operate & assureaudit, eval, schedule, journal

See the CLI reference for every command's flags, and the docs for the guided path from init to a deployed agent.


Part of Iris — own, portable, verifiable state.