ironcode-ai 1.12.1 â 1.12.3
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 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -24,6 +24,53 @@
|
|
|
24
24
|
|
|
25
25
|
## đ What's New
|
|
26
26
|
|
|
27
|
+
### Feb 18, 2026 - Editor & Terminal Improvements
|
|
28
|
+
|
|
29
|
+
**External editor with auto-install + redesigned built-in terminal:**
|
|
30
|
+
|
|
31
|
+
- **`/editor` - External Editor Integration**
|
|
32
|
+
- Opens `$VISUAL` or `$EDITOR` or `nvim` by default
|
|
33
|
+
- Auto-detects if editor is installed via `which`
|
|
34
|
+
- Shows install popup if Neovim not found (cross-platform: brew, apt, dnf, pacman, apk, winget, choco, scoop)
|
|
35
|
+
- One-click install button directly from the popup
|
|
36
|
+
|
|
37
|
+
- **`/terminal` - Redesigned Built-in Terminal**
|
|
38
|
+
- Clean terminal-like UI with no header/footer chrome
|
|
39
|
+
- Prompt at bottom with `~/path $ ` prefix (like real shell)
|
|
40
|
+
- Block cursor with left/right movement
|
|
41
|
+
- Streaming output (stdout/stderr appear in real-time)
|
|
42
|
+
- Syntax highlighting for file output (`cat file.ts`, `head file.py`, etc.)
|
|
43
|
+
- Fish-style history autosuggest (dim text, accept with Right/End)
|
|
44
|
+
- Tab completion for file/directory paths (single match auto-completes, multiple shows common prefix + options)
|
|
45
|
+
- Shell keybindings: Ctrl+A/E (home/end), Ctrl+U/K (clear line), Ctrl+W (delete word), Ctrl+L (clear screen)
|
|
46
|
+
- `cd` with directory validation, `clear`, `exit` commands
|
|
47
|
+
- Color-coded output: commands (primary+bold), errors (red), info (dim)
|
|
48
|
+
|
|
49
|
+
### Feb 15, 2026 - Code Changes Panel
|
|
50
|
+
|
|
51
|
+
**Code changes viewer with inline comments and hunk revert:**
|
|
52
|
+
|
|
53
|
+
- đ **Code Changes Panel** - View git diffs in a side panel without leaving your session. Open via command palette or `<leader>r` keybind
|
|
54
|
+
- âŠī¸ **Revert Diff Hunk** - Press `r` to revert individual diff hunks. Supports both uncommitted and staged changes
|
|
55
|
+
- đŦ **Inline Comments** - Press `c` to add comments on specific diff lines. Navigate with `n/p`, dismiss with `d`, send to chat with `f`
|
|
56
|
+
- đ **Mode Cycling** - Press `m` to cycle between Uncommitted, Staged, and vs-Main diff views
|
|
57
|
+
- đ **Change Counts in Hint Bar** - The prompt hint bar now shows `<leader>r changes +N -N` with live addition/deletion counts
|
|
58
|
+
- đ¤ **Auto-open on `/review`** - The code changes panel automatically opens alongside when the `/review` command runs as a subtask
|
|
59
|
+
- đ¨ **Hunk Highlighting** - The current hunk is subtly highlighted in the diff view for easy identification
|
|
60
|
+
|
|
61
|
+
**Keybinds:**
|
|
62
|
+
|
|
63
|
+
- `j/k`: Navigate files
|
|
64
|
+
- `ââ`: Navigate diff lines
|
|
65
|
+
- `r`: Revert current hunk
|
|
66
|
+
- `c`: Add comment on current line
|
|
67
|
+
- `n/p`: Navigate between comments
|
|
68
|
+
- `d`: Dismiss selected comment
|
|
69
|
+
- `f`: Send comment to chat
|
|
70
|
+
- `m`: Cycle mode (uncommitted/staged/vs-main)
|
|
71
|
+
- `g`: Refresh diffs
|
|
72
|
+
- `Esc`: Close panel
|
|
73
|
+
|
|
27
74
|
### Feb 15, 2026 - AI SDK v6 Integration
|
|
28
75
|
|
|
29
76
|
**Leveraging new AI SDK v6 features for better debugging and token efficiency:**
|
|
@@ -110,6 +157,9 @@ IronCode is a **high-performance CLI fork** of [OpenCode](https://github.com/ano
|
|
|
110
157
|
|
|
111
158
|
- â¨ī¸ **CLI-First**: Powerful terminal UI optimized for command-line workflows
|
|
112
159
|
- đ¯ **Git Source Control**: Full Git integration - stage, commit, diff, push without leaving TUI
|
|
160
|
+
- đ **Code Changes Panel**: Diff viewer with inline comments, hunk revert, and live change counts
|
|
161
|
+
- đ **External Editor**: Opens `$EDITOR`/nvim with auto-install popup if not found
|
|
162
|
+
- đģ **Built-in Terminal**: Real terminal feel with syntax highlighting, fish-style autosuggest, and tab completion
|
|
113
163
|
- đ **100% Local**: No cloud services, works completely offline
|
|
114
164
|
- đ **Privacy First**: Your code never leaves your machine
|
|
115
165
|
- đ¯ **Lightweight**: Stripped down to core functionality - CLI only
|
|
@@ -475,6 +525,33 @@ gh auth login
|
|
|
475
525
|
git config --global credential.helper '!gh auth git-credential'
|
|
476
526
|
```
|
|
477
527
|
|
|
528
|
+
### Code Changes Panel
|
|
529
|
+
|
|
530
|
+
IronCode includes a code changes viewer for reviewing diffs with inline comments:
|
|
531
|
+
|
|
532
|
+
**Open Code Changes Panel:**
|
|
533
|
+
|
|
534
|
+
- Press `<leader>r` (default: `Ctrl+X` then `R`)
|
|
535
|
+
- Or use command palette (`Ctrl+P`) â "View code changes"
|
|
536
|
+
- Auto-opens when `/review` command runs
|
|
537
|
+
|
|
538
|
+
**Features:**
|
|
539
|
+
|
|
540
|
+
- **Diff Viewer** - Color-coded diffs with hunk highlighting
|
|
541
|
+
- `j/k`: Navigate between files
|
|
542
|
+
- `ââ`: Navigate diff lines
|
|
543
|
+
- `m`: Cycle mode (Uncommitted â Staged â vs Main)
|
|
544
|
+
- `g`: Refresh diffs
|
|
545
|
+
- **Revert Hunk** - Undo individual changes
|
|
546
|
+
- `r`: Revert the current diff hunk (works for both uncommitted and staged)
|
|
547
|
+
- Active hunk is highlighted for easy identification
|
|
548
|
+
- **Inline Comments** - Add notes to specific diff lines
|
|
549
|
+
- `c`: Add a comment on the current line
|
|
550
|
+
- `n/p`: Navigate between comments
|
|
551
|
+
- `d`: Dismiss selected comment
|
|
552
|
+
- `f`: Send comment to chat for AI to address
|
|
553
|
+
- **Change Counts** - The hint bar shows live `+N -N` counts of total additions/deletions
|
|
554
|
+
|
|
478
555
|
### Provider-Specific Tools
|
|
479
556
|
|
|
480
557
|
Enable native server-side tools from AI providers. These tools run on the provider's infrastructure (not locally), giving the model direct access to web search, code execution, and more.
|
|
@@ -699,6 +776,8 @@ Contributions are welcome! Please read [CONTRIBUTING.md](./CONTRIBUTING.md) befo
|
|
|
699
776
|
|
|
700
777
|
**Recent Contributions:**
|
|
701
778
|
|
|
779
|
+
- â
**Editor & Terminal** (External editor with auto-install + redesigned terminal with autosuggest - Feb 2026)
|
|
780
|
+
- â
**Code Changes Panel** (Diff viewer with hunk revert & inline comments - Feb 2026)
|
|
702
781
|
- â
**Git Source Control UI** (Full TUI integration with libgit2 - Feb 2026)
|
|
703
782
|
- â
**Streaming read optimization** (1.2-1.6x faster, 99.7% memory savings - Feb 2026)
|
|
704
783
|
- â
**Grep streaming optimization** (90-99% memory reduction, GB-file capability - Feb 2026)
|
|
@@ -789,5 +868,5 @@ _Benchmarked on IronCode repository (dev branch, 100 iterations)_
|
|
|
789
868
|
|
|
790
869
|
## Acknowledgments
|
|
791
870
|
|
|
792
|
-
- **
|
|
871
|
+
- **IronCode Team**: For creating the original open-source AI coding agent
|
|
793
872
|
- All contributors to this fork
|
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.12.
|
|
9
|
+
"version": "1.12.3",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"ironcode-linux-x64-modern": "1.12.
|
|
13
|
-
"ironcode-windows-x64-modern": "1.12.
|
|
14
|
-
"ironcode-darwin-arm64": "1.12.
|
|
12
|
+
"ironcode-linux-x64-modern": "1.12.3",
|
|
13
|
+
"ironcode-windows-x64-modern": "1.12.3",
|
|
14
|
+
"ironcode-darwin-arm64": "1.12.3"
|
|
15
15
|
}
|
|
16
16
|
}
|