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

@sensei_750/reviewpilot

v1.4.0

Published

AI-powered code review CLI. Analyzes PRs and diffs using Ollama — 100% local, private, and free. No API costs, no data leaks, no limits.

Readme

ReviewPilot

AI-powered code review that runs 100% on your machine.
Your code never leaves your computer. No API costs. No data leaks.

npx @sensei_750/reviewpilot pr https://github.com/user/repo/pull/42

npm version VS Code Marketplace License: MIT PRs Welcome Buy Pro


🔥 Why ReviewPilot?

| Feature | ReviewPilot | GitHub Copilot | CodeRabbit | |---------|-------------|---------------|------------| | 100% Local & Private | ✅ | ❌ | ❌ | | Zero API Costs | ✅ | ❌ | ❌ | | PR Review | ✅ | ✅ | ✅ | | VS Code Annotations | ✅ (Pro) | ✅ | ❌ | | GitHub Action | ✅ (Pro) | ❌ | ✅ | | Custom Rules | ✅ (Pro) | ✅ | ✅ | | Price | Free / $199 once | $10-39/mo | $12-48/mo |


⚡ Quick Start

# 1. Install Ollama and pull a code model
ollama pull codellama

# 2. Review any GitHub PR (no sign-up required)
npx @sensei_750/reviewpilot pr https://github.com/expressjs/express/pull/5678

📦 Commands

| Command | Description | |---------|-------------| | reviewpilot pr <url> | Analyze a GitHub/GitLab PR | | reviewpilot diff <file> | Analyze a diff file or stdin | | reviewpilot local | Review local uncommitted changes | | reviewpilot check [branch] | Compare current branch vs main | | reviewpilot init | Set up ReviewPilot in current repo | | reviewpilot license activate <key> | Activate a Pro license | | reviewpilot license status | Check license status |


👀 Demo

$ npx reviewpilot pr https://github.com/expressjs/express/pull/5678

  Fetching PR #5678 from expressjs/express...
  12 hunk(s) in 4 file(s)

  ┌──────────┬──────────────────────┬──────┬──────────────────────────────────────┐
  │ Severity │ File                 │ Line │ Issue                                │
  ├──────────┼──────────────────────┼──────┼──────────────────────────────────────┤
  │ HIGH     │ lib/application.js   │  142 │ Unhandled promise rejection in route  │
  │ MEDIUM   │ lib/request.js       │   67 │ Missing input validation on params    │
  │ HIGH     │ lib/response.js      │   89 │ Insecure HTTP header concatenation    │
  │ LOW      │ test/app.test.js     │   23 │ Missing edge case test for empty body │
  └──────────┴──────────────────────┴──────┴──────────────────────────────────────┘

  🔴 Critical: 0  🟠 High: 2  🟡 Medium: 1  🔵 Low: 1

✅ Review complete — 4 issues found

💰 Pricing

| Feature | Free | Pro | Team | |---------|------|-----|------| | Price | $0 | $199 once | $499/yr | | Reviews | 5/day | Unlimited | Unlimited | | Repositories | 1 | Unlimited | Unlimited | | Output formats | Table | JSON, Markdown, Table | All | | VS Code annotations | ❌ | ✅ | ✅ | | GitHub Action | ❌ | ✅ | ✅ | | Custom rules | ❌ | ✅ | ✅ | | Team dashboard | ❌ | ❌ | ✅ | | Priority support | ❌ | ✅ | ✅ |

Buy Pro → | Buy Team → | Try Free →


🔧 VS Code Extension

Install from the VS Code Marketplace.

  • Inline code annotations
  • Review current file or workspace changes
  • Auto-review on save (Pro feature)

🤖 GitHub Action

Add to .github/workflows/review.yml:

name: ReviewPilot
on: [pull_request]
jobs:
  review:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0
      - name: Review PR
        uses: Sensei7708/reviewpilot/action@main
        with:
          model: codellama
          format: markdown

Note: The GitHub Action requires a Pro license to post PR comments.


🏗 Architecture

┌─────────────┐    ┌──────────────┐    ┌──────────────┐
│   CLI CLI   │───▶│  Diff Parser │───▶│  Ollama LLM │
│ (commander) │    │  (git diff)  │    │  (local AI)  │
└─────────────┘    └──────────────┘    └──────────────┘
       │                   │                   │
       ▼                   ▼                   ▼
┌─────────────┐    ┌──────────────┐    ┌──────────────┐
│  Reporter   │    │   Analyzer   │    │   License    │
│  (output)   │    │  (findings)  │    │  (validator) │
└─────────────┘    └──────────────┘    └──────────────┘

📝 License

MIT — see LICENSE.

Built with Ollama — local, private, free AI.