ironcode-ai 1.20.6 → 1.20.8
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 +42 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -29,6 +29,7 @@ IronCode is a **high-performance CLI AI coding agent** — a fork of [OpenCode](
|
|
|
29
29
|
### Key Features
|
|
30
30
|
|
|
31
31
|
- ⌨️ **CLI-First** — Powerful terminal UI optimized for keyboard-driven workflows
|
|
32
|
+
- 📱 **Narrow Terminal Support** — Responsive TUI adapts to small screens (SSH via Termius, tmux panes, 60-col terminals)
|
|
32
33
|
- 🔀 **Multi-Account Round-Robin** — Connect multiple API keys per provider for automatic load balancing
|
|
33
34
|
- 🎯 **Git Source Control** — Stage, commit, diff, push without leaving the TUI
|
|
34
35
|
- 🔍 **Code Changes Panel** — Diff viewer with inline comments and hunk revert
|
|
@@ -38,6 +39,7 @@ IronCode is a **high-performance CLI AI coding agent** — a fork of [OpenCode](
|
|
|
38
39
|
- 📝 **External Editor** — Opens `$EDITOR`/nvim with auto-install if missing
|
|
39
40
|
- 🧩 **Built-in Skills** — 13 opinionated slash commands: plan review, code review, QA (web + API), ship, retro, and more
|
|
40
41
|
- 🛡️ **Security** — Prompt injection detection blocks malicious websites from manipulating the AI
|
|
42
|
+
- 🔄 **Auto-Compact on Overflow** — When context limit is hit, automatically compacts conversation and retries
|
|
41
43
|
- 🏠 **100% Local** — No cloud services, works completely offline
|
|
42
44
|
- ⚡ **Blazing Fast** — Native Rust for all performance-critical operations
|
|
43
45
|
|
|
@@ -383,6 +385,46 @@ Areas to help with: performance optimizations, bug fixes, documentation, new plu
|
|
|
383
385
|
|
|
384
386
|
## Changelog
|
|
385
387
|
|
|
388
|
+
<details>
|
|
389
|
+
<summary><strong>v1.20.6</strong> — Auto-Compact Overflow + UI Fixes</summary>
|
|
390
|
+
|
|
391
|
+
**Auto-compact on context overflow**
|
|
392
|
+
- When model returns a token limit error (e.g. `"prompt token count of 128195 exceeds the limit of 128000"`), IronCode now automatically triggers compaction to summarize the conversation, then retries the request — instead of showing an error
|
|
393
|
+
- Covers Gemini, OpenAI, and generic `context length exceeded` error messages
|
|
394
|
+
|
|
395
|
+
**File Explorer — insert to prompt**
|
|
396
|
+
- Selecting a file in the file explorer (`/explorer`) now inserts its path directly into the prompt and closes the dialog
|
|
397
|
+
- Previously, selecting a file only toggled the preview panel with no action
|
|
398
|
+
|
|
399
|
+
**Fix data: URI file attachments**
|
|
400
|
+
- Files attached as `data:` URIs (screenshots, voice messages, documents sent via Telegram/Discord) no longer fail with `AI_DownloadError: URL scheme must be http or https`
|
|
401
|
+
- The `data:` prefix is stripped before passing to the AI SDK
|
|
402
|
+
|
|
403
|
+
</details>
|
|
404
|
+
|
|
405
|
+
<details>
|
|
406
|
+
<summary><strong>v1.20.5</strong> — Narrow Terminal / Mobile SSH Support</summary>
|
|
407
|
+
|
|
408
|
+
Responsive TUI that adapts when terminal width drops below 60 columns — usable over SSH from mobile clients (Termius, Blink Shell, JuiceSSH).
|
|
409
|
+
|
|
410
|
+
**Home screen**
|
|
411
|
+
- Logo hidden on narrow terminals to save vertical space
|
|
412
|
+
- CPU/Memory stats bar and tips hidden — only prompt is shown
|
|
413
|
+
|
|
414
|
+
**Session header**
|
|
415
|
+
- CPU/Memory bars and version number hidden — only session title and token context/cost shown
|
|
416
|
+
|
|
417
|
+
**Session footer**
|
|
418
|
+
- Directory path truncated to last folder name + branch (e.g. `ironcode:feature/my-branch ~4`)
|
|
419
|
+
- `/status` hint hidden
|
|
420
|
+
|
|
421
|
+
**Prompt area**
|
|
422
|
+
- Keyboard hint bar (`variants`, `agents`, `commands`, `changes`) hidden
|
|
423
|
+
- `esc interrupt` text fixed to never wrap (`wrapMode="none"`)
|
|
424
|
+
- Provider name hidden from model info row — only agent + model name + variant shown
|
|
425
|
+
|
|
426
|
+
</details>
|
|
427
|
+
|
|
386
428
|
<details>
|
|
387
429
|
<summary><strong>v1.18.0</strong> — Chat Integrations Upgrade</summary>
|
|
388
430
|
|
package/package.json
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.20.
|
|
9
|
+
"version": "1.20.8",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"ironcode-linux-x64-baseline": "1.20.
|
|
13
|
-
"ironcode-
|
|
14
|
-
"ironcode-
|
|
15
|
-
"ironcode-
|
|
16
|
-
"ironcode-
|
|
12
|
+
"ironcode-linux-x64-baseline": "1.20.8",
|
|
13
|
+
"ironcode-darwin-arm64": "1.20.8",
|
|
14
|
+
"ironcode-windows-x64-modern": "1.20.8",
|
|
15
|
+
"ironcode-linux-x64-modern": "1.20.8",
|
|
16
|
+
"ironcode-linux-x64-baseline-musl": "1.20.8"
|
|
17
17
|
}
|
|
18
18
|
}
|