ironcode-ai 1.17.4 → 1.17.6

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 +43 -5
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -22,6 +22,28 @@
22
22
 
23
23
  ---
24
24
 
25
+ ## What's New
26
+
27
+ ### v1.17.5 — Voice Message Support
28
+ - **Voice messages** — Send voice messages to the Telegram bot; audio is automatically transcribed via Groq Whisper and forwarded to the agent
29
+ - **BM25 improvements** — Updated `STOP_WORDS` to retain method-prefix tokens (`get`/`set`/`is`/`has`/`new`) for more accurate code search
30
+
31
+ ### v1.17.3 — Rust Rule Engine Migration
32
+ - **Permission Rule Engine** — `PermissionNext.evaluate()` and `disabled()` migrated to Rust; entire ruleset batched into a single FFI call instead of N JS roundtrips
33
+ - **File Ignore Matching** — `FileIgnore.match()` migrated to Rust using `globset` compiled regex, faster than per-call `Bun.Glob` allocation
34
+ - **Dead code removed** — `permission/arity.ts` (BashArity) removed, replaced by `extractPrefixFFI` (Rust)
35
+
36
+ ### v1.17.2 — Telegram Enhancement
37
+ - **`/init` command** — Analyze a project and generate `AGENTS.md` directly from the Telegram bot
38
+ - **Code diff streaming** — `/diff` shows all changed files in the current session
39
+ - **Session management UI** — `/sessions` with inline switch buttons
40
+
41
+ ### v1.17.0 — AI SDK v6
42
+ - Upgraded to AI SDK v6 with full support for new providers
43
+ - Improved terminal UX
44
+
45
+ ---
46
+
25
47
  ## What is IronCode?
26
48
 
27
49
  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.
@@ -33,7 +55,8 @@ IronCode is a **high-performance CLI AI coding agent** — a fork of [OpenCode](
33
55
  - 🎯 **Git Source Control** — Stage, commit, diff, push without leaving the TUI
34
56
  - 🔍 **Code Changes Panel** — Diff viewer with inline comments and hunk revert
35
57
  - 🔎 **Local Code Search** — BM25 + tree-sitter semantic search, offline, zero latency
36
- - 📱 **Telegram Integration** — Control IronCode remotely from your phone
58
+ - 📱 **Telegram Integration** — Control IronCode remotely from your phone, including voice messages
59
+ - 🎤 **Voice Input** — Send voice messages via Telegram; transcribed automatically via Groq Whisper
37
60
  - 💻 **Built-in Terminal** — Fish-style autosuggest, tab completion, syntax highlighting
38
61
  - 📝 **External Editor** — Opens `$EDITOR`/nvim with auto-install if missing
39
62
  - 🏠 **100% Local** — No cloud services, works completely offline
@@ -50,6 +73,8 @@ IronCode is a **high-performance CLI AI coding agent** — a fork of [OpenCode](
50
73
  | Grep search | **90–99% less memory** | Streams GB-sized files |
51
74
  | File read | **1.5x faster, 99.7% less memory** | 64KB buffer + pre-allocation |
52
75
  | Git operations | **1.8x faster** | libgit2, no process spawning |
76
+ | Permission evaluation | **N× fewer FFI calls** | Entire ruleset in 1 native call vs N roundtrips |
77
+ | File ignore matching | **Faster glob matching** | Compiled `globset` regex vs per-call `Bun.Glob` allocation |
53
78
 
54
79
  ---
55
80
 
@@ -118,8 +143,9 @@ Control IronCode remotely via Telegram — send tasks from your phone, get live
118
143
  # Install
119
144
  bun install -g @ironcode-ai/telegram
120
145
 
121
- # Configure (enter bot token from @BotFather)
146
+ # Configure
122
147
  ironcode-telegram setup
148
+ # Enter: Bot Token (from @BotFather), model, and optionally a Groq API key for voice support
123
149
 
124
150
  # Run from your project directory
125
151
  cd your-project
@@ -135,7 +161,19 @@ ironcode-telegram
135
161
  | `/info` | Current session details and file change stats |
136
162
  | `/init` | Analyze project and create `AGENTS.md` |
137
163
  | `/diff` | Show all file changes in the current session |
138
- | _(any message)_ | Send a prompt — streams the response live |
164
+ | _(text message)_ | Send a prompt — streams the response live |
165
+ | _(voice message)_ | Transcribed via Groq Whisper and sent as a prompt |
166
+
167
+ ### Voice Message Setup
168
+
169
+ To enable voice input, add a [Groq API key](https://console.groq.com) (free tier: 28,800 seconds/day) during setup:
170
+
171
+ ```bash
172
+ ironcode-telegram setup
173
+ # Groq API Key (for voice transcription, optional): gsk_...
174
+ ```
175
+
176
+ Once configured, send any voice message to the bot — it will transcribe the audio and process it as a text prompt automatically.
139
177
 
140
178
  See [`packages/telegram/README.md`](./packages/telegram/README.md) for full setup docs including PM2/systemd server deployment.
141
179
 
@@ -171,8 +209,8 @@ bun dev
171
209
  ## Architecture
172
210
 
173
211
  - **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
175
- - **Telegram Bot**: `@ironcode-ai/telegram` — grammy + `@ironcode-ai/sdk`
212
+ - **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
213
+ - **Telegram Bot**: `@ironcode-ai/telegram` — grammy + `@ironcode-ai/sdk` + Groq Whisper for voice transcription
176
214
 
177
215
  ---
178
216
 
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.4",
9
+ "version": "1.17.6",
10
10
  "license": "MIT",
11
11
  "optionalDependencies": {
12
- "ironcode-linux-x64-baseline": "1.17.4",
13
- "ironcode-linux-x64-modern": "1.17.4",
14
- "ironcode-linux-x64-baseline-musl": "1.17.4",
15
- "ironcode-windows-x64-modern": "1.17.4",
16
- "ironcode-darwin-arm64": "1.17.4"
12
+ "ironcode-linux-x64-baseline": "1.17.6",
13
+ "ironcode-linux-x64-modern": "1.17.6",
14
+ "ironcode-linux-x64-baseline-musl": "1.17.6",
15
+ "ironcode-windows-x64-modern": "1.17.6",
16
+ "ironcode-darwin-arm64": "1.17.6"
17
17
  }
18
18
  }