@viraatdas/rudder 0.7.14 → 0.7.16

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
@@ -160,6 +160,13 @@ Codex. Their slash commands, cursor movement, copy/paste, and terminal UI
160
160
  continue to work normally. `Ctrl-C` is reserved by Rudder and leaves the
161
161
  dashboard from any pane.
162
162
 
163
+ Rudder owns mouse input inside the dashboard. Wheel or trackpad scrolling over a
164
+ worker or review pane scrolls Rudder's captured pane output, not the underlying
165
+ Claude Code, Codex, or Hunk chat. Use the worker's up and down arrow keys when
166
+ you want to move through the agent's own prompt history or menus. Drag selection
167
+ inside the worker pane copies selected text, including when you drag upward past
168
+ the top of the pane.
169
+
163
170
  ## Keys
164
171
 
165
172
  | Key | Action |
@@ -216,13 +223,18 @@ Native dashboard workers launch the official CLIs directly.
216
223
  Claude Code:
217
224
 
218
225
  ```bash
219
- claude --permission-mode bypassPermissions --model <model> --effort <effort> "<task>"
226
+ CLAUDE_CODE_NO_FLICKER=0 claude \
227
+ --permission-mode bypassPermissions \
228
+ --model <model> \
229
+ --effort <effort> "<task>"
220
230
  ```
221
231
 
222
232
  Codex:
223
233
 
224
234
  ```bash
225
- codex --ask-for-approval never --sandbox danger-full-access \
235
+ codex --no-alt-screen \
236
+ --ask-for-approval never \
237
+ --sandbox danger-full-access \
226
238
  -c model_reasoning_summary="detailed" \
227
239
  -c model_supports_reasoning_summaries=true \
228
240
  -c model_reasoning_effort="<effort>" \
@@ -294,8 +306,9 @@ hunk diff --watch
294
306
 
295
307
  Hunk provides the multi-file review UI, sidebar navigation, mouse support,
296
308
  watch mode, inline agent notes, and untracked-file handling. Rudder forwards
297
- keyboard and accelerated mouse-wheel input into Hunk while the review pane is
298
- focused. Press `v` or `Esc` to return to the live Claude Code or Codex worker.
309
+ keyboard input into Hunk while the review pane is focused and keeps wheel or
310
+ trackpad scrolling on Rudder's review scrollback. Press `v` or `Esc` to return
311
+ to the live Claude Code or Codex worker.
299
312
 
300
313
  Rudder writes a per-worktree `.hunk/config.toml` in Hunk's light mode and
301
314
  ignores that config through git's local info exclude, so it does not get merged.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viraatdas/rudder",
3
- "version": "0.7.14",
3
+ "version": "0.7.16",
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",