@ai-git/cli 2.11.0 → 3.0.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.
Files changed (2) hide show
  1. package/README.md +24 -17
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -9,7 +9,7 @@ A CLI tool that leverages AI to automatically generate semantically correct, con
9
9
  - 🤖 **AI-Powered** - Analyzes diffs and understands the _intent_ of your changes
10
10
  - 📝 **Conventional Commits** - Strictly adheres to [v1.0.0](https://www.conventionalcommits.org/en/v1.0.0/) specification
11
11
  - 🎨 **Interactive TUI** - Beautiful prompts for staging, editing, and confirming
12
- - 🔌 **Multiple Providers** - Claude Code, Gemini CLI, Codex, OpenCode, Pi, OpenRouter, OpenAI, Anthropic, Google AI Studio, Cerebras
12
+ - 🔌 **Multiple Providers** - Claude Code, Antigravity CLI, Codex, OpenCode, Pi, OpenRouter, OpenAI, Anthropic, Google AI Studio, Cerebras
13
13
  - 🔐 **Secure** - API keys stored in keychain, never in config files
14
14
 
15
15
  ## Installation
@@ -98,7 +98,7 @@ Info:
98
98
  ai-git
99
99
 
100
100
  # Override provider for this run
101
- ai-git --provider gemini-cli --model gemini-3-flash-preview
101
+ ai-git --provider antigravity-cli --model gemini-3.7-flash-low
102
102
 
103
103
  # Use Codex with reasoning effort baked in
104
104
  ai-git --provider codex --model gpt-5.6-luna-low
@@ -124,25 +124,32 @@ ai-git --dry-run -A
124
124
 
125
125
  ## Supported Providers
126
126
 
127
- | Provider | ID | Type | Requirements |
128
- | :--------------- | :----------------- | :--- | :-------------------------------------------------------------------------------------- |
129
- | Claude Code | `claude-code` | CLI | [Install CLI](https://claude.com/claude-code) |
130
- | Gemini CLI | `gemini-cli` | CLI | [Install CLI](https://ai.google.dev/gemini-api/docs/cli) |
131
- | Codex | `codex` | CLI | [Install CLI](https://developers.openai.com/codex/cli) |
132
- | OpenCode | `opencode` | CLI | [Install CLI](https://opencode.ai) |
133
- | Pi | `pi` | CLI | [Install CLI](https://pi.dev) |
134
- | OpenRouter | `openrouter` | API | [Get API Key](https://openrouter.ai/keys) |
135
- | OpenAI | `openai` | API | [Get API Key](https://platform.openai.com/api-keys) |
136
- | Google AI Studio | `google-ai-studio` | API | [Get API Key](https://aistudio.google.com/app/apikey) |
137
- | Anthropic | `anthropic` | API | [Get API Key](https://console.anthropic.com/settings/keys) |
138
- | Cerebras | `cerebras` | API | [Get API Key](https://cloud.cerebras.ai/) |
127
+ | Provider | ID | Type | Requirements |
128
+ | :--------------- | :------------------ | :--- | :-------------------------------------------------------------------------------------- |
129
+ | Claude Code | `claude-code` | CLI | [Install CLI](https://claude.com/claude-code) |
130
+ | Antigravity CLI | `antigravity-cli` | CLI | [Install CLI](https://antigravity.google/docs/cli/install) |
131
+ | Codex | `codex` | CLI | [Install CLI](https://developers.openai.com/codex/cli) |
132
+ | OpenCode | `opencode` | CLI | [Install CLI](https://opencode.ai) |
133
+ | Pi | `pi` | CLI | [Install CLI](https://pi.dev) |
134
+ | OpenRouter | `openrouter` | API | [Get API Key](https://openrouter.ai/keys) |
135
+ | OpenAI | `openai` | API | [Get API Key](https://platform.openai.com/api-keys) |
136
+ | Google AI Studio | `google-ai-studio` | API | [Get API Key](https://aistudio.google.com/app/apikey) |
137
+ | Anthropic | `anthropic` | API | [Get API Key](https://console.anthropic.com/settings/keys) |
138
+ | Cerebras | `cerebras` | API | [Get API Key](https://cloud.cerebras.ai/) |
139
139
 
140
140
  Configure with `ai-git configure`
141
141
 
142
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.
143
+ repeatable commit-message generation. Antigravity CLI, Pi, OpenCode, and API provider models are
144
+ discovered at runtime. Antigravity recommends the newest Gemini Flash Low model available to the
145
+ signed-in account. Existing Gemini CLI configurations are migrated to Antigravity CLI with a live,
146
+ account-compatible model. Retired Codex configurations are migrated to the corresponding GPT-5.6
147
+ family while preserving their supported effort level.
148
+
149
+ Antigravity generation runs with `--sandbox` in an empty workspace and an isolated temporary
150
+ profile. AI Git installs deny-all permissions and a deny-all tool hook for the invocation, disables
151
+ slash-command expansion, validates structured output, and removes the temporary conversation data
152
+ afterward.
146
153
 
147
154
  ## Configuration
148
155
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-git/cli",
3
- "version": "2.11.0",
3
+ "version": "3.0.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.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"
30
+ "@ai-git/darwin-arm64": "3.0.0",
31
+ "@ai-git/darwin-x64": "3.0.0",
32
+ "@ai-git/linux-arm64": "3.0.0",
33
+ "@ai-git/linux-x64": "3.0.0",
34
+ "@ai-git/win32-arm64": "3.0.0",
35
+ "@ai-git/win32-x64": "3.0.0"
36
36
  }
37
37
  }