ironcode-ai 1.15.4 → 1.16.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 +44 -0
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -220,6 +220,7 @@ IronCode is a **high-performance CLI fork** of [OpenCode](https://github.com/ano
220
220
  - 📝 **External Editor**: Opens `$EDITOR`/nvim with auto-install popup if not found
221
221
  - 💻 **Built-in Terminal**: Real terminal feel with syntax highlighting, fish-style autosuggest, and tab completion
222
222
  - 🔎 **Local Code Search**: BM25 + tree-sitter semantic search across your codebase — offline, zero latency, no ML model required
223
+ - 📱 **Telegram Integration**: Control IronCode remotely via Telegram — send tasks from your phone and get live streaming output
223
224
  - 🏠 **100% Local**: No cloud services, works completely offline
224
225
  - 🔒 **Privacy First**: Your code never leaves your machine
225
226
  - 🎯 **Lightweight**: Stripped down to core functionality - CLI only
@@ -682,6 +683,48 @@ Enable native server-side tools from AI providers. These tools run on the provid
682
683
 
683
684
  > **Note**: Tools only activate when the current model matches the provider. For example, `anthropic:web_search` only works when using an Anthropic model (Claude). If you configure tools for multiple providers, only the relevant ones activate per session.
684
685
 
686
+ ### Telegram Integration
687
+
688
+ Control IronCode remotely via a Telegram bot — send tasks from your phone and get real-time streaming output, just like the TUI.
689
+
690
+ **Setup:**
691
+
692
+ ```bash
693
+ # 1. Install IronCode and authenticate
694
+ npm install -g ironcode-ai
695
+ ironcode auth login
696
+
697
+ # 2. Create a bot via @BotFather in Telegram, get the token
698
+
699
+ # 3. Install the Telegram package
700
+ bun install -g @ironcode-ai/telegram
701
+
702
+ # 4. Configure your bot token
703
+ ironcode-telegram setup
704
+ # Saved to ~/.config/ironcode/telegram.json
705
+
706
+ # 5. Start the bot from your project directory
707
+ cd your-project
708
+ ironcode-telegram
709
+ ```
710
+
711
+ **Bot commands:**
712
+
713
+ | Command | Description |
714
+ | ------- | ----------- |
715
+ | `/start` | Welcome message and quick reference |
716
+ | `/new` | Start a new session |
717
+ | `/sessions` | List all sessions with inline buttons to switch |
718
+ | `/info` | Show current session ID and working directory |
719
+ | _(any text)_ | Send a prompt — streams output live as the agent works |
720
+
721
+ **How it works:**
722
+
723
+ - The bot spawns an IronCode server in the current directory (same as running `ironcode`)
724
+ - Responses stream in real-time as the agent generates text — messages update every ~1.2s
725
+ - Tool calls (file edits, searches, bash commands) are reported as they complete
726
+ - Sessions persist across messages; switch between them with `/sessions`
727
+
685
728
  ---
686
729
 
687
730
  ## Agents
@@ -843,6 +886,7 @@ Contributions are welcome! Please read [CONTRIBUTING.md](./CONTRIBUTING.md) befo
843
886
 
844
887
  **Recent Contributions:**
845
888
 
889
+ - ✅ **Telegram Integration** (`@ironcode-ai/telegram` — remote control via bot with live streaming output - Mar 2026)
846
890
  - ✅ **Multi-Account Providers + Round-Robin** (Anthropic, OpenAI, Google, Copilot, any API-key provider - Feb 2026)
847
891
  - ✅ **Native Wildcard + Bash Parser + Command Prefix (RETE)** (wildcard matching, tree-sitter bash, RETE rule engine - Feb 2026)
848
892
  - ✅ **Local Code Search** (BM25 + tree-sitter semantic search, 7 languages, offline - Feb 2026)
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.15.4",
9
+ "version": "1.16.0",
10
10
  "license": "MIT",
11
11
  "optionalDependencies": {
12
- "ironcode-linux-x64": "1.15.4",
13
- "ironcode-darwin-arm64": "1.15.4",
14
- "ironcode-windows-x64": "1.15.4"
12
+ "ironcode-linux-x64": "1.16.0",
13
+ "ironcode-darwin-arm64": "1.16.0",
14
+ "ironcode-windows-x64": "1.16.0"
15
15
  }
16
16
  }