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

claude-lazygit

v1.1.1

Published

AI-powered commit message generator using Claude Code CLI

Readme

claude-lazygit

AI-powered commit message generator using Claude Code CLI. A variant of bunnai that uses Claude instead of OpenAI.

Features

  • Zero config - Uses Claude Code CLI's existing authentication
  • High-quality output - Generates one focused commit message with option to regenerate
  • Conventional commits - Follows the Conventional Commits specification
  • Lazygit integration - One-command install for lazygit custom commands

Prerequisites

Installation

# Install globally from npm
npm install -g claude-lazygit

# Or with bun
bun install -g claude-lazygit

From source

git clone https://github.com/godlyfast/claude-lazygit.git
cd claude-lazygit
bun install
bun run build
npm link

Usage

Generate commit message

# Stage your changes first
git add .

# Generate commit message
claude-lazygit

# Options
claude-lazygit --verbose  # Enable verbose output

The tool generates one high-quality commit message. You can then:

  • Accept - Use the message
  • Regenerate - Generate a new message
  • Cancel - Exit without committing

Install lazygit integration

# Automatically configure lazygit (interactive)
claude-lazygit install

# Skip confirmation prompt
claude-lazygit install -y

This adds a custom command to lazygit. Press Ctrl+A in the files panel to generate AI commit messages.

Manual Lazygit Configuration

If you prefer to configure manually, add to ~/.config/lazygit/config.yml:

customCommands:
  - key: "<c-a>"
    description: "Generate AI commit message"
    context: "files"
    command: "claude-lazygit"
    subprocess: true

How it Works

  1. Gets the staged diff using git diff --cached
  2. Sends diff to Claude Code CLI with optimized prompt for conventional commits
  3. Displays the generated commit message
  4. Allows accept, regenerate, or cancel
  5. Outputs the accepted message to stdout

Commands

| Command | Description | | ----------------------------- | ------------------------------------------- | | claude-lazygit | Generate commit messages for staged changes | | claude-lazygit install | Install lazygit integration (interactive) | | claude-lazygit install -y | Install lazygit integration without confirm | | claude-lazygit uninstall | Remove lazygit integration (interactive) | | claude-lazygit uninstall -y | Remove lazygit integration without confirm | | claude-lazygit --help | Show help |

Options

| Option | Alias | Default | Description | | ----------- | ----- | ------- | --------------------- | | --verbose | -v | false | Enable verbose output |

License

MIT