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

pi-go-review

v1.1.0

Published

Review Go code changes against the '100 Go Mistakes and How to Avoid Them' checklist (https://100go.co/). Registers a go_review tool that analyzes git diffs against all 101 common Go mistakes.

Readme

pi-go-review

Review Go code changes against the 100 Go Mistakes checklist — 100go.co

A Pi extension that registers a go_review tool. It reads git diffs, filters to .go files, and provides the complete 101-mistake rubric for the LLM to analyze your code.

Install

pi install npm:pi-go-review

Usage

Just ask Pi: "review my Go changes"

The tool supports 5 diff modes:

| Mode | Description | Requires ref | |------|-------------|-----------------| | working | Unstaged changes | No | | staged | Staged (cached) changes | No | | all | All changes vs HEAD | No | | commit | Specific commit | Yes (SHA) | | range | Commit range | Yes (e.g. main..HEAD) |

You can also narrow the scope with the path parameter to focus on a specific file or directory.

What it does

  1. Reads the git diff filtered to *.go files
  2. Attaches the full 100 Go Mistakes checklist (101 entries across 11 categories)
  3. The LLM produces a structured review with categorized findings:
    • 🔴 Bug / Critical — Must fix
    • 🟡 Suggestion — Should consider
    • 🔵 Nit — Minor improvement
    • Good pattern — Well done
  4. Each finding cites the mistake number (e.g. #39) and the specific file + code fragment
  5. Ends with a Verdict: Approve / Request Changes / Needs Discussion

Categories covered

  • Code & Project Organization (#1–#16)
  • Data Types (#17–#29)
  • Control Structures (#30–#35)
  • Strings (#36–#41)
  • Functions & Methods (#42–#47)
  • Error Management (#48–#54)
  • Concurrency: Foundations (#55–#60)
  • Concurrency: Practice (#61–#74)
  • Standard Library (#75–#81)
  • Testing (#82–#91)
  • Optimizations (#92–#101)

Custom TUI rendering

The extension includes custom rendering for both the tool call and result in Pi's TUI — showing mode, file count, insertions/deletions, and truncation status at a glance.

Credits

Based on 100 Go Mistakes and How to Avoid Them by Teivah.

License

MIT