indusagi-coding-agent 0.1.11 → 0.1.14

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/CHANGELOG.md +36 -1
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,6 +1,27 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
3
+ ## [0.1.14]
4
+
5
+ ### Fixed
6
+ - **Google Antigravity**: Fixed `User-Agent` header (removed old version number)
7
+ - **Google Antigravity**: Fixed `ideType` to `ANTIGRAVITY` in Client-Metadata headers
8
+ - **Google Antigravity**: All 6 models now work: `gemini-3-flash`, `gemini-3-pro-high`, `gemini-3-pro-low`, `gpt-oss-120b-medium`, `claude-sonnet-4-5`, `claude-opus-4-6-thinking`
9
+ - **Google Antigravity**: Changed assistant identity from "Pi" to "indusagi"
10
+
11
+ ### Changed
12
+ - Updated `indusagi` dependency to v0.11.9
13
+
14
+ ## [0.1.13]
15
+
16
+ ### Changed
17
+ - Updated `indusagi` dependency to v0.11.6
18
+ - Updated Google Antigravity OAuth to latest working implementation from openclaw
19
+
20
+ ## [0.1.12] - 2026-02-17
21
+
22
+ ### Added
23
+
24
+ - Officially added Skills support in `indusagi-coding-agent` with project/global skill discovery and `/skill:name` workflow integration in the interactive CLI.
4
25
 
5
26
  ## [0.1.11] - 2026-02-16
6
27
 
@@ -141,3 +162,17 @@ There are multiple SDK breaking changes since v0.49.3. For the quickest migratio
141
162
  - Fixed session corruption when loading empty or invalid session files via `--session` flag ([#932](https://github.com/badlogic/indusagi-mono/issues/932) by [@armanddp](https://github.com/armanddp))
142
163
  - Fixed extension shortcuts not firing when extension also uses `setEditorComponent()` ([#947](https://github.com/badlogic/indusagi-mono/pull/947) by [@Perlence](https://github.com/Perlence))
143
164
  - Session "modified" time now uses last message timestamp instead of file mtime, so renaming doesn't reorder the recent list ([#863](https://github.com/badlogic/indusagi-mono/pull/863) by [@svkozak](https://github.com/svkozak))
165
+
166
+ ## [0.1.13]
167
+
168
+ ### Changed
169
+ - Updated \`indusagi\` dependency to v0.11.6
170
+ - Updated Google Antigravity OAuth to latest working implementation from openclaw
171
+ - **Google Gemini 3 models**: Fixed deprecated model IDs (via indusagi@0.11.6)
172
+ - Added \`normalizeGoogleModelId()\` to map \`gemini-3-pro-high\` → \`gemini-3-pro-preview\`
173
+ - Map \`gemini-3-pro-low\` → \`gemini-3-pro-preview\`
174
+ - Map \`gemini-3-flash\` → \`gemini-3-flash-preview\`
175
+ - Updated \`getGeminiCliThinkingLevel()\` to use normalized model IDs
176
+ - Updated \`buildRequest()\` to use normalized model IDs in API calls
177
+ - Fixed "version of Antigravity is no longer supported" error from Google API
178
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indusagi-coding-agent",
3
- "version": "0.1.11",
3
+ "version": "0.1.14",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "indusagiConfig": {
@@ -50,7 +50,7 @@
50
50
  "diff": "^8.0.2",
51
51
  "file-type": "^21.1.1",
52
52
  "glob": "^11.0.3",
53
- "indusagi": "^0.11.4",
53
+ "indusagi": "^0.11.9",
54
54
  "marked": "^15.0.12",
55
55
  "minimatch": "^10.1.1",
56
56
  "proper-lockfile": "^4.1.2",