@vavasilva/git-commit-ai 0.3.0 → 0.3.2
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.
- package/README.md +4 -2
- package/package.json +10 -3
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# git-commit-ai
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> AI-powered commit message generator for Git. Automate your git workflow with intelligent, conventional commit messages.
|
|
4
4
|
|
|
5
|
-
A
|
|
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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vavasilva/git-commit-ai",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"description": "AI-powered commit message generator using LLMs (OpenAI GPT-4, Anthropic Claude, Ollama, Groq). Automate git commits with Conventional Commits format.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -35,14 +35,21 @@
|
|
|
35
35
|
"git",
|
|
36
36
|
"commit",
|
|
37
37
|
"ai",
|
|
38
|
+
"git-commit-ai",
|
|
39
|
+
"commit-message-generator",
|
|
40
|
+
"automation",
|
|
38
41
|
"ollama",
|
|
39
42
|
"openai",
|
|
43
|
+
"gpt-4",
|
|
40
44
|
"anthropic",
|
|
45
|
+
"claude",
|
|
41
46
|
"groq",
|
|
47
|
+
"llama",
|
|
42
48
|
"llm",
|
|
43
49
|
"cli",
|
|
44
50
|
"karma",
|
|
45
|
-
"conventional-commits"
|
|
51
|
+
"conventional-commits",
|
|
52
|
+
"developer-tools"
|
|
46
53
|
],
|
|
47
54
|
"author": "Wagner Silva",
|
|
48
55
|
"license": "MIT",
|