Compare commits
No commits in common. "61e33949a8b8814985f2b0e772c461f00f5ab4bc" and "2ad72d7d0c6291f67b1c381059eacf3603794703" have entirely different histories.
61e33949a8
...
2ad72d7d0c
|
|
@ -1,7 +0,0 @@
|
||||||
---
|
|
||||||
name: bmad-os-diataxis-style-fix
|
|
||||||
description: Fixes documentation to comply with Diataxis framework and BMad Method style guide rules
|
|
||||||
disable-model-invocation: true
|
|
||||||
---
|
|
||||||
|
|
||||||
Read `prompts/instructions.md` and execute.
|
|
||||||
|
|
@ -1,229 +0,0 @@
|
||||||
# Diataxis Style Fixer
|
|
||||||
|
|
||||||
Automatically fixes documentation to comply with the Diataxis framework and BMad Method style guide.
|
|
||||||
|
|
||||||
## CRITICAL RULES
|
|
||||||
|
|
||||||
- **NEVER commit or push changes** — let the user review first
|
|
||||||
- **NEVER make destructive edits** — preserve all content, only fix formatting
|
|
||||||
- **Use Edit tool** — make targeted fixes, not full file rewrites
|
|
||||||
- **Show summary** — after fixing, list all changes made
|
|
||||||
|
|
||||||
## Input
|
|
||||||
|
|
||||||
Documentation file path or directory to fix. Defaults to `docs/` if not specified.
|
|
||||||
|
|
||||||
## Step 1: Understand Diataxis Framework
|
|
||||||
|
|
||||||
**Diataxis** is a documentation framework that categorizes content into four types based on two axes:
|
|
||||||
|
|
||||||
| | **Learning** (oriented toward future) | **Doing** (oriented toward present) |
|
|
||||||
| -------------- | ----------------------------------------------------------------------------- | ---------------------------------------------------------------------------- |
|
|
||||||
| **Practical** | **Tutorials** — lessons that guide learners through achieving a specific goal | **How-to guides** — step-by-step instructions for solving a specific problem |
|
|
||||||
| **Conceptual** | **Explanation** — content that clarifies and describes underlying concepts | **Reference** — technical descriptions, organized for lookup |
|
|
||||||
|
|
||||||
**Key principles:**
|
|
||||||
- Each document type serves a distinct user need
|
|
||||||
- Don't mix types — a tutorial shouldn't explain concepts deeply
|
|
||||||
- Focus on the user's goal, not exhaustive coverage
|
|
||||||
- Structure follows purpose (tutorials are linear, reference is scannable)
|
|
||||||
|
|
||||||
## Step 2: Read the Style Guide
|
|
||||||
|
|
||||||
Read the project's style guide at `docs/_STYLE_GUIDE.md` to understand all project-specific conventions.
|
|
||||||
|
|
||||||
## Step 3: Detect Document Type
|
|
||||||
|
|
||||||
Based on file location, determine the document type:
|
|
||||||
|
|
||||||
| Location | Diataxis Type |
|
|
||||||
| -------------------- | -------------------- |
|
|
||||||
| `/docs/tutorials/` | Tutorial |
|
|
||||||
| `/docs/how-to/` | How-to guide |
|
|
||||||
| `/docs/explanation/` | Explanation |
|
|
||||||
| `/docs/reference/` | Reference |
|
|
||||||
| `/docs/glossary/` | Reference (glossary) |
|
|
||||||
|
|
||||||
## Step 4: Find and Fix Issues
|
|
||||||
|
|
||||||
For each markdown file, scan for issues and fix them:
|
|
||||||
|
|
||||||
### Universal Fixes (All Doc Types)
|
|
||||||
|
|
||||||
**Horizontal Rules (`---`)**
|
|
||||||
- Remove any `---` outside of YAML frontmatter
|
|
||||||
- Replace with `##` section headers or admonitions as appropriate
|
|
||||||
|
|
||||||
**`####` Headers**
|
|
||||||
- Replace with bold text: `#### Header` → `**Header**`
|
|
||||||
- Or convert to admonition if it's a warning/notice
|
|
||||||
|
|
||||||
**"Related" or "Next:" Sections**
|
|
||||||
- Remove entire section including links
|
|
||||||
- The sidebar handles navigation
|
|
||||||
|
|
||||||
**Deeply Nested Lists**
|
|
||||||
- Break into sections with `##` headers
|
|
||||||
- Flatten to max 3 levels
|
|
||||||
|
|
||||||
**Code Blocks for Dialogue/Examples**
|
|
||||||
- Convert to admonitions:
|
|
||||||
```
|
|
||||||
:::note[Example]
|
|
||||||
[content]
|
|
||||||
:::
|
|
||||||
```
|
|
||||||
|
|
||||||
**Bold Paragraph Callouts**
|
|
||||||
- Convert to admonitions with appropriate type
|
|
||||||
|
|
||||||
**Too Many Admonitions**
|
|
||||||
- Limit to 1-2 per section (tutorials allow 3-4 per major section)
|
|
||||||
- Consolidate related admonitions
|
|
||||||
- Remove less critical ones if over limit
|
|
||||||
|
|
||||||
**Table Cells / List Items > 2 Sentences**
|
|
||||||
- Break into multiple rows/cells
|
|
||||||
- Or shorten to 1-2 sentences
|
|
||||||
|
|
||||||
**Header Budget Exceeded**
|
|
||||||
- Merge related sections
|
|
||||||
- Convert some `##` to `###` subsections
|
|
||||||
- Goal: 8-12 `##` per doc; 2-3 `###` per section
|
|
||||||
|
|
||||||
### Type-Specific Fixes
|
|
||||||
|
|
||||||
**Tutorials** (`/docs/tutorials/`)
|
|
||||||
- Ensure hook describes outcome in 1-2 sentences
|
|
||||||
- Add "What You'll Learn" bullet section if missing
|
|
||||||
- Add `:::note[Prerequisites]` if missing
|
|
||||||
- Add `:::tip[Quick Path]` TL;DR at top if missing
|
|
||||||
- Use tables for phases, commands, agents
|
|
||||||
- Add "What You've Accomplished" section if missing
|
|
||||||
- Add Quick Reference table if missing
|
|
||||||
- Add Common Questions section if missing
|
|
||||||
- Add Getting Help section if missing
|
|
||||||
- Add `:::tip[Key Takeaways]` at end if missing
|
|
||||||
|
|
||||||
**How-To** (`/docs/how-to/`)
|
|
||||||
- Ensure hook starts with "Use the `X` workflow to..."
|
|
||||||
- Add "When to Use This" with 3-5 bullets if missing
|
|
||||||
- Add `:::note[Prerequisites]` if missing
|
|
||||||
- Ensure steps are numbered `###` with action verbs
|
|
||||||
- Add "What You Get" describing outputs if missing
|
|
||||||
|
|
||||||
**Explanation** (`/docs/explanation/`)
|
|
||||||
- Ensure hook states what document explains
|
|
||||||
- Organize content into scannable `##` sections
|
|
||||||
- Add comparison tables for 3+ options
|
|
||||||
- Link to how-to guides for procedural questions
|
|
||||||
- Limit to 2-3 admonitions per document
|
|
||||||
|
|
||||||
**Reference** (`/docs/reference/`)
|
|
||||||
- Ensure hook states what document references
|
|
||||||
- Ensure structure matches reference type
|
|
||||||
- Use consistent item structure throughout
|
|
||||||
- Use tables for structured/comparative data
|
|
||||||
- Link to explanation docs for conceptual depth
|
|
||||||
- Limit to 1-2 admonitions per document
|
|
||||||
|
|
||||||
**Glossary** (`/docs/glossary/` or glossary files)
|
|
||||||
- Ensure categories as `##` headers
|
|
||||||
- Ensure terms in tables (not individual headers)
|
|
||||||
- Definitions 1-2 sentences max
|
|
||||||
- Bold term names in cells
|
|
||||||
|
|
||||||
## Step 5: Apply Fixes
|
|
||||||
|
|
||||||
For each file with issues:
|
|
||||||
1. Read the file
|
|
||||||
2. Use Edit tool for each fix
|
|
||||||
3. Track what was changed
|
|
||||||
|
|
||||||
## Step 6: Summary
|
|
||||||
|
|
||||||
After processing all files, output a summary:
|
|
||||||
|
|
||||||
```markdown
|
|
||||||
# Style Fixes Applied
|
|
||||||
|
|
||||||
**Files processed:** N
|
|
||||||
**Files modified:** N
|
|
||||||
|
|
||||||
## Changes Made
|
|
||||||
|
|
||||||
### `path/to/file.md`
|
|
||||||
- Removed horizontal rule at line 45
|
|
||||||
- Converted `####` headers to bold text
|
|
||||||
- Added `:::tip[Quick Path]` admonition
|
|
||||||
- Consolidated 3 admonitions into 2
|
|
||||||
|
|
||||||
### `path/to/other.md`
|
|
||||||
- Removed "Related:" section
|
|
||||||
- Fixed table cell length (broke into 2 rows)
|
|
||||||
|
|
||||||
## Review Required
|
|
||||||
|
|
||||||
Please review the changes. When satisfied, commit and push as needed.
|
|
||||||
```
|
|
||||||
|
|
||||||
## Common Patterns
|
|
||||||
|
|
||||||
**Converting `####` to bold:**
|
|
||||||
```markdown
|
|
||||||
#### Important Note
|
|
||||||
Some text here.
|
|
||||||
```
|
|
||||||
→
|
|
||||||
```markdown
|
|
||||||
**Important Note**
|
|
||||||
|
|
||||||
Some text here.
|
|
||||||
```
|
|
||||||
|
|
||||||
**Removing horizontal rule:**
|
|
||||||
```markdown
|
|
||||||
Some content above.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Some content below.
|
|
||||||
```
|
|
||||||
→
|
|
||||||
```markdown
|
|
||||||
Some content above.
|
|
||||||
|
|
||||||
## [Descriptive Section Header]
|
|
||||||
|
|
||||||
Some content below.
|
|
||||||
```
|
|
||||||
|
|
||||||
**Converting code block to admonition:**
|
|
||||||
```markdown
|
|
||||||
```
|
|
||||||
User: What should I do?
|
|
||||||
|
|
||||||
Agent: Run the workflow.
|
|
||||||
```
|
|
||||||
```
|
|
||||||
→
|
|
||||||
```markdown
|
|
||||||
:::note[Example]
|
|
||||||
|
|
||||||
**User:** What should I do?
|
|
||||||
|
|
||||||
**Agent:** Run the workflow.
|
|
||||||
|
|
||||||
:::
|
|
||||||
```
|
|
||||||
|
|
||||||
**Converting bold paragraph to admonition:**
|
|
||||||
```markdown
|
|
||||||
**IMPORTANT:** This is critical that you read this before proceeding.
|
|
||||||
```
|
|
||||||
→
|
|
||||||
```markdown
|
|
||||||
:::caution[Important]
|
|
||||||
This is critical that you read this before proceeding.
|
|
||||||
:::
|
|
||||||
```
|
|
||||||
|
|
@ -36,7 +36,6 @@ cursor
|
||||||
CLAUDE.local.md
|
CLAUDE.local.md
|
||||||
.serena/
|
.serena/
|
||||||
.claude/settings.local.json
|
.claude/settings.local.json
|
||||||
.junie/
|
|
||||||
|
|
||||||
z*/
|
z*/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,3 @@ CODE_OF_CONDUCT.md
|
||||||
# BMAD runtime folders (user-specific, not in repo)
|
# BMAD runtime folders (user-specific, not in repo)
|
||||||
_bmad/
|
_bmad/
|
||||||
_bmad*/
|
_bmad*/
|
||||||
|
|
||||||
# IDE integration folders (user-specific, not in repo)
|
|
||||||
.junie/
|
|
||||||
|
|
|
||||||
35
CHANGELOG.md
35
CHANGELOG.md
|
|
@ -1,40 +1,5 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [6.0.0]
|
|
||||||
|
|
||||||
V6 Stable Release! The End of Beta!
|
|
||||||
|
|
||||||
### 🎁 Features
|
|
||||||
|
|
||||||
* Add PRD workflow steps 2b (vision/differentiators) and 2c (executive summary) for more complete product requirements documentation
|
|
||||||
* Add new `bmad uninstall` command with interactive and non-interactive modes for selective component removal
|
|
||||||
* Add dedicated GitHub Copilot installer that generates enriched `.agent.md`, `.prompt.md` files and project configuration
|
|
||||||
* Add TEA browser automation prerequisite prompts to guide Playwright CLI/MCP setup after configuration
|
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
|
||||||
|
|
||||||
* Fix version comparison to use semantic versioning, preventing incorrect downgrade recommendations to older beta versions
|
|
||||||
* Fix `--custom-content` flag to properly populate sources and selected files in module config
|
|
||||||
* Fix module configuration UX messaging to show accurate completion status and improve feedback timing
|
|
||||||
* Fix changelog URL in installer start message for proper GitHub resolution
|
|
||||||
* Remove incorrect `mode: primary` from OpenCode agent template and restore `name` field across all templates
|
|
||||||
* Auto-discover PRD files in validate-prd workflow to reduce manual path input
|
|
||||||
* Fix installer non-interactive mode hanging and improve IDE configuration handling during updates
|
|
||||||
* Fix workflow-level config.yaml copying for custom content modules
|
|
||||||
|
|
||||||
### ♻️ Refactoring
|
|
||||||
|
|
||||||
* Remove alias variables from Phase 4 workflows, use canonical `{implementation_artifacts}` and `{planning_artifacts}`
|
|
||||||
* Add missing `project_context` references to workflows for consistency
|
|
||||||
|
|
||||||
### 📚 Documentation
|
|
||||||
|
|
||||||
* Add post-install notes documentation for modules
|
|
||||||
* Improve project-context documentation and fix folder structure
|
|
||||||
* Add BMad Builder link to index for extenders
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## [6.0.0-Beta.8]
|
## [6.0.0-Beta.8]
|
||||||
|
|
||||||
**Release: February 8, 2026**
|
**Release: February 8, 2026**
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@ After searching, use the [feature request template](https://github.com/bmad-code
|
||||||
|
|
||||||
### Target Branch
|
### Target Branch
|
||||||
|
|
||||||
Submit PRs to the `main` branch. We use [trunk-based development](https://trunkbaseddevelopment.com/branch-for-release/): `main` is the trunk where all work lands, and stable release branches receive only cherry-picked fixes.
|
Submit PRs to the `main` branch.
|
||||||
|
|
||||||
### PR Size
|
### PR Size
|
||||||
|
|
||||||
|
|
|
||||||
118
README.md
118
README.md
|
|
@ -5,22 +5,20 @@
|
||||||
[](https://nodejs.org)
|
[](https://nodejs.org)
|
||||||
[](https://discord.gg/gk8jAdXWmj)
|
[](https://discord.gg/gk8jAdXWmj)
|
||||||
|
|
||||||
**Breakthrough Method of Agile AI Driven Development** — An AI-driven agile development module for the BMad Method Module Ecosystem, the best and most comprehensive Agile AI Driven Development framework that has true scale-adaptive intelligence that adjusts from bug fixes to enterprise systems.
|
**Breakthrough Method of Agile AI Driven Development** — An AI-driven agile development framework with 21 specialized agents, 50+ guided workflows, and scale-adaptive intelligence that adjusts from bug fixes to enterprise systems.
|
||||||
|
|
||||||
**100% free and open source.** No paywalls. No gated content. No gated Discord. We believe in empowering everyone, not just those who can pay for a gated community or courses.
|
**100% free and open source.** No paywalls. No gated content. No gated Discord. We believe in empowering everyone, not just those who can pay.
|
||||||
|
|
||||||
## Why the BMad Method?
|
## Why BMad?
|
||||||
|
|
||||||
Traditional AI tools do the thinking for you, producing average results. BMad agents and facilitated workflows act as expert collaborators who guide you through a structured process to bring out your best thinking in partnership with the AI.
|
Traditional AI tools do the thinking for you, producing average results. BMad agents and facilitated workflow act as expert collaborators who guide you through a structured process to bring out your best thinking in partnership with the AI.
|
||||||
|
|
||||||
- **AI Intelligent Help** — Ask `/bmad-help` anytime for guidance on what's next
|
- **AI Intelligent Help**: Brand new for beta - AI assisted help will guide you from the beginning to the end - just ask for `/bmad-help` after you have installed BMad to your project
|
||||||
- **Scale-Domain-Adaptive** — Automatically adjusts planning depth based on project complexity
|
- **Scale-Domain-Adaptive**: Automatically adjusts planning depth and needs based on project complexity, domain and type - a SaaS Mobile Dating App has different planning needs from a diagnostic medical system, BMad adapts and helps you along the way
|
||||||
- **Structured Workflows** — Grounded in agile best practices across analysis, planning, architecture, and implementation
|
- **Structured Workflows**: Grounded in agile best practices across analysis, planning, architecture, and implementation
|
||||||
- **Specialized Agents** — 12+ domain experts (PM, Architect, Developer, UX, Scrum Master, and more)
|
- **Specialized Agents**: 12+ domain experts (PM, Architect, Developer, UX, Scrum Master, and more)
|
||||||
- **Party Mode** — Bring multiple agent personas into one session to collaborate and discuss
|
- **Party Mode**: Bring multiple agent personas into one session to plan, troubleshoot, or discuss your project collaboratively, multiple perspectives with maximum fun
|
||||||
- **Complete Lifecycle** — From brainstorming to deployment
|
- **Complete Lifecycle**: From brainstorming to deployment, BMad is there with you every step of the way
|
||||||
|
|
||||||
[Learn more at **docs.bmad-method.org**](http://docs.bmad-method.org)
|
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
|
|
@ -30,41 +28,103 @@ Traditional AI tools do the thinking for you, producing average results. BMad ag
|
||||||
npx bmad-method install
|
npx bmad-method install
|
||||||
```
|
```
|
||||||
|
|
||||||
> If you are getting a stale beta version, use: `npx bmad-method@6.0.1 install`
|
Follow the installer prompts, then open your AI IDE (Claude Code, Cursor, Windsurf, etc.) in the project folder.
|
||||||
|
|
||||||
Follow the installer prompts, then open your AI IDE (Claude Code, Cursor, etc.) in your project folder.
|
**Non-Interactive Installation**: For CI/CD pipelines or automated deployments, use command-line flags:
|
||||||
|
|
||||||
**Non-Interactive Installation** (for CI/CD):
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npx bmad-method install --directory /path/to/project --modules bmm --tools claude-code --yes
|
npx bmad-method install --directory /path/to/project --modules bmm --tools claude-code --yes
|
||||||
```
|
```
|
||||||
|
|
||||||
[See all installation options](http://docs.bmad-method.org/how-to/non-interactive-installation/)
|
See [Non-Interactive Installation Guide](http://docs.bmad-method.org/how-to/non-interactive-installation/) for all available options.
|
||||||
|
|
||||||
> **Not sure what to do?** Run `/bmad-help` — it tells you exactly what's next and what's optional. You can also ask questions like `/bmad-help I just finished the architecture, what do I do next?`
|
> **Not sure what to do?** Run `/bmad-help` — it tells you exactly what's next and what's optional. You can also ask it questions like:
|
||||||
|
|
||||||
|
- `/bmad-help How should I build a web app for my TShirt Business that can scale to millions?`
|
||||||
|
- `/bmad-help I just finished the architecture, I am not sure what to do next`
|
||||||
|
|
||||||
|
And the amazing thing is BMad Help evolves depending on what modules you install also!
|
||||||
|
- `/bmad-help Im interested in really exploring creative ways to demo BMad at work, what do you recommend to help plan a great slide deck and compelling narrative?`, and if you have the Creative Intelligence Suite installed, it will offer you different or complimentary advice than if you just have BMad Method Module installed!
|
||||||
|
|
||||||
|
The workflows below show the fastest path to working code. You can also load agents directly for a more structured process, extensive planning, or to learn about agile development practices — the agents guide you with menus, explanations, and elicitation at each step.
|
||||||
|
|
||||||
|
### Simple Path (Quick Flow)
|
||||||
|
|
||||||
|
Bug fixes, small features, clear scope — 3 commands - 1 Optional Agent:
|
||||||
|
|
||||||
|
1. `/quick-spec` — analyzes your codebase and produces a tech-spec with stories
|
||||||
|
2. `/dev-story` — implements each story
|
||||||
|
3. `/code-review` — validates quality
|
||||||
|
|
||||||
|
### Full Planning Path (BMad Method)
|
||||||
|
|
||||||
|
Products, platforms, complex features — structured planning then build:
|
||||||
|
|
||||||
|
1. `/product-brief` — define problem, users, and MVP scope
|
||||||
|
2. `/create-prd` — full requirements with personas, metrics, and risks
|
||||||
|
3. `/create-architecture` — technical decisions and system design
|
||||||
|
4. `/create-epics-and-stories` — break work into prioritized stories
|
||||||
|
5. `/sprint-planning` — initialize sprint tracking
|
||||||
|
6. **Repeat per story:** `/create-story` → `/dev-story` → `/code-review`
|
||||||
|
|
||||||
|
Every step tells you what's next. Optional phases (brainstorming, research, UX design) are available when you need them — ask `/bmad-help` anytime. For a detailed walkthrough, see the [Getting Started Tutorial](http://docs.bmad-method.org/tutorials/getting-started/).
|
||||||
|
|
||||||
## Modules
|
## Modules
|
||||||
|
|
||||||
BMad Method extends with official modules for specialized domains. Available during installation or anytime after.
|
BMad Method extends with official modules for specialized domains. Modules are available during installation and can be added to your project at any time. After the V6 beta period these will also be available as Plugins and Granular Skills.
|
||||||
|
|
||||||
| Module | Purpose |
|
| Module | GitHub | NPM | Purpose |
|
||||||
| ----------------------------------------------------------------------------------------------------------------- | ------------------------------------------------- |
|
| ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------- |
|
||||||
| **[BMad Method (BMM)](https://github.com/bmad-code-org/BMAD-METHOD)** | Core framework with 34+ workflows |
|
| **BMad Method (BMM)** | [bmad-code-org/BMAD-METHOD](https://github.com/bmad-code-org/BMAD-METHOD) | [bmad-method](https://www.npmjs.com/package/bmad-method) | Core framework with 34+ workflows across 4 development phases |
|
||||||
| **[BMad Builder (BMB)](https://github.com/bmad-code-org/bmad-builder)** | Create custom BMad agents and workflows |
|
| **BMad Builder (BMB)** | [bmad-code-org/bmad-builder](https://github.com/bmad-code-org/bmad-builder) | [bmad-builder](https://www.npmjs.com/package/bmad-builder) | Create custom BMad agents, workflows, and domain-specific modules |
|
||||||
| **[Test Architect (TEA)](https://github.com/bmad-code-org/tea)** | Risk-based test strategy and automation |
|
| **Test Architect (TEA)** 🆕 | [bmad-code-org/tea](https://github.com/bmad-code-org/bmad-method-test-architecture-enterprise) | [tea](https://www.npmjs.com/package/bmad-method-test-architecture-enterprise) | Risk-based test strategy, automation, and release gates (8 workflows) |
|
||||||
| **[Game Dev Studio (BMGD)](https://github.com/bmad-code-org/bmad-module-game-dev-studio)** | Game development workflows (Unity, Unreal, Godot) |
|
| **Game Dev Studio (BMGD)** | [bmad-code-org/bmad-module-game-dev-studio](https://github.com/bmad-code-org/bmad-module-game-dev-studio) | [bmad-game-dev-studio](https://www.npmjs.com/package/bmad-game-dev-studio) | Game development workflows for Unity, Unreal, and Godot |
|
||||||
| **[Creative Intelligence Suite (CIS)](https://github.com/bmad-code-org/bmad-module-creative-intelligence-suite)** | Innovation, brainstorming, design thinking |
|
| **Creative Intelligence Suite (CIS)** | [bmad-code-org/bmad-module-creative-intelligence-suite](https://github.com/bmad-code-org/bmad-module-creative-intelligence-suite) | [bmad-creative-intelligence-suite](https://www.npmjs.com/package/bmad-creative-intelligence-suite) | Innovation, brainstorming, design thinking, and problem-solving |
|
||||||
|
|
||||||
|
* More modules are coming in the next 2 weeks from BMad Official, and a community marketplace for the installer also will be coming with the final V6 release!
|
||||||
|
|
||||||
|
## Testing Agents
|
||||||
|
|
||||||
|
BMad provides two testing options to fit your needs:
|
||||||
|
|
||||||
|
### Quinn (QA) - Built-in
|
||||||
|
|
||||||
|
**Quick test automation for rapid coverage**
|
||||||
|
|
||||||
|
- ✅ **Always available** in BMM module (no separate install)
|
||||||
|
- ✅ **Simple**: One workflow (`QA` - Automate)
|
||||||
|
- ✅ **Beginner-friendly**: Standard test framework patterns
|
||||||
|
- ✅ **Fast**: Generate tests and ship
|
||||||
|
|
||||||
|
**Use Quinn for:** Small projects, quick coverage, standard patterns
|
||||||
|
|
||||||
|
### Test Architect (TEA) - Optional Module
|
||||||
|
|
||||||
|
**Enterprise-grade test strategy and quality engineering**
|
||||||
|
|
||||||
|
- 🆕 **Standalone module** (install separately)
|
||||||
|
- 🏗️ **Comprehensive**: 8 workflows covering full test lifecycle
|
||||||
|
- 🎯 **Advanced**: Risk-based planning, quality gates, NFR assessment
|
||||||
|
- 📚 **Knowledge-driven**: 34 testing patterns and best practices
|
||||||
|
- 📖 [Test Architect Documentation](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/)
|
||||||
|
|
||||||
|
**Use TEA for:** Enterprise projects, test strategy, compliance, release gates
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
[BMad Method Docs Site](http://docs.bmad-method.org) — Tutorials, guides, concepts, and reference
|
**[BMad Documentation](http://docs.bmad-method.org)** — Tutorials, how-to guides, concepts, and reference
|
||||||
|
**[Test Architect Documentation](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/)** — TEA standalone module documentation
|
||||||
|
|
||||||
**Quick links:**
|
|
||||||
- [Getting Started Tutorial](http://docs.bmad-method.org/tutorials/getting-started/)
|
- [Getting Started Tutorial](http://docs.bmad-method.org/tutorials/getting-started/)
|
||||||
- [Upgrading from Previous Versions](http://docs.bmad-method.org/how-to/upgrade-to-v6/)
|
- [Upgrading from Previous Versions](http://docs.bmad-method.org/how-to/upgrade-to-v6/)
|
||||||
- [Test Architect Documentation](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/)
|
- [Test Architect Migration Guide](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/migration/) — Upgrading from BMM-embedded TEA
|
||||||
|
|
||||||
|
### For v4 Users
|
||||||
|
|
||||||
|
- **[v4 Documentation](https://github.com/bmad-code-org/BMAD-METHOD/tree/V4/docs)**
|
||||||
|
- If you need to install V4, you can do this with `npx bmad-method@4.44.3 install` - similar for any past version.
|
||||||
|
|
||||||
## Community
|
## Community
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -77,10 +77,8 @@ Show in "What You've Accomplished" sections:
|
||||||
your-project/
|
your-project/
|
||||||
├── _bmad/ # BMad configuration
|
├── _bmad/ # BMad configuration
|
||||||
├── _bmad-output/
|
├── _bmad-output/
|
||||||
│ ├── planning-artifacts/
|
│ ├── PRD.md # Your requirements document
|
||||||
│ │ └── PRD.md # Your requirements document
|
│ └── bmm-workflow-status.yaml # Progress tracking
|
||||||
│ ├── implementation-artifacts/
|
|
||||||
│ └── project-context.md # Implementation rules (optional)
|
|
||||||
└── ...
|
└── ...
|
||||||
```
|
```
|
||||||
````
|
````
|
||||||
|
|
@ -145,7 +143,7 @@ your-project/
|
||||||
### Types
|
### Types
|
||||||
|
|
||||||
| Type | Example |
|
| Type | Example |
|
||||||
| ----------------- | ----------------------------- |
|
| ----------------- | ---------------------------- |
|
||||||
| **Index/Landing** | `core-concepts/index.md` |
|
| **Index/Landing** | `core-concepts/index.md` |
|
||||||
| **Concept** | `what-are-agents.md` |
|
| **Concept** | `what-are-agents.md` |
|
||||||
| **Feature** | `quick-flow.md` |
|
| **Feature** | `quick-flow.md` |
|
||||||
|
|
|
||||||
|
|
@ -1,157 +0,0 @@
|
||||||
---
|
|
||||||
title: "Project Context"
|
|
||||||
description: How project-context.md guides AI agents with your project's rules and preferences
|
|
||||||
sidebar:
|
|
||||||
order: 7
|
|
||||||
---
|
|
||||||
|
|
||||||
The `project-context.md` file is your project's implementation guide for AI agents. Similar to a "constitution" in other development systems, it captures the rules, patterns, and preferences that ensure consistent code generation across all workflows.
|
|
||||||
|
|
||||||
## What It Does
|
|
||||||
|
|
||||||
AI agents make implementation decisions constantly — which patterns to follow, how to structure code, what conventions to use. Without clear guidance, they may:
|
|
||||||
- Follow generic best practices that don't match your codebase
|
|
||||||
- Make inconsistent decisions across different stories
|
|
||||||
- Miss project-specific requirements or constraints
|
|
||||||
|
|
||||||
The `project-context.md` file solves this by documenting what agents need to know in a concise, LLM-optimized format.
|
|
||||||
|
|
||||||
## How It Works
|
|
||||||
|
|
||||||
Every implementation workflow automatically loads `project-context.md` if it exists. The architect workflow also loads it to respect your technical preferences when designing the architecture.
|
|
||||||
|
|
||||||
**Loaded by these workflows:**
|
|
||||||
- `create-architecture` — respects technical preferences during solutioning
|
|
||||||
- `create-story` — informs story creation with project patterns
|
|
||||||
- `dev-story` — guides implementation decisions
|
|
||||||
- `code-review` — validates against project standards
|
|
||||||
- `quick-dev` — applies patterns when implementing tech-specs
|
|
||||||
- `sprint-planning`, `retrospective`, `correct-course` — provides project-wide context
|
|
||||||
|
|
||||||
## When to Create It
|
|
||||||
|
|
||||||
The `project-context.md` file is useful at any stage of a project:
|
|
||||||
|
|
||||||
| Scenario | When to Create | Purpose |
|
|
||||||
|----------|----------------|---------|
|
|
||||||
| **New project, before architecture** | Manually, before `create-architecture` | Document your technical preferences so the architect respects them |
|
|
||||||
| **New project, after architecture** | Via `generate-project-context` or manually | Capture architecture decisions for implementation agents |
|
|
||||||
| **Existing project** | Via `generate-project-context` | Discover existing patterns so agents follow established conventions |
|
|
||||||
| **Quick Flow project** | Before or during `quick-dev` | Ensure quick implementation respects your patterns |
|
|
||||||
|
|
||||||
:::tip[Recommended]
|
|
||||||
For new projects, create it manually before architecture if you have strong technical preferences. Otherwise, generate it after architecture to capture those decisions.
|
|
||||||
:::
|
|
||||||
|
|
||||||
## What Goes In It
|
|
||||||
|
|
||||||
The file has two main sections:
|
|
||||||
|
|
||||||
### Technology Stack & Versions
|
|
||||||
|
|
||||||
Documents the frameworks, languages, and tools your project uses with specific versions:
|
|
||||||
|
|
||||||
```markdown
|
|
||||||
## Technology Stack & Versions
|
|
||||||
|
|
||||||
- Node.js 20.x, TypeScript 5.3, React 18.2
|
|
||||||
- State: Zustand (not Redux)
|
|
||||||
- Testing: Vitest, Playwright, MSW
|
|
||||||
- Styling: Tailwind CSS with custom design tokens
|
|
||||||
```
|
|
||||||
|
|
||||||
### Critical Implementation Rules
|
|
||||||
|
|
||||||
Documents patterns and conventions that agents might otherwise miss:
|
|
||||||
|
|
||||||
```markdown
|
|
||||||
## Critical Implementation Rules
|
|
||||||
|
|
||||||
**TypeScript Configuration:**
|
|
||||||
- Strict mode enabled — no `any` types without explicit approval
|
|
||||||
- Use `interface` for public APIs, `type` for unions/intersections
|
|
||||||
|
|
||||||
**Code Organization:**
|
|
||||||
- Components in `/src/components/` with co-located `.test.tsx`
|
|
||||||
- Utilities in `/src/lib/` for reusable pure functions
|
|
||||||
- API calls use the `apiClient` singleton — never fetch directly
|
|
||||||
|
|
||||||
**Testing Patterns:**
|
|
||||||
- Unit tests focus on business logic, not implementation details
|
|
||||||
- Integration tests use MSW to mock API responses
|
|
||||||
- E2E tests cover critical user journeys only
|
|
||||||
|
|
||||||
**Framework-Specific:**
|
|
||||||
- All async operations use the `handleError` wrapper for consistent error handling
|
|
||||||
- Feature flags accessed via `featureFlag()` from `@/lib/flags`
|
|
||||||
- New routes follow the file-based routing pattern in `/src/app/`
|
|
||||||
```
|
|
||||||
|
|
||||||
Focus on what's **unobvious** — things agents might not infer from reading code snippets. Don't document standard practices that apply universally.
|
|
||||||
|
|
||||||
## Creating the File
|
|
||||||
|
|
||||||
You have three options:
|
|
||||||
|
|
||||||
### Manual Creation
|
|
||||||
|
|
||||||
Create the file at `_bmad-output/project-context.md` and add your rules:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# In your project root
|
|
||||||
mkdir -p _bmad-output
|
|
||||||
touch _bmad-output/project-context.md
|
|
||||||
```
|
|
||||||
|
|
||||||
Edit it with your technology stack and implementation rules. The architect and implementation workflows will automatically find and load it.
|
|
||||||
|
|
||||||
### Generate After Architecture
|
|
||||||
|
|
||||||
Run the `generate-project-context` workflow after completing your architecture:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
/bmad-bmm-generate-project-context
|
|
||||||
```
|
|
||||||
|
|
||||||
This scans your architecture document and project files to generate a context file capturing the decisions made.
|
|
||||||
|
|
||||||
### Generate for Existing Projects
|
|
||||||
|
|
||||||
For existing projects, run `generate-project-context` to discover existing patterns:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
/bmad-bmm-generate-project-context
|
|
||||||
```
|
|
||||||
|
|
||||||
The workflow analyzes your codebase to identify conventions, then generates a context file you can review and refine.
|
|
||||||
|
|
||||||
## Why It Matters
|
|
||||||
|
|
||||||
Without `project-context.md`, agents make assumptions that may not match your project:
|
|
||||||
|
|
||||||
| Without Context | With Context |
|
|
||||||
|----------------|--------------|
|
|
||||||
| Uses generic patterns | Follows your established conventions |
|
|
||||||
| Inconsistent style across stories | Consistent implementation |
|
|
||||||
| May miss project-specific constraints | Respects all technical requirements |
|
|
||||||
| Each agent decides independently | All agents align with same rules |
|
|
||||||
|
|
||||||
This is especially important for:
|
|
||||||
- **Quick Flow** — skips PRD and architecture, so context file fills the gap
|
|
||||||
- **Team projects** — ensures all agents follow the same standards
|
|
||||||
- **Existing projects** — prevents breaking established patterns
|
|
||||||
|
|
||||||
## Editing and Updating
|
|
||||||
|
|
||||||
The `project-context.md` file is a living document. Update it when:
|
|
||||||
|
|
||||||
- Architecture decisions change
|
|
||||||
- New conventions are established
|
|
||||||
- Patterns evolve during implementation
|
|
||||||
- You identify gaps from agent behavior
|
|
||||||
|
|
||||||
You can edit it manually at any time, or re-run `generate-project-context` to update it after significant changes.
|
|
||||||
|
|
||||||
:::note[File Location]
|
|
||||||
The default location is `_bmad-output/project-context.md`. Workflows search for it there, and also check `**/project-context.md` anywhere in your project.
|
|
||||||
:::
|
|
||||||
|
|
@ -42,7 +42,7 @@ _bmad/_config/agents/
|
||||||
Open the `.customize.yaml` file for the agent you want to modify. Every section is optional -- customize only what you need.
|
Open the `.customize.yaml` file for the agent you want to modify. Every section is optional -- customize only what you need.
|
||||||
|
|
||||||
| Section | Behavior | Purpose |
|
| Section | Behavior | Purpose |
|
||||||
| ------------------ | -------- | ----------------------------------------------- |
|
| ------------------- | ------------ | ---------------------------------------------- |
|
||||||
| `agent.metadata` | Replaces | Override the agent's display name |
|
| `agent.metadata` | Replaces | Override the agent's display name |
|
||||||
| `persona` | Replaces | Set role, identity, style, and principles |
|
| `persona` | Replaces | Set role, identity, style, and principles |
|
||||||
| `memories` | Appends | Add persistent context the agent always recalls |
|
| `memories` | Appends | Add persistent context the agent always recalls |
|
||||||
|
|
@ -96,7 +96,7 @@ Add custom entries to the agent's display menu. Each item needs a `trigger`, a t
|
||||||
```yaml
|
```yaml
|
||||||
menu:
|
menu:
|
||||||
- trigger: my-workflow
|
- trigger: my-workflow
|
||||||
workflow: 'my-custom/workflows/my-workflow.yaml'
|
workflow: '{project-root}/my-custom/workflows/my-workflow.yaml'
|
||||||
description: My custom workflow
|
description: My custom workflow
|
||||||
- trigger: deploy
|
- trigger: deploy
|
||||||
action: '#deploy-prompt'
|
action: '#deploy-prompt'
|
||||||
|
|
@ -137,7 +137,7 @@ npx bmad-method install
|
||||||
The installer detects the existing installation and offers these options:
|
The installer detects the existing installation and offers these options:
|
||||||
|
|
||||||
| Option | What It Does |
|
| Option | What It Does |
|
||||||
| ---------------------------- | ------------------------------------------------------------------- |
|
| --------------------- | ------------------------------------------------------------------- |
|
||||||
| **Quick Update** | Updates all modules to the latest version and recompiles all agents |
|
| **Quick Update** | Updates all modules to the latest version and recompiles all agents |
|
||||||
| **Recompile Agents** | Applies customizations only, without updating module files |
|
| **Recompile Agents** | Applies customizations only, without updating module files |
|
||||||
| **Modify BMad Installation** | Full installation flow for adding or removing modules |
|
| **Modify BMad Installation** | Full installation flow for adding or removing modules |
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,14 @@ sidebar:
|
||||||
order: 6
|
order: 6
|
||||||
---
|
---
|
||||||
|
|
||||||
Use BMad Method effectively when working on existing projects and legacy codebases.
|
Use BMad Method effectively when working on existing projects and legacy codebases, sometimes also referred to as brownfield projects.
|
||||||
|
|
||||||
This guide covers the essential workflow for onboarding to existing projects with BMad Method.
|
This guide covers the essential workflow for onboarding to existing projects with BMad Method.
|
||||||
|
|
||||||
:::note[Prerequisites]
|
:::note[Prerequisites]
|
||||||
- BMad Method installed (`npx bmad-method install`)
|
- BMad Method installed (`npx bmad-method install`)
|
||||||
- An existing codebase you want to work on
|
- An existing codebase you want to work on
|
||||||
- Access to an AI-powered IDE (Claude Code or Cursor)
|
- Access to an AI-powered IDE (Claude Code, Cursor, or Windsurf)
|
||||||
:::
|
:::
|
||||||
|
|
||||||
## Step 1: Clean Up Completed Planning Artifacts
|
## Step 1: Clean Up Completed Planning Artifacts
|
||||||
|
|
@ -23,30 +23,7 @@ If you have completed all PRD epics and stories through the BMad process, clean
|
||||||
- `_bmad-output/planning-artifacts/`
|
- `_bmad-output/planning-artifacts/`
|
||||||
- `_bmad-output/implementation-artifacts/`
|
- `_bmad-output/implementation-artifacts/`
|
||||||
|
|
||||||
## Step 2: Create Project Context
|
## Step 2: Maintain Quality Project Documentation
|
||||||
|
|
||||||
:::tip[Recommended for Existing Projects]
|
|
||||||
Generate `project-context.md` to capture your existing codebase patterns and conventions. This ensures AI agents follow your established practices when implementing changes.
|
|
||||||
:::
|
|
||||||
|
|
||||||
Run the generate project context workflow:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
/bmad-bmm-generate-project-context
|
|
||||||
```
|
|
||||||
|
|
||||||
This scans your codebase to identify:
|
|
||||||
- Technology stack and versions
|
|
||||||
- Code organization patterns
|
|
||||||
- Naming conventions
|
|
||||||
- Testing approaches
|
|
||||||
- Framework-specific patterns
|
|
||||||
|
|
||||||
You can review and refine the generated file, or create it manually at `_bmad-output/project-context.md` if you prefer.
|
|
||||||
|
|
||||||
[Learn more about project context](../explanation/project-context.md)
|
|
||||||
|
|
||||||
## Step 3: Maintain Quality Project Documentation
|
|
||||||
|
|
||||||
Your `docs/` folder should contain succinct, well-organized documentation that accurately represents your project:
|
Your `docs/` folder should contain succinct, well-organized documentation that accurately represents your project:
|
||||||
|
|
||||||
|
|
@ -59,21 +36,9 @@ For complex projects, consider using the `document-project` workflow. It offers
|
||||||
|
|
||||||
## Step 3: Get Help
|
## Step 3: Get Help
|
||||||
|
|
||||||
### BMad-Help: Your Starting Point
|
Get help to know what to do next based on your unique needs
|
||||||
|
|
||||||
**Run `/bmad-help` anytime you're unsure what to do next.** This intelligent guide:
|
Run `bmad-help` to get guidance when you are not sure what to do next.
|
||||||
|
|
||||||
- Inspects your project to see what's already been done
|
|
||||||
- Shows options based on your installed modules
|
|
||||||
- Understands natural language queries
|
|
||||||
|
|
||||||
```
|
|
||||||
/bmad-help I have an existing Rails app, where should I start?
|
|
||||||
/bmad-help What's the difference between quick-flow and full method?
|
|
||||||
/bmad-help Show me what workflows are available
|
|
||||||
```
|
|
||||||
|
|
||||||
BMad-Help also **automatically runs at the end of every workflow**, providing clear guidance on exactly what to do next.
|
|
||||||
|
|
||||||
### Choosing Your Approach
|
### Choosing Your Approach
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,48 +5,17 @@ sidebar:
|
||||||
order: 4
|
order: 4
|
||||||
---
|
---
|
||||||
|
|
||||||
## Start Here: BMad-Help
|
If you have successfully installed BMad and the BMad Method (+ other modules as needed) - the first step in getting answers is `/bmad-help`. This will answer upwards of 80% of all questions and is available to you in the IDE as you are working.
|
||||||
|
|
||||||
**The fastest way to get answers about BMad is `/bmad-help`.** This intelligent guide will answer upwards of 80% of all questions and is available to you directly in your IDE as you work.
|
## When to Use This
|
||||||
|
|
||||||
BMad-Help is more than a lookup tool — it:
|
- You have a question about how BMad works or what to do next with BMad
|
||||||
- **Inspects your project** to see what's already been completed
|
- You want to understand a specific agent or workflow
|
||||||
- **Understands natural language** — ask questions in plain English
|
- You need quick answers without waiting for Discord
|
||||||
- **Varies based on your installed modules** — shows relevant options
|
|
||||||
- **Auto-runs after workflows** — tells you exactly what to do next
|
|
||||||
- **Recommends the first required task** — no guessing where to start
|
|
||||||
|
|
||||||
### How to Use BMad-Help
|
:::note[Prerequisites]
|
||||||
|
An AI tool (Claude Code, Cursor, ChatGPT, Claude.ai, etc.) and either BMad installed in your project or access to the GitHub repo.
|
||||||
Run it with just the slash command:
|
:::
|
||||||
|
|
||||||
```
|
|
||||||
/bmad-help
|
|
||||||
```
|
|
||||||
|
|
||||||
Or combine it with a natural language query:
|
|
||||||
|
|
||||||
```
|
|
||||||
/bmad-help I have a SaaS idea and know all the features. Where do I start?
|
|
||||||
/bmad-help What are my options for UX design?
|
|
||||||
/bmad-help I'm stuck on the PRD workflow
|
|
||||||
/bmad-help Show me what's been done so far
|
|
||||||
```
|
|
||||||
|
|
||||||
BMad-Help responds with:
|
|
||||||
- What's recommended for your situation
|
|
||||||
- What the first required task is
|
|
||||||
- What the rest of the process looks like
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## When to Use This Guide
|
|
||||||
|
|
||||||
Use this section when:
|
|
||||||
- You want to understand BMad's architecture or internals
|
|
||||||
- You need answers outside of what BMad-Help provides
|
|
||||||
- You're researching BMad before installing
|
|
||||||
- You want to explore the source code directly
|
|
||||||
|
|
||||||
## Steps
|
## Steps
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ If you want to use a non interactive installer and provide all install options o
|
||||||
:::note[Prerequisites]
|
:::note[Prerequisites]
|
||||||
- **Node.js** 20+ (required for the installer)
|
- **Node.js** 20+ (required for the installer)
|
||||||
- **Git** (recommended)
|
- **Git** (recommended)
|
||||||
- **AI tool** (Claude Code, Cursor, or similar)
|
- **AI tool** (Claude Code, Cursor, Windsurf, or similar)
|
||||||
:::
|
:::
|
||||||
|
|
||||||
## Steps
|
## Steps
|
||||||
|
|
@ -49,6 +49,8 @@ Pick which AI tools you use:
|
||||||
|
|
||||||
- Claude Code
|
- Claude Code
|
||||||
- Cursor
|
- Cursor
|
||||||
|
- Windsurf
|
||||||
|
- Kiro
|
||||||
- Others
|
- Others
|
||||||
|
|
||||||
Each tool has its own way of integrating commands. The installer creates tiny prompt files to activate workflows and agents — it just puts them where your tool expects to find them.
|
Each tool has its own way of integrating commands. The installer creates tiny prompt files to activate workflows and agents — it just puts them where your tool expects to find them.
|
||||||
|
|
@ -77,18 +79,7 @@ your-project/
|
||||||
|
|
||||||
## Verify Installation
|
## Verify Installation
|
||||||
|
|
||||||
Run `/bmad-help` to verify everything works and see what to do next.
|
Run the `help` workflow (`/bmad-help` on most platforms) to verify everything works and see what to do next.
|
||||||
|
|
||||||
**BMad-Help is your intelligent guide** that will:
|
|
||||||
- Confirm your installation is working
|
|
||||||
- Show what's available based on your installed modules
|
|
||||||
- Recommend your first step
|
|
||||||
|
|
||||||
You can also ask it questions:
|
|
||||||
```
|
|
||||||
/bmad-help I just installed, what should I do first?
|
|
||||||
/bmad-help What are my options for a SaaS project?
|
|
||||||
```
|
|
||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@ Check the [BMad registry](https://github.com/bmad-code-org) for available extern
|
||||||
|
|
||||||
Available tool IDs for the `--tools` flag:
|
Available tool IDs for the `--tools` flag:
|
||||||
|
|
||||||
**Preferred:** `claude-code`, `cursor`
|
**Preferred:** `claude-code`, `cursor`, `windsurf`
|
||||||
|
|
||||||
Run `npx bmad-method install` interactively once to see the full current list of supported tools, or check the [platform codes configuration](https://github.com/bmad-code-org/BMAD-METHOD/blob/main/tools/cli/installers/lib/ide/platform-codes.yaml).
|
Run `npx bmad-method install` interactively once to see the full current list of supported tools, or check the [platform codes configuration](https://github.com/bmad-code-org/BMAD-METHOD/blob/main/tools/cli/installers/lib/ide/platform-codes.yaml).
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,136 +0,0 @@
|
||||||
---
|
|
||||||
title: "Manage Project Context"
|
|
||||||
description: Create and maintain project-context.md to guide AI agents
|
|
||||||
sidebar:
|
|
||||||
order: 7
|
|
||||||
---
|
|
||||||
|
|
||||||
Use the `project-context.md` file to ensure AI agents follow your project's technical preferences and implementation rules throughout all workflows.
|
|
||||||
|
|
||||||
:::note[Prerequisites]
|
|
||||||
- BMad Method installed
|
|
||||||
- Understanding of your project's technology stack and conventions
|
|
||||||
:::
|
|
||||||
|
|
||||||
## When to Use This
|
|
||||||
|
|
||||||
- You have strong technical preferences before starting architecture
|
|
||||||
- You've completed architecture and want to capture decisions for implementation
|
|
||||||
- You're working on an existing codebase with established patterns
|
|
||||||
- You notice agents making inconsistent decisions across stories
|
|
||||||
|
|
||||||
## Step 1: Choose Your Approach
|
|
||||||
|
|
||||||
**Manual creation** — Best when you know exactly what rules you want to document
|
|
||||||
|
|
||||||
**Generate after architecture** — Best for capturing decisions made during solutioning
|
|
||||||
|
|
||||||
**Generate for existing projects** — Best for discovering patterns in existing codebases
|
|
||||||
|
|
||||||
## Step 2: Create the File
|
|
||||||
|
|
||||||
### Option A: Manual Creation
|
|
||||||
|
|
||||||
Create the file at `_bmad-output/project-context.md`:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
mkdir -p _bmad-output
|
|
||||||
touch _bmad-output/project-context.md
|
|
||||||
```
|
|
||||||
|
|
||||||
Add your technology stack and implementation rules:
|
|
||||||
|
|
||||||
```markdown
|
|
||||||
---
|
|
||||||
project_name: 'MyProject'
|
|
||||||
user_name: 'YourName'
|
|
||||||
date: '2026-02-15'
|
|
||||||
sections_completed: ['technology_stack', 'critical_rules']
|
|
||||||
---
|
|
||||||
|
|
||||||
# Project Context for AI Agents
|
|
||||||
|
|
||||||
## Technology Stack & Versions
|
|
||||||
|
|
||||||
- Node.js 20.x, TypeScript 5.3, React 18.2
|
|
||||||
- State: Zustand
|
|
||||||
- Testing: Vitest, Playwright
|
|
||||||
- Styling: Tailwind CSS
|
|
||||||
|
|
||||||
## Critical Implementation Rules
|
|
||||||
|
|
||||||
**TypeScript:**
|
|
||||||
- Strict mode enabled, no `any` types
|
|
||||||
- Use `interface` for public APIs, `type` for unions
|
|
||||||
|
|
||||||
**Code Organization:**
|
|
||||||
- Components in `/src/components/` with co-located tests
|
|
||||||
- API calls use `apiClient` singleton — never fetch directly
|
|
||||||
|
|
||||||
**Testing:**
|
|
||||||
- Unit tests focus on business logic
|
|
||||||
- Integration tests use MSW for API mocking
|
|
||||||
```
|
|
||||||
|
|
||||||
### Option B: Generate After Architecture
|
|
||||||
|
|
||||||
Run the workflow in a fresh chat:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
/bmad-bmm-generate-project-context
|
|
||||||
```
|
|
||||||
|
|
||||||
The workflow scans your architecture document and project files to generate a context file capturing the decisions made.
|
|
||||||
|
|
||||||
### Option C: Generate for Existing Projects
|
|
||||||
|
|
||||||
For existing projects, run:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
/bmad-bmm-generate-project-context
|
|
||||||
```
|
|
||||||
|
|
||||||
The workflow analyzes your codebase to identify conventions, then generates a context file you can review and refine.
|
|
||||||
|
|
||||||
## Step 3: Verify Content
|
|
||||||
|
|
||||||
Review the generated file and ensure it captures:
|
|
||||||
|
|
||||||
- Correct technology versions
|
|
||||||
- Your actual conventions (not generic best practices)
|
|
||||||
- Rules that prevent common mistakes
|
|
||||||
- Framework-specific patterns
|
|
||||||
|
|
||||||
Edit manually to add anything missing or remove inaccuracies.
|
|
||||||
|
|
||||||
## What You Get
|
|
||||||
|
|
||||||
A `project-context.md` file that:
|
|
||||||
|
|
||||||
- Ensures all agents follow the same conventions
|
|
||||||
- Prevents inconsistent decisions across stories
|
|
||||||
- Captures architecture decisions for implementation
|
|
||||||
- Serves as a reference for your project's patterns and rules
|
|
||||||
|
|
||||||
## Tips
|
|
||||||
|
|
||||||
:::tip[Focus on the Unobvious]
|
|
||||||
Document patterns agents might miss such as "Use JSDoc style comments on every public class, function and variable", not universal practices like "use meaningful variable names" which LLMs know at this point.
|
|
||||||
:::
|
|
||||||
|
|
||||||
:::tip[Keep It Lean]
|
|
||||||
This file is loaded by every implementation workflow. Long files waste context. Do not include content that only applies to narrow scope or specific stories or features.
|
|
||||||
:::
|
|
||||||
|
|
||||||
:::tip[Update as Needed]
|
|
||||||
Edit manually when patterns change, or re-generate after significant architecture changes.
|
|
||||||
:::
|
|
||||||
|
|
||||||
:::tip[Works for All Project Types]
|
|
||||||
Just as useful for Quick Flow as for full BMad Method projects.
|
|
||||||
:::
|
|
||||||
|
|
||||||
## Next Steps
|
|
||||||
|
|
||||||
- [**Project Context Explanation**](../explanation/project-context.md) — Learn more about how it works
|
|
||||||
- [**Workflow Map**](../reference/workflow-map.md) — See which workflows load project context
|
|
||||||
|
|
@ -16,7 +16,7 @@ Use the **DEV agent** directly for bug fixes, refactorings, or small targeted ch
|
||||||
|
|
||||||
:::note[Prerequisites]
|
:::note[Prerequisites]
|
||||||
- BMad Method installed (`npx bmad-method install`)
|
- BMad Method installed (`npx bmad-method install`)
|
||||||
- An AI-powered IDE (Claude Code, Cursor, or similar)
|
- An AI-powered IDE (Claude Code, Cursor, Windsurf, or similar)
|
||||||
:::
|
:::
|
||||||
|
|
||||||
## Choose Your Approach
|
## Choose Your Approach
|
||||||
|
|
|
||||||
|
|
@ -23,11 +23,11 @@ Document sharding splits large markdown files into smaller, organized files base
|
||||||
|
|
||||||
```text
|
```text
|
||||||
Before Sharding:
|
Before Sharding:
|
||||||
_bmad-output/planning-artifacts/
|
docs/
|
||||||
└── PRD.md (large 50k token file)
|
└── PRD.md (large 50k token file)
|
||||||
|
|
||||||
After Sharding:
|
After Sharding:
|
||||||
_bmad-output/planning-artifacts/
|
docs/
|
||||||
└── prd/
|
└── prd/
|
||||||
├── index.md # Table of contents with descriptions
|
├── index.md # Table of contents with descriptions
|
||||||
├── overview.md # Section 1
|
├── overview.md # Section 1
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ title: Welcome to the BMad Method
|
||||||
description: AI-driven development framework with specialized agents, guided workflows, and intelligent planning
|
description: AI-driven development framework with specialized agents, guided workflows, and intelligent planning
|
||||||
---
|
---
|
||||||
|
|
||||||
The BMad Method (**B**reakthrough **M**ethod of **A**gile AI **D**riven Development) is an AI-driven development framework module within the BMad Method Ecosystem that helps you build software through the whole process from ideation and planning all the way through agentic implementation. It provides specialized AI agents, guided workflows, and intelligent planning that adapts to your project's complexity, whether you're fixing a bug or building an enterprise platform.
|
The BMad Method (**B**reakthrough **M**ethod of **A**gile AI **D**riven Development) is an AI-driven development framework that helps you build software through the whole process from ideation and planning all the way through agentic implementation. It provides specialized AI agents, guided workflows, and intelligent planning that adapts to your project's complexity, whether you're fixing a bug or building an enterprise platform.
|
||||||
|
|
||||||
If you're comfortable working with AI coding assistants like Claude, Cursor, or GitHub Copilot, you're ready to get started.
|
If you're comfortable working with AI coding assistants like Claude, Cursor, or GitHub Copilot, you're ready to get started.
|
||||||
|
|
||||||
|
|
@ -12,11 +12,7 @@ If you're comfortable working with AI coding assistants like Claude, Cursor, or
|
||||||
The fastest way to understand BMad is to try it.
|
The fastest way to understand BMad is to try it.
|
||||||
|
|
||||||
- **[Get Started with BMad](./tutorials/getting-started.md)** — Install and understand how BMad works
|
- **[Get Started with BMad](./tutorials/getting-started.md)** — Install and understand how BMad works
|
||||||
- **[Workflow Map](./reference/workflow-map.md)** — Visual overview of BMM phases, workflows, and context management
|
- **[Workflow Map](./reference/workflow-map.md)** — Visual overview of BMM phases, workflows, and context management.
|
||||||
|
|
||||||
:::tip[Just Want to Dive In?]
|
|
||||||
Install BMad and run `/bmad-help` — it will guide you through everything based on your project and installed modules.
|
|
||||||
:::
|
|
||||||
|
|
||||||
## How to Use These Docs
|
## How to Use These Docs
|
||||||
|
|
||||||
|
|
@ -29,17 +25,15 @@ These docs are organized into four sections based on what you're trying to do:
|
||||||
| **Explanation** | Understanding-oriented. Deep dives into concepts and architecture. Read when you want to know *why*. |
|
| **Explanation** | Understanding-oriented. Deep dives into concepts and architecture. Read when you want to know *why*. |
|
||||||
| **Reference** | Information-oriented. Technical specifications for agents, workflows, and configuration. |
|
| **Reference** | Information-oriented. Technical specifications for agents, workflows, and configuration. |
|
||||||
|
|
||||||
## Extend and Customize
|
|
||||||
|
|
||||||
Want to expand BMad with your own agents, workflows, or modules? The **[BMad Builder](https://bmad-builder-docs.bmad-method.org/)** provides the framework and tools for creating custom extensions, whether you're adding new capabilities to BMad or building entirely new modules from scratch.
|
|
||||||
|
|
||||||
## What You'll Need
|
## What You'll Need
|
||||||
|
|
||||||
BMad works with any AI coding assistant that supports custom system prompts or project context. Popular options include:
|
BMad works with any AI coding assistant that supports custom system prompts or project context. Popular options include:
|
||||||
|
|
||||||
- **[Claude Code](https://code.claude.com)** — Anthropic's CLI tool (recommended)
|
- **[Claude Code](https://code.claude.com)** — Anthropic's CLI tool (recommended)
|
||||||
- **[Cursor](https://cursor.sh)** — AI-first code editor
|
- **[Cursor](https://cursor.sh)** — AI-first code editor
|
||||||
- **[Codex CLI](https://github.com/openai/codex)** — OpenAI's terminal coding agent
|
- **[Windsurf](https://codeium.com/windsurf)** — Codeium's AI IDE
|
||||||
|
- **[Kiro](https://kiro.dev)** — Amazon's AI-powered IDE
|
||||||
|
- **[Roo Code](https://roocode.com)** — VS Code extension
|
||||||
|
|
||||||
You should be comfortable with basic software development concepts like version control, project structure, and agile workflows. No prior experience with BMad-style agent systems is required—that's what these docs are for.
|
You should be comfortable with basic software development concepts like version control, project structure, and agile workflows. No prior experience with BMad-style agent systems is required—that's what these docs are for.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -103,29 +103,9 @@ See [Workflow Map](./workflow-map.md) for the complete workflow reference organi
|
||||||
|
|
||||||
Tasks and tools are standalone operations that do not require an agent or workflow context.
|
Tasks and tools are standalone operations that do not require an agent or workflow context.
|
||||||
|
|
||||||
#### BMad-Help: Your Intelligent Guide
|
|
||||||
|
|
||||||
**`/bmad-help`** is your primary interface for discovering what to do next. It's not just a lookup tool — it's an intelligent assistant that:
|
|
||||||
|
|
||||||
- **Inspects your project** to see what's already been done
|
|
||||||
- **Understands natural language queries** — ask questions in plain English
|
|
||||||
- **Varies by installed modules** — shows options based on what you have
|
|
||||||
- **Auto-invokes after workflows** — every workflow ends with clear next steps
|
|
||||||
- **Recommends the first required task** — no guessing where to start
|
|
||||||
|
|
||||||
**Examples:**
|
|
||||||
|
|
||||||
```
|
|
||||||
/bmad-help
|
|
||||||
/bmad-help I have a SaaS idea and know all the features. Where do I start?
|
|
||||||
/bmad-help What are my options for UX design?
|
|
||||||
/bmad-help I'm stuck on the PRD workflow
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Other Tasks and Tools
|
|
||||||
|
|
||||||
| Example command | Purpose |
|
| Example command | Purpose |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
|
| `/bmad-help` | Context-aware guidance and next-step recommendations |
|
||||||
| `/bmad-shard-doc` | Split a large markdown file into smaller sections |
|
| `/bmad-shard-doc` | Split a large markdown file into smaller sections |
|
||||||
| `/bmad-index-docs` | Index project documentation |
|
| `/bmad-index-docs` | Index project documentation |
|
||||||
| `/bmad-editorial-review-prose` | Review document prose quality |
|
| `/bmad-editorial-review-prose` | Review document prose quality |
|
||||||
|
|
|
||||||
|
|
@ -24,66 +24,67 @@ Final important note: Every workflow below can be run directly with your tool of
|
||||||
Explore the problem space and validate ideas before committing to planning.
|
Explore the problem space and validate ideas before committing to planning.
|
||||||
|
|
||||||
| Workflow | Purpose | Produces |
|
| Workflow | Purpose | Produces |
|
||||||
| ------------------------------- | -------------------------------------------------------------------------- | ------------------------- |
|
| ---------------------- | -------------------------------------------------------------------------- | ------------------------- |
|
||||||
| `bmad-brainstorming` | Brainstorm Project Ideas with guided facilitation of a brainstorming coach | `brainstorming-report.md` |
|
| `brainstorming` | Brainstorm Project Ideas with guided facilitation of a brainstorming coach | `brainstorming-report.md` |
|
||||||
| `bmad-bmm-research` | Validate market, technical, or domain assumptions | Research findings |
|
| `research` | Validate market, technical, or domain assumptions | Research findings |
|
||||||
| `bmad-bmm-create-product-brief` | Capture strategic vision | `product-brief.md` |
|
| `create-product-brief` | Capture strategic vision | `product-brief.md` |
|
||||||
|
|
||||||
## Phase 2: Planning
|
## Phase 2: Planning
|
||||||
|
|
||||||
Define what to build and for whom.
|
Define what to build and for whom.
|
||||||
|
|
||||||
| Workflow | Purpose | Produces |
|
| Workflow | Purpose | Produces |
|
||||||
| --------------------------- | ---------------------------------------- | ------------ |
|
| ------------------ | ---------------------------------------- | ------------ |
|
||||||
| `bmad-bmm-create-prd` | Define requirements (FRs/NFRs) | `PRD.md` |
|
| `create-prd` | Define requirements (FRs/NFRs) | `PRD.md` |
|
||||||
| `bmad-bmm-create-ux-design` | Design user experience (when UX matters) | `ux-spec.md` |
|
| `create-ux-design` | Design user experience (when UX matters) | `ux-spec.md` |
|
||||||
|
|
||||||
## Phase 3: Solutioning
|
## Phase 3: Solutioning
|
||||||
|
|
||||||
Decide how to build it and break work into stories.
|
Decide how to build it and break work into stories.
|
||||||
|
|
||||||
| Workflow | Purpose | Produces |
|
| Workflow | Purpose | Produces |
|
||||||
| ----------------------------------------- | ------------------------------------------ | --------------------------- |
|
| -------------------------------- | ------------------------------------------ | --------------------------- |
|
||||||
| `bmad-bmm-create-architecture` | Make technical decisions explicit | `architecture.md` with ADRs |
|
| `create-architecture` | Make technical decisions explicit | `architecture.md` with ADRs |
|
||||||
| `bmad-bmm-create-epics-and-stories` | Break requirements into implementable work | Epic files with stories |
|
| `create-epics-and-stories` | Break requirements into implementable work | Epic files with stories |
|
||||||
| `bmad-bmm-check-implementation-readiness` | Gate check before implementation | PASS/CONCERNS/FAIL decision |
|
| `check-implementation-readiness` | Gate check before implementation | PASS/CONCERNS/FAIL decision |
|
||||||
|
|
||||||
## Phase 4: Implementation
|
## Phase 4: Implementation
|
||||||
|
|
||||||
Build it, one story at a time. Coming soon, full phase 4 automation!
|
Build it, one story at a time.
|
||||||
|
|
||||||
| Workflow | Purpose | Produces |
|
| Workflow | Purpose | Produces |
|
||||||
| -------------------------- | ------------------------------------------------------------------------ | -------------------------------- |
|
| ----------------- | -------------------------------------- | ----------------------------- |
|
||||||
| `bmad-bmm-sprint-planning` | Initialize tracking (once per project to sequence the dev cycle) | `sprint-status.yaml` |
|
| `sprint-planning` | Initialize tracking (once per project) | `sprint-status.yaml` |
|
||||||
| `bmad-bmm-create-story` | Prepare next story for implementation | `story-[slug].md` |
|
| `create-story` | Prepare next story for implementation | `story-[slug].md` |
|
||||||
| `bmad-bmm-dev-story` | Implement the story | Working code + tests |
|
| `dev-story` | Implement the story | Working code + tests |
|
||||||
| `bmad-bmm-code-review` | Validate implementation quality | Approved or changes requested |
|
| `automate` (QA) | Generate tests for existing features | Test suite |
|
||||||
| `bmad-bmm-correct-course` | Handle significant mid-sprint changes | Updated plan or re-routing |
|
| `code-review` | Validate implementation quality | Approved or changes requested |
|
||||||
| `bmad-bmm-automate` | Generate tests for existing features - Use after a full epic is complete | End to End UI Focused Test suite |
|
| `correct-course` | Handle significant mid-sprint changes | Updated plan or re-routing |
|
||||||
| `bmad-bmm-retrospective` | Review after epic completion | Lessons learned |
|
| `retrospective` | Review after epic completion | Lessons learned |
|
||||||
|
|
||||||
|
**Quinn (QA Agent):** Built-in QA agent for test automation. Trigger with `QA` or `bmad-bmm-qa-automate`. Generates standard API and E2E tests using your project's test framework. Beginner-friendly, no configuration needed. For advanced test strategy, install [Test Architect (TEA)](https://bmad-code-org.github.io/bmad-method-test-architecture-enterprise/) module.
|
||||||
|
|
||||||
## Quick Flow (Parallel Track)
|
## Quick Flow (Parallel Track)
|
||||||
|
|
||||||
Skip phases 1-3 for small, well-understood work.
|
Skip phases 1-3 for small, well-understood work.
|
||||||
|
|
||||||
| Workflow | Purpose | Produces |
|
| Workflow | Purpose | Produces |
|
||||||
| --------------------- | ------------------------------------------ | --------------------------------------------- |
|
| ------------ | ------------------------------------------ | --------------------------------------------- |
|
||||||
| `bmad-bmm-quick-spec` | Define an ad-hoc change | `tech-spec.md` (story file for small changes) |
|
| `quick-spec` | Define an ad-hoc change | `tech-spec.md` (story file for small changes) |
|
||||||
| `bmad-bmm-quick-dev` | Implement from spec or direct instructions | Working code + tests |
|
| `quick-dev` | Implement from spec or direct instructions | Working code + tests |
|
||||||
|
|
||||||
## Context Management
|
## Context Management
|
||||||
|
|
||||||
Each document becomes context for the next phase. The PRD tells the architect what constraints matter. The architecture tells the dev agent which patterns to follow. Story files give focused, complete context for implementation. Without this structure, agents make inconsistent decisions.
|
Each document becomes context for the next phase. The PRD tells the architect what constraints matter. The architecture tells the dev agent which patterns to follow. Story files give focused, complete context for implementation. Without this structure, agents make inconsistent decisions.
|
||||||
|
|
||||||
### Project Context
|
For established projects, `document-project` creates or updates `project-context.md` - what exists in the codebase and the rules all implementation workflows must observe. Run it just before Phase 4, and again when something significant changes - structure, architecture, or those rules. You can also edit `project-context.md` by hand.
|
||||||
|
|
||||||
:::tip[Recommended]
|
All implementation workflows load `project-context.md` if it exists. Additional context per workflow:
|
||||||
Create `project-context.md` to ensure AI agents follow your project's rules and preferences. This file works like a constitution for your project — it guides implementation decisions across all workflows. This optional file can be generated at the end of Architecture Creation, or in an existing project it can be generated also to capture whats important to keep aligned with current conventions.
|
|
||||||
:::
|
|
||||||
|
|
||||||
**How to create it:**
|
| Workflow | Also Loads |
|
||||||
|
| -------------- | ---------------------------- |
|
||||||
- **Manually** — Create `_bmad-output/project-context.md` with your technology stack and implementation rules
|
| `create-story` | epics, PRD, architecture, UX |
|
||||||
- **Generate it** — Run `/bmad-bmm-generate-project-context` to auto-generate from your architecture or codebase
|
| `dev-story` | story file |
|
||||||
|
| `code-review` | architecture, story file |
|
||||||
[**Learn more about project-context.md**](../explanation/project-context.md)
|
| `quick-spec` | planning docs (if exist) |
|
||||||
|
| `quick-dev` | tech-spec |
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@ Build software faster using AI-powered workflows with specialized agents that gu
|
||||||
## What You'll Learn
|
## What You'll Learn
|
||||||
|
|
||||||
- Install and initialize BMad Method for a new project
|
- Install and initialize BMad Method for a new project
|
||||||
- Use **BMad-Help** — your intelligent guide that knows what to do next
|
|
||||||
- Choose the right planning track for your project size
|
- Choose the right planning track for your project size
|
||||||
- Progress through phases from requirements to working code
|
- Progress through phases from requirements to working code
|
||||||
- Use agents and workflows effectively
|
- Use agents and workflows effectively
|
||||||
|
|
@ -16,50 +15,15 @@ Build software faster using AI-powered workflows with specialized agents that gu
|
||||||
:::note[Prerequisites]
|
:::note[Prerequisites]
|
||||||
- **Node.js 20+** — Required for the installer
|
- **Node.js 20+** — Required for the installer
|
||||||
- **Git** — Recommended for version control
|
- **Git** — Recommended for version control
|
||||||
- **AI-powered IDE** — Claude Code, Cursor, or similar
|
- **AI-powered IDE** — Claude Code, Cursor, Windsurf, or similar
|
||||||
- **A project idea** — Even a simple one works for learning
|
- **A project idea** — Even a simple one works for learning
|
||||||
:::
|
:::
|
||||||
|
|
||||||
:::tip[The Easiest Path]
|
:::tip[Quick Path]
|
||||||
**Install** → `npx bmad-method install`
|
**Install** → `npx bmad-method install`
|
||||||
**Ask** → `/bmad-help what should I do first?`
|
**Plan** → PM creates PRD, Architect creates architecture
|
||||||
**Build** → Let BMad-Help guide you workflow by workflow
|
**Build** → SM manages sprints, DEV implements stories
|
||||||
:::
|
**Fresh chats** for each workflow to avoid context issues.
|
||||||
|
|
||||||
## Meet BMad-Help: Your Intelligent Guide
|
|
||||||
|
|
||||||
**BMad-Help is the fastest way to get started with BMad.** You don't need to memorize workflows or phases — just ask, and BMad-Help will:
|
|
||||||
|
|
||||||
- **Inspect your project** to see what's already been done
|
|
||||||
- **Show your options** based on which modules you have installed
|
|
||||||
- **Recommend what's next** — including the first required task
|
|
||||||
- **Answer questions** like "I have a SaaS idea, where do I start?"
|
|
||||||
|
|
||||||
### How to Use BMad-Help
|
|
||||||
|
|
||||||
Run it in your AI IDE with just the slash command:
|
|
||||||
|
|
||||||
```
|
|
||||||
/bmad-help
|
|
||||||
```
|
|
||||||
|
|
||||||
Or combine it with a question for context-aware guidance:
|
|
||||||
|
|
||||||
```
|
|
||||||
/bmad-help I have an idea for a SaaS product, I already know all the features I want. where do I get started?
|
|
||||||
```
|
|
||||||
|
|
||||||
BMad-Help will respond with:
|
|
||||||
- What's recommended for your situation
|
|
||||||
- What the first required task is
|
|
||||||
- What the rest of the process looks like
|
|
||||||
|
|
||||||
### It Powers Workflows Too
|
|
||||||
|
|
||||||
BMad-Help doesn't just answer questions — **it automatically runs at the end of every workflow** to tell you exactly what to do next. No guessing, no searching docs — just clear guidance on the next required workflow.
|
|
||||||
|
|
||||||
:::tip[Start Here]
|
|
||||||
After installing BMad, run `/bmad-help` immediately. It will detect what modules you have installed and guide you to the right starting point for your project.
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
## Understanding BMad
|
## Understanding BMad
|
||||||
|
|
@ -101,15 +65,7 @@ The installer creates two folders:
|
||||||
- `_bmad/` — agents, workflows, tasks, and configuration
|
- `_bmad/` — agents, workflows, tasks, and configuration
|
||||||
- `_bmad-output/` — empty for now, but this is where your artifacts will be saved
|
- `_bmad-output/` — empty for now, but this is where your artifacts will be saved
|
||||||
|
|
||||||
:::tip[Your Next Step]
|
Open your AI IDE in the project folder. Run the `help` workflow (`/bmad-help`) to see what to do next — it detects what you've completed and recommends the next step.
|
||||||
Open your AI IDE in the project folder and run:
|
|
||||||
|
|
||||||
```
|
|
||||||
/bmad-help
|
|
||||||
```
|
|
||||||
|
|
||||||
BMad-Help will detect what you've completed and recommend exactly what to do next. You can also ask it questions like "What are my options?" or "I have a SaaS idea, where should I start?"
|
|
||||||
:::
|
|
||||||
|
|
||||||
:::note[How to Load Agents and Run Workflows]
|
:::note[How to Load Agents and Run Workflows]
|
||||||
Each workflow has a **slash command** you run in your IDE (e.g., `/bmad-bmm-create-prd`). Running a workflow command automatically loads the appropriate agent — you don't need to load agents separately. You can also load an agent directly for general conversation (e.g., `/bmad-agent-bmm-pm` for the PM agent).
|
Each workflow has a **slash command** you run in your IDE (e.g., `/bmad-bmm-create-prd`). Running a workflow command automatically loads the appropriate agent — you don't need to load agents separately. You can also load an agent directly for general conversation (e.g., `/bmad-agent-bmm-pm` for the PM agent).
|
||||||
|
|
@ -123,12 +79,6 @@ Always start a fresh chat for each workflow. This prevents context limitations f
|
||||||
|
|
||||||
Work through phases 1-3. **Use fresh chats for each workflow.**
|
Work through phases 1-3. **Use fresh chats for each workflow.**
|
||||||
|
|
||||||
:::tip[Project Context (Optional)]
|
|
||||||
Before starting, consider creating `project-context.md` to document your technical preferences and implementation rules. This ensures all AI agents follow your conventions throughout the project.
|
|
||||||
|
|
||||||
Create it manually at `_bmad-output/project-context.md` or generate it after architecture using `/bmad-bmm-generate-project-context`. [Learn more](../explanation/project-context.md).
|
|
||||||
:::
|
|
||||||
|
|
||||||
### Phase 1: Analysis (Optional)
|
### Phase 1: Analysis (Optional)
|
||||||
|
|
||||||
All workflows in this phase are optional:
|
All workflows in this phase are optional:
|
||||||
|
|
@ -207,24 +157,20 @@ Your project now has:
|
||||||
your-project/
|
your-project/
|
||||||
├── _bmad/ # BMad configuration
|
├── _bmad/ # BMad configuration
|
||||||
├── _bmad-output/
|
├── _bmad-output/
|
||||||
│ ├── planning-artifacts/
|
│ ├── PRD.md # Your requirements document
|
||||||
│ │ ├── PRD.md # Your requirements document
|
│ ├── architecture.md # Technical decisions
|
||||||
│ │ ├── architecture.md # Technical decisions
|
│ ├── epics/ # Epic and story files
|
||||||
│ │ └── epics/ # Epic and story files
|
│ └── sprint-status.yaml # Sprint tracking
|
||||||
│ ├── implementation-artifacts/
|
|
||||||
│ │ └── sprint-status.yaml # Sprint tracking
|
|
||||||
│ └── project-context.md # Implementation rules (optional)
|
|
||||||
└── ...
|
└── ...
|
||||||
```
|
```
|
||||||
|
|
||||||
## Quick Reference
|
## Quick Reference
|
||||||
|
|
||||||
| Workflow | Command | Agent | Purpose |
|
| Workflow | Command | Agent | Purpose |
|
||||||
| ------------------------------------- | ------------------------------------------ | --------- | ----------------------------------------------- |
|
| -------------------------------- | ------------------------------------------ | --------- | ------------------------------------ |
|
||||||
| **`help`** ⭐ | `/bmad-help` | Any | **Your intelligent guide — ask anything!** |
|
| `help` | `/bmad-help` | Any | Get guidance on what to do next |
|
||||||
| `prd` | `/bmad-bmm-create-prd` | PM | Create Product Requirements Document |
|
| `prd` | `/bmad-bmm-create-prd` | PM | Create Product Requirements Document |
|
||||||
| `create-architecture` | `/bmad-bmm-create-architecture` | Architect | Create architecture document |
|
| `create-architecture` | `/bmad-bmm-create-architecture` | Architect | Create architecture document |
|
||||||
| `generate-project-context` | `/bmad-bmm-generate-project-context` | Analyst | Create project context file |
|
|
||||||
| `create-epics-and-stories` | `/bmad-bmm-create-epics-and-stories` | PM | Break down PRD into epics |
|
| `create-epics-and-stories` | `/bmad-bmm-create-epics-and-stories` | PM | Break down PRD into epics |
|
||||||
| `check-implementation-readiness` | `/bmad-bmm-check-implementation-readiness` | Architect | Validate planning cohesion |
|
| `check-implementation-readiness` | `/bmad-bmm-check-implementation-readiness` | Architect | Validate planning cohesion |
|
||||||
| `sprint-planning` | `/bmad-bmm-sprint-planning` | SM | Initialize sprint tracking |
|
| `sprint-planning` | `/bmad-bmm-sprint-planning` | SM | Initialize sprint tracking |
|
||||||
|
|
@ -248,26 +194,16 @@ Not strictly. Once you learn the flow, you can run workflows directly using the
|
||||||
|
|
||||||
## Getting Help
|
## Getting Help
|
||||||
|
|
||||||
:::tip[First Stop: BMad-Help]
|
|
||||||
**Run `/bmad-help` anytime** — it's the fastest way to get unstuck. Ask it anything:
|
|
||||||
- "What should I do after installing?"
|
|
||||||
- "I'm stuck on workflow X"
|
|
||||||
- "What are my options for Y?"
|
|
||||||
- "Show me what's been done so far"
|
|
||||||
|
|
||||||
BMad-Help inspects your project, detects what you've completed, and tells you exactly what to do next.
|
|
||||||
:::
|
|
||||||
|
|
||||||
- **During workflows** — Agents guide you with questions and explanations
|
- **During workflows** — Agents guide you with questions and explanations
|
||||||
- **Community** — [Discord](https://discord.gg/gk8jAdXWmj) (#bmad-method-help, #report-bugs-and-issues)
|
- **Community** — [Discord](https://discord.gg/gk8jAdXWmj) (#bmad-method-help, #report-bugs-and-issues)
|
||||||
|
- **Stuck?** — Run `help` (`/bmad-help`) to see what to do next
|
||||||
|
|
||||||
## Key Takeaways
|
## Key Takeaways
|
||||||
|
|
||||||
:::tip[Remember These]
|
:::tip[Remember These]
|
||||||
- **Start with `/bmad-help`** — Your intelligent guide that knows your project and options
|
|
||||||
- **Always use fresh chats** — Start a new chat for each workflow
|
- **Always use fresh chats** — Start a new chat for each workflow
|
||||||
- **Track matters** — Quick Flow uses quick-spec; Method/Enterprise need PRD and architecture
|
- **Track matters** — Quick Flow uses quick-spec; Method/Enterprise need PRD and architecture
|
||||||
- **BMad-Help runs automatically** — Every workflow ends with guidance on what's next
|
- **Use `help` (`/bmad-help`) when stuck** — It detects your progress and suggests next steps
|
||||||
:::
|
:::
|
||||||
|
|
||||||
Ready to start? Install BMad, run `/bmad-help`, and let your intelligent guide lead the way.
|
Ready to start? Install BMad and let the agents guide you through your first project.
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "bmad-method",
|
"name": "bmad-method",
|
||||||
"version": "6.0.1",
|
"version": "6.0.0-Beta.8",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "bmad-method",
|
"name": "bmad-method",
|
||||||
"version": "6.0.1",
|
"version": "6.0.0-Beta.8",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@clack/core": "^1.0.0",
|
"@clack/core": "^1.0.0",
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://json.schemastore.org/package.json",
|
"$schema": "https://json.schemastore.org/package.json",
|
||||||
"name": "bmad-method",
|
"name": "bmad-method",
|
||||||
"version": "6.0.1",
|
"version": "6.0.0-Beta.8",
|
||||||
"description": "Breakthrough Method of Agile AI-driven Development",
|
"description": "Breakthrough Method of Agile AI-driven Development",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"agile",
|
"agile",
|
||||||
|
|
@ -25,7 +25,6 @@
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"bmad:install": "node tools/cli/bmad-cli.js install",
|
"bmad:install": "node tools/cli/bmad-cli.js install",
|
||||||
"bmad:uninstall": "node tools/cli/bmad-cli.js uninstall",
|
|
||||||
"docs:build": "node tools/build-docs.mjs",
|
"docs:build": "node tools/build-docs.mjs",
|
||||||
"docs:dev": "astro dev --root website",
|
"docs:dev": "astro dev --root website",
|
||||||
"docs:fix-links": "node tools/fix-doc-links.js",
|
"docs:fix-links": "node tools/fix-doc-links.js",
|
||||||
|
|
@ -45,7 +44,7 @@
|
||||||
"test:install": "node test/test-installation-components.js",
|
"test:install": "node test/test-installation-components.js",
|
||||||
"test:refs": "node test/test-file-refs-csv.js",
|
"test:refs": "node test/test-file-refs-csv.js",
|
||||||
"test:schemas": "node test/test-agent-schema.js",
|
"test:schemas": "node test/test-agent-schema.js",
|
||||||
"validate:refs": "node tools/validate-file-refs.js --strict",
|
"validate:refs": "node tools/validate-file-refs.js",
|
||||||
"validate:schemas": "node tools/validate-agent-schema.js"
|
"validate:schemas": "node tools/validate-agent-schema.js"
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@ agent:
|
||||||
title: Business Analyst
|
title: Business Analyst
|
||||||
icon: 📊
|
icon: 📊
|
||||||
module: bmm
|
module: bmm
|
||||||
capabilities: "market research, competitive analysis, requirements elicitation, domain expertise"
|
|
||||||
hasSidecar: false
|
hasSidecar: false
|
||||||
|
|
||||||
persona:
|
persona:
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ agent:
|
||||||
title: Architect
|
title: Architect
|
||||||
icon: 🏗️
|
icon: 🏗️
|
||||||
module: bmm
|
module: bmm
|
||||||
capabilities: "distributed systems, cloud infrastructure, API design, scalable patterns"
|
|
||||||
hasSidecar: false
|
hasSidecar: false
|
||||||
|
|
||||||
persona:
|
persona:
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ agent:
|
||||||
title: Developer Agent
|
title: Developer Agent
|
||||||
icon: 💻
|
icon: 💻
|
||||||
module: bmm
|
module: bmm
|
||||||
capabilities: "story execution, test-driven development, code implementation"
|
|
||||||
hasSidecar: false
|
hasSidecar: false
|
||||||
|
|
||||||
persona:
|
persona:
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@ agent:
|
||||||
title: Product Manager
|
title: Product Manager
|
||||||
icon: 📋
|
icon: 📋
|
||||||
module: bmm
|
module: bmm
|
||||||
capabilities: "PRD creation, requirements discovery, stakeholder alignment, user interviews"
|
|
||||||
hasSidecar: false
|
hasSidecar: false
|
||||||
|
|
||||||
persona:
|
persona:
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@ agent:
|
||||||
title: QA Engineer
|
title: QA Engineer
|
||||||
icon: 🧪
|
icon: 🧪
|
||||||
module: bmm
|
module: bmm
|
||||||
capabilities: "test automation, API testing, E2E testing, coverage analysis"
|
|
||||||
hasSidecar: false
|
hasSidecar: false
|
||||||
|
|
||||||
persona:
|
persona:
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ agent:
|
||||||
title: Quick Flow Solo Dev
|
title: Quick Flow Solo Dev
|
||||||
icon: 🚀
|
icon: 🚀
|
||||||
module: bmm
|
module: bmm
|
||||||
capabilities: "rapid spec creation, lean implementation, minimum ceremony"
|
|
||||||
hasSidecar: false
|
hasSidecar: false
|
||||||
|
|
||||||
persona:
|
persona:
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ agent:
|
||||||
title: Scrum Master
|
title: Scrum Master
|
||||||
icon: 🏃
|
icon: 🏃
|
||||||
module: bmm
|
module: bmm
|
||||||
capabilities: "sprint planning, story preparation, agile ceremonies, backlog management"
|
|
||||||
hasSidecar: false
|
hasSidecar: false
|
||||||
|
|
||||||
persona:
|
persona:
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ agent:
|
||||||
title: Technical Writer
|
title: Technical Writer
|
||||||
icon: 📚
|
icon: 📚
|
||||||
module: bmm
|
module: bmm
|
||||||
capabilities: "documentation, Mermaid diagrams, standards compliance, concept explanation"
|
|
||||||
hasSidecar: true
|
hasSidecar: true
|
||||||
|
|
||||||
persona:
|
persona:
|
||||||
|
|
@ -16,7 +15,7 @@ agent:
|
||||||
communication_style: "Patient educator who explains like teaching a friend. Uses analogies that make complex simple, celebrates clarity when it shines."
|
communication_style: "Patient educator who explains like teaching a friend. Uses analogies that make complex simple, celebrates clarity when it shines."
|
||||||
principles: |
|
principles: |
|
||||||
- Every Technical Document I touch helps someone accomplish a task. Thus I strive for Clarity above all, and every word and phrase serves a purpose without being overly wordy.
|
- Every Technical Document I touch helps someone accomplish a task. Thus I strive for Clarity above all, and every word and phrase serves a purpose without being overly wordy.
|
||||||
- I believe a picture/diagram is worth 1000s of words and will include diagrams over drawn out text.
|
- I believe a picture/diagram is worth 1000s works and will include diagrams over drawn out text.
|
||||||
- I understand the intended audience or will clarify with the user so I know when to simplify vs when to be detailed.
|
- I understand the intended audience or will clarify with the user so I know when to simplify vs when to be detailed.
|
||||||
- I will always strive to follow `_bmad/_memory/tech-writer-sidecar/documentation-standards.md` best practices.
|
- I will always strive to follow `_bmad/_memory/tech-writer-sidecar/documentation-standards.md` best practices.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ agent:
|
||||||
title: UX Designer
|
title: UX Designer
|
||||||
icon: 🎨
|
icon: 🎨
|
||||||
module: bmm
|
module: bmm
|
||||||
capabilities: "user research, interaction design, UI patterns, experience strategy"
|
|
||||||
hasSidecar: false
|
hasSidecar: false
|
||||||
|
|
||||||
persona:
|
persona:
|
||||||
|
|
@ -24,4 +23,4 @@ agent:
|
||||||
menu:
|
menu:
|
||||||
- trigger: CU or fuzzy match on ux-design
|
- trigger: CU or fuzzy match on ux-design
|
||||||
exec: "{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md"
|
exec: "{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md"
|
||||||
description: "[CU] Create UX: Guidance through realizing the plan for your UX to inform architecture and implementation. Provides more details than what was discovered in the PRD"
|
description: "[CU] Create UX: Guidance through realizing the plan for your UX to inform architecture and implementation. PRovides more details that what was discovered in the PRD"
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-01-init'
|
||||||
description: 'Initialize the product brief workflow by detecting continuation state and setting up the document'
|
description: 'Initialize the product brief workflow by detecting continuation state and setting up the document'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md'
|
nextStepFile: './step-02-vision.md'
|
||||||
outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
|
outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
|
||||||
|
|
||||||
# Template References
|
# Template References
|
||||||
|
|
@ -73,7 +73,7 @@ If the document exists and has frontmatter with `stepsCompleted`:
|
||||||
|
|
||||||
**Continuation Protocol:**
|
**Continuation Protocol:**
|
||||||
|
|
||||||
- **STOP immediately** and load `{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/steps/step-01b-continue.md`
|
- **STOP immediately** and load `./step-01b-continue.md`
|
||||||
- Do not proceed with any initialization tasks
|
- Do not proceed with any initialization tasks
|
||||||
- Let step-01b handle all continuation logic
|
- Let step-01b handle all continuation logic
|
||||||
- This is an auto-proceed situation - no user choice needed
|
- This is an auto-proceed situation - no user choice needed
|
||||||
|
|
|
||||||
|
|
@ -95,9 +95,9 @@ Does this look right, or do you want to make any adjustments before we proceed?"
|
||||||
**Next Step Logic:**
|
**Next Step Logic:**
|
||||||
Based on `lastStep` value, determine which step to load next:
|
Based on `lastStep` value, determine which step to load next:
|
||||||
|
|
||||||
- If `lastStep = 1` → Load `{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md`
|
- If `lastStep = 1` → Load `./step-02-vision.md`
|
||||||
- If `lastStep = 2` → Load `{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md`
|
- If `lastStep = 2` → Load `./step-03-users.md`
|
||||||
- If `lastStep = 3` → Load `{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md`
|
- If `lastStep = 3` → Load `./step-04-metrics.md`
|
||||||
- Continue this pattern for all steps
|
- Continue this pattern for all steps
|
||||||
- If `lastStep = 6` → Workflow already complete
|
- If `lastStep = 6` → Workflow already complete
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-02-vision'
|
||||||
description: 'Discover and define the core product vision, problem statement, and unique value proposition'
|
description: 'Discover and define the core product vision, problem statement, and unique value proposition'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md'
|
nextStepFile: './step-03-users.md'
|
||||||
outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
|
outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-03-users'
|
||||||
description: 'Define target users with rich personas and map their key interactions with the product'
|
description: 'Define target users with rich personas and map their key interactions with the product'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md'
|
nextStepFile: './step-04-metrics.md'
|
||||||
outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
|
outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-04-metrics'
|
||||||
description: 'Define comprehensive success metrics that include user success, business objectives, and key performance indicators'
|
description: 'Define comprehensive success metrics that include user success, business objectives, and key performance indicators'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md'
|
nextStepFile: './step-05-scope.md'
|
||||||
outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
|
outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-05-scope'
|
||||||
description: 'Define MVP scope with clear boundaries and outline future vision while managing scope creep'
|
description: 'Define MVP scope with clear boundaries and outline future vision while managing scope creep'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md'
|
nextStepFile: './step-06-complete.md'
|
||||||
outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
|
outputFile: '{planning_artifacts}/product-brief-{{project_name}}-{{date}}.md'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,7 @@ Recap that the brief captures everything needed to guide subsequent product deve
|
||||||
|
|
||||||
### 5. Suggest next steps
|
### 5. Suggest next steps
|
||||||
|
|
||||||
Product Brief complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md` with argument `Validate PRD`.
|
Product Brief complete. Read fully and follow: `_bmad/core/tasks/help.md` with argument `Validate PRD`.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ For **{{research_topic}}**, I will research:
|
||||||
|
|
||||||
- Document scope confirmation in research file
|
- Document scope confirmation in research file
|
||||||
- Update frontmatter: `stepsCompleted: [1]`
|
- Update frontmatter: `stepsCompleted: [1]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md`
|
- Load: `./step-02-domain-analysis.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -132,6 +132,6 @@ When user selects 'C', append scope confirmation:
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C', load `{project-root}/_bmad/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md` to begin industry analysis.
|
After user selects 'C', load `./step-02-domain-analysis.md` to begin industry analysis.
|
||||||
|
|
||||||
Remember: This is SCOPE CONFIRMATION ONLY - no actual domain research yet, just confirming the research approach and scope!
|
Remember: This is SCOPE CONFIRMATION ONLY - no actual domain research yet, just confirming the research approach and scope!
|
||||||
|
|
|
||||||
|
|
@ -171,7 +171,7 @@ _Source: [URL]_
|
||||||
|
|
||||||
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2]`
|
- Update frontmatter: `stepsCompleted: [1, 2]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md`
|
- Load: `./step-03-competitive-landscape.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -224,6 +224,6 @@ Content is already written to document when generated in step 4. No additional a
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C', load `{project-root}/_bmad/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md` to analyze competitive landscape, key players, and ecosystem analysis for {{research_topic}}.
|
After user selects 'C', load `./step-03-competitive-landscape.md` to analyze competitive landscape, key players, and ecosystem analysis for {{research_topic}}.
|
||||||
|
|
||||||
Remember: Always write research content to document immediately and search the web to verify facts!
|
Remember: Always write research content to document immediately and search the web to verify facts!
|
||||||
|
|
|
||||||
|
|
@ -180,7 +180,7 @@ _Source: [URL]_
|
||||||
|
|
||||||
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2, 3]`
|
- Update frontmatter: `stepsCompleted: [1, 2, 3]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md`
|
- Load: `./step-04-regulatory-focus.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -233,6 +233,6 @@ Content is already written to document when generated in step 4. No additional a
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C', load `{project-root}/_bmad/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md` to analyze regulatory requirements, compliance frameworks, and legal considerations for {{research_topic}}.
|
After user selects 'C', load `./step-04-regulatory-focus.md` to analyze regulatory requirements, compliance frameworks, and legal considerations for {{research_topic}}.
|
||||||
|
|
||||||
Remember: Always write research content to document immediately and search the web to verify facts!
|
Remember: Always write research content to document immediately and search the web to verify facts!
|
||||||
|
|
|
||||||
|
|
@ -155,7 +155,7 @@ Show the generated regulatory analysis and present continue option:
|
||||||
|
|
||||||
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4]`
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md`
|
- Load: `./step-05-technical-trends.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -201,6 +201,6 @@ Content is already written to document when generated in step 5. No additional a
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md` to analyze technical trends and innovations in the domain.
|
After user selects 'C' and content is saved to document, load `./step-05-technical-trends.md` to analyze technical trends and innovations in the domain.
|
||||||
|
|
||||||
Remember: Search the web to verify regulatory facts and provide practical implementation considerations!
|
Remember: Search the web to verify regulatory facts and provide practical implementation considerations!
|
||||||
|
|
|
||||||
|
|
@ -174,7 +174,7 @@ Show the generated technical analysis and present complete option:
|
||||||
|
|
||||||
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5]`
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md`
|
- Load: `./step-06-research-synthesis.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -373,7 +373,6 @@ _This comprehensive research document serves as an authoritative reference on {{
|
||||||
|
|
||||||
#### If 'C' (Complete Research):
|
#### If 'C' (Complete Research):
|
||||||
|
|
||||||
- **Replace** the template placeholder `[Research overview and methodology will be appended here]` in the `## Research Overview` section near the top of the document with a concise 2-3 paragraph overview summarizing the research scope, key findings, and a pointer to the full executive summary in the Research Synthesis section
|
|
||||||
- Append the complete document to the research file
|
- Append the complete document to the research file
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5]`
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5]`
|
||||||
- Complete the domain research workflow
|
- Complete the domain research workflow
|
||||||
|
|
@ -381,7 +380,7 @@ _This comprehensive research document serves as an authoritative reference on {{
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
When user selects 'C', append the complete comprehensive research document using the full structure above. Also replace the `[Research overview and methodology will be appended here]` placeholder in the Research Overview section at the top of the document.
|
When user selects 'C', append the complete comprehensive research document using the full structure above.
|
||||||
|
|
||||||
## SUCCESS METRICS:
|
## SUCCESS METRICS:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -138,7 +138,7 @@ Show initial scope document and present continue option:
|
||||||
|
|
||||||
- Update frontmatter: `stepsCompleted: [1]`
|
- Update frontmatter: `stepsCompleted: [1]`
|
||||||
- Add confirmation note to document: "Scope confirmed by user on {{date}}"
|
- Add confirmation note to document: "Scope confirmed by user on {{date}}"
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md`
|
- Load: `./step-02-customer-behavior.md`
|
||||||
|
|
||||||
#### If 'Modify':
|
#### If 'Modify':
|
||||||
|
|
||||||
|
|
@ -177,6 +177,6 @@ This step ensures:
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user confirmation and scope finalization, load `{project-root}/_bmad/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md` to begin detailed market research with customer insights analysis.
|
After user confirmation and scope finalization, load `./step-02-customer-insights.md` to begin detailed market research with customer insights analysis.
|
||||||
|
|
||||||
Remember: Init steps confirm understanding and scope, not generate research content!
|
Remember: Init steps confirm understanding and scope, not generate research content!
|
||||||
|
|
|
||||||
|
|
@ -179,7 +179,7 @@ _Source: [URL]_
|
||||||
|
|
||||||
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2]`
|
- Update frontmatter: `stepsCompleted: [1, 2]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md`
|
- Load: `./step-03-customer-pain-points.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -232,6 +232,6 @@ Content is already written to document when generated in step 4. No additional a
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C', load `{project-root}/_bmad/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md` to analyze customer pain points, challenges, and unmet needs for {{research_topic}}.
|
After user selects 'C', load `./step-03-customer-pain-points.md` to analyze customer pain points, challenges, and unmet needs for {{research_topic}}.
|
||||||
|
|
||||||
Remember: Always write research content to document immediately and emphasize current customer data with rigorous source verification!
|
Remember: Always write research content to document immediately and emphasize current customer data with rigorous source verification!
|
||||||
|
|
|
||||||
|
|
@ -190,7 +190,7 @@ _Source: [URL]_
|
||||||
|
|
||||||
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2, 3]`
|
- Update frontmatter: `stepsCompleted: [1, 2, 3]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md`
|
- Load: `./step-04-customer-decisions.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -244,6 +244,6 @@ Content is already written to document when generated in step 4. No additional a
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C', load `{project-root}/_bmad/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md` to analyze customer decision processes, journey mapping, and decision factors for {{research_topic}}.
|
After user selects 'C', load `./step-04-customer-decisions.md` to analyze customer decision processes, journey mapping, and decision factors for {{research_topic}}.
|
||||||
|
|
||||||
Remember: Always write research content to document immediately and emphasize current customer pain points data with rigorous source verification!
|
Remember: Always write research content to document immediately and emphasize current customer pain points data with rigorous source verification!
|
||||||
|
|
|
||||||
|
|
@ -200,7 +200,7 @@ _Source: [URL]_
|
||||||
|
|
||||||
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4]`
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md`
|
- Load: `./step-05-competitive-analysis.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -254,6 +254,6 @@ Content is already written to document when generated in step 4. No additional a
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C', load `{project-root}/_bmad/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md` to analyze competitive landscape, market positioning, and competitive strategies for {{research_topic}}.
|
After user selects 'C', load `./step-05-competitive-analysis.md` to analyze competitive landscape, market positioning, and competitive strategies for {{research_topic}}.
|
||||||
|
|
||||||
Remember: Always write research content to document immediately and emphasize current customer decision data with rigorous source verification!
|
Remember: Always write research content to document immediately and emphasize current customer decision data with rigorous source verification!
|
||||||
|
|
|
||||||
|
|
@ -389,14 +389,13 @@ _This comprehensive market research document serves as an authoritative market r
|
||||||
|
|
||||||
#### If 'C' (Complete Research):
|
#### If 'C' (Complete Research):
|
||||||
|
|
||||||
- **Replace** the template placeholder `[Research overview and methodology will be appended here]` in the `## Research Overview` section near the top of the document with a concise 2-3 paragraph overview summarizing the research scope, key findings, and a pointer to the full executive summary in the Research Synthesis section
|
|
||||||
- Append the final content to the research document
|
- Append the final content to the research document
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4]`
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4]`
|
||||||
- Complete the market research workflow
|
- Complete the market research workflow
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
When user selects 'C', append the content directly to the research document using the structure from step 4. Also replace the `[Research overview and methodology will be appended here]` placeholder in the Research Overview section at the top of the document.
|
When user selects 'C', append the content directly to the research document using the structure from step 4.
|
||||||
|
|
||||||
## SUCCESS METRICS:
|
## SUCCESS METRICS:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ For **{{research_topic}}**, I will research:
|
||||||
|
|
||||||
- Document scope confirmation in research file
|
- Document scope confirmation in research file
|
||||||
- Update frontmatter: `stepsCompleted: [1]`
|
- Update frontmatter: `stepsCompleted: [1]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md`
|
- Load: `./step-02-technical-overview.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -132,6 +132,6 @@ When user selects 'C', append scope confirmation:
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C', load `{project-root}/_bmad/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md` to begin technology stack analysis.
|
After user selects 'C', load `./step-02-technical-overview.md` to begin technology stack analysis.
|
||||||
|
|
||||||
Remember: This is SCOPE CONFIRMATION ONLY - no actual technical research yet, just confirming the research approach and scope!
|
Remember: This is SCOPE CONFIRMATION ONLY - no actual technical research yet, just confirming the research approach and scope!
|
||||||
|
|
|
||||||
|
|
@ -180,7 +180,7 @@ _Source: [URL]_
|
||||||
|
|
||||||
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2]`
|
- Update frontmatter: `stepsCompleted: [1, 2]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md`
|
- Load: `./step-03-integration-patterns.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -234,6 +234,6 @@ Content is already written to document when generated in step 4. No additional a
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C', load `{project-root}/_bmad/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md` to analyze APIs, communication protocols, and system interoperability for {{research_topic}}.
|
After user selects 'C', load `./step-03-integration-patterns.md` to analyze APIs, communication protocols, and system interoperability for {{research_topic}}.
|
||||||
|
|
||||||
Remember: Always write research content to document immediately and emphasize current technology data with rigorous source verification!
|
Remember: Always write research content to document immediately and emphasize current technology data with rigorous source verification!
|
||||||
|
|
|
||||||
|
|
@ -189,7 +189,7 @@ _Source: [URL]_
|
||||||
|
|
||||||
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
- **CONTENT ALREADY WRITTEN TO DOCUMENT**
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2, 3]`
|
- Update frontmatter: `stepsCompleted: [1, 2, 3]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md`
|
- Load: `./step-04-architectural-patterns.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -243,6 +243,6 @@ Content is already written to document when generated in step 4. No additional a
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C', load `{project-root}/_bmad/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md` to analyze architectural patterns, design decisions, and system structures for {{research_topic}}.
|
After user selects 'C', load `./step-04-architectural-patterns.md` to analyze architectural patterns, design decisions, and system structures for {{research_topic}}.
|
||||||
|
|
||||||
Remember: Always write research content to document immediately and emphasize current integration data with rigorous source verification!
|
Remember: Always write research content to document immediately and emphasize current integration data with rigorous source verification!
|
||||||
|
|
|
||||||
|
|
@ -156,7 +156,7 @@ Show the generated architectural patterns and present continue option:
|
||||||
|
|
||||||
- Append the final content to the research document
|
- Append the final content to the research document
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4]`
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md`
|
- Load: `./step-05-implementation-research.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -197,6 +197,6 @@ When user selects 'C', append the content directly to the research document usin
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md` to focus on implementation approaches and technology adoption.
|
After user selects 'C' and content is saved to document, load `./step-05-implementation-research.md` to focus on implementation approaches and technology adoption.
|
||||||
|
|
||||||
Remember: Always emphasize current architectural data and rigorous source verification!
|
Remember: Always emphasize current architectural data and rigorous source verification!
|
||||||
|
|
|
||||||
|
|
@ -179,7 +179,7 @@ Show the generated implementation research and present continue option:
|
||||||
|
|
||||||
- Append the final content to the research document
|
- Append the final content to the research document
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5]`
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5]`
|
||||||
- Load: `{project-root}/_bmad/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md`
|
- Load: `./step-06-research-synthesis.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -230,4 +230,4 @@ When 'C' is selected:
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C', load `{project-root}/_bmad/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md` to produce the comprehensive technical research document with narrative introduction, detailed TOC, and executive summary.
|
After user selects 'C', load `./step-06-research-synthesis.md` to produce the comprehensive technical research document with narrative introduction, detailed TOC, and executive summary.
|
||||||
|
|
|
||||||
|
|
@ -416,7 +416,6 @@ _This comprehensive technical research document serves as an authoritative techn
|
||||||
|
|
||||||
#### If 'C' (Complete Research):
|
#### If 'C' (Complete Research):
|
||||||
|
|
||||||
- **Replace** the template placeholder `[Research overview and methodology will be appended here]` in the `## Research Overview` section near the top of the document with a concise 2-3 paragraph overview summarizing the research scope, key findings, and a pointer to the full executive summary in the Research Synthesis section
|
|
||||||
- Append the complete technical document to the research file
|
- Append the complete technical document to the research file
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5, 6]`
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5, 6]`
|
||||||
- Complete the technical research workflow
|
- Complete the technical research workflow
|
||||||
|
|
@ -424,7 +423,7 @@ _This comprehensive technical research document serves as an authoritative techn
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
When user selects 'C', append the complete comprehensive technical research document using the full structure above. Also replace the `[Research overview and methodology will be appended here]` placeholder in the Research Overview section at the top of the document.
|
When user selects 'C', append the complete comprehensive technical research document using the full structure above.
|
||||||
|
|
||||||
## SUCCESS METRICS:
|
## SUCCESS METRICS:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -79,8 +79,9 @@ Review the frontmatter to understand:
|
||||||
**Example:**
|
**Example:**
|
||||||
- If `stepsCompleted = ["step-01-init.md", "step-02-discovery.md", "step-03-success.md"]`
|
- If `stepsCompleted = ["step-01-init.md", "step-02-discovery.md", "step-03-success.md"]`
|
||||||
- Last element is `"step-03-success.md"`
|
- Last element is `"step-03-success.md"`
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-03-success.md`, read its frontmatter
|
- Load `step-03-success.md`, read its frontmatter
|
||||||
- Read fully and follow: `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-04-journeys.md`
|
- Find `nextStepFile: './step-04-journeys.md'`
|
||||||
|
- Next step to load is `./step-04-journeys.md`
|
||||||
|
|
||||||
### 4. Handle Workflow Completion
|
### 4. Handle Workflow Completion
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-02-discovery'
|
||||||
description: 'Discover project type, domain, and context through collaborative dialogue'
|
description: 'Discover project type, domain, and context through collaborative dialogue'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02b-vision.md'
|
nextStepFile: './step-03-success.md'
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
outputFile: '{planning_artifacts}/prd.md'
|
||||||
|
|
||||||
# Data Files
|
# Data Files
|
||||||
|
|
|
||||||
|
|
@ -1,154 +0,0 @@
|
||||||
---
|
|
||||||
name: 'step-02b-vision'
|
|
||||||
description: 'Discover the product vision and differentiator through collaborative dialogue'
|
|
||||||
|
|
||||||
# File References
|
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-02c-executive-summary.md'
|
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
|
||||||
|
|
||||||
# Task References
|
|
||||||
advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
|
|
||||||
partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
|
|
||||||
---
|
|
||||||
|
|
||||||
# Step 2b: Product Vision Discovery
|
|
||||||
|
|
||||||
**Progress: Step 2b of 13** - Next: Executive Summary
|
|
||||||
|
|
||||||
## STEP GOAL:
|
|
||||||
|
|
||||||
Discover what makes this product special and understand the product vision through collaborative conversation. No content generation — facilitation only.
|
|
||||||
|
|
||||||
## MANDATORY EXECUTION RULES (READ FIRST):
|
|
||||||
|
|
||||||
### Universal Rules:
|
|
||||||
|
|
||||||
- 🛑 NEVER generate content without user input
|
|
||||||
- 📖 CRITICAL: Read the complete step file before taking any action
|
|
||||||
- 🔄 CRITICAL: When loading next step with 'C', ensure the entire file is read
|
|
||||||
- ✅ ALWAYS treat this as collaborative discovery between PM peers
|
|
||||||
- 📋 YOU ARE A FACILITATOR, not a content generator
|
|
||||||
- ✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the config `{communication_language}`
|
|
||||||
|
|
||||||
### Role Reinforcement:
|
|
||||||
|
|
||||||
- ✅ You are a product-focused PM facilitator collaborating with an expert peer
|
|
||||||
- ✅ We engage in collaborative dialogue, not command-response
|
|
||||||
- ✅ You bring structured thinking and facilitation skills, while the user brings domain expertise and product vision
|
|
||||||
|
|
||||||
### Step-Specific Rules:
|
|
||||||
|
|
||||||
- 🎯 Focus on discovering vision and differentiator — no content generation yet
|
|
||||||
- 🚫 FORBIDDEN to generate executive summary content (that's the next step)
|
|
||||||
- 🚫 FORBIDDEN to append anything to the document in this step
|
|
||||||
- 💬 APPROACH: Natural conversation to understand what makes this product special
|
|
||||||
- 🎯 BUILD ON classification insights from step 2
|
|
||||||
|
|
||||||
## EXECUTION PROTOCOLS:
|
|
||||||
|
|
||||||
- 🎯 Show your analysis before taking any action
|
|
||||||
- ⚠️ Present A/P/C menu after vision discovery is complete
|
|
||||||
- 📖 Update frontmatter, adding this step to the end of the list of stepsCompleted
|
|
||||||
- 🚫 FORBIDDEN to load next step until C is selected
|
|
||||||
|
|
||||||
## CONTEXT BOUNDARIES:
|
|
||||||
|
|
||||||
- Current document and frontmatter from steps 1 and 2 are available
|
|
||||||
- Project classification exists from step 2 (project type, domain, complexity, context)
|
|
||||||
- Input documents already loaded are in memory (product briefs, research, brainstorming, project docs)
|
|
||||||
- No executive summary content yet (that's step 2c)
|
|
||||||
- This step ONLY discovers — it does NOT write to the document
|
|
||||||
|
|
||||||
## YOUR TASK:
|
|
||||||
|
|
||||||
Discover the product vision and differentiator through natural conversation. Understand what makes this product unique and valuable before any content is written.
|
|
||||||
|
|
||||||
## VISION DISCOVERY SEQUENCE:
|
|
||||||
|
|
||||||
### 1. Acknowledge Classification Context
|
|
||||||
|
|
||||||
Reference the classification from step 2 and use it to frame the vision conversation:
|
|
||||||
|
|
||||||
"We've established this is a {{projectType}} in the {{domain}} domain with {{complexityLevel}} complexity. Now let's explore what makes this product special."
|
|
||||||
|
|
||||||
### 2. Explore What Makes It Special
|
|
||||||
|
|
||||||
Guide the conversation to uncover the product's unique value:
|
|
||||||
|
|
||||||
- **User delight:** "What would make users say 'this is exactly what I needed'?"
|
|
||||||
- **Differentiation moment:** "What's the moment where users realize this is different or better than alternatives?"
|
|
||||||
- **Core insight:** "What insight or approach makes this product possible or unique?"
|
|
||||||
- **Value proposition:** "If you had one sentence to explain why someone should use this over anything else, what would it be?"
|
|
||||||
|
|
||||||
### 3. Understand the Vision
|
|
||||||
|
|
||||||
Dig deeper into the product vision:
|
|
||||||
|
|
||||||
- **Problem framing:** "What's the real problem you're solving — not the surface symptom, but the deeper need?"
|
|
||||||
- **Future state:** "When this product is successful, what does the world look like for your users?"
|
|
||||||
- **Why now:** "Why is this the right time to build this?"
|
|
||||||
|
|
||||||
### 4. Validate Understanding
|
|
||||||
|
|
||||||
Reflect back what you've heard and confirm:
|
|
||||||
|
|
||||||
"Here's what I'm hearing about your vision and differentiator:
|
|
||||||
|
|
||||||
**Vision:** {{summarized_vision}}
|
|
||||||
**What Makes It Special:** {{summarized_differentiator}}
|
|
||||||
**Core Insight:** {{summarized_insight}}
|
|
||||||
|
|
||||||
Does this capture it? Anything I'm missing?"
|
|
||||||
|
|
||||||
Let the user confirm or refine your understanding.
|
|
||||||
|
|
||||||
### N. Present MENU OPTIONS
|
|
||||||
|
|
||||||
Present your understanding of the product vision for review, then display menu:
|
|
||||||
|
|
||||||
"Based on our conversation, I have a clear picture of your product vision and what makes it special. I'll use these insights to draft the Executive Summary in the next step.
|
|
||||||
|
|
||||||
**What would you like to do?**"
|
|
||||||
|
|
||||||
Display: "**Select:** [A] Advanced Elicitation [P] Party Mode [C] Continue to Executive Summary (Step 2c of 13)"
|
|
||||||
|
|
||||||
#### Menu Handling Logic:
|
|
||||||
- IF A: Read fully and follow: {advancedElicitationTask} with the current vision insights, process the enhanced insights that come back, ask user if they accept the improvements, if yes update understanding then redisplay menu, if no keep original understanding then redisplay menu
|
|
||||||
- IF P: Read fully and follow: {partyModeWorkflow} with the current vision insights, process the collaborative insights, ask user if they accept the changes, if yes update understanding then redisplay menu, if no keep original understanding then redisplay menu
|
|
||||||
- IF C: Update {outputFile} frontmatter by adding this step name to the end of stepsCompleted array, then read fully and follow: {nextStepFile}
|
|
||||||
- IF Any other: help user respond, then redisplay menu
|
|
||||||
|
|
||||||
#### EXECUTION RULES:
|
|
||||||
- ALWAYS halt and wait for user input after presenting menu
|
|
||||||
- ONLY proceed to next step when user selects 'C'
|
|
||||||
- After other menu items execution, return to this menu
|
|
||||||
|
|
||||||
## CRITICAL STEP COMPLETION NOTE
|
|
||||||
|
|
||||||
ONLY WHEN [C continue option] is selected and [stepsCompleted updated], will you then read fully and follow: `{nextStepFile}` to generate the Executive Summary.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🚨 SYSTEM SUCCESS/FAILURE METRICS
|
|
||||||
|
|
||||||
### ✅ SUCCESS:
|
|
||||||
|
|
||||||
- Classification context from step 2 acknowledged and built upon
|
|
||||||
- Natural conversation to understand product vision and differentiator
|
|
||||||
- User's existing documents (briefs, research, brainstorming) leveraged for vision insights
|
|
||||||
- Vision and differentiator validated with user before proceeding
|
|
||||||
- Clear understanding established that will inform Executive Summary generation
|
|
||||||
- Frontmatter updated with stepsCompleted when C selected
|
|
||||||
|
|
||||||
### ❌ SYSTEM FAILURE:
|
|
||||||
|
|
||||||
- Generating executive summary or any document content (that's step 2c!)
|
|
||||||
- Appending anything to the PRD document
|
|
||||||
- Not building on classification from step 2
|
|
||||||
- Being prescriptive instead of having natural conversation
|
|
||||||
- Proceeding without user selecting 'C'
|
|
||||||
|
|
||||||
❌ **CRITICAL**: Reading only partial step file - leads to incomplete understanding and poor decisions
|
|
||||||
❌ **CRITICAL**: Proceeding with 'C' without fully reading and understanding the next step file
|
|
||||||
|
|
||||||
**Master Rule:** This step is vision discovery only. No content generation, no document writing. Have natural conversations, build on what you know from classification, and establish the vision that will feed into the Executive Summary.
|
|
||||||
|
|
@ -1,170 +0,0 @@
|
||||||
---
|
|
||||||
name: 'step-02c-executive-summary'
|
|
||||||
description: 'Generate and append the Executive Summary section to the PRD document'
|
|
||||||
|
|
||||||
# File References
|
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-03-success.md'
|
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
|
||||||
|
|
||||||
# Task References
|
|
||||||
advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
|
|
||||||
partyModeWorkflow: '{project-root}/_bmad/core/workflows/party-mode/workflow.md'
|
|
||||||
---
|
|
||||||
|
|
||||||
# Step 2c: Executive Summary Generation
|
|
||||||
|
|
||||||
**Progress: Step 2c of 13** - Next: Success Criteria
|
|
||||||
|
|
||||||
## STEP GOAL:
|
|
||||||
|
|
||||||
Generate the Executive Summary content using insights from classification (step 2) and vision discovery (step 2b), then append it to the PRD document.
|
|
||||||
|
|
||||||
## MANDATORY EXECUTION RULES (READ FIRST):
|
|
||||||
|
|
||||||
### Universal Rules:
|
|
||||||
|
|
||||||
- 🛑 NEVER generate content without user input
|
|
||||||
- 📖 CRITICAL: Read the complete step file before taking any action
|
|
||||||
- 🔄 CRITICAL: When loading next step with 'C', ensure the entire file is read
|
|
||||||
- ✅ ALWAYS treat this as collaborative discovery between PM peers
|
|
||||||
- 📋 YOU ARE A FACILITATOR, not a content generator
|
|
||||||
- ✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the config `{communication_language}`
|
|
||||||
|
|
||||||
### Role Reinforcement:
|
|
||||||
|
|
||||||
- ✅ You are a product-focused PM facilitator collaborating with an expert peer
|
|
||||||
- ✅ We engage in collaborative dialogue, not command-response
|
|
||||||
- ✅ Content is drafted collaboratively — present for review before saving
|
|
||||||
|
|
||||||
### Step-Specific Rules:
|
|
||||||
|
|
||||||
- 🎯 Generate Executive Summary content based on discovered insights
|
|
||||||
- 💬 Present draft content for user review and refinement before appending
|
|
||||||
- 🚫 FORBIDDEN to append content without user approval via 'C'
|
|
||||||
- 🎯 Content must be dense, precise, and zero-fluff (PRD quality standards)
|
|
||||||
|
|
||||||
## EXECUTION PROTOCOLS:
|
|
||||||
|
|
||||||
- 🎯 Show your analysis before taking any action
|
|
||||||
- ⚠️ Present A/P/C menu after generating executive summary content
|
|
||||||
- 💾 ONLY save when user chooses C (Continue)
|
|
||||||
- 📖 Update output file frontmatter, adding this step name to the end of the list of stepsCompleted
|
|
||||||
- 🚫 FORBIDDEN to load next step until C is selected
|
|
||||||
|
|
||||||
## CONTEXT BOUNDARIES:
|
|
||||||
|
|
||||||
- Current document and frontmatter from steps 1, 2, and 2b are available
|
|
||||||
- Project classification exists from step 2 (project type, domain, complexity, context)
|
|
||||||
- Vision and differentiator insights exist from step 2b
|
|
||||||
- Input documents from step 1 are available (product briefs, research, brainstorming, project docs)
|
|
||||||
- This step generates and appends the first substantive content to the PRD
|
|
||||||
|
|
||||||
## YOUR TASK:
|
|
||||||
|
|
||||||
Draft the Executive Summary section using all discovered insights, present it for user review, and append it to the PRD document when approved.
|
|
||||||
|
|
||||||
## EXECUTIVE SUMMARY GENERATION SEQUENCE:
|
|
||||||
|
|
||||||
### 1. Synthesize Available Context
|
|
||||||
|
|
||||||
Review all available context before drafting:
|
|
||||||
- Classification from step 2: project type, domain, complexity, project context
|
|
||||||
- Vision and differentiator from step 2b: what makes this special, core insight
|
|
||||||
- Input documents: product briefs, research, brainstorming, project docs
|
|
||||||
|
|
||||||
### 2. Draft Executive Summary Content
|
|
||||||
|
|
||||||
Generate the Executive Summary section using the content structure below. Apply PRD quality standards:
|
|
||||||
- High information density — every sentence carries weight
|
|
||||||
- Zero fluff — no filler phrases or vague language
|
|
||||||
- Precise and actionable — clear, specific statements
|
|
||||||
- Dual-audience optimized — readable by humans, consumable by LLMs
|
|
||||||
|
|
||||||
### 3. Present Draft for Review
|
|
||||||
|
|
||||||
Present the drafted content to the user for review:
|
|
||||||
|
|
||||||
"Here's the Executive Summary I've drafted based on our discovery work. Please review and let me know if you'd like any changes:"
|
|
||||||
|
|
||||||
Show the full drafted content using the structure from the Content Structure section below.
|
|
||||||
|
|
||||||
Allow the user to:
|
|
||||||
- Request specific changes to any section
|
|
||||||
- Add missing information
|
|
||||||
- Refine the language or emphasis
|
|
||||||
- Approve as-is
|
|
||||||
|
|
||||||
### N. Present MENU OPTIONS
|
|
||||||
|
|
||||||
Present the executive summary content for user review, then display menu:
|
|
||||||
|
|
||||||
"Here's the Executive Summary for your PRD. Review the content above and let me know what you'd like to do."
|
|
||||||
|
|
||||||
Display: "**Select:** [A] Advanced Elicitation [P] Party Mode [C] Continue to Success Criteria (Step 3 of 13)"
|
|
||||||
|
|
||||||
#### Menu Handling Logic:
|
|
||||||
- IF A: Read fully and follow: {advancedElicitationTask} with the current executive summary content, process the enhanced content that comes back, ask user if they accept the improvements, if yes update content then redisplay menu, if no keep original content then redisplay menu
|
|
||||||
- IF P: Read fully and follow: {partyModeWorkflow} with the current executive summary content, process the collaborative improvements, ask user if they accept the changes, if yes update content then redisplay menu, if no keep original content then redisplay menu
|
|
||||||
- IF C: Append the final content to {outputFile}, update frontmatter by adding this step name to the end of the stepsCompleted array, then read fully and follow: {nextStepFile}
|
|
||||||
- IF Any other: help user respond, then redisplay menu
|
|
||||||
|
|
||||||
#### EXECUTION RULES:
|
|
||||||
- ALWAYS halt and wait for user input after presenting menu
|
|
||||||
- ONLY proceed to next step when user selects 'C'
|
|
||||||
- After other menu items execution, return to this menu
|
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
|
||||||
|
|
||||||
When user selects 'C', append the following content structure directly to the document:
|
|
||||||
|
|
||||||
```markdown
|
|
||||||
## Executive Summary
|
|
||||||
|
|
||||||
{vision_alignment_content}
|
|
||||||
|
|
||||||
### What Makes This Special
|
|
||||||
|
|
||||||
{product_differentiator_content}
|
|
||||||
|
|
||||||
## Project Classification
|
|
||||||
|
|
||||||
{project_classification_content}
|
|
||||||
```
|
|
||||||
|
|
||||||
Where:
|
|
||||||
- `{vision_alignment_content}` — Product vision, target users, and the problem being solved. Dense, precise summary drawn from step 2b vision discovery.
|
|
||||||
- `{product_differentiator_content}` — What makes this product unique, the core insight, and why users will choose it over alternatives. Drawn from step 2b differentiator discovery.
|
|
||||||
- `{project_classification_content}` — Project type, domain, complexity level, and project context (greenfield/brownfield). Drawn from step 2 classification.
|
|
||||||
|
|
||||||
## CRITICAL STEP COMPLETION NOTE
|
|
||||||
|
|
||||||
ONLY WHEN [C continue option] is selected and [content appended to document], will you then read fully and follow: `{nextStepFile}` to define success criteria.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🚨 SYSTEM SUCCESS/FAILURE METRICS
|
|
||||||
|
|
||||||
### ✅ SUCCESS:
|
|
||||||
|
|
||||||
- Executive Summary drafted using insights from steps 2 and 2b
|
|
||||||
- Content meets PRD quality standards (dense, precise, zero-fluff)
|
|
||||||
- Draft presented to user for review before saving
|
|
||||||
- User given opportunity to refine content
|
|
||||||
- Content properly appended to document when C selected
|
|
||||||
- A/P/C menu presented and handled correctly
|
|
||||||
- Frontmatter updated with stepsCompleted when C selected
|
|
||||||
|
|
||||||
### ❌ SYSTEM FAILURE:
|
|
||||||
|
|
||||||
- Generating content without incorporating discovered vision and classification
|
|
||||||
- Appending content without user selecting 'C'
|
|
||||||
- Producing vague, fluffy, or low-density content
|
|
||||||
- Not presenting draft for user review
|
|
||||||
- Not presenting A/P/C menu after content generation
|
|
||||||
- Skipping directly to next step without appending content
|
|
||||||
|
|
||||||
❌ **CRITICAL**: Reading only partial step file - leads to incomplete understanding and poor decisions
|
|
||||||
❌ **CRITICAL**: Proceeding with 'C' without fully reading and understanding the next step file
|
|
||||||
❌ **CRITICAL**: Making decisions without complete understanding of step requirements and protocols
|
|
||||||
|
|
||||||
**Master Rule:** Generate high-quality Executive Summary content from discovered insights. Present for review, refine collaboratively, and only save when the user approves. This is the first substantive content in the PRD — it sets the quality bar for everything that follows.
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-03-success'
|
||||||
description: 'Define comprehensive success criteria covering user, business, and technical success'
|
description: 'Define comprehensive success criteria covering user, business, and technical success'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-04-journeys.md'
|
nextStepFile: './step-04-journeys.md'
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
outputFile: '{planning_artifacts}/prd.md'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
|
|
@ -221,6 +221,6 @@ If working in regulated domains (healthcare, fintech, govtech):
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-04-journeys.md` to map user journeys.
|
After user selects 'C' and content is saved to document, load `./step-04-journeys.md` to map user journeys.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-04 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-04 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-04-journeys'
|
||||||
description: 'Map ALL user types that interact with the system with narrative story-based journeys'
|
description: 'Map ALL user types that interact with the system with narrative story-based journeys'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-05-domain.md'
|
nextStepFile: './step-05-domain.md'
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
outputFile: '{planning_artifacts}/prd.md'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
|
|
@ -208,6 +208,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-05-domain.md`.
|
After user selects 'C' and content is saved to document, load `./step-05-domain.md`.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-05 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-05 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@ name: 'step-05-domain'
|
||||||
description: 'Explore domain-specific requirements for complex domains (optional step)'
|
description: 'Explore domain-specific requirements for complex domains (optional step)'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-06-innovation.md'
|
nextStepFile: './step-06-innovation.md'
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
outputFile: '{planning_artifacts}/prd.md'
|
||||||
domainComplexityCSV: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv'
|
domainComplexityCSV: '../data/domain-complexity.csv'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
|
advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@ name: 'step-06-innovation'
|
||||||
description: 'Detect and explore innovative aspects of the product (optional step)'
|
description: 'Detect and explore innovative aspects of the product (optional step)'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-07-project-type.md'
|
nextStepFile: './step-07-project-type.md'
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
outputFile: '{planning_artifacts}/prd.md'
|
||||||
|
|
||||||
# Data Files
|
# Data Files
|
||||||
projectTypesCSV: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/project-types.csv'
|
projectTypesCSV: '../data/project-types.csv'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
|
advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-07-project-type'
|
||||||
description: 'Conduct project-type specific discovery using CSV-driven guidance'
|
description: 'Conduct project-type specific discovery using CSV-driven guidance'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-08-scoping.md'
|
nextStepFile: './step-08-scoping.md'
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
outputFile: '{planning_artifacts}/prd.md'
|
||||||
|
|
||||||
# Data Files
|
# Data Files
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-08-scoping'
|
||||||
description: 'Define MVP boundaries and prioritize features across development phases'
|
description: 'Define MVP boundaries and prioritize features across development phases'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-09-functional.md'
|
nextStepFile: './step-09-functional.md'
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
outputFile: '{planning_artifacts}/prd.md'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-09-functional'
|
||||||
description: 'Synthesize all discovery into comprehensive functional requirements'
|
description: 'Synthesize all discovery into comprehensive functional requirements'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-10-nonfunctional.md'
|
nextStepFile: './step-10-nonfunctional.md'
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
outputFile: '{planning_artifacts}/prd.md'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: 'step-10-nonfunctional'
|
||||||
description: 'Define quality attributes that matter for this specific product'
|
description: 'Define quality attributes that matter for this specific product'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-11-polish.md'
|
nextStepFile: './step-11-polish.md'
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
outputFile: '{planning_artifacts}/prd.md'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@ name: 'step-11-polish'
|
||||||
description: 'Optimize and polish the complete PRD document for flow, coherence, and readability'
|
description: 'Optimize and polish the complete PRD document for flow, coherence, and readability'
|
||||||
|
|
||||||
# File References
|
# File References
|
||||||
nextStepFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-12-complete.md'
|
nextStepFile: './step-12-complete.md'
|
||||||
outputFile: '{planning_artifacts}/prd.md'
|
outputFile: '{planning_artifacts}/prd.md'
|
||||||
purposeFile: '{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/data/prd-purpose.md'
|
purposeFile: '../data/prd-purpose.md'
|
||||||
|
|
||||||
# Task References
|
# Task References
|
||||||
advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
|
advancedElicitationTask: '{project-root}/_bmad/core/workflows/advanced-elicitation/workflow.xml'
|
||||||
|
|
@ -212,6 +212,6 @@ When user selects 'C', replace the entire document content with the polished ver
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and polished document is saved, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-prd/steps-c/step-12-complete.md` to complete the workflow.
|
After user selects 'C' and polished document is saved, load `./step-12-complete.md` to complete the workflow.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-12 until user explicitly selects 'C' from the A/P/C menu and polished document is saved!
|
Remember: Do NOT proceed to step-12 until user explicitly selects 'C' from the A/P/C menu and polished document is saved!
|
||||||
|
|
|
||||||
|
|
@ -87,7 +87,7 @@ Offer validation workflows to ensure PRD is ready for implementation:
|
||||||
|
|
||||||
### 4. Suggest Next Workflows
|
### 4. Suggest Next Workflows
|
||||||
|
|
||||||
PRD complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md` with argument `Create PRD`.
|
PRD complete. Read fully and follow: `_bmad/core/tasks/help.md` with argument `Create PRD`.
|
||||||
|
|
||||||
### 5. Final Completion Confirmation
|
### 5. Final Completion Confirmation
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -70,22 +70,14 @@ This file contains the BMAD PRD philosophy, standards, and validation criteria t
|
||||||
**If PRD path provided as invocation parameter:**
|
**If PRD path provided as invocation parameter:**
|
||||||
- Use provided path
|
- Use provided path
|
||||||
|
|
||||||
**If no PRD path provided, auto-discover:**
|
**If no PRD path provided:**
|
||||||
- Search `{planning_artifacts}` for files matching `*prd*.md`
|
"**PRD Validation Workflow**
|
||||||
- Also check for sharded PRDs: `{planning_artifacts}/*prd*/*.md`
|
|
||||||
|
|
||||||
**If exactly ONE PRD found:**
|
Which PRD would you like to validate?
|
||||||
- Use it automatically
|
|
||||||
- Inform user: "Found PRD: {discovered_path} — using it for validation."
|
|
||||||
|
|
||||||
**If MULTIPLE PRDs found:**
|
Please provide the path to the PRD file you want to validate."
|
||||||
- List all discovered PRDs with numbered options
|
|
||||||
- "I found multiple PRDs. Which one would you like to validate?"
|
|
||||||
- Wait for user selection
|
|
||||||
|
|
||||||
**If NO PRDs found:**
|
**Wait for user to provide PRD path.**
|
||||||
- "I couldn't find any PRD files in {planning_artifacts}. Please provide the path to the PRD file you want to validate."
|
|
||||||
- Wait for user to provide PRD path.
|
|
||||||
|
|
||||||
### 3. Validate PRD Exists and Load
|
### 3. Validate PRD Exists and Load
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -197,7 +197,7 @@ Display:
|
||||||
- **IF X (Exit):**
|
- **IF X (Exit):**
|
||||||
- Display: "**Validation Report Saved:** {validationReportPath}"
|
- Display: "**Validation Report Saved:** {validationReportPath}"
|
||||||
- Display: "**Summary:** {overall status} - {recommendation}"
|
- Display: "**Summary:** {overall status} - {recommendation}"
|
||||||
- PRD Validation complete. Read fully and follow: `{project-root}/_bmad/core/tasks/help.md` with argument `Validate PRD`.
|
- PRD Validation complete. Read fully and follow: `_bmad/core/tasks/help.md` with argument `Validate PRD`.
|
||||||
|
|
||||||
- **IF Any other:** Help user, then redisplay menu
|
- **IF Any other:** Help user, then redisplay menu
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -60,4 +60,6 @@ Load and read full config from {main_config} and resolve:
|
||||||
|
|
||||||
"**Validate Mode: Validating an existing PRD against BMAD standards.**"
|
"**Validate Mode: Validating an existing PRD against BMAD standards.**"
|
||||||
|
|
||||||
|
Prompt for PRD path: "Which PRD would you like to validate? Please provide the path to the PRD.md file."
|
||||||
|
|
||||||
Then read fully and follow: `{validateWorkflow}` (steps-v/step-v-01-discovery.md)
|
Then read fully and follow: `{validateWorkflow}` (steps-v/step-v-01-discovery.md)
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ First, check if the output document already exists:
|
||||||
|
|
||||||
If the document exists and has frontmatter with `stepsCompleted`:
|
If the document exists and has frontmatter with `stepsCompleted`:
|
||||||
|
|
||||||
- **STOP here** and load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01b-continue.md` immediately
|
- **STOP here** and load `./step-01b-continue.md` immediately
|
||||||
- Do not proceed with any initialization tasks
|
- Do not proceed with any initialization tasks
|
||||||
- Let step-01b handle the continuation logic
|
- Let step-01b handle the continuation logic
|
||||||
|
|
||||||
|
|
@ -110,7 +110,7 @@ Do you have any other documents you'd like me to include, or shall we continue t
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects [C] to continue, ensure the file `{planning_artifacts}/ux-design-specification.md` has been created and saved, and then load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md` to begin the UX discovery phase.
|
After user selects [C] to continue, ensure the file `{planning_artifacts}/ux-design-specification.md` has been created and saved, and then load `./step-02-discovery.md` to begin the UX discovery phase.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-02 until output file has been updated and user explicitly selects [C] to continue!
|
Remember: Do NOT proceed to step-02 until output file has been updated and user explicitly selects [C] to continue!
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -72,9 +72,9 @@ Does this look right, or do you want to make any adjustments before we proceed?"
|
||||||
|
|
||||||
Based on `lastStep` value, determine which step to load next:
|
Based on `lastStep` value, determine which step to load next:
|
||||||
|
|
||||||
- If `lastStep = 1` → Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md`
|
- If `lastStep = 1` → Load `./step-02-discovery.md`
|
||||||
- If `lastStep = 2` → Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md`
|
- If `lastStep = 2` → Load `./step-03-core-experience.md`
|
||||||
- If `lastStep = 3` → Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md`
|
- If `lastStep = 3` → Load `./step-04-emotional-response.md`
|
||||||
- Continue this pattern for all steps
|
- Continue this pattern for all steps
|
||||||
- If `lastStep` indicates final step → Workflow already complete
|
- If `lastStep` indicates final step → Workflow already complete
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -155,11 +155,11 @@ Show the generated project understanding content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: `stepsCompleted: [1, 2]`
|
- Update frontmatter: `stepsCompleted: [1, 2]`
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md`
|
- Load `./step-03-core-experience.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
When user selects 'C', append the content directly to the document. Only after the content is saved to document, read fully and follow: `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md`.
|
When user selects 'C', append the content directly to the document. Only after the content is saved to document, read fully and follow: `./step-03-core-experience.md`.
|
||||||
|
|
||||||
## SUCCESS METRICS:
|
## SUCCESS METRICS:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -179,7 +179,7 @@ Show the generated core experience content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: append step to end of stepsCompleted array
|
- Update frontmatter: append step to end of stepsCompleted array
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md`
|
- Load `./step-04-emotional-response.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -211,6 +211,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md` to define desired emotional responses.
|
After user selects 'C' and content is saved to document, load `./step-04-emotional-response.md` to define desired emotional responses.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-04 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-04 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -182,7 +182,7 @@ Show the generated emotional response content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: append step to end of stepsCompleted array
|
- Update frontmatter: append step to end of stepsCompleted array
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md`
|
- Load `./step-05-inspiration.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -214,6 +214,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md` to analyze UX patterns from inspiring products.
|
After user selects 'C' and content is saved to document, load `./step-05-inspiration.md` to analyze UX patterns from inspiring products.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-05 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-05 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -197,7 +197,7 @@ Show the generated inspiration analysis content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: append step to end of stepsCompleted array
|
- Update frontmatter: append step to end of stepsCompleted array
|
||||||
- Read fully and follow: `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md`
|
- Read fully and follow: `./step-06-design-system.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -229,6 +229,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md` to choose the appropriate design system approach.
|
After user selects 'C' and content is saved to document, load `./step-06-design-system.md` to choose the appropriate design system approach.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-06 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-06 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -215,7 +215,7 @@ Show the generated design system content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: append step to end of stepsCompleted array
|
- Update frontmatter: append step to end of stepsCompleted array
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md`
|
- Load `./step-07-defining-experience.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -247,6 +247,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md` to define the core user interaction.
|
After user selects 'C' and content is saved to document, load `./step-07-defining-experience.md` to define the core user interaction.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-07 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-07 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -217,7 +217,7 @@ Show the generated defining experience content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: append step to end of stepsCompleted array
|
- Update frontmatter: append step to end of stepsCompleted array
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md`
|
- Load `./step-08-visual-foundation.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -249,6 +249,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md` to establish visual design foundation.
|
After user selects 'C' and content is saved to document, load `./step-08-visual-foundation.md` to establish visual design foundation.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-08 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-08 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -187,7 +187,7 @@ Show the generated visual foundation content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: append step to end of stepsCompleted array
|
- Update frontmatter: append step to end of stepsCompleted array
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md`
|
- Load `./step-09-design-directions.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -219,6 +219,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md` to generate design direction mockups.
|
After user selects 'C' and content is saved to document, load `./step-09-design-directions.md` to generate design direction mockups.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-09 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-09 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -187,7 +187,7 @@ Show the generated design direction content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: append step to end of stepsCompleted array
|
- Update frontmatter: append step to end of stepsCompleted array
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md`
|
- Load `./step-10-user-journeys.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -219,6 +219,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md` to design user journey flows.
|
After user selects 'C' and content is saved to document, load `./step-10-user-journeys.md` to design user journey flows.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-10 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-10 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -205,7 +205,7 @@ Show the generated user journey content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: append step to end of stepsCompleted array
|
- Update frontmatter: append step to end of stepsCompleted array
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md`
|
- Load `./step-11-component-strategy.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -236,6 +236,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md` to define component library strategy.
|
After user selects 'C' and content is saved to document, load `./step-11-component-strategy.md` to define component library strategy.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-11 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-11 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -211,7 +211,7 @@ Show the generated component strategy content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: append step to end of stepsCompleted array
|
- Update frontmatter: append step to end of stepsCompleted array
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md`
|
- Load `./step-12-ux-patterns.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -243,6 +243,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md` to define UX consistency patterns.
|
After user selects 'C' and content is saved to document, load `./step-12-ux-patterns.md` to define UX consistency patterns.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-12 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-12 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -200,7 +200,7 @@ Show the generated UX patterns content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: append step to end of stepsCompleted array
|
- Update frontmatter: append step to end of stepsCompleted array
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md`
|
- Load `./step-13-responsive-accessibility.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -232,6 +232,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md` to define responsive design and accessibility strategy.
|
After user selects 'C' and content is saved to document, load `./step-13-responsive-accessibility.md` to define responsive design and accessibility strategy.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-13 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-13 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
|
|
@ -227,7 +227,7 @@ Show the generated responsive and accessibility content and present choices:
|
||||||
|
|
||||||
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
- Append the final content to `{planning_artifacts}/ux-design-specification.md`
|
||||||
- Update frontmatter: append step to end of stepsCompleted array
|
- Update frontmatter: append step to end of stepsCompleted array
|
||||||
- Load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md`
|
- Load `./step-14-complete.md`
|
||||||
|
|
||||||
## APPEND TO DOCUMENT:
|
## APPEND TO DOCUMENT:
|
||||||
|
|
||||||
|
|
@ -259,6 +259,6 @@ When user selects 'C', append the content directly to the document using the str
|
||||||
|
|
||||||
## NEXT STEP:
|
## NEXT STEP:
|
||||||
|
|
||||||
After user selects 'C' and content is saved to document, load `{project-root}/_bmad/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md` to finalize the UX design workflow.
|
After user selects 'C' and content is saved to document, load `./step-14-complete.md` to finalize the UX design workflow.
|
||||||
|
|
||||||
Remember: Do NOT proceed to step-14 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
Remember: Do NOT proceed to step-14 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue