docs/how-to/quick-fixes.md
Bug fixes, refactorings, and small targeted changes can enter Build directly with little or no upstream planning. This is the same implementation workflow used for fully planned stories.
:::note[Prerequisites]
npx bmad-method install)Open a fresh chat session in your AI IDE. Reusing a session from a previous workflow can cause context conflicts.
Build accepts free-form intent — before, with, or after the invocation. Examples:
run build — Fix the login validation bug that allows empty passwords.
run build — fix https://github.com/org/repo/issues/42
run build — implement the intent in _bmad-output/implementation-artifacts/my-intent.md
I think the problem is in the auth middleware, it's not checking token expiry.
Let me look at it... yeah, src/auth/middleware.ts line 47 skips
the exp check entirely. run build
run build
> What would you like to do?
Refactor UserService to use async/await instead of callbacks.
Plain text, file paths, GitHub issue URLs, bug tracker links — anything the LLM can resolve to a concrete intent.
Build may ask clarifying questions or present a short spec for your approval before implementing. Answer its questions and approve when you're satisfied with the plan.
Build implements the change, reviews its own work, patches issues, and commits locally. When it's done, it shows you the review spec.
Once satisfied, push the commit. Build will offer to push and create a PR for you.
:::caution[If Something Breaks]
If a pushed change causes unexpected issues, use git revert HEAD to undo the last commit cleanly. Then start a fresh chat and run Build again to try a different approach.
:::
Build keeps each run focused on a single goal. If your request contains multiple independent goals, or if the review surfaces pre-existing issues unrelated to your change, Build defers them to a file (deferred-work.md in your implementation artifacts directory) rather than trying to tackle everything at once.
Check this file after a run — it's your backlog of things to come back to. Each deferred item can be fed into a fresh Build run later.
Before running the same Build implementation loop, consider adding PRD, UX, architecture, or story planning when:
See Build for how direct intent and planned work converge on the same implementation loop.