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 🙏

© 2025 – Pkg Stats / Ryan Hefner

commit-amt

v2.0.9

Published

AI-powered conventional commit message generator using Together.ai, smart CLI for easy, consistent git commits

Downloads

50

Readme

commit-amt 🧠

npm version npm downloads license

AI-powered conventional commit message generator using Together.ai's DeepSeek-V3 model.
Streamline your git workflow with smart, clear commit messages crafted by AI.


✨ Features

  • 🤖 AI-generated conventional commit messages
  • 📝 Analyzes your staged changes with git diff --cached
  • ✨ Uses Together.ai's DeepSeek-V3 for smart suggestions
  • 🎨 Colorful CLI interface with emojis
  • ✏️ Edit suggested commit messages before committing
  • 🔑 Secure API key management via .env file
  • 🚫 Handles missing API keys and no staged changes gracefully

📦 Installation

Use without installing globally:

npx commit-amt

Or install globally:

npm install -g commit-amt

🚀 Basic Usage

  1. Stage your changes:
git add .
  1. Run Commit AMT:
npx commit-amt
  1. Review the AI-suggested commit message.

  2. Choose to:

    • ✅ Use the suggested message as-is
    • ✏️ Edit the message manually
    • ❌ Cancel the commit

📌 How to Use

Auto mode (tries local → cloud → rules)

npx commit-amt

Force local mode

npx commit-amt--local

Force cloud mode

npx commit-amt--ai

🔧 Setup

  1. Get your free API key from Together.ai.
  2. Create a .env file in your project root with:
TOGETHER_API_KEY=your_api_key_here
  1. Commit AMT will automatically use this API key.

📝 Example Output

🧠 Commit AMT - AI-powered commit messages

🔍 Analyzing your changes...

✅ Suggested commit message:

  feat(auth): add OAuth2 authentication support

What would you like to do with this message?
❯ ✅ Use this message
  ✏️ Edit this message
  ❌ Cancel commit

📝 Committing changes...
🎉 Successfully committed!

❓ FAQ

How do I get the Together.ai API key?

Sign up for free at Together.ai, generate your API key, and add it to your .env.

What if I have no staged changes?

Stage your changes using git add <files> before running Commit AMT.

Can I edit the suggested commit message?

Yes! You can choose to edit the AI-generated message before committing.


🤝 Contributing

Contributions, issues, and feature requests are welcome! Feel free to:

  1. Fork the repo
  2. Create a new branch (git checkout -b feature-name)
  3. Commit your changes
  4. Push to the branch (git push origin feature-name)
  5. Open a pull request

📜 License

MIT © Abdullah Al Mubin