@viraatdas/rudder 0.7.13 → 0.7.15

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,12 @@ 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 starts in `mouse:native` mode. In Ghostty and other terminals, this means
164
+ normal terminal text selection and trackpad behavior stay native. Use keyboard
165
+ shortcuts for pane focus and agent actions. If you want Rudder to capture mouse
166
+ clicks, wheel events, and custom worker selection instead, run `/mouse rudder`
167
+ from the task pane. Switch back with `/mouse native`.
168
+
163
169
  ## Keys
164
170
 
165
171
  | Key | Action |
@@ -176,6 +182,8 @@ dashboard from any pane.
176
182
  | `/plan <task>` | Start one read-only planning session without toggling plan mode |
177
183
  | `/run <task>` | Start an implementation run even when plan mode is on |
178
184
  | `/model` | Open the provider-first model picker |
185
+ | `/mouse native` | Let Ghostty/the terminal handle mouse selection and scrollback |
186
+ | `/mouse rudder` | Let Rudder capture mouse clicks, wheel scroll, and worker selection |
179
187
  | `/help` | Show the short command hint |
180
188
  | `v` | Toggle the selected agent's review view |
181
189
  | `Esc` | Leave the review view when it is focused |
@@ -216,13 +224,18 @@ Native dashboard workers launch the official CLIs directly.
216
224
  Claude Code:
217
225
 
218
226
  ```bash
219
- claude --permission-mode bypassPermissions --model <model> --effort <effort> "<task>"
227
+ CLAUDE_CODE_NO_FLICKER=0 claude \
228
+ --permission-mode bypassPermissions \
229
+ --model <model> \
230
+ --effort <effort> "<task>"
220
231
  ```
221
232
 
222
233
  Codex:
223
234
 
224
235
  ```bash
225
- codex --ask-for-approval never --sandbox danger-full-access \
236
+ codex --no-alt-screen \
237
+ --ask-for-approval never \
238
+ --sandbox danger-full-access \
226
239
  -c model_reasoning_summary="detailed" \
227
240
  -c model_supports_reasoning_summaries=true \
228
241
  -c model_reasoning_effort="<effort>" \
@@ -294,8 +307,9 @@ hunk diff --watch
294
307
 
295
308
  Hunk provides the multi-file review UI, sidebar navigation, mouse support,
296
309
  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.
310
+ keyboard input into Hunk while the review pane is focused. In `/mouse rudder`
311
+ mode, Rudder also forwards accelerated mouse-wheel input. Press `v` or `Esc` to
312
+ return to the live Claude Code or Codex worker.
299
313
 
300
314
  Rudder writes a per-worktree `.hunk/config.toml` in Hunk's light mode and
301
315
  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.13",
3
+ "version": "0.7.15",
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",