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

runboard

v1.1.2

Published

Local-first CLI for the Runboard technical-leadership maturity framework. Deterministic scoring core, portable AI adapters, no phone-home.

Downloads

740

Readme

Runboard

See your technical-leadership maturity scorecard in five minutes — local-first, no signup, nothing leaves your machine.

Runboard is a CLI that runs the Runboard framework: a nine-dimension maturity instrument (Build / Run / Plan × Team / Tools / Techniques), scored 1–5 with trajectory indicators. It renders your scorecard as a heatmap, tells you your single biggest constraint, and tracks whether things are getting better over time.

Quickstart

npx runboard@latest init      # scaffold .runboard/ in your repo
npx runboard@latest assess    # guided 9-dimension self-assessment
npx runboard@latest board     # your heatmap + average + biggest constraint

Then, once you have data:

npx runboard@latest roadmap       # Now / Next / Later plan from your constraint
npx runboard@latest board --html  # a shareable, self-contained board.html
npx runboard@latest pulse         # (after a 2nd assessment) what moved since last time
npx runboard@latest status        # one-screen current state

Local-first, no phone-home

Every command runs entirely on your machine. No account, no network calls, no telemetry. Your data lives in .runboard/ in your own repo — commit it, and its git history becomes your trajectory record.

Commands

| Command | What it does | |---------|--------------| | runboard init | Scaffold .runboard/ (config, rubric, assessments). Idempotent. | | runboard assess | Record a 9-dimension assessment (interactive, or --set for agents). | | runboard board [--html] | Render the heatmap; --html writes a shareable file. | | runboard pulse | Compare the two latest assessments; flag stuck dimensions. | | runboard roadmap | Now/Next/Later plan from your binding constraint. | | runboard report --type <t> | Render a board-ready report from a template. | | runboard status | One-screen current state. | | runboard skills install [--target <dir>] | Copy the bundled SKILL.md skills into an agent's skills directory. |

Use it from your AI assistant

Portable skills/ (SKILL.md) and an MCP server let Claude, Cursor, Codex, Copilot, Gemini, and other agents run the assessment conversation and persist results through the same core — the numbers are always computed by the tool, never by the model.

The MCP server ships in this same package and runs locally over stdio (no network, no account). Add it to your client with one zero-install command:

{
  "mcpServers": {
    "runboard": { "command": "npx", "args": ["-y", "runboard", "mcp"] }
  }
}

See docs/mcp.md for Claude Desktop, Cursor, and VS Code setup.

Installing the skills

SKILL.md is a cross-agent open format, so "installing" a skill just means copying its folder to wherever your agent looks for skills. skills install does that from the copy already bundled in this package — no download, no network:

npx runboard@latest skills install                 # auto-detect (Claude Code → .claude/skills/)
npx runboard@latest skills install --target .cursor/skills   # any other agent
npx runboard@latest skills install --dry-run       # preview; writes nothing
npx runboard@latest skills install --force         # overwrite existing copies (e.g. after upgrade)

Without --target it auto-detects a supported agent (v1: Claude Code, via a .claude/ directory). For any other agent, point --target at its skills directory. Existing skills are never overwritten without --force. Restart your agent afterward so it discovers them.

Contributing

See CONTRIBUTING.md. This is a public project; work starts from GitHub issues.

License

MIT