@viraatdas/rudder 2.7.1 → 2.8.1
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 +14 -19
- package/dist/native/rudder-native +0 -0
- package/package.json +1 -1
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
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
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:
|
|
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>` |
|
|
164
|
-
| `/plan <text>` |
|
|
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
|
-
##
|
|
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
|
-
|
|
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
|
-
|
|
198
|
-
|
|
199
|
-
|
|
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