@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 +14 -5
- package/dist/native/rudder-native +0 -0
- package/package.json +1 -1
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` |
|
|
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
|
-
##
|
|
178
|
+
## Review
|
|
179
179
|
|
|
180
|
-
Press `v` on an agent to
|
|
181
|
-
|
|
182
|
-
|
|
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