GitMuse is an AI-powered tool that helps developers craft meaningful and descriptive Git commit messages.
Project description
GitMuse
GitMuse is an AI-powered tool that helps developers craft meaningful and descriptive Git commit messages. By analyzing your staged changes, GitMuse provides intelligent suggestions for your commit messages, making your Git history more informative and easier to navigate.
Key Features
- No Configuration Needed: Works out-of-the-box with Llama 3.2 and Ollama.
- AI-Powered Commit Messages: Leverages OpenAI's GPT models, or Ollama for locally hosted models, to generate context-aware commit messages.
- Git Integration: Seamlessly integrates with your existing Git workflow.
- Customizable: Configure AI providers, commit message styles, and other preferences via a JSON configuration file.
- Interactive CLI: User-friendly command-line interface with rich formatting for easy interaction.
- Diff Analysis: Intelligent analysis of your staged changes to provide accurate commit message suggestions.
Installation
pip install gitmuse
Note: GitMuse requires Python 3.11 or higher and Ollama installed with the Llama 3.2 model downloaded for zero configuration.
Usage
-
Ensure that Ollama is running:
ollama serve
-
Stage your changes as you normally would:
git add .
-
Instead of using
git commit
, use GitMuse:gitmuse commit
-
GitMuse will analyze your changes and suggest a commit message.
-
You can view the diff, edit the commit message, and confirm or cancel the commit.
-
If confirmed, GitMuse will create the commit with the generated or edited message.
Development Status
GitMuse is currently in active development and is fully functional with Llama 3.2 by default, requiring no additional configuration as long as Ollama is installed and the model is downloaded. It also works with OpenAI and any of their models by default. The project now includes improved error handling, logging, and a more interactive CLI experience.
Configuration (Optional)
GitMuse can be configured to match your preferences. You can create a gitmuse.json
file in one of the following locations (in order of precedence):
- In your current project directory
- In your home directory:
~/.config/gitmuse/gitmuse.json
- In the global configuration directory:
/etc/gitmuse/gitmuse.json
The configuration file should follow this structure:
{
"version": 1,
"ai": {
"provider": "ollama",
"openai": {
"model": "gpt-4",
"apiKey": "YOUR_API_KEY_HERE",
"organizationId": "YOUR_ORG_ID_HERE",
"max_tokens": 1000,
"temperature": 0.7
},
"ollama": {
"model": "llama3.2",
"url": "http://localhost:11434",
"max_tokens": 1000,
"temperature": 0.7
}
},
"commit": {
"style": "conventional",
"maxLength": 72,
"includeScope": true,
"includeBody": true,
"includeFooter": true,
"conventionalCommitTypes": {
"feat": "✨",
"fix": "🐛",
"docs": "📝",
"style": "💎",
"refactor": "♻️",
"perf": "⚡",
"test": "🧪",
"build": "🏗️",
"ci": "🚀",
"chore": "🧹"
}
},
"prompts": {
"commitMessage": {
"useDefault": true,
"customTemplate": ""
}
},
"logging": {
"level": "INFO",
"format": "console",
"file": ""
}
}
For more configuration options, refer to the gitmuse-schema.json
file in the repository.
Roadmap
- Support for Additional AI Providers:
- Groq
- AWS Bedrock
- Azure OpenAI Service
FAQ
Why does GitMuse work by default with Ollama and Llama 3.2?
Llama 3.2 from Meta is one of the most advanced open-source language models available, offering high precision, support for function calling, and multilingual capabilities. It's an excellent default choice for generating high-quality, context-aware commit messages, excelling in various tasks including general knowledge, multilingual translation, and contextual understanding.
What should I do if I encounter issues during installation?
-
Upgrade pip:
python -m pip install --upgrade pip
-
Check Python version: Ensure you are using Python 3.11 or higher:
python --version
GitMuse is installed but the gitmuse
command is not found. What should I do?
-
Check PATH: Ensure that your Python
bin
directory is in your system's PATH. Add it to your PATH by modifying your shell configuration file (e.g.,.bashrc
,.zshrc
):export PATH="$HOME/.local/bin:$PATH"
-
Reinstall GitMuse: Sometimes reinstalling the package can resolve PATH issues:
pip uninstall gitmuse pip install gitmuse
GitMuse is not generating commit messages as expected. What can I do?
-
Check configuration: Ensure your
gitmuse.json
configuration file is correctly set up if you have one. -
Update GitMuse: Make sure you have the latest version of GitMuse:
pip install --upgrade gitmuse
-
Review error messages: If there are error messages, review them for clues about what might be wrong. Ensure all dependencies are correctly installed.
-
Check Ollama: If using Ollama, make sure it's running and the Llama 3.2 model is properly installed.
-
Logging: Check the logs for more detailed information about any issues. You can adjust the logging level in the configuration file for more verbose output.
Contributing
We welcome contributions! Please see our Contributing Guide for more details.
Support
For support, visit our GitHub Issues.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gitmuse-0.3.4.tar.gz
.
File metadata
- Download URL: gitmuse-0.3.4.tar.gz
- Upload date:
- Size: 22.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e32020d5eceb3621331778d5127bc113a82a56d32f86938142d634332e95bcc2 |
|
MD5 | 5ba3a716f7c6fe56b0fa007b20336a96 |
|
BLAKE2b-256 | 3898041510f01e98649d0ea3946101f59909a53c04060cc9eae69d636dda3ed1 |
File details
Details for the file gitmuse-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: gitmuse-0.3.4-py3-none-any.whl
- Upload date:
- Size: 30.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a8b38a35f8a11ac8692b54fc30c016b797fb33a8e5817b5c709ebc9cdc7034c |
|
MD5 | 10d10a0d896bea5fc2955a952ac11301 |
|
BLAKE2b-256 | f7b0efbc5079696ddf4bbc59f6c74b7963b5503e23c3082a010b04cd2a49dc40 |