https://github.com/arakiss/commitloom
CommitLoom is an intelligent git assistant I created to help developers craft meaningful, structured commits. Like a master weaver's loom, it brings together all the threads of your changes into beautiful, well-organized commits.
https://github.com/arakiss/commitloom
ai-tools automation cli commit-conventions developer-tools git-automation git-commit-messages git-tools openai python semantic-commits
Last synced: 6 months ago
JSON representation
CommitLoom is an intelligent git assistant I created to help developers craft meaningful, structured commits. Like a master weaver's loom, it brings together all the threads of your changes into beautiful, well-organized commits.
- Host: GitHub
- URL: https://github.com/arakiss/commitloom
- Owner: Arakiss
- License: mit
- Created: 2024-12-06T01:14:26.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-03-06T00:07:33.000Z (7 months ago)
- Last Synced: 2025-04-16T04:34:22.857Z (6 months ago)
- Topics: ai-tools, automation, cli, commit-conventions, developer-tools, git-automation, git-commit-messages, git-tools, openai, python, semantic-commits
- Language: Python
- Homepage:
- Size: 265 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# CommitLoom ๐งต
> Weave perfect git commits with AI-powered intelligence
[](https://badge.fury.io/py/commitloom)
[](https://pypi.org/project/commitloom)
[](https://opensource.org/licenses/MIT)
[](https://codecov.io/github/Arakiss/commitloom)
[](https://github.com/Arakiss/commitloom/actions/workflows/ci.yml)
[](https://github.com/astral-sh/ruff)
[](https://mypy-lang.org/)CommitLoom is an intelligent git assistant I created to help developers craft meaningful, structured commits. Like a master weaver's loom, it brings together all the threads of your changes into beautiful, well-organized commits.
## ๐ฏ Why CommitLoom?
As a developer, I found that managing git commits was often challenging:
- Writing clear, descriptive commit messages takes time
- Large changes are hard to organize effectively
- Maintaining consistency across projects is difficult
- Binary files require special attentionI built CommitLoom to solve these challenges by:
- Automatically generating structured commit messages
- Intelligently batching large changes
- Ensuring consistent commit style
- Providing clear insights about your changes## ๐ Quick Start
1. Install CommitLoom via pip:
```bash
pip install commitloom
```2. Set up your OpenAI API key:
```bash
export OPENAI_API_KEY=your-api-key
# or create a .env file with OPENAI_API_KEY=your-api-key
```3. Stage your changes with git:
```bash
git add . # or stage specific files
```4. Use CommitLoom to create your commit:
```bash
loom # Interactive mode
# or
loom -y # Non-interactive mode
```## โจ Features
- ๐ค **AI-Powered Analysis**: Intelligently analyzes your changes and generates structured, semantic commit messages
- ๐งต **Smart Batching**: Weaves multiple changes into coherent, logical commits
- ๐ **Complexity Analysis**: Identifies when commits are getting too large or complex
- ๐ฐ **Cost Control**: Built-in token and cost estimation to keep API usage efficient
- ๐ **Usage Metrics**: Track your usage, cost savings, and productivity gains with built-in metrics
- ๐ **Binary Support**: Special handling for binary files with size and type detection
- ๐จ **Beautiful CLI**: Rich, colorful interface with clear insights and warnings## ๐ Project History
CommitLoom evolved from my personal script that I was tired of copying across different projects. Its predecessor, GitMuse, was my experiment with local models like Llama through Ollama, but I couldn't achieve the consistent, high-quality results I needed. The rise of cost-effective OpenAI models, particularly gpt-4o-mini, made it possible for me to create a more reliable and powerful tool.
Key improvements over GitMuse:
- Uses OpenAI's models for superior commit message generation
- More cost-effective with the new gpt-4o-mini model
- Better structured for distribution and maintenance
- Enhanced error handling and user experience
- Improved binary file handling## โ๏ธ Configuration
CommitLoom offers multiple ways to configure your API key and settings:
### Command Usage
CommitLoom can be invoked using either of these commands:
```bash
# Using the full name
loom [command] [options]# Using the short alias
cl [command] [options]
```#### Available Commands
- `loom commit` (or simply `loom`): Generate a commit message and commit your changes
- `loom stats`: Display detailed usage statistics and metrics#### Options
- `-y, --yes`: Auto-confirm all prompts (non-interactive mode)
- `-c, --combine`: Combine all changes into a single commit
- `-d, --debug`: Enable debug logging#### Usage Examples
```bash
# Basic usage (interactive mode)
loom# Non-interactive mode with combined commits
loom -y -c# View usage statistics
loom stats# View debug information with statistics
loom stats -d
```### API Key Configuration
You can set your API key using any of these methods (in order of precedence):
1. Environment variables:
```bash
export OPENAI_API_KEY=your-api-key
# or
export COMMITLOOM_API_KEY=your-api-key
```2. Project-level `.env` file:
```env
OPENAI_API_KEY=your-api-key
# or
COMMITLOOM_API_KEY=your-api-key
```3. Global configuration file:
```bash
# Create global config directory
mkdir -p ~/.commitloom
# Store your API key
echo "your-api-key" > ~/.commitloom/config
```4. Global `.env` file in `~/.commitloom/.env`
### Other Settings
Configure additional settings via environment variables or `.env` files:
```env
# New environment variable names (recommended)
COMMITLOOM_TOKEN_LIMIT=120000
COMMITLOOM_MAX_FILES=5
COMMITLOOM_COST_WARNING=0.05
COMMITLOOM_MODEL=gpt-4o-mini# Legacy names (still supported)
TOKEN_LIMIT=120000
MAX_FILES_THRESHOLD=5
COST_WARNING_THRESHOLD=0.05
MODEL_NAME=gpt-4o-mini
```Configuration files are searched in this order:
1. Current working directory `.env`
2. Project root directory `.env`
3. Global `~/.commitloom/.env`
4. System environment variables### ๐ค Model Configuration
CommitLoom supports any OpenAI model for commit message generation. You can specify any model name (e.g., `gpt-4.1`, `gpt-4.1-mini`, `gpt-4.1-nano`, etc.) using the `MODEL_NAME` or `COMMITLOOM_MODEL` environment variable, or with the `-m`/`--model` CLI option.
| Model | Description | Input (per 1M tokens) | Output (per 1M tokens) | Best for |
|-----------------|------------------------------------|-----------------------|------------------------|-------------------------|
| gpt-4.1 | Highest quality, 1M ctx, multimodal| $2.00 | $8.00 | Final docs, critical |
| gpt-4.1-mini | Default, best cost/quality | $0.40 | $1.60 | Most use cases |
| gpt-4.1-nano | Fastest, cheapest | $0.10 | $0.40 | Drafts, previews |
| gpt-4o-mini | Legacy, cost-efficient | $0.15 | $0.60 | Legacy/compatibility |
| gpt-4o | Legacy, powerful | $2.50 | $10.00 | Legacy/compatibility |
| gpt-3.5-turbo | Legacy, fine-tuned | $3.00 | $6.00 | Training data |
| gpt-4o-2024-05-13| Legacy, previous version | $5.00 | $15.00 | Legacy support |> **Default model:** `gpt-4.1-mini` (best balance for documentation and code)
> **Warning:** If you use a model that is not in the above list, CommitLoom will still work, but cost estimation and token pricing will not be available for that model. You will see a warning in the CLI, and cost will be reported as zero. To add cost support for a new model, update the `model_costs` dictionary in `commitloom/config/settings.py`.
You can change the model by setting the `MODEL_NAME` environment variable. The default `gpt-4.1-mini` model is recommended as it provides the best balance of cost and quality for commit message generation. It's OpenAI's most cost-efficient small model that's smarter and cheaper than GPT-3.5 Turbo.
> Note: Prices are based on OpenAI's official pricing (https://openai.com/pricing/). Batch API usage can provide a 50% discount but responses will be returned within 24 hours.
## โ FAQ
### Why the name "CommitLoom"?
I chose the name to reflect the tool's ability to weave together different aspects of your changes into a coherent commit, like a loom weaving threads into fabric. It emphasizes both the craftsmanship aspect of good commits and the tool's ability to bring structure to complex changes.
### Why use OpenAI instead of local models?
While local models like Llama are impressive, my experience with GitMuse showed that for specialized tasks like commit message generation, OpenAI's models provide superior results. With the introduction of cost-effective models like gpt-4o-mini, I found that the benefits of cloud-based AI outweigh the advantages of local models for this specific use case.
### How much will it cost to use CommitLoom?
With the default gpt-4o-mini model, costs are very low:
- Input: $0.15 per million tokens
- Output: $0.60 per million tokensFor perspective, a typical commit analysis:
- Uses ~1,000-2,000 tokens
- Costs less than $0.002 (0.2 cents)
- That's about 500 commits for $1This makes it one of the most cost-effective tools in its category, especially when compared to the time saved and quality of commit messages generated.
### Can I use CommitLoom in CI/CD pipelines?
Yes! Use the `-y` flag for non-interactive mode:
```bash
loom -y
```### How does CommitLoom track metrics and usage statistics?
CommitLoom keeps track of various metrics to help you understand your usage patterns:
- **Usage tracking**: Number of commits generated, tokens used, and associated costs
- **Time savings**: Estimated time saved compared to writing commit messages manually
- **Repository statistics**: Which repositories you use CommitLoom with most frequently
- **Model usage**: Performance metrics for different AI models
- **Cost analysis**: Detailed breakdown of token usage and associated costsAll metrics are stored locally in your user data directory (`~/.local/share/commitloom/metrics` on Linux) and are never sent to external servers.
To view your metrics, simply run:
```bash
loom stats
```For detailed documentation on the metrics system, see the [Usage Metrics Documentation](docs/usage_metrics/README.md).
### How does CommitLoom handle large changes?
CommitLoom automatically:
1. Analyzes the size and complexity of changes
2. Warns about potentially oversized commits
3. Suggests splitting changes when appropriate
4. Maintains context across split commits## ๐ ๏ธ Development Status
- โ **CI/CD**: Automated testing, linting, and publishing
- โ **Code Quality**:
- Ruff for linting and formatting
- MyPy for static type checking
- 70%+ test coverage
- โ **Distribution**: Available on PyPI and GitHub Releases
- โ **Documentation**: Comprehensive README and type hints
- โ **Maintenance**: Actively maintained and accepting contributions## ๐ค Contributing
While I maintain this project personally, I welcome contributions! If you'd like to help improve CommitLoom, please:
- Check the issues page for current tasks
- Follow the code style guidelines
- Add tests for new features
- Update documentation as neededSee the [Contributing Guidelines](CONTRIBUTING.md) for detailed instructions.
## ๐ License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
---
Crafted with ๐งต by @Arakiss