Agent FrameworkMaturity: Established
BMAD Method
Pick the track that fits the job, then move from analysis to implementation with specialized agents.
1 min read
What it is
BMAD means Build More, Architect Dreams. It is a framework of specialized agents and guided workflows. BMad-Help points you to the next step. You do not have to guess the path.
Pick the right track
Quick Flow fits small jobs. BMad Method fits larger products. Enterprise adds more planning for harder systems. The point is not to use every phase. The point is to use the right one.
Planning tracks
Switch tracksQuick Flow
Small jobs need less ceremony.
Bug fixes and small features
Tech specImplementCheck
One method, three tracks
Swipe to see how each planning track looks in practice.
Step 1/3
Quick Flow
Bug fix or small feature — minimal ceremony.
// Tech spec (one short comment block)
// Goal: fix transfer rounding error
// Acceptance: result is always two decimal places
BigDecimal amount = value.setScale(2, RoundingMode.HALF_UP);
assertThat(service.transfer(alice, bob, amount).success()).isTrue();Spec and test fit in one block. No planning ceremonies needed.