ironcode-ai 1.14.0 โ 1.15.1
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 +23 -0
- package/package.json +4 -4
- package/postinstall.mjs +0 -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.
|
|
9
|
+
"version": "1.15.1",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"ironcode-linux-x64
|
|
13
|
-
"ironcode-
|
|
14
|
-
"ironcode-
|
|
12
|
+
"ironcode-linux-x64": "1.15.1",
|
|
13
|
+
"ironcode-darwin-arm64": "1.15.1",
|
|
14
|
+
"ironcode-windows-x64": "1.15.1"
|
|
15
15
|
}
|
|
16
16
|
}
|
package/postinstall.mjs
CHANGED
|
@@ -51,10 +51,6 @@ function findBinary() {
|
|
|
51
51
|
const { platform, arch } = detectPlatformAndArch()
|
|
52
52
|
// const packageName = `ironcode-${platform}-${arch}`
|
|
53
53
|
let packageName = `ironcode-${platform}-${arch}`
|
|
54
|
-
|
|
55
|
-
if (arch === "x64") {
|
|
56
|
-
packageName += "-modern"
|
|
57
|
-
}
|
|
58
54
|
const binaryName = platform === "windows" ? "ironcode.exe" : "ironcode"
|
|
59
55
|
|
|
60
56
|
try {
|