bmad-method 4.5.0 → 4.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/bmad-core/agents/bmad-orchestrator.md +55 -66
  3. package/bmad-core/agents/pm.md +0 -1
  4. package/bmad-core/tasks/doc-migration-task.md +9 -9
  5. package/bmad-core/tasks/index-docs.md +3 -7
  6. package/bmad-core/templates/front-end-spec-tmpl.md +1 -1
  7. package/bmad-core/templates/fullstack-architecture-tmpl.md +60 -60
  8. package/bmad-core/templates/prd-tmpl.md +2 -2
  9. package/bmad-core/workflows/brownfield-fullstack.yml +19 -58
  10. package/bmad-core/workflows/brownfield-service.yml +19 -58
  11. package/bmad-core/workflows/brownfield-ui.yml +20 -59
  12. package/bmad-core/workflows/greenfield-fullstack.yml +31 -77
  13. package/bmad-core/workflows/greenfield-service.yml +22 -68
  14. package/bmad-core/workflows/greenfield-ui.yml +30 -76
  15. package/dist/agents/architect.txt +60 -60
  16. package/dist/agents/bmad-master.txt +66 -70
  17. package/dist/agents/bmad-orchestrator.txt +55 -66
  18. package/dist/agents/pm.txt +2 -467
  19. package/dist/agents/ux-expert.txt +1 -1
  20. package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +55 -66
  21. package/dist/expansion-packs/expansion-creator/agents/bmad-the-creator.txt +39 -32
  22. package/dist/teams/team-all.txt +368 -1099
  23. package/dist/teams/team-fullstack.txt +286 -1017
  24. package/dist/teams/team-ide-minimal.txt +55 -66
  25. package/dist/teams/team-no-ui.txt +224 -785
  26. package/docs/claude-code-guide.md +6 -4
  27. package/docs/cursor-guide.md +8 -4
  28. package/docs/roo-code-guide.md +6 -4
  29. package/docs/versioning-and-releases.md +6 -6
  30. package/docs/windsurf-guide.md +6 -4
  31. package/expansion-packs/expansion-creator/tasks/generate-expansion-pack.md +17 -13
  32. package/package.json +1 -1
  33. package/tools/installer/package.json +1 -1
  34. package/bmad-core/templates/simple-project-prd-tmpl.md +0 -461
@@ -449,7 +449,7 @@ Create `expansion-packs/{pack-name}/plan.md` with:
449
449
  ## Approval
450
450
 
451
451
  User approval received: [ ] Yes
452
- ```text
452
+ ```
453
453
 
454
454
  Important: Wait for user approval before proceeding to Phase 2
455
455
 
@@ -582,34 +582,36 @@ IMPORTANT: Only proceed after plan.md is approved
582
582
  #### 3.1 Create Directory Structure
583
583
 
584
584
  ```
585
+
585
586
  expansion-packs/
586
587
  └── {pack-name}/
587
- ├── plan.md (ALREADY CREATED)
588
- ├── manifest.yml
589
- ├── README.md
590
- ├── agents/
591
- ├── {pack-name}-orchestrator.md (REQUIRED - Custom themed orchestrator)
592
- └── {agent-id}.md (YAML-in-Markdown with persona)
593
- ├── data/
594
- ├── {domain}-best-practices.md
595
- ├── {domain}-terminology.md
596
- └── {domain}-standards.md
597
- ├── tasks/
598
- ├── create-doc.md (REQUIRED - Core utility)
599
- ├── execute-checklist.md (REQUIRED - Core utility)
600
- └── {task-name}.md (Domain-specific tasks)
601
- ├── utils/
602
- ├── template-format.md (REQUIRED - Core utility)
603
- └── workflow-management.md (REQUIRED - Core utility)
604
- ├── templates/
605
- └── {template-name}.md
606
- ├── checklists/
607
- └── {checklist-name}.md
608
- ├── workflows/
609
- └── {domain}-workflow.md (REQUIRED if multiple agents)
610
- └── agent-teams/
611
- └── {domain}-team.yml (REQUIRED if multiple agents)
612
- ```text
588
+ ├── plan.md (ALREADY CREATED)
589
+ ├── manifest.yml
590
+ ├── README.md
591
+ ├── agents/
592
+ ├── {pack-name}-orchestrator.md (REQUIRED - Custom themed orchestrator)
593
+ └── {agent-id}.md (YAML-in-Markdown with persona)
594
+ ├── data/
595
+ ├── {domain}-best-practices.md
596
+ ├── {domain}-terminology.md
597
+ └── {domain}-standards.md
598
+ ├── tasks/
599
+ ├── create-doc.md (REQUIRED - Core utility)
600
+ ├── execute-checklist.md (REQUIRED - Core utility)
601
+ └── {task-name}.md (Domain-specific tasks)
602
+ ├── utils/
603
+ ├── template-format.md (REQUIRED - Core utility)
604
+ └── workflow-management.md (REQUIRED - Core utility)
605
+ ├── templates/
606
+ └── {template-name}.md
607
+ ├── checklists/
608
+ └── {checklist-name}.md
609
+ ├── workflows/
610
+ └── {domain}-workflow.md (REQUIRED if multiple agents)
611
+ └── agent-teams/
612
+ └── {domain}-team.yml (REQUIRED if multiple agents)
613
+
614
+ ```
613
615
 
614
616
  #### 3.2 Create Manifest
615
617
 
@@ -745,7 +747,7 @@ cp bmad-core/tasks/execute-checklist.md expansion-packs/{pack-name}/tasks/
745
747
  mkdir -p expansion-packs/{pack-name}/utils
746
748
  cp bmad-core/utils/template-format.md expansion-packs/{pack-name}/utils/
747
749
  cp bmad-core/utils/workflow-management.md expansion-packs/{pack-name}/utils/
748
- ```text
750
+ ```
749
751
 
750
752
  **Step 3: Technical Implementation**
751
753
 
@@ -995,10 +997,10 @@ _{Professional background and expertise}_
995
997
  - `{file2}.{ext}` - {description}
996
998
 
997
999
  2. **Launch Orchestrator**:
1000
+
998
1001
  ```bash
999
1002
  npm run agent {pack-name}-orchestrator
1000
1003
  ```
1001
- ````
1002
1004
 
1003
1005
  3. **Follow Numbered Options**: {Character Name} will present numbered choices for each decision
1004
1006
 
@@ -1028,14 +1030,12 @@ _{Professional background and expertise}_
1028
1030
  ### Knowledge Base
1029
1031
 
1030
1032
  [Embedded domain expertise]
1031
-
1032
1033
  ````
1033
1034
 
1034
1035
  #### 6.3 Advanced Data File Documentation with Validation
1035
1036
 
1036
1037
  For each required data file, provide comprehensive guidance:
1037
1038
 
1038
- ```markdown
1039
1039
  ## Required User Data Files
1040
1040
 
1041
1041
  ### {filename}.{ext}
@@ -1045,7 +1045,6 @@ For each required data file, provide comprehensive guidance:
1045
1045
  - **Location**: Place in `bmad-core/data/`
1046
1046
  - **Validation**: {how agents will verify the file is correct}
1047
1047
  - **Example Structure**:
1048
- ````
1049
1048
 
1050
1049
  {sample content showing exact format}
1051
1050
 
@@ -1321,6 +1320,14 @@ Embedded knowledge (automatic):
1321
1320
  - [ ] Template conditional content tested with different scenarios
1322
1321
  - [ ] Workflow decision trees validated with sample use cases
1323
1322
  - [ ] Character interactions tested for consistency and professional authenticity
1323
+
1324
+ ```
1325
+
1326
+ ```
1327
+
1328
+ ```
1329
+
1330
+ ```
1324
1331
  ==================== END: tasks#generate-expansion-pack ====================
1325
1332
 
1326
1333
  ==================== START: templates#agent-tmpl ====================