AiCommitMessage 2.0.6

dotnet tool install --global AiCommitMessage --version 2.0.6
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local AiCommitMessage --version 2.0.6
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=AiCommitMessage&version=2.0.6
                    
nuke :add-package AiCommitMessage --version 2.0.6
                    

GIT Hooks + OpenAI - Generate GIT commit messages from OpenAI

🧠 🤖 This tool generates AI-powered commit messages via Git hooks, automating meaningful message suggestions from OpenAI and others to improve commit quality and efficiency.

GitHub last commit GitHub license time tracker

Continuous Integration Infisical secrets check Linter check


What this tool does

Generates a commit message based on the git diff result using the OpenAI API.


Requirements


Getting started

AICommitMessage NuGet Version AICommitMessage NuGet Downloads

This repository is available at NuGet under the name AICommitMessage.

Installation

  1. Install the tool globally (or per project/repository).
  2. Move to the project folder.
  3. Install the Git hook on the default hooks directory.
dotnet tool install -g AiCommitMessage
cd my-project/
dotnet-aicommitmessage install-hook
git add .
git commit -m ""

Use git log -1 to review the last commit details and find the automatically generated commit message.


Model Configuration and Settings

To configure and use models with dotnet-aicommitmessage, users need to set their settings once. This setup involves specifying the model, API key, and API URL. These settings will be stored as environment variables for future use.

Initial Setup

Run the following commands to configure the model and related settings:

# OpenAI GPT-5.1 (flagship model - best quality)
dotnet-aicommitmessage set-settings -m gpt-5.1 -k {api-key} -u {api-url}

# OpenAI GPT-5 Mini (balanced performance and cost)
dotnet-aicommitmessage set-settings -m gpt-5-mini -k {api-key} -u {api-url}

# OpenAI GPT-5 Nano (fastest and most cost-effective)
dotnet-aicommitmessage set-settings -m gpt-5-nano -k {api-key} -u {api-url}

# OpenAI GPT-4o Mini
dotnet-aicommitmessage set-settings -m gpt-4o-mini -k {api-key} -u {api-url}

# Azure AI Llama
dotnet-aicommitmessage set-settings -m llama-3-1-405b-instruct -k {api-key} -u {api-url}

Replace {api-key} with your API key and {api-url} with the URL of your API provider.

Switching Models

After the initial setup, you can easily switch between models without needing to provide the API key or URL again:

dotnet-aicommitmessage set-settings -m gpt-5.1
dotnet-aicommitmessage set-settings -m gpt-5-mini
dotnet-aicommitmessage set-settings -m gpt-5-nano
dotnet-aicommitmessage set-settings -m gpt-4o-mini
dotnet-aicommitmessage set-settings -m llama-3-1-405b-instruct

This allows for quick model changes while retaining your previously configured API details.


Supported Models

The tool supports the following AI models:

Model Provider Description
gpt-5.1 OpenAI Flagship GPT-5 model with best quality and capabilities
gpt-5-mini OpenAI Balanced model offering good performance at lower cost
gpt-5-nano OpenAI Most cost-effective option with fastest response times
gpt-4o-mini OpenAI Previous generation model, still highly capable
llama-3-1-405b-instruct Azure AI Meta's Llama model via Azure AI services

Default Model: gpt-5.1 (automatically used if no model is specified)


Commit message pattern

The training model for the AI used is designed using as reference these guidelines:


Sequence of Execution

Here's a flow diagram showing the sequence of execution of the prepare-commit-msg hook and its integration with dotnet-aicommitmessage to generate commit messages using the OpenAI API:

graph TD
    A[Git Commit] --> B[prepare-commit-msg Hook Trigger]
    B --> C[Invoke dotnet-aicommitmessage Tool]
    C --> D{API Disabled?}
    D -->|No| E[Send Data to OpenAI API]
    D -->|Yes| F[Use Fallback Message Generation]
    E --> G[Generate Commit Message]
    F --> G
    G --> H[Check and append pre-defined commands to Commit Message]
    H --> I[Return Generated Commit Message]
    I --> J[Insert Commit Message into Git Commit]
    J --> K[Finalize Commit]

Commands

This tool accepts an argument as the command to execute. Here is a list of available commands:

Command Description
install-hook Installs GIT hooks in the default .git/hooks directory or in the custom directory configured in GIT settings.
generate-message Generates a commit message based on the current changes (git diff context).
set-settings Set the OpenAI settings.
help Display information about this program.
version Display version information.

Example output

Here is an example of the commit messages generated in a real-world project:

example

Debug

You can run the message generation manually to debug it, but it will not commit the content to your GIT repository. If you also want to check the OpenAI JSON response, append the -D parameter.

Manually generating the commit message

To manually generate a commit message without committing the staged changes, run the following command:

dotnet-aicommitmessage generate-message -m "."

Saving the OpenAI JSON response

If you want to persist the OpenAI JSON response, add the -D parameter, and a debug.json file will be created with the response JSON.

dotnet-aicommitmessage generate-message -Dm "."

Here is a sample debug.json content:

{
  "Value": {
    "CreatedAt": "2024-11-20T12:54:03+00:00",
    "FinishReason": 0,
    "ContentTokenLogProbabilities": [],
    "RefusalTokenLogProbabilities": [],
    "Role": 2,
    "Content": [
      {
        "Kind": 0,
        "Text": "feat - add reactivation handling for refunds due today",
        "ImageUri": null,
        "ImageBytes": null,
        "ImageBytesMediaType": null,
        "ImageDetailLevel": null,
        "Refusal": null
      }
    ],
    "ToolCalls": [],
    "Refusal": null,
    "FunctionCall": null,
    "Id": "chatcmpl-[[REDACTED]]",
    "Model": "gpt-4o-mini-2024-07-18",
    "SystemFingerprint": "fp-[[REDACTED]]",
    "Usage": {
      "OutputTokenCount": 10,
      "InputTokenCount": 6229,
      "TotalTokenCount": 6239,
      "OutputTokenDetails": {
        "ReasoningTokenCount": 0
      }
    }
  }
}

Configuration Options

The tool supports several configuration options through environment variables:

Disable API Calls

In some network environments, the OpenAI API may be blocked due to firewall or proxy restrictions. You can disable API calls entirely by setting the following environment variable:

export DOTNET_AICOMMITMESSAGE_DISABLE_API=true

Or on Windows:

set DOTNET_AICOMMITMESSAGE_DISABLE_API=true

When this option is enabled, the tool will:

  • Skip any calls to the OpenAI API
  • Display a warning message indicating that API calls are disabled
  • Use fallback commit message generation (either the provided message or a placeholder)
  • Continue to work with branch name processing and issue number extraction

Contributors

<table> <tbody> <tr> <td align="center"> <a href="https://github.com/guibranco"> <img src="https://avatars.githubusercontent.com/u/3362854?v=4" width="100;" alt="guibranco"/> <br /> <sub><b>Guilherme Branco Stracini</b></sub> </a> </td> <td align="center"> <a href="https://github.com/krisbiradar"> <img src="https://avatars.githubusercontent.com/u/104765390?v=4" width="100;" alt="krisbiradar"/> <br /> <sub><b>Kris</b></sub> </a> </td> <td align="center"> <a href="https://github.com/Malay-dev"> <img src="https://avatars.githubusercontent.com/u/91375797?v=4" width="100;" alt="Malay-dev"/> <br /> <sub><b>Malay Kumar</b></sub> </a> </td> <td align="center"> <a href="https://github.com/RyanFloresTT"> <img src="https://avatars.githubusercontent.com/u/53247675?v=4" width="100;" alt="RyanFloresTT"/> <br /> <sub><b>Ryan Flores</b></sub> </a> </td> </tr> <tbody> </table>

Bots

<table> <tbody> <tr> <td align="center"> <a href="https://github.com/dependabot[bot]"> <img src="https://avatars.githubusercontent.com/in/29110?v=4" width="100;" alt="dependabot[bot]"/> <br /> <sub><b>dependabot[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/penify-dev[bot]"> <img src="https://avatars.githubusercontent.com/in/399279?v=4" width="100;" alt="penify-dev[bot]"/> <br /> <sub><b>penify-dev[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/gitauto-ai[bot]"> <img src="https://avatars.githubusercontent.com/in/844909?v=4" width="100;" alt="gitauto-ai[bot]"/> <br /> <sub><b>gitauto-ai[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/github-actions[bot]"> <img src="https://avatars.githubusercontent.com/in/15368?v=4" width="100;" alt="github-actions[bot]"/> <br /> <sub><b>github-actions[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/pixeebot[bot]"> <img src="https://avatars.githubusercontent.com/in/193111?v=4" width="100;" alt="pixeebot[bot]"/> <br /> <sub><b>pixeebot[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/snyk-bot"> <img src="https://avatars.githubusercontent.com/u/19733683?v=4" width="100;" alt="snyk-bot"/> <br /> <sub><b>Snyk bot</b></sub> </a> </td> </tr> <tr> <td align="center"> <a href="https://github.com/codefactor-io"> <img src="https://avatars.githubusercontent.com/u/11671095?v=4" width="100;" alt="codefactor-io"/> <br /> <sub><b>CodeFactor</b></sub> </a> </td> </tr> <tbody> </table>

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last Updated
2.0.6 110 12/22/2025
2.0.5 215 12/15/2025
2.0.4 214 12/15/2025
2.0.3 202 12/15/2025
2.0.2 207 12/15/2025
2.0.1 192 12/4/2025
2.0.0 195 12/4/2025
1.1.45 196 12/4/2025
1.1.44 176 11/24/2025
1.1.43 178 11/24/2025
1.1.42 178 11/24/2025
1.1.41 187 11/24/2025
1.1.40 177 11/24/2025
1.1.39 177 11/24/2025
1.1.38 176 11/24/2025
1.1.37 176 11/24/2025
1.1.36 277 11/11/2025
1.1.35 221 11/10/2025
1.1.34 219 11/10/2025
1.1.33 197 11/3/2025
1.1.32 167 10/22/2025
1.1.31 171 10/22/2025
1.1.30 167 10/22/2025
1.1.29 171 10/15/2025
1.1.28 170 10/15/2025
1.1.27 166 10/15/2025
1.1.26 179 10/6/2025
1.1.25 192 10/2/2025
1.1.24 276 9/15/2025
1.1.23 261 9/15/2025
1.1.22 180 9/8/2025
1.1.21 188 9/8/2025
1.1.20 182 9/8/2025
1.1.19 184 9/3/2025
1.1.18 179 9/3/2025
1.1.17 201 9/3/2025
1.1.16 168 8/18/2025
1.1.15 173 8/11/2025
1.1.14 248 8/6/2025
1.1.13 152 7/28/2025
1.1.12 155 7/28/2025
1.1.11 556 7/22/2025
1.1.10 442 7/21/2025
1.1.9 117 7/18/2025
1.1.8 123 7/18/2025
1.1.7 172 7/17/2025
1.1.6 166 7/17/2025
1.1.5 173 7/17/2025
1.1.4 167 7/17/2025
1.1.3 173 7/17/2025
1.1.2 184 7/15/2025
1.1.1 175 7/15/2025
1.1.0 180 7/14/2025
1.0.29 176 7/14/2025
1.0.28 174 7/14/2025
1.0.27 177 7/14/2025
1.0.26 180 7/10/2025
1.0.25 171 6/30/2025
1.0.24 215 6/16/2025
1.0.23 268 6/9/2025
1.0.22 247 6/9/2025
1.0.21 190 5/26/2025
1.0.20 196 5/26/2025
1.0.19 175 5/19/2025
1.0.18 185 5/19/2025
1.0.17 183 5/19/2025
1.0.16 255 5/12/2025
1.0.15 240 5/12/2025
1.0.14 194 5/8/2025
1.0.13 194 5/8/2025
1.0.12 186 5/8/2025
1.0.11 189 5/6/2025
1.0.10 214 4/21/2025
1.0.9 254 4/14/2025
1.0.8 230 4/14/2025
1.0.7 196 4/7/2025
1.0.6 198 3/31/2025
1.0.5 392 3/24/2025
1.0.4 186 3/19/2025
1.0.3 179 3/19/2025
1.0.2 196 3/17/2025
1.0.1 193 3/17/2025
1.0.0 263 3/5/2025
0.12.34 192 3/3/2025
0.12.33 193 3/3/2025
0.12.32 203 3/3/2025
0.12.31 211 3/3/2025
0.12.30 176 2/26/2025
0.12.29 144 2/24/2025
0.12.28 154 2/17/2025
0.12.27 156 2/10/2025
0.12.26 166 2/3/2025
0.12.25 144 1/27/2025
0.12.24 140 1/27/2025
0.12.23 149 1/27/2025
0.12.22 132 1/21/2025
0.12.21 137 1/21/2025
0.12.20 156 1/20/2025
0.12.19 156 1/20/2025
0.12.18 136 1/20/2025
0.12.17 137 1/13/2025
0.12.16 133 1/13/2025
0.12.15 119 1/13/2025
0.12.14 151 1/6/2025
0.12.13 143 1/6/2025
0.12.12 144 1/6/2025
0.12.11 154 1/6/2025
0.12.10 158 12/31/2024
0.12.9 149 12/31/2024
0.12.8 157 12/30/2024
0.12.7 151 12/30/2024
0.12.6 171 12/25/2024
0.12.5 157 12/25/2024
0.12.4 157 12/25/2024
0.12.3 166 12/23/2024
0.12.2 132 12/23/2024
0.12.1 175 12/16/2024
0.12.0 178 12/12/2024
0.11.12 165 12/9/2024
0.11.11 146 12/9/2024
0.11.10 158 12/3/2024
0.11.9 135 12/3/2024
0.11.8 129 12/2/2024
0.11.7 161 12/2/2024
0.11.6 157 12/2/2024
0.11.5 146 12/2/2024
0.11.4 153 11/26/2024
0.11.3 146 11/26/2024
0.11.2 138 11/26/2024
0.11.1 149 11/25/2024
0.11.0 146 11/23/2024
0.10.2 160 11/23/2024
0.10.1 155 11/23/2024
0.10.0 167 11/20/2024
0.9.1 157 11/20/2024
0.9.0 144 11/20/2024
0.8.8 153 11/18/2024
0.8.7 149 11/18/2024
0.8.6 153 11/15/2024
0.8.5 150 11/15/2024
0.8.4 174 11/12/2024
0.8.3 161 11/11/2024
0.8.2 148 11/11/2024
0.8.1 144 11/4/2024
0.8.0 161 11/1/2024
0.7.9 143 11/1/2024
0.7.8 159 11/1/2024
0.7.7 152 11/1/2024
0.7.6 131 11/1/2024
0.7.5 154 11/1/2024
0.7.4 149 10/28/2024
0.7.3 155 10/28/2024
0.7.2 144 10/28/2024
0.7.1 154 10/27/2024
0.7.0 139 10/26/2024
0.6.1 156 10/26/2024
0.6.0 148 10/22/2024
0.5.1 134 10/22/2024
0.5.0 129 10/22/2024
0.4.23 145 10/22/2024
0.4.22 149 10/22/2024
0.4.21 160 10/21/2024
0.4.20 233 10/19/2024
0.4.19 173 10/19/2024
0.4.18 163 10/19/2024
0.4.17 170 10/19/2024
0.4.16 181 10/19/2024
0.4.15 172 10/19/2024
0.4.14 182 10/19/2024
0.4.13 187 10/19/2024
0.4.12 176 10/19/2024
0.4.11 187 10/19/2024
0.4.10 187 10/19/2024
0.4.9 136 10/14/2024
0.4.8 155 10/14/2024
0.4.7 180 10/14/2024
0.4.6 158 10/8/2024
0.4.5 146 10/8/2024
0.4.4 158 10/8/2024
0.4.3 156 10/8/2024
0.4.2 152 10/8/2024
0.4.1 147 10/8/2024
0.4.0 152 10/8/2024
0.3.11 142 10/8/2024
0.3.10 191 10/8/2024
0.3.9 151 10/8/2024
0.3.8 161 10/8/2024
0.3.7 142 10/8/2024
0.3.6 152 10/8/2024
0.3.5 143 10/7/2024
0.3.4 148 10/7/2024
0.3.3 182 9/30/2024
0.3.2 166 9/30/2024
0.3.1 164 9/25/2024
0.3.0 164 9/25/2024
0.2.7 163 9/23/2024
0.2.6 168 9/23/2024
0.2.5 165 9/23/2024
0.2.4 167 9/23/2024
0.2.3 155 9/23/2024
0.2.2 195 9/23/2024
0.2.1 149 9/21/2024
0.2.0 161 9/20/2024
0.1.29 155 9/20/2024
0.1.28 154 9/20/2024
0.1.27 153 9/20/2024
0.1.26 159 9/20/2024
0.1.25 160 9/20/2024
0.1.24 154 9/20/2024
0.1.23 172 9/17/2024
0.1.22 172 9/17/2024
0.1.21 151 9/17/2024
0.1.20 158 9/17/2024
0.1.19 169 9/17/2024
0.1.18 158 9/17/2024
0.1.17 162 9/17/2024
0.1.16 162 9/16/2024
0.1.15 208 9/16/2024
0.1.14 163 9/16/2024
0.1.12 150 9/16/2024
0.1.11 159 9/16/2024