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

gitcliai

v1.2.5

Published

GitAI - AI-powered Git assistant that helps write better commit messages and automate Git workflows

Downloads

7

Readme

🤖 GitAI - AI-Powered Git Assistant

Supercharge your Git workflow with AI! GitAI helps developers write better commit messages, automate branch creation, and maintain consistent Git practices.

License: MIT npm version


🎥 Demo


✨ Features

  • AI-Generated Commit Messages: Automatically generate meaningful commit messages from staged changes
  • Commit Message Checking: Fix spelling/grammar mistakes in your commit messages
  • Smart Branch Creation: Create branches from GitHub issue URLs automatically
  • Git Command Passthrough: All standard Git commands work normally
  • Multi-Model Support: Choose between GPT-3.5, GPT-4, or Gemini AI models

📦 Installation

Global Installation (Recommended)

npm install -g gitcliai

Using npx (No Installation)

npx gitcliai <command>

Via cURL (Mac/Linux)

curl -sSL https://raw.githubusercontent.com/JASIM0021/gitai/refs/heads/master/install.sh | bash

Windows (PowerShell)

irm https://raw.githubusercontent.com/JASIM0021/gitai/refs/heads/master/install.ps1 | iex

🚀 Usage

Fix staged changes with AI-generated message

gitai commit --fix-commit

Check and improve a commit message

gitai commit --spell-check "fix login bugg"

Create branch from GitHub issue

gitai checkout -b --issue https://github.com/user/repo/issues/123

Regular Git commands

gitai status
gitai push
gitai log --oneline

🛠 Commands

| Command | Description | | -------------------- | ------------------------------------------- | | commit --fix-commit (-fc) | Generate commit message from staged changes | | commit --spell-check (-sc) | Improve an existing commit message | | checkout -b --issue (-i) | Create branch from GitHub issue URL | | [any git command] | Pass through to standard Git |


⚙️ Configuration

First run will prompt for:

  • AI Model Selection (GPT-3.5, GPT-4, or Gemini)
  • API Key for your chosen provider

Credentials are stored securely in:

  • ~/.gitai_config (model preference)
  • ~/.gitai_key (API key with restricted permissions)

🧑‍💻 For Contributors

We welcome contributions! Here's how to get started:

Development Setup

Clone the repo:

git clone https://github.com/JASIM0021/gitai
cd gitai

Install dependencies:

npm install

Link for local development:

npm link

Project Structure

src/
├── main.js          # CLI entry point
├── ai/              # AI integration logic
├── config/          # Configuration handling

Testing

npm test

Publishing Changes

Update version in package.json

Run:

npm publish

📜 License

MIT License © SK Jasimuddin


🙏 Acknowledgements

Inspired by:

  • Conventional Commits
  • GitLens
  • Vs Code
  • Cursor

📬 Feedback

Found a bug? Have a feature request?
Open an issue or submit a PR!

⭐ Star the repo if you find this useful!