@viraatdas/rudder 2.7.1 → 2.8.0

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
@@ -48,11 +48,10 @@ rudder
48
48
  ```
49
49
 
50
50
  With no arguments, `rudder` opens the dashboard. Type in the bottom input and
51
- press `Enter`. Rudder dispatches the request: quick questions, docs/API research,
52
- and tiny self-contained changes open as a one-off agent in your main checkout;
53
- larger implementation work goes to the orchestrator, which plans a DAG and runs
54
- isolated workers. Use `/ask <text>` to force one-off or `/plan <text>` to force
55
- the orchestrator.
51
+ press `Enter` to start a one-off agent in your main checkout. This is the default
52
+ for questions, repo inspection, docs/API research, and small direct changes. Use
53
+ `/plan <text>` when you want the orchestrator to plan a DAG and run isolated
54
+ workers.
56
55
 
57
56
  If a task needs shared local context like API tokens, private URLs, account ids,
58
57
  or environment values, save it with `/share <text>` in the task input. Rudder
@@ -92,7 +91,7 @@ to `~/.rudder/config.json`.
92
91
  │ task list │ live Claude Code or Codex terminal │
93
92
  │ status/model │ DAG-over-orchestrator, scrollback, review │
94
93
  ├───────────────┴────────────────────────────────────────────┤
95
- │ task input: route one-off vs plan, slash commands, refine
94
+ │ task input: one-off agent by default, /plan for DAGs
96
95
  └──────────────────────────────────────────────────────────────┘
97
96
  ```
98
97
 
@@ -160,8 +159,8 @@ running, Rudder also exposes matching project skills; the orchestrator can write
160
159
  | --- | --- |
161
160
  | `/model` | Pick provider, then model, then effort |
162
161
  | `/fast` | Fast mode for new agents: flagship model at low effort (Claude opus / Codex gpt-5.5); `/model` switches back |
163
- | `/ask <text>` | Force a one-off conversational agent in the main checkout |
164
- | `/plan <text>` | Force the orchestrator / DAG planner |
162
+ | `/ask <text>` | Start a one-off conversational agent in the main checkout |
163
+ | `/plan <text>` | Start the orchestrator / DAG planner |
165
164
  | `/share <text>` | Save gitignored shared context for all agents in `RUDDER_SHARED.md` |
166
165
  | `/main` or `/m` | Start a new main-branch agent |
167
166
  | `/review-all` | Combine completed worktrees and start a Codex review-all agent |
@@ -189,20 +188,16 @@ Your last provider, model, and effort are saved in `~/.rudder/config.json` and
189
188
  reused next time. Rudder refreshes model metadata from
190
189
  `https://models.dev/api.json` and falls back to local caches when offline.
191
190
 
192
- ## Dispatch and planning
191
+ ## One-Off and Planning
193
192
 
194
193
  Type a fresh request in the bottom task input. When no plan is active, Rudder
195
- first routes it through a small Haiku dispatcher:
194
+ starts one conversational agent in the main checkout and shows it in the
195
+ `one-off` section. This keeps ordinary questions like "where is the app?" or "is
196
+ it ready to use?" out of the DAG planner.
196
197
 
197
- - **One-off** for questions, explanations, docs/API research, repo inspection, or
198
- tiny self-contained edits. This starts one conversational agent in the main
199
- checkout and shows it in the `one-off` section.
200
- - **Plan** for building, adding, refactoring, integrating, testing, UI, docs pages,
201
- or multi-step work. This starts the orchestrator. When unsure, Rudder chooses
202
- the planner.
203
-
204
- The dispatcher is overrideable: ask for `/ask <text>` to skip routing and start
205
- one-off, or `/plan <text>` to skip routing and start the orchestrator.
198
+ Use `/plan <text>` for planned implementation work. This starts the orchestrator,
199
+ which decomposes the work into isolated workers. `/ask <text>` is kept as an
200
+ explicit alias for the default one-off path.
206
201
 
207
202
  For planned work, Rudder runs a dedicated Claude Code orchestrator PTY with a DAG
208
203
  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.7.1",
3
+ "version": "2.8.0",
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",