···77Build up a plan, refine it, and then let your agent decompose it into multiple component-specific plans with individual testing and validation steps,
88with the ability to defer or decompose them further if issues arise. Deferred plans will be dequeued eventually, so your agent will return to them later.
991010-Unlike other task-sequencing setups, 9plan is built for implementing _large features_, not for building entire applications in one shot. Plans are largely
1010+Unlike other task-sequencing setups, 9plan is built for implementing _large features_, not for building entire applications in one shot. It recognizes that
1111+most development is brownfield, and most developers contribute to codebases they don't control the planning methodology for. Plans are largely
1112intended to be ephemeral and don't have structured relations, reducing the odds of changes in design direction or early errors impacting the entire development
1213of a given feature. 9plan expects you to start fresh each session, and build up context through the information in a codebase itself, including its
1313-documentation, not through looking at a task history and inferring the next steps from there. It's designed for a smaller scope, but higher precision within
1414+documentation - not through looking at a task history and inferring the next steps from there. It's designed for a smaller scope, but higher precision within
1415that scope, respecting the codebases you contribute to.
15161617## Installation