@viraatdas/rudder 1.0.39 → 1.0.40
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/LICENSE +21 -0
- package/README.md +11 -0
- package/dist/native/rudder-native +0 -0
- package/package.json +2 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Viraat Das
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -374,6 +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` | Review each completed worktree before merging |
|
|
377
378
|
| `M` | Merge all completed worktrees |
|
|
378
379
|
| `dd` | Delete the selected agent and remove its worktree; if it has changes, Rudder gives you a merge chance first |
|
|
379
380
|
| `q` | Quit when the worker is not consuming input |
|
|
@@ -390,6 +391,7 @@ through suggestions and `Enter` to choose one.
|
|
|
390
391
|
| `/plan <task>` | Start one read-only planning session without toggling plan mode |
|
|
391
392
|
| `/rudder-plan <task>` | Start a planning coordinator that decomposes the task and spawns worker agents |
|
|
392
393
|
| `/run <task>` | Start an implementation run even when plan mode is on |
|
|
394
|
+
| `/review-all` | Review each completed worktree before merging |
|
|
393
395
|
| `/merge-all` | Merge all completed worktrees |
|
|
394
396
|
| `/login` | Open browser login for Rudder Cloud |
|
|
395
397
|
| `/cloud` | Ask whether to onload the current Rudder workspace or start a fresh Fly worker |
|
|
@@ -532,6 +534,11 @@ keyboard input into Hunk while the review pane is focused and keeps wheel or
|
|
|
532
534
|
trackpad scrolling on Rudder's review scrollback. Press `v` or `Esc` to return
|
|
533
535
|
to the live Claude Code or Codex worker.
|
|
534
536
|
|
|
537
|
+
Press `R` to review completed worktrees one at a time before merging. Rudder
|
|
538
|
+
opens the selected completed worktree if it is ready, then each subsequent
|
|
539
|
+
`R` advances to the next completed worktree. After reviewing, press `M` to
|
|
540
|
+
merge all completed worktrees into the main checkout.
|
|
541
|
+
|
|
535
542
|
Rudder writes a per-worktree `.hunk/config.toml` in Hunk's light mode and
|
|
536
543
|
ignores that config through git's local info exclude, so it does not get merged.
|
|
537
544
|
Set `RUDDER_HUNK_THEME=paper` or another Hunk theme name to override it.
|
|
@@ -588,3 +595,7 @@ cargo test --manifest-path native/Cargo.toml
|
|
|
588
595
|
npm run check
|
|
589
596
|
npm run build
|
|
590
597
|
```
|
|
598
|
+
|
|
599
|
+
## License
|
|
600
|
+
|
|
601
|
+
MIT
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viraatdas/rudder",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.40",
|
|
4
4
|
"description": "A Claude Code-style terminal app for running coding agents with worktree-isolated runs.",
|
|
5
|
+
"license": "MIT",
|
|
5
6
|
"homepage": "https://rudder.viraat.dev",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"bin": {
|