@viraatdas/rudder 1.0.34 → 1.0.35
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 +7 -0
- package/dist/native/rudder-native +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -388,6 +388,7 @@ through suggestions and `Enter` to choose one.
|
|
|
388
388
|
| `/model` | Open the provider-first model picker: choose Claude or Codex, then model, then effort when supported |
|
|
389
389
|
| `/plan` | Toggle Rudder's read-only plan mode for task pane submissions |
|
|
390
390
|
| `/plan <task>` | Start one read-only planning session without toggling plan mode |
|
|
391
|
+
| `/rudder-plan <task>` | Start a planning coordinator that decomposes the task and spawns worker agents |
|
|
391
392
|
| `/run <task>` | Start an implementation run even when plan mode is on |
|
|
392
393
|
| `/login` | Open browser login for Rudder Cloud |
|
|
393
394
|
| `/cloud` | Ask whether to onload the current Rudder workspace or start a fresh Fly worker |
|
|
@@ -473,6 +474,12 @@ the backend's native planning/read-only controls:
|
|
|
473
474
|
and `--search`, so filesystem writes are blocked and the native Responses
|
|
474
475
|
`web_search` tool is available.
|
|
475
476
|
- Claude planners launch with Claude Code's native `--permission-mode plan`.
|
|
477
|
+
|
|
478
|
+
`/rudder-plan <task>` uses the same read-only planner controls, but asks the
|
|
479
|
+
planner to emit a structured `RUDDER_PLAN_TASKS` block. When Rudder sees that
|
|
480
|
+
block, it starts each listed task as a normal isolated worktree agent. If the
|
|
481
|
+
planner asks follow-up questions instead of emitting the block, Rudder does not
|
|
482
|
+
spawn workers.
|
|
476
483
|
- Rudder only prefixes the task with a short planning request; it no longer
|
|
477
484
|
injects a custom planner contract.
|
|
478
485
|
- Normal implementation runs are unchanged: they still create worktrees and use
|
|
Binary file
|
package/package.json
CHANGED