@viraatdas/rudder 2.12.28 → 2.12.30

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
@@ -164,6 +164,7 @@ command, even while typing inside the worker pane:
164
164
  | `R` | Review all completed worktrees (Codex review-all agent) |
165
165
  | `r` | Rename the selected agent |
166
166
  | `b` | Branch the selected agent's chat into a new worker |
167
+ | `u` | Undo the selected row's merge (restores the jj operation it ran as) |
167
168
  | `d` | Delete the selected agent and its worktree |
168
169
  | `j` / `k` | Move the agent selection |
169
170
  | `q` | Quit |
@@ -508,6 +509,18 @@ disables it. The full harness spec is in
508
509
  [`docs/continual-improvement.md`](./docs/continual-improvement.md);
509
510
  implementation details live in [`AGENTS.md`](./AGENTS.md) section 15.
510
511
 
512
+ ## What Rudder derives rather than remembers
513
+
514
+ A status that can be checked is checked, on a slow tick, against whatever actually
515
+ knows: jj for "is this work in main", the process handle for "is this agent
516
+ alive", the filesystem for "does this workspace exist", each backend's own session
517
+ store for "which conversation is this". Anything that changed is written to
518
+ `.rudder/activity.jsonl` with the ids it touched — change id, bookmark, commit,
519
+ jj operation — so it can be lined up against `jj op log` afterwards.
520
+
521
+ This is why a merged row can say **`merged · NOT in main`**: the merge landed, and
522
+ then something rewrote history under it. Rudder used to keep claiming success.
523
+
511
524
  ## Telemetry and feedback
512
525
 
513
526
  Rudder sends a small set of **anonymous usage events** so the parts people get
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viraatdas/rudder",
3
- "version": "2.12.28",
3
+ "version": "2.12.30",
4
4
  "description": "A Claude Code-style terminal app for running coding agents with worktree-isolated runs.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://rudder.viraat.dev",