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

@exit-zero-labs/runmark

v0.5.0

Published

Repo-native HTTP workflows for developers, scripts, and coding agents via the `runmark` CLI and `runmark mcp` stdio server.

Readme

@exit-zero-labs/runmark

Run tracked HTTP workflows from YAML. This package ships both the runmark CLI and the runmark mcp stdio server in one install.

Install

Global install:

npm install -g @exit-zero-labs/runmark
runmark --version

Repo-local or CI install:

npm install --save-dev @exit-zero-labs/runmark
npx runmark --version

Use the repo-local form when you want the Runmark version pinned in package.json and your lockfile. The examples below use npx; if you installed globally, drop the prefix.

Quick start

mkdir demo-api
cd demo-api
npx runmark init
npx runmark demo start

In a second terminal:

npx runmark validate
npx runmark describe --run smoke
npx runmark explain variables --request ping
npx runmark run --run smoke

runmark init creates a tracked runmark/ project, prints the absolute project path plus the files it created, and returns structured nextSteps. New scaffolds point at the bundled demo server on http://127.0.0.1:4318, so you can get to a first successful run without provisioning extra infrastructure first.

What this package gives you

  • runmark init, validate, describe, explain, and run
  • inspect, resume, and cancel flows for paused or interrupted sessions
  • runmark audit export for redacted summaries and runmark clean for retention-driven cleanup
  • local runtime artifacts under runmark/artifacts/
  • the same execution engine behind both the CLI and runmark mcp

MCP

There is no separate runmark-mcp package. Start the MCP server from this package:

{
  "command": "npx",
  "args": ["-y", "@exit-zero-labs/runmark", "mcp"]
}

If you installed globally, use:

{
  "command": "runmark",
  "args": ["mcp"]
}

Every MCP tool call must include projectRoot pointing at the repository directory that contains runmark/config.yaml. This is required in 0.5.0 and later because MCP servers often start outside the target repository.

Runtime files and secret handling

  • tracked intent lives under runmark/
  • runtime output lives under runmark/artifacts/
  • shareable session ledgers live under runmark/artifacts/sessions/*.json
  • secret-bearing companion state is stored separately in owner-only runmark/artifacts/sessions/*.secret.json
  • do not upload runmark/artifacts/sessions/*.secret.json or runmark/artifacts/secrets.yaml from CI artifacts

For safe CI evidence, prefer npx runmark audit export --output runmark/artifacts/reports/audit.json plus runmark/artifacts/history/, runmark/artifacts/reports/, and the redacted runmark/artifacts/sessions/*.json ledgers.

Docs

Support

Support development via GitHub Sponsors or Open Collective:

GitHub Sponsors is the primary recurring path. Open Collective is the secondary path for one-time support and public budget visibility. Repo-level support notes live at https://runmark.exitzerolabs.com/reference/support/.