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

orcommit

v1.2.13

Published

AI-powered commit message generator - Automated git commits using OpenAI, Claude, and OpenRouter APIs with intelligent diff processing, custom prompts, and interactive regeneration

Readme

ORCommit

AI-powered Git commits with security, standards, and full control

Generate accurate, conventional, and secure git commit messages using OpenAI, Claude, OpenRouter, or local models (Ollama).

git add .
orc commit

✔ Conventional Commits ✔ Secret scanning (Gitleaks) ✔ Cloud & local AI ✔ Zero-config to start


TL;DR

ORCommit is a production-grade CLI that:

  • analyzes your staged git diff
  • generates a high-quality commit message via LLMs
  • enforces Conventional Commits
  • blocks secrets and dependency folders before commit
  • works with both cloud and local AI models

If you care about clean history, security, and standards — this tool is for you.


✨ Key Features

🤖 AI Providers

  • OpenAI (GPT‑4, GPT‑3.5)
  • Claude via OpenRouter (200+ models)
  • Local models via Ollama (offline & private)

🧠 Smart Commit Generation

  • Token-aware diff chunking (large repos supported)
  • Interactive regeneration with feedback
  • Custom prompts & project context
  • Conventional Commits by default

🔐 Security by Default

  • Secret scanning via Gitleaks (100+ patterns)
  • Blocks API keys, tokens, private keys
  • Prevents committing node_modules/, vendor/, etc.
  • Secure API key storage (600 permissions)

⚙️ Git-Native Workflow

  • Breaking change detection
  • Optional push after commit
  • Git hooks support

⚡ Fast & Reliable

  • Memory + disk cache
  • Parallel API calls
  • Strict TypeScript + comprehensive tests

🚀 Quick Start

npm install -g orcommit
orc config set openrouter YOUR_API_KEY

git add .
orc commit

That’s it.


🛠 Common Commands

orc commit                 # interactive commit
orc commit --yes           # auto-confirm
orc commit --context "..." # extra context
orc commit --emoji         # gitmoji
orc commit --breaking      # breaking change
orc commit --dry-run       # preview only

👉 Full CLI reference


🔐 Security Highlights

ORCommit includes mandatory security checks:

  • 🔍 Secret scanning via Gitleaks
  • 🚫 Blocks API keys, tokens, private keys
  • 🚫 Prevents committing dependency folders

These checks run before commit creation and cannot be bypassed accidentally.

👉 Security details


💡 Who Is ORCommit For?

  • Teams — enforce commit standards automatically
  • Open Source — keep contribution quality high
  • Enterprise — prevent leaks and ensure compliance

⚙️ Configuration

Config is stored at ~/.config/orcommit.json (permissions 600).

{
  "preferences": {
    "defaultProvider": "openrouter",
    "commitFormat": "conventional",
    "temperature": 0.6
  }
}

Environment variables are also supported:

export OPENROUTER_API_KEY="your-key"
export OPENAI_API_KEY="your-key"

📚 Documentation


🤝 Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Add tests
  4. Submit a pull request

🏢 About the Maintainers

ORCommit is built and maintained by Reforms.ai — a team specializing in AI-powered developer tools.

Commercial support, consulting, and custom AI integrations are available.


📄 License

MIT License — see LICENSE.


Built with ❤️ using TypeScript and modern AI tooling.