-
|
In a normal coding-assistant session I can use plan mode (or an equivalent planner) and iterate on the approach before any code gets written. When I dispatch to fleet, that step seems to be gone — fleet just goes off and builds something. How am I supposed to shape the design? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Short version: Fleet assumes you've already done the high-level planning before you dispatch — that's the step plan mode covers in your local assistant. Fleet's planning phase is low-level (how to implement), not high-level (what to build). If you want that plan-mode-style back-and-forth on requirements, do it locally first and hand fleet the result. There are two distinct planning phases, and they answer different questions:
Why it feels like planning is missing:
What to do:
|
Beta Was this translation helpful? Give feedback.
Short version: Fleet assumes you've already done the high-level planning before you dispatch — that's the step plan mode covers in your local assistant. Fleet's planning phase is low-level (how to implement), not high-level (what to build). If you want that plan-mode-style back-and-forth on requirements, do it locally first and hand fleet the result.
There are two distinct planning phases, and they answer different questions:
requirements.md— screens, flows, behaviours, acceptance cri…