EveryDev.ai
Subscribe
Home
Tools

3,020+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2063
  • Coding1441
  • Infrastructure665
  • Marketing524
  • Projects470
  • Research437
  • Design408
  • Analytics371
  • MCP268
  • Security265
  • Testing255
  • Data249
  • Integration183
  • Prompts183
  • Communication172
  • Learning166
  • Extensions163
  • Voice146
  • Commerce132
  • DevOps115
  • Web84
  • Finance24
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. OpenCommit
    OpenCommit icon

    OpenCommit

    AI Coding Assistants
    Featured

    AI-powered CLI tool that auto-generates meaningful git commit messages in seconds using GPT, Claude, Ollama, and other LLM providers.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free and open-source under the MIT license. Users pay only for their own LLM API usage directly to the provider.

    Engagement

    Available On

    Web
    API
    CLI

    Resources

    WebsiteGitHubllms.txt

    Topics

    AI Coding AssistantsVersion ControlCommand Line Assistants

    Alternatives

    SafeSandboxGitAIStage CLI
    Developer
    Dima SukharevDima Sukharev builds developer productivity tools, most nota…

    Listed Jul 2026

    About OpenCommit

    OpenCommit is an open-source CLI tool created by Dima Sukharev that uses large language models to automatically generate meaningful, conventional commit messages from your staged git changes. It runs with a single oco command, supports every major LLM provider, and won the GitHub 2023 hackathon. The project is published under the MIT license and all commits in its own repository are authored by OpenCommit itself.

    What It Is

    OpenCommit is a command-line git commit message generator that reads your staged diff and sends it to an LLM to produce a structured, human-readable commit message in about two seconds. It defaults to OpenAI's gpt-4o-mini model but supports OpenAI, Anthropic (Claude), Azure OpenAI, Google Gemini, DeepSeek, Flowise, Ollama, llama.cpp, and the aimlapi gateway — essentially any provider with an OpenAI-compatible API endpoint. The tool follows the Conventional Commits specification by default and optionally integrates with @commitlint to respect per-repo commit rules.

    Setup Path

    Installation is a single npm command:

    npm install -g opencommit
    

    After setting an API key with oco config set OCO_API_KEY=<key>, the workflow is:

    • git add <files> (or let oco stage everything)
    • oco — generates and confirms the commit message

    Configuration lives in a global ~/.opencommit file or a per-repo .env file. Local config takes priority over global config, making it easy to use different models or emoji settings per project.

    Key Capabilities

    • Multi-provider model support: switch providers and models via oco config set OCO_AI_PROVIDER and oco config set OCO_MODEL
    • Local inference: run fully offline with Ollama (default model: mistral) or llama.cpp by pointing OCO_API_URL at a local server
    • Git hook integration: install as a prepare-commit-msg hook with oco hook set so it fires automatically on every git commit and integrates with IDE source control panels
    • GitHub Actions support (beta): a workflow action that rewrites commit messages on every push to non-main branches
    • GitMoji support: optionally prefix messages with emoji from the GitMoji spec; a --fgm flag enables the full specification
    • Locale support: generate commit messages in any language via OCO_LANGUAGE
    • File ignore list: a .opencommitignore file prevents large assets or sensitive files from being sent to the LLM
    • Message templates: embed issue/PR numbers around the generated message using OCO_MESSAGE_TEMPLATE_PLACEHOLDER
    • Model management: oco models lists available models for the current provider; models are cached for 7 days

    Why It Got Attention

    The project won the GitHub 2023 hackathon and has accumulated over 7,400 GitHub stars with 432 forks, according to the repository metadata. The self-dogfooding approach — every commit in the OpenCommit repo is generated by OpenCommit — serves as a live demonstration of the tool's output quality. The README describes it as "top #1 and most feature rich GPT wrapper for git."

    Update: Version 3.3.7

    The npm package shows version 3.3.7 published 3 days ago (as of the crawl date), with 140 total versions released since the project launched in March 2023. Recent additions include llama.cpp provider support, model caching with a 7-day TTL, the oco models command for provider-specific model discovery, custom HTTP header support via OCO_API_CUSTOM_HEADERS, and proxy configuration. The GitHub Action release track is separately versioned (latest: github-action-v1.0.2). Active weekly downloads of approximately 2,133 on npm indicate ongoing community use.

    OpenCommit - 1

    Community Discussions

    Be the first to start a conversation about OpenCommit

    Share your experience with OpenCommit, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Free and open-source under the MIT license. Users pay only for their own LLM API usage directly to the provider.

    • Full CLI tool via npm install
    • Multi-provider LLM support
    • Local inference with Ollama and llama.cpp
    • Git hook integration
    • GitHub Actions support

    Capabilities

    Key Features

    • AI-generated conventional commit messages
    • Multi-provider LLM support (OpenAI, Anthropic, Azure, Gemini, DeepSeek, Flowise, aimlapi)
    • Local inference via Ollama and llama.cpp
    • Git prepare-commit-msg hook integration
    • GitHub Actions workflow support (beta)
    • GitMoji emoji prefix support
    • Full GitMoji specification flag (--fgm)
    • Skip confirmation flag (--yes)
    • Per-repo and global configuration
    • Locale/language configuration for commit messages
    • commitlint integration
    • Message template placeholder support
    • File ignore list via .opencommitignore
    • Model management with 7-day caching
    • Proxy support
    • One-line commit mode

    Integrations

    OpenAI
    Anthropic Claude
    Azure OpenAI Service
    Google Gemini
    DeepSeek
    Flowise
    aimlapi
    Ollama
    llama.cpp
    GitHub Actions
    commitlint
    GitMoji
    API Available

    Ratings & Reviews

    No ratings yet

    Be the first to rate OpenCommit and help others make informed decisions.

    Developer

    Dima Sukharev

    Dima Sukharev builds developer productivity tools, most notably OpenCommit — an open-source CLI that auto-generates meaningful git commit messages using LLMs. The project won the GitHub 2023 hackathon and supports every major AI provider including OpenAI, Anthropic, Ollama, and llama.cpp. Sukharev maintains the project actively on GitHub and shares updates via Twitter.

    Read more about Dima Sukharev
    WebsiteGitHubX / Twitter
    1 tool in directory

    Similar Tools

    SafeSandbox icon

    SafeSandbox

    A local-first CLI tool that automatically creates git snapshots while AI coding agents modify your repository, enabling instant rollback if an agent breaks something.

    GitAI icon

    GitAI

    AI-powered Git commit message generator that creates meaningful, conventional commit messages from your staged changes.

    Stage CLI icon

    Stage CLI

    AI-powered CLI code review tool that organizes local code changes into logical chapters and highlights what to review before diving into the code.

    Browse all tools

    Related Topics

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    596 tools

    Version Control

    AI tools that enhance version control systems and code management.

    30 tools

    Command Line Assistants

    AI-powered command-line assistants that help developers navigate, search, and execute terminal commands with intelligent suggestions and context awareness.

    171 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions