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

@lymo-inc/own-your-review

v0.2.4

Published

Stop merging things you don't understand.

Readme

own-your-review

Stop merging things you don't understand.

Most AI code review tools review code for you. This one makes sure you reviewed the code.

own-your-review generates comprehension questions from your PR diff that can only be answered if you actually read and understood the changes. Think of it as Gate 1 from ownyourcode — applied to every pull request.

The Problem

AI code generation has created a new failure mode: vibe merging. CI passes, the diff looks reasonable, the reviewer hits "Approve" — without genuinely understanding what changed.

Existing AI PR tools make this worse. They review code for you, further removing the human from the loop.

Quick Start

Option A: Claude Code Plugin (interactive quiz)

Install the plugin in Claude Code:

/plugin marketplace add lymo-inc/own-your-review
/plugin install own-your-review@own-your-review

Then run on any branch with changes:

/own-your-review:quiz-me

This starts an interactive Socratic quiz — questions one at a time, with feedback on your answers and a comprehension score at the end. You can also target specific files or commits:

/own-your-review:quiz-me src/auth.ts
/own-your-review:quiz-me abc123..def456
/own-your-review:quiz-me --staged

Option B: GitHub Action (automated on PRs)

Set up with the CLI:

npx @lymo-inc/own-your-review init

Or with Bun:

bunx @lymo-inc/own-your-review init

Option C: Manual setup

  1. Create .github/workflows/own-your-review.yml:
name: Own Your Review

on:
  pull_request:
    types: [opened, synchronize, ready_for_review]
  pull_request_review:
    types: [submitted]

concurrency:
  group: own-your-review-${{ github.event.pull_request.number || github.event.issue.number }}
  cancel-in-progress: false

jobs:
  review:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      pull-requests: write
      issues: write
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0

      - uses: lymo-inc/[email protected]
        with:
          anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}

Configuration

Optionally create .github/own-your-review-config.yml:

questions:
  max: 5                    # Max questions per PR (1-7)
  min: 2                    # Min questions
  reviewer_level: mid       # junior | mid | senior

ignore:
  paths:
    - "*.lock"
    - "*.generated.*"
    - "migrations/"
  authors:
    - "dependabot[bot]"

on_unanswered:
  learning_note: true       # Post learning note if approved without engaging

PR Labels

  • review:skip — Skip comprehension check for this PR
  • review:quick — Reduce to minimum questions

Question Categories

| Category | What it tests | When it's used | |----------|--------------|----------------| | Intent | Why this change exists | Every PR | | Mechanism | How the code works | New logic, algorithms | | Blast Radius | What else is affected | Type/API/shared code changes | | Edge Cases | Boundary thinking | New conditionals, error paths | | Trade-offs | Design decisions | Architecture choices | | Security | Trust boundaries | Auth, user input, data exposure |

License

MIT

Credits