bmad-method 6.0.0-alpha.2 → 6.0.0-alpha.3
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/.claude/settings.local.json +11 -1
- package/README.md +109 -161
- package/docs/BMad-Method-V6-Quick-Start.md +341 -0
- package/docs/index.md +229 -0
- package/docs/v4-to-v6-upgrade.md +9 -7
- package/package.json +1 -1
- package/src/modules/bmb/README.md +135 -73
- package/src/modules/bmb/workflows/create-agent/README.md +126 -243
- package/src/modules/bmb/workflows/create-agent/instructions.md +25 -12
- package/src/modules/bmb/workflows/create-module/README.md +163 -154
- package/src/modules/bmb/workflows/create-workflow/instructions.md +16 -8
- package/src/modules/bmm/README.md +86 -83
- package/src/modules/bmm/workflows/1-analysis/brainstorm-game/instructions.md +45 -26
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/README.md +100 -16
- package/src/modules/bmm/workflows/1-analysis/brainstorm-project/instructions.md +42 -23
- package/src/modules/bmm/workflows/1-analysis/game-brief/instructions.md +42 -28
- package/src/modules/bmm/workflows/1-analysis/product-brief/instructions.md +38 -27
- package/src/modules/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +24 -34
- package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +23 -34
- package/src/modules/bmm/workflows/1-analysis/research/instructions-router.md +30 -14
- package/src/modules/bmm/workflows/1-analysis/research/instructions-technical.md +23 -34
- package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +42 -24
- package/src/modules/bmm/workflows/2-plan-workflows/gdd/instructions-gdd.md +35 -22
- package/src/modules/bmm/workflows/2-plan-workflows/narrative/instructions-narrative.md +73 -22
- package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +45 -63
- package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +46 -62
- package/src/modules/bmm/workflows/3-solutioning/architecture/instructions.md +46 -53
- package/src/modules/bmm/workflows/3-solutioning/solutioning-gate-check/instructions.md +78 -47
- package/src/modules/bmm/workflows/4-implementation/create-story/README.md +99 -82
- package/src/modules/bmm/workflows/4-implementation/create-story/instructions.md +2 -0
- package/src/modules/bmm/workflows/4-implementation/story-context/instructions.md +3 -0
- package/src/modules/bmm/workflows/README.md +149 -511
- package/src/modules/bmm/workflows/workflow-status/README.md +38 -19
- package/src/modules/bmm/workflows/workflow-status/init/instructions.md +117 -24
- package/src/modules/bmm/workflows/workflow-status/init/workflow.yaml +2 -2
- package/src/modules/bmm/workflows/workflow-status/instructions.md +173 -111
- package/src/modules/bmm/workflows/workflow-status/sample-level-3-workflow.yaml +49 -0
- package/src/modules/bmm/workflows/workflow-status/workflow-status-template.yaml +31 -0
- package/src/modules/bmm/workflows/workflow-status/workflow.yaml +3 -3
- package/src/modules/cis/README.md +153 -0
- package/src/modules/cis/workflows/README.md +102 -30
- package/src/modules/cis/workflows/storytelling/instructions.md +10 -2
- package/tools/cli/installers/lib/core/manifest-generator.js +4 -1
- package/src/modules/bmm/workflows/workflow-status/workflow-status-template.md +0 -30
- package/src/modules/cis/readme.md +0 -86
- /package/src/modules/bmm/sub-modules/claude-code/{readme.md → README.md} +0 -0
- /package/src/modules/bmm/workflows/3-solutioning/architecture/{readme.md → README.md} +0 -0
|
@@ -1,132 +1,194 @@
|
|
|
1
1
|
# BMB - BMad Builder Module
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Specialized tools and workflows for creating, customizing, and extending BMad components including agents, workflows, and complete modules.
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [Module Structure](#module-structure)
|
|
8
|
+
- [Core Workflows](#core-workflows)
|
|
9
|
+
- [Agent Types](#agent-types)
|
|
10
|
+
- [Quick Start](#quick-start)
|
|
11
|
+
- [Best Practices](#best-practices)
|
|
4
12
|
|
|
5
13
|
## Module Structure
|
|
6
14
|
|
|
7
|
-
### 🤖
|
|
15
|
+
### 🤖 Agents
|
|
8
16
|
|
|
9
|
-
Builder-
|
|
17
|
+
**BMad Builder** - Master builder agent orchestrating all creation workflows with deep knowledge of BMad architecture and conventions.
|
|
10
18
|
|
|
11
|
-
|
|
12
|
-
- Workflow designers
|
|
13
|
-
- Integration builders
|
|
19
|
+
### 📋 Workflows
|
|
14
20
|
|
|
15
|
-
|
|
21
|
+
Comprehensive suite for building and maintaining BMad components.
|
|
16
22
|
|
|
17
|
-
|
|
23
|
+
## Core Workflows
|
|
18
24
|
|
|
19
|
-
|
|
25
|
+
### Creation Workflows
|
|
20
26
|
|
|
21
|
-
-
|
|
22
|
-
- `create-workflow` - Build new workflow definitions
|
|
23
|
-
- `create-team` - Configure agent teams
|
|
24
|
-
- `bundle-agent` - Package agents for distribution
|
|
25
|
-
- `create-method` - Design custom development methodologies
|
|
27
|
+
**[create-agent](./workflows/create-agent/README.md)** - Build BMad agents
|
|
26
28
|
|
|
27
|
-
|
|
29
|
+
- Interactive persona development
|
|
30
|
+
- Command structure design
|
|
31
|
+
- YAML source compilation to .md
|
|
28
32
|
|
|
29
|
-
-
|
|
30
|
-
- `create-adapter` - Build API adapters
|
|
31
|
-
- `setup-environment` - Configure development environments
|
|
33
|
+
**[create-workflow](./workflows/create-workflow/README.md)** - Design workflows
|
|
32
34
|
|
|
33
|
-
|
|
35
|
+
- Structured multi-step processes
|
|
36
|
+
- Configuration validation
|
|
37
|
+
- Web bundle support
|
|
34
38
|
|
|
35
|
-
|
|
39
|
+
**[create-module](./workflows/create-module/README.md)** - Build complete modules
|
|
36
40
|
|
|
37
|
-
|
|
41
|
+
- Full module infrastructure
|
|
42
|
+
- Agent and workflow integration
|
|
43
|
+
- Installation automation
|
|
38
44
|
|
|
39
|
-
-
|
|
40
|
-
|
|
41
|
-
-
|
|
42
|
-
-
|
|
45
|
+
**[module-brief](./workflows/module-brief/README.md)** - Strategic planning
|
|
46
|
+
|
|
47
|
+
- Module blueprint creation
|
|
48
|
+
- Vision and architecture
|
|
49
|
+
- Comprehensive analysis
|
|
50
|
+
|
|
51
|
+
### Editing Workflows
|
|
52
|
+
|
|
53
|
+
**[edit-agent](./workflows/edit-agent/README.md)** - Modify existing agents
|
|
54
|
+
|
|
55
|
+
- Persona refinement
|
|
56
|
+
- Command updates
|
|
57
|
+
- Best practice compliance
|
|
58
|
+
|
|
59
|
+
**[edit-workflow](./workflows/edit-workflow/README.md)** - Update workflows
|
|
60
|
+
|
|
61
|
+
- Structure maintenance
|
|
62
|
+
- Configuration updates
|
|
63
|
+
- Documentation sync
|
|
64
|
+
|
|
65
|
+
**[edit-module](./workflows/edit-module/README.md)** - Module enhancement
|
|
66
|
+
|
|
67
|
+
- Component modifications
|
|
68
|
+
- Dependency management
|
|
69
|
+
- Version control
|
|
70
|
+
|
|
71
|
+
### Maintenance Workflows
|
|
72
|
+
|
|
73
|
+
**[convert-legacy](./workflows/convert-legacy/README.md)** - Migration tool
|
|
43
74
|
|
|
44
|
-
|
|
75
|
+
- v4 to v6 conversion
|
|
76
|
+
- Structure compliance
|
|
77
|
+
- Convention updates
|
|
45
78
|
|
|
46
|
-
|
|
79
|
+
**[audit-workflow](./workflows/audit-workflow/README.md)** - Quality validation
|
|
47
80
|
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
-
|
|
81
|
+
- Structure verification
|
|
82
|
+
- Config standards check
|
|
83
|
+
- Bloat detection
|
|
84
|
+
- Web bundle completeness
|
|
52
85
|
|
|
53
|
-
|
|
86
|
+
**[redoc](./workflows/redoc/README.md)** - Auto-documentation
|
|
54
87
|
|
|
55
|
-
|
|
88
|
+
- Reverse-tree approach
|
|
89
|
+
- Technical writer quality
|
|
90
|
+
- Convention compliance
|
|
56
91
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
92
|
+
## Agent Types
|
|
93
|
+
|
|
94
|
+
BMB creates three agent architectures:
|
|
95
|
+
|
|
96
|
+
### Full Module Agent
|
|
97
|
+
|
|
98
|
+
- Complete persona and role definition
|
|
99
|
+
- Command structure with fuzzy matching
|
|
100
|
+
- Workflow integration
|
|
101
|
+
- Module-specific capabilities
|
|
102
|
+
|
|
103
|
+
### Hybrid Agent
|
|
104
|
+
|
|
105
|
+
- Shared core capabilities
|
|
106
|
+
- Module-specific extensions
|
|
107
|
+
- Cross-module compatibility
|
|
108
|
+
|
|
109
|
+
### Standalone Agent
|
|
110
|
+
|
|
111
|
+
- Independent operation
|
|
112
|
+
- Minimal dependencies
|
|
113
|
+
- Specialized single purpose
|
|
61
114
|
|
|
62
115
|
## Quick Start
|
|
63
116
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
117
|
+
1. **Load BMad Builder agent** in your IDE
|
|
118
|
+
2. **Choose creation type:**
|
|
119
|
+
```
|
|
120
|
+
*create-agent # New agent
|
|
121
|
+
*create-workflow # New workflow
|
|
122
|
+
*create-module # Complete module
|
|
123
|
+
```
|
|
124
|
+
3. **Follow interactive prompts**
|
|
67
125
|
|
|
68
|
-
|
|
69
|
-
bmad bmb create-workflow
|
|
126
|
+
### Example: Creating an Agent
|
|
70
127
|
|
|
71
|
-
|
|
72
|
-
|
|
128
|
+
```
|
|
129
|
+
User: I need a code review agent
|
|
130
|
+
Builder: *create-agent
|
|
73
131
|
|
|
74
|
-
|
|
75
|
-
|
|
132
|
+
[Interactive session begins]
|
|
133
|
+
- Brainstorming phase (optional)
|
|
134
|
+
- Persona development
|
|
135
|
+
- Command structure
|
|
136
|
+
- Integration points
|
|
76
137
|
```
|
|
77
138
|
|
|
78
139
|
## Use Cases
|
|
79
140
|
|
|
80
|
-
### Custom
|
|
141
|
+
### Custom Development Teams
|
|
81
142
|
|
|
82
143
|
Build specialized agents for:
|
|
83
144
|
|
|
84
|
-
- Domain
|
|
85
|
-
- Company
|
|
145
|
+
- Domain expertise (legal, medical, finance)
|
|
146
|
+
- Company processes
|
|
86
147
|
- Tool integrations
|
|
87
148
|
- Automation tasks
|
|
88
149
|
|
|
89
|
-
### Workflow
|
|
150
|
+
### Workflow Extensions
|
|
90
151
|
|
|
91
152
|
Create workflows for:
|
|
92
153
|
|
|
93
|
-
- Unique development processes
|
|
94
154
|
- Compliance requirements
|
|
95
155
|
- Quality gates
|
|
96
156
|
- Deployment pipelines
|
|
157
|
+
- Custom methodologies
|
|
97
158
|
|
|
98
|
-
###
|
|
159
|
+
### Complete Solutions
|
|
99
160
|
|
|
100
|
-
|
|
161
|
+
Package modules for:
|
|
101
162
|
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
163
|
+
- Industry verticals
|
|
164
|
+
- Technology stacks
|
|
165
|
+
- Business processes
|
|
166
|
+
- Educational frameworks
|
|
106
167
|
|
|
107
|
-
##
|
|
168
|
+
## Best Practices
|
|
108
169
|
|
|
109
|
-
|
|
170
|
+
1. **Study existing patterns** - Review BMM/CIS implementations
|
|
171
|
+
2. **Follow conventions** - Use established structures
|
|
172
|
+
3. **Document thoroughly** - Clear instructions essential
|
|
173
|
+
4. **Test iteratively** - Validate during creation
|
|
174
|
+
5. **Consider reusability** - Build modular components
|
|
110
175
|
|
|
111
|
-
|
|
112
|
-
- Create custom implementations
|
|
113
|
-
- Build domain-specific solutions
|
|
114
|
-
- Integrate with existing tools
|
|
176
|
+
## Integration
|
|
115
177
|
|
|
116
|
-
|
|
178
|
+
BMB components integrate with:
|
|
117
179
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
5. **Share and collaborate** - Contribute useful components back to the community
|
|
180
|
+
- **BMad Core** - Framework foundation
|
|
181
|
+
- **BMM** - Extend development capabilities
|
|
182
|
+
- **CIS** - Leverage creative workflows
|
|
183
|
+
- **Custom Modules** - Your domain solutions
|
|
123
184
|
|
|
124
185
|
## Related Documentation
|
|
125
186
|
|
|
126
|
-
- [
|
|
127
|
-
- [
|
|
128
|
-
- [
|
|
187
|
+
- **[Agent Creation Guide](./workflows/create-agent/README.md)** - Detailed instructions
|
|
188
|
+
- **[Module Structure](./workflows/create-module/module-structure.md)** - Architecture patterns
|
|
189
|
+
- **[BMM Module](../bmm/README.md)** - Reference implementation
|
|
190
|
+
- **[Core Framework](../../core/README.md)** - Foundation concepts
|
|
129
191
|
|
|
130
192
|
---
|
|
131
193
|
|
|
132
|
-
BMB empowers you to extend
|
|
194
|
+
BMB empowers you to extend BMad Method for your specific needs while maintaining framework consistency and power.
|