@viraatdas/rudder 1.0.40 → 1.0.42
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 +12 -6
- package/dist/native/rudder-native +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -374,7 +374,7 @@ or another full-screen app can scroll its own view.
|
|
|
374
374
|
| `Esc` | Leave the review view when it is focused |
|
|
375
375
|
| `r` | Restart the selected stopped agent in its worktree |
|
|
376
376
|
| `m` | Merge the selected completed worktree |
|
|
377
|
-
| `R` |
|
|
377
|
+
| `R` | Combine completed worktrees and start a Codex review-all agent |
|
|
378
378
|
| `M` | Merge all completed worktrees |
|
|
379
379
|
| `dd` | Delete the selected agent and remove its worktree; if it has changes, Rudder gives you a merge chance first |
|
|
380
380
|
| `q` | Quit when the worker is not consuming input |
|
|
@@ -391,7 +391,7 @@ through suggestions and `Enter` to choose one.
|
|
|
391
391
|
| `/plan <task>` | Start one read-only planning session without toggling plan mode |
|
|
392
392
|
| `/rudder-plan <task>` | Start a planning coordinator that decomposes the task and spawns worker agents |
|
|
393
393
|
| `/run <task>` | Start an implementation run even when plan mode is on |
|
|
394
|
-
| `/review-all` |
|
|
394
|
+
| `/review-all` | Combine completed worktrees and start a Codex review-all agent |
|
|
395
395
|
| `/merge-all` | Merge all completed worktrees |
|
|
396
396
|
| `/login` | Open browser login for Rudder Cloud |
|
|
397
397
|
| `/cloud` | Ask whether to onload the current Rudder workspace or start a fresh Fly worker |
|
|
@@ -534,10 +534,16 @@ keyboard input into Hunk while the review pane is focused and keeps wheel or
|
|
|
534
534
|
trackpad scrolling on Rudder's review scrollback. Press `v` or `Esc` to return
|
|
535
535
|
to the live Claude Code or Codex worker.
|
|
536
536
|
|
|
537
|
-
Press `R` to review completed worktrees one
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
537
|
+
Press `R` to review all completed worktrees as one bundle. Rudder creates a new
|
|
538
|
+
aggregate worktree, commits pending source-worktree changes, merges the
|
|
539
|
+
completed agent branches into that aggregate branch, and starts a Codex
|
|
540
|
+
`gpt-5.5` review-all agent with a `/review` prompt. If the pre-merge hits a
|
|
541
|
+
conflict, that same review agent starts in the conflicted aggregate worktree and
|
|
542
|
+
is instructed to resolve it before continuing.
|
|
543
|
+
|
|
544
|
+
When the Codex review-all row is done, press `m` on that row to merge the
|
|
545
|
+
reviewed aggregate branch back into the main checkout. Rudder then marks the
|
|
546
|
+
source agent rows as merged too.
|
|
541
547
|
|
|
542
548
|
Rudder writes a per-worktree `.hunk/config.toml` in Hunk's light mode and
|
|
543
549
|
ignores that config through git's local info exclude, so it does not get merged.
|
|
Binary file
|
package/package.json
CHANGED