@vavasilva/git-commit-ai 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,10 @@
1
1
  # git-commit-ai
2
2
 
3
- Generate commit messages using LLMs (Ollama, OpenAI, Anthropic, Groq, llama.cpp).
3
+ > AI-powered commit message generator for Git. Automate your git workflow with intelligent, conventional commit messages.
4
4
 
5
- A CLI tool that analyzes your staged changes and generates [Karma-style](https://karma-runner.github.io/6.4/dev/git-commit-msg.html) commit messages using AI.
5
+ A command-line tool that uses Large Language Models (LLMs) to analyze your staged changes and automatically generate [Karma-style](https://karma-runner.github.io/6.4/dev/git-commit-msg.html) / [Conventional Commits](https://www.conventionalcommits.org/) messages.
6
+
7
+ **Supported AI backends:** Ollama, llama.cpp, OpenAI (GPT-4), Anthropic (Claude), Groq (LLaMA)
6
8
 
7
9
  ## Features
8
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vavasilva/git-commit-ai",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Generate commit messages using LLMs (Ollama, OpenAI, Anthropic, Groq)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",