bmad-method 4.5.1 → 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.
- package/CHANGELOG.md +12 -0
- package/bmad-core/agents/bmad-orchestrator.md +55 -66
- package/bmad-core/agents/pm.md +0 -1
- package/bmad-core/tasks/doc-migration-task.md +9 -9
- package/bmad-core/tasks/index-docs.md +3 -7
- package/bmad-core/templates/front-end-spec-tmpl.md +1 -1
- package/bmad-core/templates/fullstack-architecture-tmpl.md +60 -60
- package/bmad-core/templates/prd-tmpl.md +2 -2
- package/bmad-core/workflows/brownfield-fullstack.yml +19 -58
- package/bmad-core/workflows/brownfield-service.yml +19 -58
- package/bmad-core/workflows/brownfield-ui.yml +20 -59
- package/bmad-core/workflows/greenfield-fullstack.yml +31 -77
- package/bmad-core/workflows/greenfield-service.yml +22 -68
- package/bmad-core/workflows/greenfield-ui.yml +30 -76
- package/dist/agents/architect.txt +60 -60
- package/dist/agents/bmad-master.txt +66 -70
- package/dist/agents/bmad-orchestrator.txt +55 -66
- package/dist/agents/pm.txt +2 -467
- package/dist/agents/ux-expert.txt +1 -1
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +55 -66
- package/dist/expansion-packs/expansion-creator/agents/bmad-the-creator.txt +39 -32
- package/dist/teams/team-all.txt +368 -1099
- package/dist/teams/team-fullstack.txt +286 -1017
- package/dist/teams/team-ide-minimal.txt +55 -66
- package/dist/teams/team-no-ui.txt +224 -785
- package/docs/versioning-and-releases.md +6 -6
- package/expansion-packs/expansion-creator/tasks/generate-expansion-pack.md +17 -13
- package/package.json +1 -1
- package/tools/installer/package.json +1 -1
- 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
|
-
```
|
|
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
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
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
|
-
```
|
|
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 ====================
|