bmad-method 4.28.0 → 4.29.1
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 +14 -0
- package/bmad-core/agents/bmad-master.md +0 -2
- package/bmad-core/agents/bmad-orchestrator.md +0 -3
- package/bmad-core/core-config.yaml +1 -5
- package/bmad-core/data/bmad-kb.md +2 -2
- package/bmad-core/tasks/correct-course.md +9 -12
- package/bmad-core/tasks/create-brownfield-story.md +10 -61
- package/bmad-core/tasks/create-deep-research-prompt.md +5 -17
- package/bmad-core/tasks/create-next-story.md +3 -4
- package/bmad-core/tasks/document-project.md +37 -13
- package/bmad-core/tasks/facilitate-brainstorming-session.md +1 -1
- package/bmad-core/tasks/generate-ai-frontend-prompt.md +1 -1
- package/bmad-core/tasks/kb-mode-interaction.md +8 -3
- package/bmad-core/tasks/review-story.md +3 -3
- package/bmad-core/tasks/shard-doc.md +5 -9
- package/common/tasks/create-doc.md +4 -0
- package/dist/agents/analyst.txt +43 -31
- package/dist/agents/architect.txt +42 -30
- package/dist/agents/bmad-master.txt +61 -602
- package/dist/agents/bmad-orchestrator.txt +7 -548
- package/dist/agents/pm.txt +19 -38
- package/dist/agents/po.txt +14 -21
- package/dist/agents/qa.txt +3 -3
- package/dist/agents/sm.txt +11 -15
- package/dist/agents/ux-expert.txt +6 -18
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +5 -17
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +50 -579
- package/dist/expansion-packs/bmad-creator-tools/agents/bmad-the-creator.txt +5 -17
- package/dist/teams/team-all.txt +70 -607
- package/dist/teams/team-fullstack.txt +65 -601
- package/dist/teams/team-ide-minimal.txt +26 -575
- package/dist/teams/team-no-ui.txt +64 -600
- package/expansion-packs/bmad-2d-phaser-game-dev/config.yaml +1 -0
- package/expansion-packs/bmad-creator-tools/config.yaml +1 -0
- package/expansion-packs/bmad-infrastructure-devops/config.yaml +1 -0
- package/package.json +1 -1
- package/tools/installer/lib/ide-setup.js +325 -12
- package/tools/installer/package.json +1 -1
- package/bmad-core/tasks/create-workflow-plan.md +0 -289
- package/bmad-core/tasks/doc-migration-task.md +0 -143
- package/bmad-core/tasks/update-workflow-plan.md +0 -248
- package/docs/template-markup-references.md +0 -86
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
# Old Template Markup System References
|
|
2
|
-
|
|
3
|
-
This document catalogs all references to the old template markup system found in the BMAD-METHOD documentation and codebase.
|
|
4
|
-
|
|
5
|
-
## Summary of Old Markup Patterns
|
|
6
|
-
|
|
7
|
-
The old template markup system used the following patterns:
|
|
8
|
-
|
|
9
|
-
- `[[LLM: ...]]` - LLM-only processing directives
|
|
10
|
-
- `{{placeholders}}` - Variable substitution
|
|
11
|
-
- `<<REPEAT section="name">>` - Repeatable sections
|
|
12
|
-
- `^^CONDITION: condition_name^^` - Conditional blocks
|
|
13
|
-
- `@{examples}` - Example content markers
|
|
14
|
-
|
|
15
|
-
## Files Containing References
|
|
16
|
-
|
|
17
|
-
### 1. Primary Documentation Files
|
|
18
|
-
|
|
19
|
-
#### `/Users/brianmadison/dev-bmc/BMAD-METHOD/docs/user-guide.md`
|
|
20
|
-
|
|
21
|
-
- **Lines 149-155**: Describes template structure with placeholders and LLM instructions
|
|
22
|
-
- **Lines 229-230**: References advanced elicitation with embedded LLM instructions
|
|
23
|
-
- **Lines 527-549**: Shows custom template creation with LLM instructions and placeholders
|
|
24
|
-
- **Lines 590-632**: Detailed template patterns including variables, AI processing, and conditionals
|
|
25
|
-
- **Lines 619-623**: References to `@{example}` patterns and `[[LLM:]]` instructions
|
|
26
|
-
|
|
27
|
-
#### `/Users/brianmadison/dev-bmc/BMAD-METHOD/docs/core-architecture.md`
|
|
28
|
-
|
|
29
|
-
- **Lines 93-104**: Describes templates as self-contained with embedded LLM instructions
|
|
30
|
-
- **Lines 97-104**: Mentions template-format.md specification with placeholders and LLM directives
|
|
31
|
-
|
|
32
|
-
#### `/Users/brianmadison/dev-bmc/BMAD-METHOD/CLAUDE.md`
|
|
33
|
-
|
|
34
|
-
- **Lines 37, 262**: References to template instructions using `[[LLM: ...]]` markup
|
|
35
|
-
- **Line 38**: Mentions templates with embedded LLM instructions
|
|
36
|
-
|
|
37
|
-
### 2. Common Utilities
|
|
38
|
-
|
|
39
|
-
#### `/Users/brianmadison/dev-bmc/BMAD-METHOD/common/utils/bmad-doc-template.md`
|
|
40
|
-
|
|
41
|
-
- **Lines 296-324**: Migration section describes converting from legacy markdown+frontmatter templates
|
|
42
|
-
- **Lines 319-323**: Specific conversion instructions for old markup patterns
|
|
43
|
-
|
|
44
|
-
### 3. Task Files
|
|
45
|
-
|
|
46
|
-
#### `/Users/brianmadison/dev-bmc/BMAD-METHOD/bmad-core/tasks/shard-doc.md`
|
|
47
|
-
|
|
48
|
-
- **Lines 11-30**: Contains LLM instructions embedded in the task
|
|
49
|
-
- **Line 160**: References preserving template markup including `{{placeholders}}` and `[[LLM instructions]]`
|
|
50
|
-
|
|
51
|
-
#### `/Users/brianmadison/dev-bmc/BMAD-METHOD/expansion-packs/bmad-creator-tools/tasks/generate-expansion-pack.md`
|
|
52
|
-
|
|
53
|
-
- **Lines 10-14**: Describes template systems with LLM instruction embedding
|
|
54
|
-
- **Lines 107-118**: Template section planning with LLM instructions
|
|
55
|
-
- **Lines 229-245**: Detailed LLM instruction patterns for templates
|
|
56
|
-
- **Lines 569-593**: Advanced template design patterns
|
|
57
|
-
- **Lines 229, 573**: Specific examples of `[[LLM:]]` usage
|
|
58
|
-
- **Line 574**: References conditional content with `^^CONDITION:^^`
|
|
59
|
-
- **Line 576**: Mentions iteration controls with `<<REPEAT>>`
|
|
60
|
-
|
|
61
|
-
### 4. Agent and Template Files
|
|
62
|
-
|
|
63
|
-
Multiple agent and task files contain actual usage of the old markup system (22 files found with `[[LLM:]]` patterns), including:
|
|
64
|
-
|
|
65
|
-
- Story templates
|
|
66
|
-
- Checklists
|
|
67
|
-
- Task definitions
|
|
68
|
-
- Workflow plans
|
|
69
|
-
|
|
70
|
-
## Key Observations
|
|
71
|
-
|
|
72
|
-
1. **Documentation vs Implementation**: The documentation heavily references the old markup system, while the new YAML-based template system (`bmad-doc-template.md`) is already defined but not yet reflected in the main documentation.
|
|
73
|
-
|
|
74
|
-
2. **Migration Path**: The `bmad-doc-template.md` file includes a migration section (lines 316-324) that explicitly maps old patterns to new YAML structures.
|
|
75
|
-
|
|
76
|
-
3. **Active Usage**: Many core tasks and templates still actively use the old markup patterns, particularly `[[LLM:]]` instructions embedded within markdown files.
|
|
77
|
-
|
|
78
|
-
4. **Inconsistency**: Some files reference a `template-format.md` file that doesn't exist in the expected locations, suggesting incomplete migration or documentation updates.
|
|
79
|
-
|
|
80
|
-
## Recommendations
|
|
81
|
-
|
|
82
|
-
1. **Update User Guide**: The user guide needs significant updates to reflect the new YAML-based template system
|
|
83
|
-
2. **Update Core Architecture Docs**: Remove references to embedded LLM instructions in templates
|
|
84
|
-
3. **Create Template Migration Guide**: A comprehensive guide for converting existing templates
|
|
85
|
-
4. **Update Extension Pack Documentation**: The bmad-creator-tools expansion pack documentation needs updates
|
|
86
|
-
5. **Audit Active Templates**: Review and migrate templates that still use the old markup system
|