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

@arshad657/gitcommit-ai

v1.0.6

Published

An AI-powered Git commit message generator CLI tool.

Readme

GitCommit AI

AI-powered Git commit message generator for developers.

Generate meaningful commit messages directly from your staged Git changes and automatically create commits using your own API key.

npm license downloads


Features

  • 🤖 AI-generated commit messages
  • 📝 Conventional Commit support
  • 🚀 Automatic Git commits
  • 📄 Optional commit descriptions
  • 🔑 Bring Your Own API Key
  • ⚡ Fast CLI experience
  • 🌍 Cross-platform support
  • 🔒 Privacy-focused
  • 🛠 Open source

Installation

Global Installation

npm install -g @arshad657/gitcommit-ai

Verify Installation

gitcommit --version

Quick Start

1. Initialize GitCommit AI

gitcommit init

You will be prompted to enter your API key.

2. Stage Your Changes

git add .

3. Generate and Commit

gitcommit

Example output:

✦ Generated: feat(auth): implement GitHub OAuth login

─────────────────────────────────────────

Commit with this message? [Y/n]

You can confirm with y, yes, or by pressing Enter.


Commands

Generate Commit and Prompt for Confirmation

gitcommit

Generate Commit With Description

gitcommit --body

Example:

feat(auth): implement GitHub OAuth login

- Added GitHub OAuth flow
- Added callback handling
- Added token persistence

Skip Confirmation Prompt (Automatic Commit)

gitcommit --auto
# or
gitcommit --yes

Reconfigure API Key

gitcommit init

Example Workflow

git add .

gitcommit --body

Output:

feat(user): add profile image upload

- Added image upload endpoint
- Added file validation
- Updated profile settings UI

Once confirmed, GitCommit AI will execute:

git commit -m "feat(user): add profile image upload" -m "Added image upload endpoint..."

Why GitCommit AI?

Writing commit messages is repetitive.

GitCommit AI analyzes your staged changes and generates concise, meaningful commit messages following modern Git conventions.

Focus on building products instead of thinking about commit wording.


Privacy

GitCommit AI:

  • Does not store source code
  • Does not collect analytics
  • Does not track users
  • Uses your own API key
  • Processes only the staged Git diff required to generate commit messages

Roadmap

v1

  • CLI commit generation
  • Automatic commit creation
  • Commit descriptions

v2

  • Documentation website
  • Interactive onboarding

v3

  • VS Code Extension

v4

  • Team collaboration features

Contributing

Contributions are welcome.

git clone https://github.com/@arshad657/gitcommit-ai/@arshad657/gitcommit-ai.git

Create a feature branch:

git checkout -b feature/amazing-feature

Commit your changes:

git commit -m "feat: add amazing feature"

Push your branch:

git push origin feature/amazing-feature

Open a Pull Request.


License

MIT License


Made for developers who prefer coding over writing commit messages.