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

@clanki/recap

v0.1.2

Published

A CLI tool that generates fair, unbiased engineering reviews from your GitHub activity

Readme

recap

A CLI tool that generates fair, unbiased engineering reviews from your GitHub activity.

Overview

Recap pulls your GitHub activity — PRs authored, PRs reviewed, commits, and PR comments — for a given time period and produces both a structured text report and an AI-generated engineering review. The AI summary evaluates your work honestly: what you shipped, quality signals, scope relative to the time period, collaboration patterns, strengths, and areas for improvement.

It handles GitHub's 1000-result search limit by automatically splitting date ranges and paginates through all results. Organization filtering lets you scope reports to a specific org.

Install

npm i @clanki/recap -g
bun i @clanki/recap -g
# or your favorite package manager

Prerequisites

  • GitHub auth (one of the following):
    • The GitHub CLI (gh) installed and authenticated — recap will use it automatically
    • A GITHUB_TOKEN or GH_TOKEN environment variable with read access to your repos and PRs
  • The claude CLI installed locally (used to generate AI summaries)

Usage

Run recap with no arguments to start interactive mode, which walks you through the options:

recap

Quick roast

Get a comedic roast of your recent GitHub activity:

recap roast

Full options

recap [options]

| Flag | Description | Default | |------|-------------|---------| | -t, --period <period> | Time period: week, month, quarter, year, or custom | week | | -s, --since <date> | Start date (YYYY-MM-DD), required with --period custom | — | | -u, --until <date> | End date (YYYY-MM-DD), required with --period custom | — | | -f, --format <format> | Output format: text, summary, or both | both | | --username <username> | GitHub username (defaults to the token owner) | — | | -o, --org <org> | Filter by GitHub organization | — | | -p, --prompt <prompt> | Custom prompt (replaces default review prompt; activity data is appended) | — | | -i, --interactive | Force interactive mode | — |

Examples

# Last week's recap (default)
recap

# Last quarter, text only
recap -t quarter -f text

# Custom date range for a specific org
recap -t custom -s 2025-01-01 -u 2025-03-31 -o my-org

# AI summary only for the past month
recap -t month -f summary

# Custom prompt
recap -p "Summarize this developer's work in 3 bullet points."

# Roast your last month of work
recap roast

# Roast scoped to an org
recap roast -o my-org