@viraatdas/rudder 1.12.1 → 1.12.3
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 +28 -12
- package/dist/native/rudder-native +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -169,18 +169,34 @@ reused next time. Rudder refreshes model metadata from
|
|
|
169
169
|
## Planning (the default)
|
|
170
170
|
|
|
171
171
|
Just type a task. Rudder runs the model in **plan mode** (Claude Code or Codex), streamed
|
|
172
|
-
live in the orchestrator pane
|
|
173
|
-
and
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
172
|
+
live in the orchestrator pane. The flow stays entirely inside Rudder — you only ever talk to
|
|
173
|
+
Rudder, and the planner researches read-only and can never implement on its own:
|
|
174
|
+
|
|
175
|
+
1. **It asks first.** Unless your request is already fully specified, the planner inspects
|
|
176
|
+
the repo and then asks you a few clarifying questions, shown as a numbered prompt:
|
|
177
|
+
|
|
178
|
+
```
|
|
179
|
+
❓ The planner needs your input
|
|
180
|
+
1. Which time range: last 4 weeks, 6 months, or all time?
|
|
181
|
+
2. Reuse the existing module contract, or rebuild from scratch?
|
|
182
|
+
|
|
183
|
+
↳ answer in the task box below (e.g. "1: ..., 2: ...") and press Enter
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
Type your answer in the task box and press `Enter`; it continues the same planning
|
|
187
|
+
conversation with your answer. (A fully unambiguous request skips straight to the plan.)
|
|
188
|
+
2. **It lays out a DAG.** When it is ready it shows the task DAG (a tree of worker tasks
|
|
189
|
+
with their dependencies). Type to refine it (Rudder re-plans, the DAG updates in place),
|
|
190
|
+
or press `Enter` on an empty input to approve and launch.
|
|
191
|
+
3. **The fleet runs.** The scheduler drains the DAG (todo → in-progress → review → done) as
|
|
192
|
+
dependencies merge, each task in its own isolated worktree.
|
|
193
|
+
|
|
194
|
+
After launch, typing a new task folds it into the running DAG as a new node. When a worker
|
|
195
|
+
finishes, Rudder reads back what it did and what work it found remaining (reconstructing it
|
|
196
|
+
from the diff if the agent did not say), so the plan keeps growing on its own. Type a
|
|
197
|
+
sweeping change ("rewrite this in Rust instead") and the plan re-plans around the work
|
|
198
|
+
already done. The queued plan survives a restart, so quitting mid-plan resumes where you
|
|
199
|
+
left off.
|
|
184
200
|
|
|
185
201
|
## Worktrees and merging
|
|
186
202
|
|
|
Binary file
|
package/package.json
CHANGED