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

@ahmad_technology/commitlog-ai

v1.0.1

Published

Generate beautiful, human-readable CHANGELOG.md from your git commit history using AI — directly from your terminal.

Readme

⚡ commitlog — AI Changelog Generator

npm License: MIT

Generate beautiful, human-readable CHANGELOG.md from your git commit history using AI — directly from your terminal.


✨ Features

  • 🤖 Multi-provider AI — OpenAI, Anthropic, Google Gemini, Groq, NVIDIA NIM, OpenRouter, Ollama
  • 📝 Automatic Parsing — Smartly groups raw git log output by conventional types (feat, fix, chore, docs, breaking changes, etc.)
  • 🎨 Multiple output formats — KeepAChangelog (default), simple, detailed, or GitHub-release styles
  • ✏️ Interactive flow — Preview, edit, regenerate, prepend directly into existing files, or safely cancel
  • 🌍 Multi-language — Generate the changelog prose natively in any language
  • ⚡ Works offline — Local Ollama support to generate changelogs securely offline
  • 🖥️ Cross-platform — Distributed via single binaries for Windows, macOS, and Linux
  • 🧠 Zero-Config fallback — Works natively without AI keys via the --no-ai fallback formatter

📦 Installation

# npm (recommended)
npm install -g @ahmad_technology/commitlog-ai

# Or run directly without installation
npx @ahmad_technology/commitlog-ai

🚀 Quick Start

# 1. Setup API Keys (first time only)
commitlog setup

# 2. Run automatic generation! (Scans from latest tag to HEAD)
commitlog

What you'll see:

⠋ Reading 23 commits between v1.2.0 and v1.3.0...
⠋ Grouping by type...
⠋ Generating changelog with claude-3-5-sonnet...

✨ Generated changelog:

────────────────────────────────────
## [1.3.0] - 2026-04-19

### Added
- OAuth2 login with Google provider
...
────────────────────────────────────

  [ Prepend to CHANGELOG.md ]  [ Edit ]  [ Regenerate ] [ Copy ]  [ Cancel ]

> Prepend to CHANGELOG.md

✅ CHANGELOG.md updated successfully

🔧 Usage

commitlog                         # Auto-detect latest tag to HEAD
commitlog v1.2.0 v1.3.0            # Between two specific tags
commitlog abc123 def456            # Between two commit SHAs
commitlog --since "2 weeks ago"    # Time-based range
commitlog --provider anthropic     # Override AI provider
commitlog --model gemini-1.5-pro   # Override AI model
commitlog --format github-release  # GitHub release notes style
commitlog --lang fr                # Output changelog in French
commitlog --dry-run                # Print result, don't write file
commitlog --no-ai                  # Just group/format, no AI polish
commitlog setup                    # Interactive first-time config wizard
commitlog config list              # Display configuration

⚙️ Configuration

Config is successfully managed inside ~/.commitlog/config.toml:

[defaults]
provider = "openai"
model = "gpt-4o"
format = "keepachangelog"
output = "CHANGELOG.md"
language = "en"
max_commits = 500

[openai]
api_key = "sk-..."

[anthropic]
api_key = "sk-ant-..."

[gemini]
api_key = "AIza..."

[groq]
api_key = "gsk_..."

[openrouter]
api_key = "sk-or-..."

[nim]
api_key = "nvapi-..."
base_url = "https://integrate.api.nvidia.com/v1"

[ollama]
base_url = "http://localhost:11434"
model = "llama3"

🤖 Supported Providers

| Provider | Config Key | Notes | |---|---|---| | OpenAI | openai.api_key | GPT-4o, GPT-4-turbo | | Anthropic | anthropic.api_key | Claude 3.5 Sonnet+ | | Google Gemini | gemini.api_key | Gemini 1.5 Pro+ | | Groq | groq.api_key | Llama 3, ultra-fast generation | | NVIDIA NIM | nim.api_key | OpenAI-compatible endpoints | | OpenRouter | openrouter.api_key | 100+ multi-LLM router | | Ollama | None | Fully secure isolated offline |


🛠️ Development

# Clone & install
git clone https://github.com/AhmadTchnology/CommitLog-AI.git
cd CommitLog-AI
npm install

# Run in dev mode
npm run dev

# Run tests
npm test

# Build
npm run build

📄 License

MIT © AhmadTchnology

Made With ❤️ By AhmadTchnology