@viraatdas/rudder 2.10.11 → 2.10.12

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
@@ -49,8 +49,9 @@ rudder
49
49
 
50
50
  With no arguments, `rudder` opens the dashboard. Type in the bottom input and
51
51
  press `Enter` to hand the request to the orchestrator. It can answer, inspect the
52
- repo, or plan a DAG and run isolated workers. Use `/ask <text>` when you want a
53
- one-off agent in the main checkout with no DAG.
52
+ repo, or plan a DAG and run isolated workers. Use `/run <task>` when you want
53
+ exactly one isolated mergeable worker with no DAG. Use `/ask <text>` when you
54
+ want a one-off agent in the main checkout with no merge step.
54
55
 
55
56
  If a task needs shared local context like API tokens, private URLs, account ids,
56
57
  or environment values, save it with `/share <text>` in the task input. Rudder
@@ -90,7 +91,7 @@ to `~/.rudder/config.json`.
90
91
  │ task list │ live Claude Code or Codex terminal │
91
92
  │ status/model │ DAG-over-orchestrator, scrollback, review │
92
93
  ├───────────────┴────────────────────────────────────────────┤
93
- │ task input: orchestrator by default, /ask for one-off
94
+ │ task input: orchestrator by default, /run single, /ask direct
94
95
  └──────────────────────────────────────────────────────────────┘
95
96
  ```
96
97
 
@@ -158,8 +159,9 @@ running, Rudder also exposes matching project skills; the orchestrator can write
158
159
  | --- | --- |
159
160
  | `/model` | Pick provider, then model, then effort |
160
161
  | `/fast` | Fast mode for new agents: flagship model at low effort (Claude opus / Codex gpt-5.5); `/model` switches back |
161
- | `/ask <text>` | Start a one-off conversational agent in the main checkout |
162
162
  | `/plan <text>` | Start the orchestrator / DAG planner |
163
+ | `/run <task>` | Start one isolated mergeable worker, with no DAG |
164
+ | `/ask <text>` | Start a one-off conversational agent in the main checkout |
163
165
  | `/share <text>` | Save gitignored shared context for all agents in `RUDDER_SHARED.md` |
164
166
  | `/main` or `/m` | Start a new main-branch agent |
165
167
  | `/review-all` | Combine completed worktrees and start a Codex review-all agent |
@@ -194,8 +196,10 @@ starts the orchestrator, which can inspect the repo, plan the work, and spawn
194
196
  isolated workers when needed.
195
197
 
196
198
  Use `/ask <text>` for a one-off conversational agent in the main checkout, with
197
- no DAG. Use `/plan <text>` when you want to be explicit about the orchestrator /
198
- DAG path; it is the same route as plain input.
199
+ no DAG and no merge step. Use `/run <task>` for exactly one isolated worker that
200
+ lands in Review and merges back with `m` or `/merge-all`. Use `/plan <text>` when
201
+ you want to be explicit about the orchestrator / DAG path; it is the same route
202
+ as plain input.
199
203
 
200
204
  For planned work, Rudder runs a dedicated Claude Code orchestrator PTY with a DAG
201
205
  pane above it. The flow stays inside Rudder: the orchestrator researches
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viraatdas/rudder",
3
- "version": "2.10.11",
3
+ "version": "2.10.12",
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",