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

maintainer-intake

v0.1.2

Published

Deterministic contribution-intake checks for open-source maintainers.

Readme

Maintainer Intake

Deterministic contribution-intake checks for open-source maintainers.

CI CodeQL npm

Maintainer Intake validates whether an issue or pull request contains the evidence a maintainer needs before review time is spent. It checks repository policy, templates, scope, tests, risky paths, and security-sensitive reports, then produces a concise packet for comments, checks, labels, gates, CLI use, or MCP clients.

It does not detect authorship. It evaluates evidence and accountability.

Maintainer Intake is an evidence linter, not semantic review. It verifies that configured sections contain non-placeholder content and that recognizable evidence such as test commands is present. It does not prove that a claim is true, a test is sufficient, or a change is safe; maintainers remain the decision-makers.

What Maintainers See

A low-context PR such as This changes CI behavior. becomes a specific repair list:

Status: needs_author_evidence
Score: 17

Missing evidence:
- Add meaningful content to Summary, Linked issue, Tests, and Scope.
- List the exact test commands run, or explain why tests do not apply.
- Provide a review plan for this large change.
- Add security-impact evidence for the changed workflow.

Risk flag:
- CI or test weakening indicators

After the contributor supplies the configured evidence, the same engine reports ready_for_review. See the unready packet and the ready packet for complete output.

Install

Run without installing globally:

npx --yes [email protected] --version
npx --yes [email protected] init

Or install the CLI globally:

npm install --global [email protected]

60-second fixture demo

npm ci
npm run build
node dist/cli/index.js analyze-pr --fixture fixtures/github/pr-ready.json --format markdown
node dist/cli/index.js analyze-pr --fixture fixtures/github/pr-unready.json --format json

CLI

maintainer-intake init
maintainer-intake init --write
maintainer-intake policy doctor --config .github/maintainer-intake.yml
maintainer-intake analyze-pr --fixture fixtures/github/pr-ready.json --format json
maintainer-intake analyze-issue --fixture fixtures/github/issue-bug-ready.json --format markdown

Live GitHub reads use OWNER/REPO#NUMBER and require GITHUB_TOKEN or GH_TOKEN.

GitHub Action

Start with read-only advisory evaluation:

permissions:
  contents: read
  pull-requests: read
  issues: read

steps:
  - uses: joseph-217/maintainer-intake@v0
    with:
      mode: advisory
      comment: false
      labels: false

This evaluates and writes the packet to the Action log and step summary without modifying the pull request or issue. See the Action guide for opt-in comments, labels, checks, permission rationale, rollback, and safe event guidance.

This repository dogfoods the same read-only workflow in .github/workflows/maintainer-intake.yml.

MCP

Run the stdio MCP server with:

maintainer-intake mcp

The MCP server exposes analyze_pr_intake, analyze_issue_intake, render_maintainer_packet, generate_policy_files, and explain_intake_config.

See docs/mcp.md for an npx-based MCP client configuration.

Statuses And Modes

Statuses:

  • ready_for_review
  • needs_author_evidence
  • needs_maintainer_decision
  • reject_recommended

Modes:

  • advisory: never fails because evidence is missing.
  • check: emits check-run intent.
  • label: emits configured label intent.
  • gate: fails only when required evidence is missing.

Verification

The full local lane is:

npm run verify

The package and Action release gates include bundle rebuild, tarball audit, packed install, security scan, and fixture E2E.

License

MIT