ironcode-ai 1.17.5 → 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.
- package/README.md +30 -12
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -24,19 +24,23 @@
|
|
|
24
24
|
|
|
25
25
|
## What's New
|
|
26
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
|
+
|
|
27
31
|
### v1.17.3 — Rust Rule Engine Migration
|
|
28
|
-
- **Permission Rule Engine** — `PermissionNext.evaluate()`
|
|
29
|
-
- **File Ignore Matching** — `FileIgnore.match()` migrated to Rust
|
|
30
|
-
- **Dead code removed** — `permission/arity.ts` (BashArity)
|
|
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)
|
|
31
35
|
|
|
32
36
|
### v1.17.2 — Telegram Enhancement
|
|
33
|
-
- **`/init` command** —
|
|
34
|
-
- **Code diff streaming** — `/diff`
|
|
35
|
-
- **Session management UI** — `/sessions`
|
|
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
|
|
36
40
|
|
|
37
41
|
### v1.17.0 — AI SDK v6
|
|
38
|
-
-
|
|
39
|
-
-
|
|
42
|
+
- Upgraded to AI SDK v6 with full support for new providers
|
|
43
|
+
- Improved terminal UX
|
|
40
44
|
|
|
41
45
|
---
|
|
42
46
|
|
|
@@ -51,7 +55,8 @@ IronCode is a **high-performance CLI AI coding agent** — a fork of [OpenCode](
|
|
|
51
55
|
- 🎯 **Git Source Control** — Stage, commit, diff, push without leaving the TUI
|
|
52
56
|
- 🔍 **Code Changes Panel** — Diff viewer with inline comments and hunk revert
|
|
53
57
|
- 🔎 **Local Code Search** — BM25 + tree-sitter semantic search, offline, zero latency
|
|
54
|
-
- 📱 **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
|
|
55
60
|
- 💻 **Built-in Terminal** — Fish-style autosuggest, tab completion, syntax highlighting
|
|
56
61
|
- 📝 **External Editor** — Opens `$EDITOR`/nvim with auto-install if missing
|
|
57
62
|
- 🏠 **100% Local** — No cloud services, works completely offline
|
|
@@ -138,8 +143,9 @@ Control IronCode remotely via Telegram — send tasks from your phone, get live
|
|
|
138
143
|
# Install
|
|
139
144
|
bun install -g @ironcode-ai/telegram
|
|
140
145
|
|
|
141
|
-
# Configure
|
|
146
|
+
# Configure
|
|
142
147
|
ironcode-telegram setup
|
|
148
|
+
# Enter: Bot Token (from @BotFather), model, and optionally a Groq API key for voice support
|
|
143
149
|
|
|
144
150
|
# Run from your project directory
|
|
145
151
|
cd your-project
|
|
@@ -155,7 +161,19 @@ ironcode-telegram
|
|
|
155
161
|
| `/info` | Current session details and file change stats |
|
|
156
162
|
| `/init` | Analyze project and create `AGENTS.md` |
|
|
157
163
|
| `/diff` | Show all file changes in the current session |
|
|
158
|
-
| _(
|
|
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.
|
|
159
177
|
|
|
160
178
|
See [`packages/telegram/README.md`](./packages/telegram/README.md) for full setup docs including PM2/systemd server deployment.
|
|
161
179
|
|
|
@@ -192,7 +210,7 @@ bun dev
|
|
|
192
210
|
|
|
193
211
|
- **CLI/TUI**: TypeScript + Bun
|
|
194
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
|
|
195
|
-
- **Telegram Bot**: `@ironcode-ai/telegram` — grammy + `@ironcode-ai/sdk`
|
|
213
|
+
- **Telegram Bot**: `@ironcode-ai/telegram` — grammy + `@ironcode-ai/sdk` + Groq Whisper for voice transcription
|
|
196
214
|
|
|
197
215
|
---
|
|
198
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.
|
|
9
|
+
"version": "1.17.6",
|
|
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.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
|
}
|