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

@azcodes/gitaz

v1.3.1

Published

Gitaz is a modern, lightweight CLI tool that uses Artificial Intelligence to help you with your daily Git workflow. It helps you draft comprehensive commit messages, stages changes, and summarizes your git commits into clean, human-readable notes.

Readme

Gitaz - AI Git Assistant

Gitaz is a modern, lightweight CLI tool that uses Artificial Intelligence to help you with your daily Git workflow. It helps you draft comprehensive commit messages, stages changes, and summarizes your git commits into clean, human-readable notes.

Features

  • AI Generated Commits : Generate git commit messages based on your staged or unstaged diffs.
  • Smart Staging & Pushing : Stage, commit, and push your changes in a single command or review the message before applying it.
  • Clipboard Integration: Easily copy the AI-generated commit message to your clipboard.
  • Summarize Git Log : Automatically summarize Git Log into human-readable notes/summary.
  • AI Provider Agnostic : Works with your own AI provider (e.g OpenAI, Google Gen AI, Hack Club AI, etc)

Installation

You can install gitaz globally using npm:

npm install -g gitaz

Setup

Before using gitaz, you need to configure your own AI provider, model and API key.

gitaz setup

Commands Reference

1. gitaz setup

Configure your AI provider, model and API key.

gitaz setup

2. gitaz commit

Generate commit message based on your staged or unstaged diffs.

gitaz commit

The Above command will only generate a commit essage with option to copy the message to your clipboard or to apply the changes automatically.

You can use the -p, --auto-apply option to automatically stage, commit and push your changes.

gitaz commit -p
# or
gitaz commit --auto-apply

If you wish to only generate commit message for your staged changes only, you can use the -s, --staged-changes option.

gitaz commit -s
# or
gitaz commit --staged-changes

3. gitaz summary

Summarize your recent git commits into structured notes or summaries.

gitaz summary

You can use the -d, --days <number> option to define the timeframe in days to analyze. (default is 7 days)

gitaz summary -d 30
# or
gitaz summary --days 30

4. gitaz explain

Get a detailed explanation abou5 a particular commit, know what changed in a particular commit.

gitaz explain <commit hash>

Configuration

Gitaz stores configuration globally in your user home directory. (~/gitaz.json).

Config Format:

{
  "model": "<model-name>",
  "serverUrl": "<server-url>",
  "apiKey": "<api-key>"
}

Wanna work on Gitaz

You can contribute to Gitaz by following the same steps as any other open source project. Raise an issue or create a PR.

  1. Clone the repo

    git clone https://github.com/mumuniazeez/gitaz.git
    cd gitaz
  2. Install dependencies

    npm install
  3. Write your code

    Make the improvement you wanna make

  4. Test your code Since the code is written in TypeScript, you'll need to build/compile the code into JavaScript before you can test it.

    # To watch for changes and automatically compile
    npm run dev
    # To only build
    npm run build
  5. Create a pull request Feel free to create a PR, your contribution is really valuable

Licence

MIT

AI Usage Disclaimer

AI was used in this project to help with AI Providers setup.. all other feature were written by me..