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

@metaharness/devops

v0.1.1

Published

MetaHarness example — Claude Code incident-response vertical with responder, runbook-runner, escalator, postmortem agents (npx @metaharness/devops my-bot)

Readme

MetaHarness: devops vertical

A ready-made multi-agent scaffold for incident response on top of Claude Code. It provisions four specialized agents — responder, runbook-runner, escalator, and postmortem — wired together with tiered model routing, project-scoped settings, and a harness doctor health check. Use it to bootstrap an on-call assistant that triages alerts, executes runbooks, escalates when stuck, and writes the postmortem afterward.

This scaffold is for SREs, platform engineers, and on-call developers who want a working incident-response harness in one command instead of assembling agents, prompts, and config by hand. It is NOT a hosted service, an alerting system, or a replacement for PagerDuty / Opsgenie / Grafana OnCall — it is the Claude Code layer that sits next to those tools.

Quickstart

npx @metaharness/devops@latest my-bot
cd my-bot && npm install && npx harness doctor

Then launch Claude Code against the scaffold:

claude -p --plugin-dir my-bot "page: api-gateway 5xx spike, last 10m"

What you get

  • agents/responder.md — first-touch triage agent (tier: sonnet). Reads the alert, pulls recent logs/metrics, proposes hypotheses.
  • agents/runbook-runner.md — executes documented runbooks step-by-step (tier: haiku). Cheap, deterministic, fast.
  • agents/escalator.md — decides when human escalation is warranted and drafts the page (tier: sonnet).
  • agents/postmortem.md — writes a blameless postmortem from the incident transcript (tier: opus).
  • .claude/settings.json — project-scoped Claude Code config with allow-listed tools (Read, Grep, Glob, Bash for read-only commands).
  • mcp.json — pre-wired MCP server stubs for log search and metrics queries; edit to point at your stack.
  • runbooks/ — example runbook templates the runbook-runner agent consumes.
  • package.json with a harness bin shim so npx harness doctor and npx harness validate work out of the box.

Advanced

Run the bundled doctor to verify the scaffold is healthy:

$ npx harness doctor
[harness] node: v20.11.1  ok
[harness] claude code: detected
[harness] agents: 4 found (responder, runbook-runner, escalator, postmortem)
[harness] mcp.json: 2 servers configured
[harness] settings.json: valid
ok

Validate the agent frontmatter and tier assignments:

$ npx harness validate
[harness] agents/responder.md      tier=sonnet  tools=Read,Grep,Bash  ok
[harness] agents/runbook-runner.md tier=haiku   tools=Read,Bash       ok
[harness] agents/escalator.md      tier=sonnet  tools=Read,WebFetch   ok
[harness] agents/postmortem.md     tier=opus    tools=Read,Write      ok
ok

Drive the harness headlessly for CI or webhook integrations:

claude -p --plugin-dir my-bot --output-format json \
  "incident: redis OOMKilled in prod-us-east-1, alert id INC-4421"

Pipe a recent alert payload from your incident tool straight into the responder:

cat alert.json | claude -p --plugin-dir my-bot --append-system-prompt "You are the on-call responder. Start with the responder agent."

FAQ

Q: Does this replace PagerDuty / Opsgenie? A: No. It plugs into them. The escalator agent drafts the page; your existing tool delivers it. Wire the MCP server in mcp.json to your incident platform's API.

Q: Can I change which model each agent uses? A: Yes. Edit the model: field in the YAML frontmatter of each agents/*.md file. The defaults (haiku for runbook execution, sonnet for triage, opus for postmortems) follow the 3-tier cost/latency pattern but every choice is a one-line override.

Q: How do I add my own runbook? A: Drop a markdown file into runbooks/. The runbook-runner agent discovers them by glob and matches against the incident description. No registration step.

License

MIT. Built on metaharness (https://www.npmjs.com/package/metaharness).

Deep-dive

Full explainer gist: https://gist.github.com/ruvnet/7c2975652c9be393536a71cdafc358f3