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

auto-review-push

v0.2.9

Published

CLI que executa code review automaticamente após um git push bem-sucedido, sem bloquear o push.

Readme

auto-review-push

CLI que executa code review automaticamente após um git push, sem configuração adicional.

Usa Claude Code ou Opencode instalado na máquina para analisar o diff e reportar bugs, problemas de segurança e qualidade de código.

Instalação

# CLI de review (pelo menos um)
npm install -g @anthropic-ai/claude-code
npm install -g @anomalyco/opencode

# auto-review-push
npm install -g auto-review-push

Após a instalação global, git push já executa o review automaticamente em qualquer repositório — sem precisar rodar install em cada projeto.

Uso

# Push com review automático (recomendado)
git push

# Ou via comando dedicado
auto-review-push push origin main

# Ver último review
auto-review-push status

Como funciona

Via git push direto (após npm install -g)

  1. O postinstall configura um hook global (core.hooksPath) em ~/.config/auto-review-push/hooks/
  2. O hook pre-push salva o estado do remote antes do push
  3. Após o push, o review roda automaticamente usando o diff dos commits enviados
  4. O resultado aparece no terminal com indicadores de criticidade

Via auto-review-push push

  1. git push é executado normalmente (você vê o output)
  2. Se o push falhar, nada acontece
  3. Se funcionar, o review é executado e o resultado aparece no terminal

CLI de review

Suporta claude (preferencial) e opencode — detecta automaticamente qual está instalado.

Comandos

auto-review-push push <args>       # push com review
auto-review-push review            # roda review manualmente
auto-review-push status            # último resultado
auto-review-push install           # hooks locais no repo atual
auto-review-push install --global  # hooks globais (todos os repos)
auto-review-push uninstall         # remove hooks locais
auto-review-push uninstall --global# remove hooks globais
auto-review-push save-state        # salva HEAD atual (uso interno)
auto-review-push clear-state       # limpa estado salvo (uso interno)

Logs

Logs ficam em ~/.review-push/logs/.

Licença

MIT