@viraatdas/rudder 1.12.2 → 1.13.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
@@ -169,18 +169,35 @@ 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: it researches your repo read-only, reasons about the work,
173
- and lays out a DAG of worker tasks. It will not implement anything. You watch it plan,
174
- refine by typing (Rudder re-plans and the DAG updates in place), and when you are happy
175
- press `Enter` to approve. The scheduler then drains the DAG (todo in-progress review
176
- done) as dependencies merge. The whole flow stays inside Rudder: you talk to Rudder, not to
177
- a separate agent, and the planner can never go off and implement on its own.
178
-
179
- After launch, typing a new task folds it into the running DAG as a new node. When a
180
- worker finishes, Rudder reads back what it did and what work it found remaining (and
181
- reconstructs that from the diff if the agent did not say), so the plan keeps growing on
182
- its own. Type a sweeping change (\"rewrite this in Rust instead\") and the plan re-plans
183
- around the work already done.
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.** The planner inspects the repo and then asks at least one
176
+ clarifying or confirmation question before the first DAG, 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. Rudder enforces this first question round in code, so
188
+ even a fully specified request pauses once before the first plan.
189
+ 2. **It lays out a DAG.** When it is ready it shows the task DAG (a tree of worker tasks
190
+ with their dependencies). Type to refine it (Rudder re-plans, the DAG updates in place),
191
+ or press `Enter` on an empty input to approve and launch.
192
+ 3. **The fleet runs.** The scheduler drains the DAG (todo → in-progress → review → done) as
193
+ dependencies merge, each task in its own isolated worktree.
194
+
195
+ After launch, typing a new task folds it into the running DAG as a new node. When a worker
196
+ finishes, Rudder reads back what it did and what work it found remaining (reconstructing it
197
+ from the diff if the agent did not say), so the plan keeps growing on its own. Type a
198
+ sweeping change ("rewrite this in Rust instead") and the plan re-plans around the work
199
+ already done. The queued plan survives a restart, so quitting mid-plan resumes where you
200
+ left off.
184
201
 
185
202
  ## Worktrees and merging
186
203
 
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viraatdas/rudder",
3
- "version": "1.12.2",
3
+ "version": "1.13.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",