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

commitmind

v1.1.2

Published

AI-powered Git commit CLI using Ollama

Downloads

732

Readme

CommitMind

npm downloads license

CommitMind is an AI-powered Git CLI that automatically generates clean, meaningful commit messages using local LLMs via Ollama.

Stop wasting time writing commit messages. Let AI handle it — fast, private, and fully local.


Demo

Screenshot

Features

  • AI-generated semantic commit messages
  • Fast and local (no cloud, no API keys)
  • Privacy-first — your code never leaves your machine
  • Auto stage, commit, and push
  • Conventional commit format
  • Works in any Git project
  • Cross-platform (Windows, Mac, Linux)

Installation

Install globally:

npm install -g commitmind

Or with Bun:

bun add -g commitmind

Requirements

CommitMind uses Ollama to run AI locally.

Install Ollama

Download from: 👉 https://ollama.com

Start Ollama

ollama serve

Pull the model

ollama pull llama3

Usage

Auto generate commit message

aic auto

This will:

  1. Stage all changes
  2. Generate an AI commit message
  3. Commit automatically

Commit and push

aic push main

This will:

  1. Stage changes
  2. Generate commit
  3. Commit
  4. Push to branch

Model Configuration

CommitMind allows you to choose and persist your preferred local AI model.

First-time setup

On the first run, CommitMind will automatically prompt you to select an installed Ollama model.
Your choice will be saved and used for future commits.


Change model anytime

aic model set

##  Example Workflow

```bash
git checkout -b feature-auth
# make changes
aic auto
aic push main

View current model

aic model get

Override model (optional)

You can also specify a model directly:

aic auto --model mistral

Why CommitMind?

Writing commit messages is repetitive and often ignored. CommitMind helps maintain:

  • Clean project history
  • Semantic commits
  • Faster workflow
  • Better collaboration

All while keeping your data private.


Privacy First

CommitMind runs entirely on your machine using local models. Your source code is never sent to external servers.


Tech Stack

  • Node.js CLI
  • TypeScript
  • Ollama (Local LLM)
  • Conventional commits

Roadmap

  • Interactive commit preview
  • Smart commit type detection
  • Git hooks integration
  • VS Code extension
  • Multi-model support
  • Config file
  • Streaming AI output

Contributing

Contributions are welcome!

  1. Fork the repo
  2. Create a feature branch
  3. Submit a pull request

Support

If you like this project:

  • Star it on GitHub
  • Share with your friends
  • Give feedback

License

MIT © Nabin Sharma


Links

  • GitHub: https://github.com/Nabin-09/ai-commit-generator
  • Issues: https://github.com/Nabin-09/ai-commit-generator/issues

Made with ❤️ for developers.