@viraatdas/rudder 2.3.2 → 2.5.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 +9 -2
- package/dist/native/rudder-native +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -159,17 +159,24 @@ running, Rudder also exposes matching project skills; the orchestrator can write
|
|
|
159
159
|
| Command | Action |
|
|
160
160
|
| --- | --- |
|
|
161
161
|
| `/model` | Pick provider, then model, then effort |
|
|
162
|
+
| `/fast` | Fast mode for new agents: flagship model at low effort (Claude opus / Codex gpt-5.5); `/model` switches back |
|
|
162
163
|
| `/ask <text>` | Force a one-off conversational agent in the main checkout |
|
|
163
164
|
| `/plan <text>` | Force the orchestrator / DAG planner |
|
|
164
165
|
| `/share <text>` | Save gitignored shared context for all agents in `RUDDER_SHARED.md` |
|
|
165
166
|
| `/main` or `/m` | Start a new main-branch agent |
|
|
166
167
|
| `/review-all` | Combine completed worktrees and start a Codex review-all agent |
|
|
167
168
|
| `/merge-all` | Merge all completed worktrees |
|
|
168
|
-
| `/automerge` | Toggle automatic clean merges |
|
|
169
|
+
| `/automerge` | Toggle automatic clean merges (persists across sessions; shown in the agents pane header) |
|
|
169
170
|
| `/login` | Browser login for Rudder Cloud |
|
|
170
171
|
| `/cloud` | Onload the current workspace or start a fresh cloud worker |
|
|
171
172
|
| `/cloud list` | List cloud workers |
|
|
172
|
-
| `/help` | Show the
|
|
173
|
+
| `/help` | Show the keybinding + command cheat sheet |
|
|
174
|
+
|
|
175
|
+
Finding a DAG task's worker: every plan node id (`n0`, `n1`, …) appears on the
|
|
176
|
+
orchestrator DAG row, on the matching worker's row in the agents pane (`run n1`),
|
|
177
|
+
and in the worker pane title, so the three panes cross-reference by id. A finished
|
|
178
|
+
worker shows `done · needs merge` until it merges (with `m`, `M`, or auto-merge);
|
|
179
|
+
only merged nodes unblock their dependents.
|
|
173
180
|
|
|
174
181
|
## Models
|
|
175
182
|
|
|
Binary file
|
package/package.json
CHANGED