ironcode-ai 1.20.7 → 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 +18 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -39,6 +39,7 @@ IronCode is a **high-performance CLI AI coding agent** — a fork of [OpenCode](
|
|
|
39
39
|
- 📝 **External Editor** — Opens `$EDITOR`/nvim with auto-install if missing
|
|
40
40
|
- 🧩 **Built-in Skills** — 13 opinionated slash commands: plan review, code review, QA (web + API), ship, retro, and more
|
|
41
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
|
|
42
43
|
- 🏠 **100% Local** — No cloud services, works completely offline
|
|
43
44
|
- ⚡ **Blazing Fast** — Native Rust for all performance-critical operations
|
|
44
45
|
|
|
@@ -384,6 +385,23 @@ Areas to help with: performance optimizations, bug fixes, documentation, new plu
|
|
|
384
385
|
|
|
385
386
|
## Changelog
|
|
386
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
|
+
|
|
387
405
|
<details>
|
|
388
406
|
<summary><strong>v1.20.5</strong> — Narrow Terminal / Mobile SSH Support</summary>
|
|
389
407
|
|
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
|
}
|