ironcode-ai 1.14.0 โ†’ 1.15.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 +23 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -24,6 +24,27 @@
24
24
 
25
25
  ## ๐ŸŽ‰ What's New
26
26
 
27
+ ### Feb 26, 2026 - Multi-Account Providers & Round-Robin Load Balancing
28
+
29
+ **Connect multiple API keys per provider and distribute load automatically:**
30
+
31
+ - **Any provider supported** โ€” Anthropic, OpenAI, Google, GitHub Copilot, MiniMax, Qwen, and any other API-key provider
32
+ - **Automatic round-robin** โ€” every message rotates to the next account; no configuration needed
33
+ - **Preserves your model choice** โ€” only the account rotates, the model you selected stays the same
34
+ - **Per-message indicator** โ€” message header shows which account was used: `Build ยท claude-sonnet-4 ยท Anthropic (Account 2) ยท 1.2s`
35
+ - **TUI add/replace flow** โ€” clicking a connected provider shows "Add another account" or "Replace existing"; once 2+ accounts exist, the dialog shows individual rows per account
36
+ - **CLI support** โ€” `ironcode auth login` prompts "Add another account" or "Replace existing" when credentials already exist
37
+
38
+ **Setup:**
39
+ ```bash
40
+ # First account (normal flow)
41
+ ironcode auth login โ†’ Select "Anthropic" โ†’ Enter API key
42
+
43
+ # Second account
44
+ ironcode auth login โ†’ Select "Anthropic" โ†’ "Add another account" โ†’ Enter key
45
+ # Saved as "anthropic-2" in auth.json โ€” auto-discovered at startup, no config needed
46
+ ```
47
+
27
48
  ### Feb 26, 2026 - Native Bash Permissions Layer
28
49
 
29
50
  **Shell permission checks are now fully native โ€” faster and more accurate:**
@@ -193,6 +214,7 @@ IronCode is a **high-performance CLI fork** of [OpenCode](https://github.com/ano
193
214
  ### Key Features
194
215
 
195
216
  - โŒจ๏ธ **CLI-First**: Powerful terminal UI optimized for command-line workflows
217
+ - ๐Ÿ”€ **Multi-Account Round-Robin**: Connect multiple API keys per provider for automatic load balancing โ€” Anthropic, OpenAI, Google, Copilot, and more
196
218
  - ๐ŸŽฏ **Git Source Control**: Full Git integration - stage, commit, diff, push without leaving TUI
197
219
  - ๐Ÿ” **Code Changes Panel**: Diff viewer with inline comments, hunk revert, and live change counts
198
220
  - ๐Ÿ“ **External Editor**: Opens `$EDITOR`/nvim with auto-install popup if not found
@@ -821,6 +843,7 @@ Contributions are welcome! Please read [CONTRIBUTING.md](./CONTRIBUTING.md) befo
821
843
 
822
844
  **Recent Contributions:**
823
845
 
846
+ - โœ… **Multi-Account Providers + Round-Robin** (Anthropic, OpenAI, Google, Copilot, any API-key provider - Feb 2026)
824
847
  - โœ… **Native Wildcard + Bash Parser + Command Prefix (RETE)** (wildcard matching, tree-sitter bash, RETE rule engine - Feb 2026)
825
848
  - โœ… **Local Code Search** (BM25 + tree-sitter semantic search, 7 languages, offline - Feb 2026)
826
849
  - โœ… **Editor & Terminal** (External editor with auto-install + redesigned terminal with autosuggest - Feb 2026)
package/package.json CHANGED
@@ -6,11 +6,11 @@
6
6
  "scripts": {
7
7
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
8
8
  },
9
- "version": "1.14.0",
9
+ "version": "1.15.0",
10
10
  "license": "MIT",
11
11
  "optionalDependencies": {
12
- "ironcode-linux-x64-modern": "1.14.0",
13
- "ironcode-windows-x64-modern": "1.14.0",
14
- "ironcode-darwin-arm64": "1.14.0"
12
+ "ironcode-linux-x64-modern": "1.15.0",
13
+ "ironcode-windows-x64-modern": "1.15.0",
14
+ "ironcode-darwin-arm64": "1.15.0"
15
15
  }
16
16
  }