The minimum supported version of Node.js is v22. Check your Node.js version with
node --version.
-
Install aicommits:
npm install -g aicommits
-
Run the setup command to choose your AI provider:
aicommits setup
This will guide you through:
-
Selecting your AI provider (sets the
providerconfig) -
Configuring your API key
-
Automatically fetching and selecting from available models (when supported)
Supported providers include:
- TogetherAI (recommended) - Get your API key from TogetherAI
- OpenAI - Get your API key from OpenAI API Keys page
- OpenRouter - Get your API key from OpenRouter
- Ollama (local) - Run AI models locally with Ollama
- Custom OpenAI-compatible endpoint - Use any service that implements the OpenAI API
Alternatively, you can use environment variables (recommended for CI/CD):
export OPENAI_API_KEY="your_api_key_here" export OPENAI_BASE_URL="your_api_endpoint" # Optional, for custom endpoints export OPENAI_MODEL="your_model_choice" # Optional, defaults to provider default
Note: When using environment variables, ensure all related variables (e.g.,
OPENAI_API_KEYandOPENAI_BASE_URL) are set consistently to avoid configuration mismatches with the config file.This will create a
.aicommitsfile in your home directory.
Check the installed version with:
aicommits --version
If it's not the latest version, run:
npm update -g aicommitsYou can call aicommits directly to generate a commit message for your staged changes:
git add <files...>
aicommitsaicommits passes down unknown flags to git commit, so you can pass in commit flags.
For example, you can stage all changes in tracked files with as you commit:
aicommits --all # or -a👉 Tip: Use the
aicalias ifaicommitsis too long for you.
--generateor-g: Number of messages to generate (default: 1)--excludeor-x: Files to exclude from AI analysis--allor-a: Automatically stage changes in tracked files for the commit (default: false)--typeor-t: Git commit message format (default: conventional). Supportsconventionalandgitmoji--confirmor-y: Skip confirmation when committing after message generation (default: false)--clipboardor-c: Copy the selected message to the clipboard instead of committing (default: false)
Sometimes the recommended commit message isn't the best so you want it to generate a few to pick from. You can generate multiple commit messages at once by passing in the --generate <i> flag, where 'i' is the number of generated messages:
aicommits --generate <i> # or -g <i>Warning: this uses more tokens, meaning it costs more.
If you'd like to generate Conventional Commits, you can use the --type flag followed by conventional. This will prompt aicommits to format the commit message according to the Conventional Commits specification:
aicommits --type conventional # or -t conventionalThis feature can be useful if your project follows the Conventional Commits standard or if you're using tools that rely on this commit format.
You can also integrate aicommits with Git via the prepare-commit-msg hook. This lets you use Git like you normally would, and edit the commit message before committing.
In the Git repository you want to install the hook in:
aicommits hook installIn the Git repository you want to uninstall the hook from:
aicommits hook uninstall-
Stage your files and commit:
git add <files...> git commit # Only generates a message when it's not passed in
If you ever want to write your own message instead of generating one, you can simply pass one in:
git commit -m "My message" -
Aicommits will generate the commit message for you and pass it back to Git. Git will open it with the configured editor for you to review/edit it.
-
Save and close the editor to commit!
You can also configure aicommits using environment variables instead of the config file.
Example:
export OPENAI_API_KEY="sk-..."
export OPENAI_BASE_URL="https://api.example.com"
export OPENAI_MODEL="gpt-4"
aicommits # Uses environment variablesConfiguration settings are resolved in the following order of precedence:
- Command-line arguments
- Environment variables
- Configuration file
- Default values
To view all current configuration options that differ from defaults, run:
aicommits configThis will display only non-default configuration values with API keys masked for security. If no custom configuration is set, it will show "(using all default values)".
To interactively select or change your AI model, run:
aicommits modelThis will:
- Show your current provider and model
- Fetch available models from your provider's API
- Let you select from available models or enter a custom model name
- Update your configuration automatically
To retrieve a configuration option, use the command:
aicommits config get <key>For example, to retrieve the API key, you can use:
aicommits config get OPENAI_API_KEYYou can also retrieve multiple configuration options at once by separating them with spaces:
aicommits config get OPENAI_API_KEY generateTo set a configuration option, use the command:
aicommits config set <key>=<value>For example, to set the API key, you can use:
aicommits config set OPENAI_API_KEY=<your-api-key>You can also set multiple configuration options at once by separating them with spaces, like
aicommits config set OPENAI_API_KEY=<your-api-key> generate=3 locale=enYour OpenAI API key or custom provider API Key
Custom OpenAI-compatible API endpoint URL.
Model to use for OpenAI-compatible providers.
The selected AI provider. Set automatically during aicommits setup. Valid values: openai, togetherai, ollama, custom.
Default: en
The locale to use for the generated commit messages. Consult the list of codes in: https://wikipedia.org/wiki/List_of_ISO_639-1_codes.
Default: 1
The number of commit messages to generate to pick from.
Note, this will use more tokens as it generates more results.
The timeout for network requests to the OpenAI API in milliseconds.
Default: 10000 (10 seconds)
aicommits config set timeout=20000 # 20sThe maximum character length of the generated commit message.
Default: 72
aicommits config set max-length=100Default: "" (Empty string)
The type of commit message to generate. Set this to "conventional" to generate commit messages that follow the Conventional Commits specification:
aicommits config set type=conventionalYou can clear this option by setting it to an empty string:
aicommits config set type=This CLI tool runs git diff to grab all your latest code changes, sends them to the configured AI provider (TogetherAI by default), then returns the AI generated commit message.
Video coming soon where I rebuild it from scratch to show you how to easily build your own CLI tools powered by AI.
-
Hassan El Mghari: @Nutlope
-
Riccardo Giorato: @riccardogiorato
-
Hiroki Osame: @privatenumber
If you want to help fix a bug or implement a feature in Issues, checkout the Contribution Guide to learn how to setup and test the project
