ironcode-ai 1.18.1 → 1.19.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.
- package/README.md +80 -22
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -24,6 +24,26 @@
|
|
|
24
24
|
|
|
25
25
|
## What's New
|
|
26
26
|
|
|
27
|
+
### v1.18.0 — Chat Integrations Upgrade
|
|
28
|
+
|
|
29
|
+
**New Discord Bot & Enhanced Telegram:**
|
|
30
|
+
|
|
31
|
+
- **Discord Bot** — Full-featured Discord integration with slash commands, rich embeds, and file upload support (up to 25MB)
|
|
32
|
+
- `/start`, `/new`, `/info`, `/sessions`, `/diff`, `/init` commands
|
|
33
|
+
- 📸 Image & document upload
|
|
34
|
+
- 🎤 Voice message transcription
|
|
35
|
+
- ✨ Real-time response streaming
|
|
36
|
+
- 👍 Reactions on completion
|
|
37
|
+
- **Telegram Enhancement** — Added comprehensive file upload support
|
|
38
|
+
- 📸 Image upload (screenshots, diagrams, mockups)
|
|
39
|
+
- 📄 Document upload (code files, PDFs, up to 20MB)
|
|
40
|
+
- 📦 Media groups (multiple files at once)
|
|
41
|
+
- 🎤 Voice transcription via Groq Whisper
|
|
42
|
+
- **Packages Available**:
|
|
43
|
+
- `@ironcode-ai/telegram` — Telegram bot integration
|
|
44
|
+
- `@ironcode-ai/discord` — Discord bot integration (NEW)
|
|
45
|
+
- `@ironcode-ai/slack` — Slack bot integration
|
|
46
|
+
|
|
27
47
|
### v1.17.6 — AI SDK v6 ModelRef Migration
|
|
28
48
|
|
|
29
49
|
**Completed ModelRef migration as part of AI SDK v6 upgrade:**
|
|
@@ -74,8 +94,10 @@ IronCode is a **high-performance CLI AI coding agent** — a fork of [OpenCode](
|
|
|
74
94
|
- 🎯 **Git Source Control** — Stage, commit, diff, push without leaving the TUI
|
|
75
95
|
- 🔍 **Code Changes Panel** — Diff viewer with inline comments and hunk revert
|
|
76
96
|
- 🔎 **Local Code Search** — BM25 + tree-sitter semantic search, offline, zero latency
|
|
77
|
-
-
|
|
78
|
-
-
|
|
97
|
+
- 💬 **Chat Integrations** — Control IronCode from Telegram, Discord, or Slack
|
|
98
|
+
- 📸 Image & file upload (screenshots, code files, PDFs)
|
|
99
|
+
- 🎤 Voice message transcription
|
|
100
|
+
- 📱 Code from anywhere, even mobile
|
|
79
101
|
- 💻 **Built-in Terminal** — Fish-style autosuggest, tab completion, syntax highlighting
|
|
80
102
|
- 📝 **External Editor** — Opens `$EDITOR`/nvim with auto-install if missing
|
|
81
103
|
- 🏠 **100% Local** — No cloud services, works completely offline
|
|
@@ -173,9 +195,13 @@ Press **`Ctrl+T`** to cycle between available variants. The status bar shows the
|
|
|
173
195
|
|
|
174
196
|
---
|
|
175
197
|
|
|
176
|
-
##
|
|
198
|
+
## Chat Integrations
|
|
199
|
+
|
|
200
|
+
Control IronCode from your favorite messaging app — send tasks from your phone, upload files, and get live streaming responses.
|
|
201
|
+
|
|
202
|
+
### Telegram Bot
|
|
177
203
|
|
|
178
|
-
|
|
204
|
+
Full-featured Telegram integration with file upload and voice transcription.
|
|
179
205
|
|
|
180
206
|
```bash
|
|
181
207
|
# Install
|
|
@@ -183,37 +209,69 @@ bun install -g @ironcode-ai/telegram
|
|
|
183
209
|
|
|
184
210
|
# Configure
|
|
185
211
|
ironcode-telegram setup
|
|
186
|
-
# Enter: Bot Token (from @BotFather), model, and optionally a Groq API key for voice support
|
|
187
212
|
|
|
188
|
-
# Run
|
|
213
|
+
# Run
|
|
189
214
|
cd your-project
|
|
190
215
|
ironcode-telegram
|
|
191
216
|
```
|
|
192
217
|
|
|
193
|
-
**
|
|
218
|
+
**Features:**
|
|
194
219
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
| `/diff` | Show all file changes in the current session |
|
|
202
|
-
| _(text message)_ | Send a prompt — streams the response live |
|
|
203
|
-
| _(voice message)_ | Transcribed via Groq Whisper and sent as a prompt |
|
|
220
|
+
- 📸 Image upload (screenshots, diagrams, mockups)
|
|
221
|
+
- 📄 Document upload (code files, PDFs, up to 20MB)
|
|
222
|
+
- 📦 Media groups (multiple files at once)
|
|
223
|
+
- 🎤 Voice transcription via Groq Whisper
|
|
224
|
+
- ⚡ Real-time response streaming
|
|
225
|
+
- 🔗 Session sharing with team
|
|
204
226
|
|
|
205
|
-
|
|
227
|
+
**Commands:** `/new`, `/sessions`, `/info`, `/init`, `/diff`
|
|
206
228
|
|
|
207
|
-
|
|
229
|
+
See [`packages/telegram/README.md`](./packages/telegram/README.md) for full documentation.
|
|
230
|
+
|
|
231
|
+
### Discord Bot
|
|
232
|
+
|
|
233
|
+
Modern Discord integration with slash commands and rich embeds.
|
|
208
234
|
|
|
209
235
|
```bash
|
|
210
|
-
|
|
211
|
-
|
|
236
|
+
# Install
|
|
237
|
+
bun install -g @ironcode-ai/discord
|
|
238
|
+
|
|
239
|
+
# Configure
|
|
240
|
+
ironcode-discord setup
|
|
241
|
+
|
|
242
|
+
# Run
|
|
243
|
+
cd your-project
|
|
244
|
+
ironcode-discord
|
|
212
245
|
```
|
|
213
246
|
|
|
214
|
-
|
|
247
|
+
**Features:**
|
|
248
|
+
|
|
249
|
+
- ⚡ Slash commands (`/start`, `/new`, `/info`, `/diff`, `/init`)
|
|
250
|
+
- 📸 Image & file upload (up to 25MB)
|
|
251
|
+
- 🎤 Voice message transcription
|
|
252
|
+
- ✨ Rich embeds for better UX
|
|
253
|
+
- 👍 Reactions on completion
|
|
254
|
+
- 🔗 Session per channel
|
|
255
|
+
|
|
256
|
+
See [`packages/discord/README.md`](./packages/discord/README.md) for full documentation.
|
|
257
|
+
|
|
258
|
+
### Slack Bot
|
|
259
|
+
|
|
260
|
+
Slack integration with threaded conversations.
|
|
261
|
+
|
|
262
|
+
```bash
|
|
263
|
+
cd packages/slack
|
|
264
|
+
bun dev
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
**Features:**
|
|
268
|
+
|
|
269
|
+
- 💬 Threaded conversations
|
|
270
|
+
- ⚡ Real-time tool notifications
|
|
271
|
+
- 🔗 Session sharing
|
|
272
|
+
- 🤖 Socket mode support
|
|
215
273
|
|
|
216
|
-
See [`packages/
|
|
274
|
+
See [`packages/slack/README.md`](./packages/slack/README.md) for setup instructions.
|
|
217
275
|
|
|
218
276
|
---
|
|
219
277
|
|
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.
|
|
9
|
+
"version": "1.19.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"ironcode-linux-x64-baseline": "1.
|
|
13
|
-
"ironcode-linux-x64-modern": "1.
|
|
14
|
-
"ironcode-linux-x64-baseline-musl": "1.
|
|
15
|
-
"ironcode-windows-x64-modern": "1.
|
|
16
|
-
"ironcode-darwin-arm64": "1.
|
|
12
|
+
"ironcode-linux-x64-baseline": "1.19.0",
|
|
13
|
+
"ironcode-linux-x64-modern": "1.19.0",
|
|
14
|
+
"ironcode-linux-x64-baseline-musl": "1.19.0",
|
|
15
|
+
"ironcode-windows-x64-modern": "1.19.0",
|
|
16
|
+
"ironcode-darwin-arm64": "1.19.0"
|
|
17
17
|
}
|
|
18
18
|
}
|