@ai-git/cli 2.10.0 → 2.11.0
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 +12 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -101,13 +101,13 @@ ai-git
|
|
|
101
101
|
ai-git --provider gemini-cli --model gemini-3-flash-preview
|
|
102
102
|
|
|
103
103
|
# Use Codex with reasoning effort baked in
|
|
104
|
-
ai-git --provider codex --model gpt-5.
|
|
104
|
+
ai-git --provider codex --model gpt-5.6-luna-low
|
|
105
105
|
|
|
106
106
|
# Use OpenCode with a runtime variant
|
|
107
107
|
ai-git --provider opencode --model opencode/gpt-5-nano#minimal
|
|
108
108
|
|
|
109
109
|
# Use Pi with a thinking level
|
|
110
|
-
ai-git --provider pi --model openai-codex/gpt-5.
|
|
110
|
+
ai-git --provider pi --model openai-codex/gpt-5.6-luna#low
|
|
111
111
|
|
|
112
112
|
# Use OpenRouter
|
|
113
113
|
ai-git --provider openrouter --model anthropic/claude-sonnet-4-6
|
|
@@ -139,6 +139,11 @@ ai-git --dry-run -A
|
|
|
139
139
|
|
|
140
140
|
Configure with `ai-git configure`
|
|
141
141
|
|
|
142
|
+
Codex defaults to `gpt-5.6-luna-low` and Claude Code defaults to `haiku` for fast,
|
|
143
|
+
repeatable commit-message generation. Pi, OpenCode, and API provider models are discovered at
|
|
144
|
+
runtime. Retired Codex configurations are migrated to the corresponding GPT-5.6 family while
|
|
145
|
+
preserving their supported effort level.
|
|
146
|
+
|
|
142
147
|
## Configuration
|
|
143
148
|
|
|
144
149
|
AI Git uses a **three-tier configuration system**:
|
|
@@ -192,7 +197,7 @@ The default prompt works excellently for most projects. Customize only for proje
|
|
|
192
197
|
{
|
|
193
198
|
"$schema": "https://raw.githubusercontent.com/sadiksaifi/ai-git/main/schema.json",
|
|
194
199
|
"provider": "claude-code",
|
|
195
|
-
"model": "
|
|
200
|
+
"model": "haiku",
|
|
196
201
|
"prompt": {
|
|
197
202
|
"context": "Monorepo with packages: web, mobile, shared, api, docs, infra.",
|
|
198
203
|
"style": "Always use a scope from the valid list. Reference PR numbers in footer."
|
|
@@ -239,6 +244,10 @@ bun run build
|
|
|
239
244
|
|
|
240
245
|
See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.
|
|
241
246
|
|
|
247
|
+
## Releases
|
|
248
|
+
|
|
249
|
+
Releases are managed by [Tagsmith](https://tagsmith.sadiksaifi.dev/). Use `bunx tagsmith@latest` to create and validate release tags.
|
|
250
|
+
|
|
242
251
|
## License
|
|
243
252
|
|
|
244
253
|
[MIT](LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-git/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"description": "AI-powered git commit message generator",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"postinstall": "node scripts/postinstall.js"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@ai-git/darwin-arm64": "2.
|
|
31
|
-
"@ai-git/darwin-x64": "2.
|
|
32
|
-
"@ai-git/linux-arm64": "2.
|
|
33
|
-
"@ai-git/linux-x64": "2.
|
|
34
|
-
"@ai-git/win32-arm64": "2.
|
|
35
|
-
"@ai-git/win32-x64": "2.
|
|
30
|
+
"@ai-git/darwin-arm64": "2.11.0",
|
|
31
|
+
"@ai-git/darwin-x64": "2.11.0",
|
|
32
|
+
"@ai-git/linux-arm64": "2.11.0",
|
|
33
|
+
"@ai-git/linux-x64": "2.11.0",
|
|
34
|
+
"@ai-git/win32-arm64": "2.11.0",
|
|
35
|
+
"@ai-git/win32-x64": "2.11.0"
|
|
36
36
|
}
|
|
37
37
|
}
|