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

gitzen

v0.1.8

Published

🧠 AI-powered CLI tool for automatic git commit message generation

Readme

cli version Downloads/week Build Status License

Gitzen: AI-powered CLI Tool for Automatic Git Commit Message Generation

Gitzen is a command-line tool that uses AI to automatically generate concise and well-formatted git commit messages. It integrates with popular AI providers like Google Gemini and supports customizable templates and languages.

gitzen


πŸ“š Table of Contents


πŸ“¦ Installation

You can install Gitzen globally using your preferred package manager:

npm install -g gitzen
# or
pnpm add -g gitzen
# or
yarn global add gitzen

Once installed globally, the gitzen command will be available anywhere in your system.

🧾 Gitzen Command Summary

| Command | Description | Notes | Requires Staging | | ------------------ | ------------------------------------------------------ | ------------------------------------------------------------------ | ---------------- | | gitzen start | πŸš€ Initialize Gitzen setup and config | Run once to configure the CLI | ❌ | | gitzen commit | πŸ’Ύ Generate commit message with AI from staged changes | Requires staged files. Optional: -y to auto-accept, -e to edit | βœ… | | gitzen summarize | 🧠 Summarize changes in staging/working dir | Optional: -l <language> | ❌ | | gitzen batch | πŸ“‚ Group unstaged changes and commit in logical order | Optional: -i to ignore gitzen.config.json | ❌ | | gitzen review | πŸ” Gives you a review of the code in the staging area | Requires staged files. Optional: -l <language> | βœ… |

Love Gitzen? Support the project by buying me a coffee! β˜•οΈ
Ko‑fi

πŸ“ Project Structure

The following is the folder and file structure of the project:

gitzen/
β”œβ”€β”€ __tests__/
β”‚   β”œβ”€β”€ commitFlow.test.ts
β”‚   └── summarizerFlow.test.ts
β”‚
β”œβ”€β”€ .github/
β”‚   └── workflows/
β”‚       β”œβ”€β”€ lint_format.yaml
β”‚       β”œβ”€β”€ publish.yaml
β”‚       └── test.yaml
β”‚
β”œβ”€β”€ .husky/
β”œβ”€β”€ dist/
β”œβ”€β”€ docs/
β”œβ”€β”€ node_modules/
β”‚
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ commands/
β”‚   β”œβ”€β”€ providers/
β”‚   β”œβ”€β”€ templates/
β”‚   β”œβ”€β”€ utils/
β”‚   └── index.ts
β”‚
β”œβ”€β”€ types.d.ts
β”œβ”€β”€ .gitignore
β”œβ”€β”€ .npmignore
β”œβ”€β”€ .npmrc
β”œβ”€β”€ .prettierignore
β”œβ”€β”€ .eslintrc.json
β”œβ”€β”€ gitzen.config.json
β”œβ”€β”€ LICENSE
β”œβ”€β”€ package.json
β”œβ”€β”€ package-lock.json
β”œβ”€β”€ prettier.config.mjs
β”œβ”€β”€ README.md
β”œβ”€β”€ tsconfig.json
β”œβ”€β”€ tsup.config.ts
└── vitest.config.ts