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

@maintainabilityai/research-runner

v0.1.44

Published

Research + PRD agent runner — orchestrates the Archeologist and PRD pipelines for the MaintainabilityAI governance mesh

Readme

@maintainabilityai/research-runner

CLI that orchestrates the Archeologist (research) and PRD agent pipelines for the MaintainabilityAI governance mesh. Invoked by the Looking Glass-scaffolded GitHub Actions workflows in the mesh repo (archeologist.yml, prd.yml).

See docs/design/research-and-prd-agents.md for the full pipeline design.

Status

v0.1 — Phase 1: package scaffold, Zod schemas, audit emitter (hash-chained JSONL), Hatter's Tag builder, stub orchestrators. No LLM or search-API calls yet — those land in subsequent phases.

Install

npm install -g @maintainabilityai/research-runner
# or run via npx in CI:
npx research-runner archeologist --brief "..." --scope-level bar --scope-id APP-IMDB-002

CLI

research-runner archeologist [options]
  --brief         <text>      Plain-English research brief (required)
  --scope-level   portfolio|platform|bar
  --scope-id      <id>        BAR or platform id (required when scope is platform|bar)
  --path          research|archaeology     (default: research)
  --target-repo   owner/repo  (archaeology path only)
  --guardrails    strict|default|lenient   (default: default)
  --output        <dir>       Where to write artifacts (default: ./research)
  --audit         <dir>       Where to write JSONL audit log (default: ./.research-audit)
  --emit-pr-body  <path>      Write the PR body markdown to this path
  --mesh          <dir>       Mesh repo root (default: cwd)

research-runner prd [options]
  --research-pr   <url|path>  Merged research PR url or research doc path
  --scope-level   portfolio|platform|bar
  --scope-id      <id>
  --mode          shallow|deep                (default: deep)
  --grounding     strict|default|lenient      (default: default)
  --max-iterations <n>                        (default: 3)
  --output        <dir>       Where to write artifacts (default: ./prds)
  --audit         <dir>
  --emit-pr-body  <path>
  --mesh          <dir>

Architecture

  • src/schemas/ Zod schemas for every input/output shape
  • src/runner/ Pipeline orchestrators + cross-cutting utilities (audit, Hatter's Tag)
  • src/utils/ Stateless helpers (run-id, time, hashing)
  • bin/ CLI entry stub that requires dist/cli.js

The runner is deliberately split into pure nodes (validation, search APIs, dedupe, publish) and LLM nodes (query planning, synthesis, expert reviews). Pure nodes are reproducible; LLM nodes produce non-deterministic content but deterministic shape (Zod-validated). See the design doc for the full determinism contract.

Audit log

Every node emits a hash-chained JSONL event to <audit-dir>/<run_id>.jsonl. Each event carries prev_event_hash and event_hash (sha256), forming a tamper-evident Merkle-like chain. The final run_complete event summarizes the run and pins the chain root hash.

Hatter's Tag

Every published artifact (research doc, PRD) ends with a ## Hatter's Tag YAML block that pins the run to a specific mesh sha, prompt-library version, LLM provider/model, token count, cost, grounding score, and audit chain hash. Auditors verify the artifact by re-running the chain against the recorded mesh sha.

License

MIT