Core Tools
Every BMad installation includes the core module — a small set of skills that work across all projects, all modules, and all phases. This page covers those seven core skills: the four kernel tools plus the three thinking skills (brainstorming, forge idea, party mode).
Overview
Section titled “Overview”Core module (always installed):
| Tool | Purpose |
|---|---|
bmad-help | Get context-aware guidance on what to do next |
bmad-advanced-elicitation | Push LLM output through iterative refinement methods |
bmad-review | Multi-lens review — adversarial, edge-case, and verification-gap for code; structure and prose for documents |
bmad-customize | Create and verify BMad customization overrides |
Thinking skills:
| Tool | Purpose |
|---|---|
bmad-brainstorming | Facilitate interactive brainstorming sessions |
bmad-deep-recon | Decision-grade research: draft, process, or run — any subject |
bmad-forge-idea | Pressure-test an idea until it hardens, proves out, or dies cheaply |
bmad-party-mode | Orchestrate multi-agent group discussions |
bmad-help
Section titled “bmad-help”Your intelligent guide to what comes next. — Inspects your project state, detects what’s been done, and recommends the next required or optional step.
Use it when:
- You finished a workflow and want to know what’s next
- You’re new to BMad and need orientation
- You’re stuck and want context-aware advice
- You installed new modules and want to see what’s available
How it works:
- Scans your project for existing artifacts (PRD, architecture, stories, etc.)
- Detects which modules are installed and their available workflows
- Recommends next steps in priority order — required steps first, then optional
- Presents each recommendation with the skill command and a brief description
Input: Optional query in natural language (e.g., bmad-help I have a SaaS idea, where do I start?)
Output: Prioritized list of recommended next steps with skill commands
bmad-advanced-elicitation
Section titled “bmad-advanced-elicitation”Push the LLM to reconsider, refine, and improve its recent output. — BMad’s shared refinement checkpoint: other skills invoke it at natural pauses, and you can call it directly on anything recent in the conversation.
Use it when:
- LLM output feels shallow or generic
- You want to explore a topic from multiple analytical angles
- You’re refining a critical document and want deeper thinking
- You want a known method by name — Socratic, first principles, pre-mortem, red team
How it works:
- Targets the most recent output in the conversation unless you point it at something else
- Offers a short menu of best-fit elicitation methods for the content
- Applies the chosen methods against the target
- Hands back the improved version so the invoking flow resumes where it paused
Input: The recent output to refine (default), or any content you point it at; optionally a named method
Output: Enhanced version of the content with improvements applied
bmad-review
Section titled “bmad-review”Multi-lens review over any diff, doc, or artifact. — Runs review lenses — each a distinct method and stance — and reports every finding in one canonical shape. Zero findings is a valid outcome; it never pads to look thorough. Each lens declares what it applies to, so a diff draws the code lenses and a document draws the editorial ones.
The shipped lenses:
| Lens | Applies to | Method |
|---|---|---|
| Adversarial | Anything | Forced-finding review (≥10 issues) that looks for what’s missing, not only what’s wrong; empty lists are not allowed |
| Edge case | Anything | Walks every branching path and boundary condition in content that defines behavior |
| Verification gap | Code | Finds changed behavior that could regress without reliable verification catching it |
| Structure | Documents | Proposes cuts, merges, moves, and condensing — does the document’s shape serve its purpose? |
| Prose | Documents | Copy-edits for communication issues that impede comprehension |
The two editorial lenses hold content sacrosanct: they never challenge your ideas, only how they’re organized and expressed, and they propose rather than execute. Prose runs on top of the structure findings when both are selected.
The set isn’t fixed: a customize.toml override can add lenses or replace shipped ones, and a review runs whatever resolves.
Use it when:
- You need quality assurance before finalizing a deliverable
- You want exhaustive edge-case coverage of code or logic
- You want to know whether a change is adequately verified
- You’ve drafted a document and want it tightened and polished
- You want to reduce length while preserving comprehension
How it works:
- Loads the content, identifies its type — diff, file, function, or document — and whether it is code or docs
- Selects lenses: the ones you name, or every enabled lens whose applicability and conditions fit the content
- Announces the plan — which lenses will run, and which run on top of another’s findings
- Runs the independent lenses — in parallel via subagents when the platform supports it — then the dependent ones on top of their results
- Assembles one findings array; overlap between lenses is signal, not duplication
Input:
content(required) — Diff, branch, uncommitted changes, file, spec, story, or any documentlenses(optional) — one or more lens codes or names; default is every lens that fits the contentalso_consider(optional) — Additional areas to keep in mindstyle_guide/reader_type(optional, editorial lenses) — a project style guide, andhumans(default) for clarity/flow orllmfor precision/consistency
Output: JSON findings array (each finding carries lens, location, trigger_condition, guard_snippet, potential_consequence) and/or a markdown report grouped by lens. The editorial lenses render a findings table you accept or reject row by row, plus an estimated reduction when structural changes are proposed.
bmad-customize
Section titled “bmad-customize”Create and verify customization overrides. — Helps you change how an installed BMad agent or workflow behaves without hand-authoring TOML.
Use it when:
- You want to change an agent or workflow behavior
- You need to add persistent facts, activation hooks, or custom menu items
- You want the right override scope selected and verified automatically
How it works:
- Scans installed BMad skills for customizable surfaces
- Selects the right scope for your requested change
- Writes override files under
_bmad/custom/ - Verifies the merged configuration
Input: Natural language description of the customization you want
Output: TOML override files under _bmad/custom/
For a detailed guide on customizing BMad, see How to Customize BMad.
Thinking Skills
Section titled “Thinking Skills”The skills below round out the core module — general-purpose thinking tools that any phase or module can lean on.
bmad-brainstorming
Section titled “bmad-brainstorming”Generate diverse ideas through interactive creative techniques. — A facilitated brainstorming session that loads proven ideation methods from a technique library and guides you toward 100+ ideas before organizing.
Use it when:
- You’re starting a new project and need to explore the problem space
- You’re stuck generating ideas and need structured creativity
- You want to use proven ideation frameworks (SCAMPER, reverse brainstorming, etc.)
How it works:
- Sets up a brainstorming session with your topic
- Loads creative techniques from a method library
- Guides you through technique after technique, generating ideas
- Applies anti-bias protocol — shifts creative domain every 10 ideas to prevent clustering
- Produces an append-only session document with all ideas organized by technique
Input: Brainstorming topic or problem statement, optional context file
Output: a self-contained brainstorm.html keepsake of the session, an optional brainstorm-intent.md for downstream skills, and a .memlog.md session record
bmad-deep-recon
Section titled “bmad-deep-recon”Decision-grade research on any subject, three ways. — Draft a deep-research prompt for the AI tool you already subscribe to, process a finished report into a cited summary downstream skills consume directly, or run the research in place through parallel web fan-out.
Use it when:
- A decision should rest on evidence instead of the model’s memory
- You need market, domain, technical, competitive, user-voice, or literature research
- You have a research report from any source and want it distilled for downstream use
- You’re choosing between named options and want a structured comparison
How it works:
- Detects the mode — draft, process, or run — and infers the research type from your ask
- Loads the type’s pack: prioritized dimensions, source craft, freshness rules
- Run mode plans at one gate, fans out firewalled research assistants, and verifies claims as they land
- Draft and Process round-trip through your own deep-research tool instead
- Refresh and Deepen update an existing report without re-researching it
Input: The decision and topic, a report to process, or an existing research folder to refresh
Output: A cited research.md with metadata frontmatter, plus an optional self-contained HTML briefing
For the three modes, how to choose between them, and what happens inside a run, see Deep Recon.
bmad-forge-idea
Section titled “bmad-forge-idea”Pressure-test an idea until it hardens, proves out, or dies cheaply. — An adversarial interrogator drives a half-formed idea one question at a time, bringing two characters to every branch, until what survives is something you can act on with conviction.
Use it when:
- You hold an idea and want it stress-tested before you invest in it
- You want an honest read on whether to kill it
- You need a thinking partner that pushes back instead of agreeing
How it works:
- Establishes the goal up front and steers the questioning to match it
- Works one question at a time in dependency order, putting a recommended answer on the table to push against
- Brings two voices to every branch — one from your installed roster, one conjured by the topic
- Challenges fuzzy terms and tests claims against an existing project’s material
- Lands as Hardened, Killed, or Clearer, with a self-contained report you can keep
Input: The idea, in any domain — a feature, a business model, a research hypothesis, a life decision
Output: A forged-idea.md distillate when an idea hardens (optional), plus a forge-report.html keepsake every run
bmad-party-mode
Section titled “bmad-party-mode”Orchestrate multi-agent group discussions. — Loads all installed BMad agents and facilitates a natural conversation where each agent contributes from their unique expertise and personality.
Use it when:
- You need multiple expert perspectives on a decision
- You want agents to challenge each other’s assumptions
- You’re exploring a complex topic that spans multiple domains
How it works:
- Loads the agent manifest with all installed agent personalities
- Analyzes your topic to select 2–3 most relevant agents
- Agents take turns contributing, with natural cross-talk and disagreements
- Rotates agent participation to ensure diverse perspectives over time
- Exit with
goodbye,end party, orquit
Input: Discussion topic or question, along with specification of personas you would like to participate (optional)
Output: Real-time multi-agent conversation with maintained agent personalities