ironcode-ai 1.17.4 → 1.17.5
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 +21 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -22,6 +22,24 @@
|
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
|
+
## What's New
|
|
26
|
+
|
|
27
|
+
### v1.17.3 — Rust Rule Engine Migration
|
|
28
|
+
- **Permission Rule Engine** — `PermissionNext.evaluate()` và `disabled()` migrated to Rust. Toàn bộ ruleset được batch vào 1 FFI call thay vì N roundtrip từ JS
|
|
29
|
+
- **File Ignore Matching** — `FileIgnore.match()` migrated to Rust với `globset` compiled regex, nhanh hơn per-call `Bun.Glob` allocation
|
|
30
|
+
- **Dead code removed** — `permission/arity.ts` (BashArity) đã xóa, thay bởi `extractPrefixFFI` (Rust) có từ trước
|
|
31
|
+
|
|
32
|
+
### v1.17.2 — Telegram Enhancement
|
|
33
|
+
- **`/init` command** — Phân tích project và tạo `AGENTS.md` từ bot Telegram
|
|
34
|
+
- **Code diff streaming** — `/diff` hiển thị tất cả file thay đổi trong session hiện tại
|
|
35
|
+
- **Session management UI** — `/sessions` với inline switch buttons
|
|
36
|
+
|
|
37
|
+
### v1.17.0 — AI SDK v6
|
|
38
|
+
- Upgrade lên AI SDK v6 với support đầy đủ các provider mới
|
|
39
|
+
- Cải thiện UX terminal
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
25
43
|
## What is IronCode?
|
|
26
44
|
|
|
27
45
|
IronCode is a **high-performance CLI AI coding agent** — a fork of [OpenCode](https://github.com/anomalyco/opencode) that runs entirely on your machine. It rewrites performance-critical components in Rust for dramatically improved speed and memory efficiency.
|
|
@@ -50,6 +68,8 @@ IronCode is a **high-performance CLI AI coding agent** — a fork of [OpenCode](
|
|
|
50
68
|
| Grep search | **90–99% less memory** | Streams GB-sized files |
|
|
51
69
|
| File read | **1.5x faster, 99.7% less memory** | 64KB buffer + pre-allocation |
|
|
52
70
|
| Git operations | **1.8x faster** | libgit2, no process spawning |
|
|
71
|
+
| Permission evaluation | **N× fewer FFI calls** | Entire ruleset in 1 native call vs N roundtrips |
|
|
72
|
+
| File ignore matching | **Faster glob matching** | Compiled `globset` regex vs per-call `Bun.Glob` allocation |
|
|
53
73
|
|
|
54
74
|
---
|
|
55
75
|
|
|
@@ -171,7 +191,7 @@ bun dev
|
|
|
171
191
|
## Architecture
|
|
172
192
|
|
|
173
193
|
- **CLI/TUI**: TypeScript + Bun
|
|
174
|
-
- **Native Performance Layer**: Rust via FFI — PTY, edit, grep, glob, git, archive, bash parser, BM25 search, wildcard matching, RETE command prefix, system stats
|
|
194
|
+
- **Native Performance Layer**: Rust via FFI — PTY, edit, grep, glob, git, archive, bash parser, BM25 search, wildcard matching, RETE command prefix, permission rule engine, file ignore matching, system stats
|
|
175
195
|
- **Telegram Bot**: `@ironcode-ai/telegram` — grammy + `@ironcode-ai/sdk`
|
|
176
196
|
|
|
177
197
|
---
|
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.17.
|
|
9
|
+
"version": "1.17.5",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"ironcode-linux-x64-baseline": "1.17.
|
|
13
|
-
"ironcode-linux-x64-modern": "1.17.
|
|
14
|
-
"ironcode-linux-x64-baseline-musl": "1.17.
|
|
15
|
-
"ironcode-windows-x64-modern": "1.17.
|
|
16
|
-
"ironcode-darwin-arm64": "1.17.
|
|
12
|
+
"ironcode-linux-x64-baseline": "1.17.5",
|
|
13
|
+
"ironcode-linux-x64-modern": "1.17.5",
|
|
14
|
+
"ironcode-linux-x64-baseline-musl": "1.17.5",
|
|
15
|
+
"ironcode-windows-x64-modern": "1.17.5",
|
|
16
|
+
"ironcode-darwin-arm64": "1.17.5"
|
|
17
17
|
}
|
|
18
18
|
}
|