@viraatdas/rudder 1.0.3 → 1.0.5

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 CHANGED
@@ -100,7 +100,7 @@ terminal UI continue to work normally.
100
100
  | `j` / `k` or arrows | Move through agents when the agents pane is focused |
101
101
  | `/model` | Open the provider-first model picker |
102
102
  | `/help` | Show the short command hint |
103
- | `v` | Toggle the selected agent's diff view |
103
+ | `v` | Open the selected agent's Hunk review view |
104
104
  | `m` | Merge the selected completed worktree |
105
105
  | `M` | Merge all completed worktrees |
106
106
  | `d` | Delete the selected agent; if its worktree has changes, Rudder asks you to merge or confirm discard |
@@ -175,11 +175,20 @@ After a worker appears to finish, Rudder can wait briefly and send a focused
175
175
  follow-up asking the same agent to verify what remains. When an agent finishes
176
176
  or fails, Rudder plays the bundled completion sound.
177
177
 
178
- ## Diff Review
178
+ ## Review
179
179
 
180
- Press `v` on an agent to show the current worktree diff against `HEAD`. Scroll
181
- with the keyboard or trackpad, then press `v` or `Esc` to return to the live
182
- worker pane.
180
+ Press `v` on an agent to open Hunk against that agent's worktree:
181
+
182
+ ```bash
183
+ hunk diff --watch
184
+ ```
185
+
186
+ Hunk provides the multi-file review UI, sidebar navigation, mouse support,
187
+ watch mode, and untracked-file handling. If `hunk` is not installed, Rudder
188
+ installs it with `npm install -g hunkdiff@latest` before opening the review.
189
+
190
+ While focused in the review pane, keys go to Hunk. Press `Ctrl-G`, then `v`, to
191
+ return to the live Claude Code or Codex worker.
183
192
 
184
193
  ## One-Shot Commands
185
194
 
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viraatdas/rudder",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "A Claude Code-style terminal app for running coding agents with worktree-isolated runs.",
5
5
  "homepage": "https://rudder.viraat.dev",
6
6
  "type": "module",