ironcode-ai 1.11.0 → 1.12.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 +8 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -15,15 +15,22 @@
15
15
 
16
16
  <p align="center"><strong>High-performance CLI AI coding agent</strong></p>
17
17
  <p align="center">
18
- <a href="https://github.com/anomalyco/opencode"><img alt="Upstream" src="https://img.shields.io/badge/upstream-opencode-blue?style=flat-square" /></a>
19
18
  <a href="https://github.com/KSD-CO/IronCode/actions/workflows/publish.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/KSD-CO/IronCode/publish.yml?style=flat-square&branch=dev" /></a>
20
19
  <a href="https://www.npmjs.com/package/ironcode-ai"><img alt="npm version" src="https://img.shields.io/npm/v/ironcode-ai?style=flat-square" /></a>
20
+ <a href="https://ironcode.cloud/"><img alt="Website" src="https://img.shields.io/badge/website-ironcode.cloud-brightgreen?style=flat-square" /></a>
21
21
  </p>
22
22
 
23
23
  ---
24
24
 
25
25
  ## 🎉 What's New
26
26
 
27
+ ### February 2026 - AI SDK v6 Integration
28
+
29
+ **Leveraging new AI SDK v6 features for better debugging and token efficiency:**
30
+
31
+ - 🔧 **DevTools Middleware** - Full debugging visibility for LLM calls via `@ai-sdk/devtools`. Enable with `"experimental": { "devtools": true }` in config, then run `npx @ai-sdk/devtools` to launch viewer at `localhost:4983`. Inspect input/output, token usage, timing, and raw provider data.
32
+ - 💰 **`toModelOutput` Optimization** - Tool results now send only the essential `output` text back to the model, stripping `title`, `metadata`, and `attachments` (including base64-encoded images). Reduces token usage on every tool call, especially impactful for large file reads and MCP tools.
33
+
27
34
  ### February 2026 - Git Source Control UI
28
35
 
29
36
  **Built-in Git UI for seamless version control within TUI:**
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.11.0",
9
+ "version": "1.12.0",
10
10
  "license": "MIT",
11
11
  "optionalDependencies": {
12
- "ironcode-darwin-arm64": "1.11.0",
13
- "ironcode-linux-x64-modern": "1.11.0",
14
- "ironcode-windows-x64-modern": "1.11.0"
12
+ "ironcode-linux-x64-modern": "1.12.0",
13
+ "ironcode-windows-x64-modern": "1.12.0",
14
+ "ironcode-darwin-arm64": "1.12.0"
15
15
  }
16
16
  }