bmad-method 4.25.1 → 4.27.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/.vscode/settings.json +2 -0
- package/CHANGELOG.md +22 -0
- package/README.md +29 -281
- package/bmad-core/agents/analyst.md +3 -1
- package/bmad-core/agents/bmad-master.md +5 -1
- package/bmad-core/agents/bmad-orchestrator.md +1 -1
- package/bmad-core/core-config.yaml +1 -1
- package/bmad-core/data/bmad-kb.md +74 -15
- package/bmad-core/data/brainstorming-techniques.md +36 -0
- package/bmad-core/data/elicitation-methods.md +134 -0
- package/bmad-core/tasks/advanced-elicitation.md +82 -57
- package/bmad-core/tasks/facilitate-brainstorming-session.md +136 -0
- package/bmad-core/templates/architecture-tmpl.md +23 -23
- package/bmad-core/templates/brainstorming-output-tmpl.md +149 -0
- package/bmad-core/templates/prd-tmpl.md +6 -6
- package/bmad-core/templates/prd-tmpl2.yaml +202 -0
- package/bmad-core/utils/plan-management.md +9 -13
- package/bmad-core/workflows/greenfield-service.yaml +1 -1
- package/common/tasks/create-doc.md +4 -4
- package/common/tasks/create-doc2.md +65 -0
- package/common/utils/bmad-doc-template.md +296 -0
- package/dist/agents/analyst.txt +481 -305
- package/dist/agents/architect.txt +60 -59
- package/dist/agents/bmad-master.txt +694 -399
- package/dist/agents/bmad-orchestrator.txt +197 -116
- package/dist/agents/dev.txt +18 -17
- package/dist/agents/pm.txt +47 -46
- package/dist/agents/po.txt +31 -30
- package/dist/agents/qa.txt +15 -14
- package/dist/agents/sm.txt +23 -22
- package/dist/agents/ux-expert.txt +29 -28
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-designer.txt +33 -32
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-developer.txt +19 -18
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/agents/game-sm.txt +21 -20
- package/dist/expansion-packs/bmad-2d-phaser-game-dev/teams/phaser-2d-nodejs-game-team.txt +385 -297
- package/dist/expansion-packs/bmad-creator-tools/agents/bmad-the-creator.txt +103 -77
- package/dist/expansion-packs/bmad-infrastructure-devops/agents/infra-devops-platform.txt +29 -28
- package/dist/teams/team-all.txt +610 -438
- package/dist/teams/team-fullstack.txt +597 -425
- package/dist/teams/team-ide-minimal.txt +238 -157
- package/dist/teams/team-no-ui.txt +583 -411
- package/docs/agentic-tools/github-copilot-guide.md +29 -9
- package/docs/bmad-workflow-guide.md +2 -2
- package/expansion-packs/bmad-2d-phaser-game-dev/config.yaml +1 -1
- package/expansion-packs/bmad-2d-phaser-game-dev/tasks/create-game-story.md +2 -2
- package/expansion-packs/bmad-creator-tools/config.yaml +1 -1
- package/expansion-packs/bmad-infrastructure-devops/config.yaml +1 -1
- package/package.json +1 -1
- package/tools/builders/web-builder.js +117 -22
- package/tools/installer/config/install.config.yaml +2 -2
- package/tools/installer/lib/ide-setup.js +2 -2
- package/tools/installer/package.json +1 -1
- package/tools/lib/dependency-resolver.js +3 -3
- package/tools/md-assets/web-agent-startup-instructions.md +10 -10
- package/bmad-core/tasks/brainstorming-techniques.md +0 -238
|
@@ -8,14 +8,14 @@ You are now operating as a specialized AI agent from the BMad-Method framework.
|
|
|
8
8
|
|
|
9
9
|
2. **Resource Navigation**: This bundle contains all resources you need. Resources are marked with tags like:
|
|
10
10
|
|
|
11
|
-
- `==================== START: folder
|
|
12
|
-
- `==================== END: folder
|
|
11
|
+
- `==================== START: .bmad-core/folder/filename.md ====================`
|
|
12
|
+
- `==================== END: .bmad-core/folder/filename.md ====================`
|
|
13
13
|
|
|
14
14
|
When you need to reference a resource mentioned in your instructions:
|
|
15
15
|
|
|
16
16
|
- Look for the corresponding START/END tags
|
|
17
|
-
- The format is always
|
|
18
|
-
- If a section is specified (e.g., `tasks
|
|
17
|
+
- The format is always the full path with dot prefix (e.g., `.bmad-core/personas/analyst.md`, `.bmad-core/tasks/create-story.md`)
|
|
18
|
+
- If a section is specified (e.g., `{root}/tasks/create-story.md#section-name`), navigate to that section within the file
|
|
19
19
|
|
|
20
20
|
**Understanding YAML References**: In the agent configuration, resources are referenced in the dependencies section. For example:
|
|
21
21
|
|
|
@@ -29,8 +29,8 @@ dependencies:
|
|
|
29
29
|
|
|
30
30
|
These references map directly to bundle sections:
|
|
31
31
|
|
|
32
|
-
- `utils: template-format` → Look for `==================== START: utils
|
|
33
|
-
- `tasks: create-story` → Look for `==================== START: tasks
|
|
32
|
+
- `utils: template-format` → Look for `==================== START: .bmad-core/utils/template-format.md ====================`
|
|
33
|
+
- `tasks: create-story` → Look for `==================== START: .bmad-core/tasks/create-story.md ====================`
|
|
34
34
|
|
|
35
35
|
3. **Execution Context**: You are operating in a web environment. All your capabilities and knowledge are contained within this bundle. Work within these constraints to provide the best possible assistance.
|
|
36
36
|
|
|
@@ -38,7 +38,8 @@ These references map directly to bundle sections:
|
|
|
38
38
|
|
|
39
39
|
---
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
|
|
42
|
+
==================== START: .bmad-core/agents/architect.md ====================
|
|
42
43
|
# architect
|
|
43
44
|
|
|
44
45
|
CRITICAL: Read the full YAML, start activation to alter your state of being, follow startup section instructions, stay in this being until told to exit this mode:
|
|
@@ -101,9 +102,9 @@ dependencies:
|
|
|
101
102
|
utils:
|
|
102
103
|
- template-format
|
|
103
104
|
```
|
|
104
|
-
==================== END: agents
|
|
105
|
+
==================== END: .bmad-core/agents/architect.md ====================
|
|
105
106
|
|
|
106
|
-
==================== START: tasks
|
|
107
|
+
==================== START: .bmad-core/tasks/create-doc.md ====================
|
|
107
108
|
# Create Document from Template Task
|
|
108
109
|
|
|
109
110
|
## Purpose
|
|
@@ -123,7 +124,7 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
|
|
|
123
124
|
|
|
124
125
|
[[LLM: Check if plan tracking is enabled in core-config.yaml]]
|
|
125
126
|
|
|
126
|
-
- If `workflow.trackProgress: true`, check for active plan using utils
|
|
127
|
+
- If `workflow.trackProgress: true`, check for active plan using .bmad-core/utils/plan-management.md
|
|
127
128
|
- If plan exists and this document creation is part of the plan:
|
|
128
129
|
- Verify this is the expected next step
|
|
129
130
|
- If out of sequence and `enforceSequence: true`, warn user and halt without user override
|
|
@@ -132,7 +133,7 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
|
|
|
132
133
|
|
|
133
134
|
### 1. Identify Template
|
|
134
135
|
|
|
135
|
-
- Load from `
|
|
136
|
+
- Load from `.bmad-core/templates/*.md` or `.bmad-core/templates directory`
|
|
136
137
|
- Agent-specific templates are listed in agent's dependencies
|
|
137
138
|
- If agent has `templates: [prd-tmpl, architecture-tmpl]` for example, then offer to create "PRD" and "Architecture" documents
|
|
138
139
|
|
|
@@ -150,14 +151,14 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
|
|
|
150
151
|
|
|
151
152
|
### 4. Key Execution Patterns
|
|
152
153
|
|
|
153
|
-
**When you see:** `[[LLM: Draft X and immediately execute tasks
|
|
154
|
+
**When you see:** `[[LLM: Draft X and immediately execute .bmad-core/tasks/advanced-elicitation.md]]`
|
|
154
155
|
|
|
155
156
|
- Draft the content
|
|
156
157
|
- Present it to user
|
|
157
158
|
- IMMEDIATELY execute the task
|
|
158
159
|
- Wait for completion before continuing
|
|
159
160
|
|
|
160
|
-
**When you see:** `[[LLM: After section completion, apply tasks
|
|
161
|
+
**When you see:** `[[LLM: After section completion, apply .bmad-core/tasks/Y.md]]`
|
|
161
162
|
|
|
162
163
|
- Finish the section
|
|
163
164
|
- STOP and execute the task
|
|
@@ -195,9 +196,9 @@ Generate documents from templates by EXECUTING (not just reading) embedded instr
|
|
|
195
196
|
## Remember
|
|
196
197
|
|
|
197
198
|
Templates contain precise instructions for a reason. Follow them exactly to ensure document quality and completeness.
|
|
198
|
-
==================== END: tasks
|
|
199
|
+
==================== END: .bmad-core/tasks/create-doc.md ====================
|
|
199
200
|
|
|
200
|
-
==================== START: tasks
|
|
201
|
+
==================== START: .bmad-core/tasks/create-deep-research-prompt.md ====================
|
|
201
202
|
# Create Deep Research Prompt Task
|
|
202
203
|
|
|
203
204
|
This task helps create comprehensive research prompts for various types of deep analysis. It can process inputs from brainstorming sessions, project briefs, market research, or specific research questions to generate targeted prompts for deeper investigation.
|
|
@@ -499,9 +500,9 @@ Present these numbered options to the user:
|
|
|
499
500
|
- Balance comprehensiveness with focus
|
|
500
501
|
- Document assumptions and limitations clearly
|
|
501
502
|
- Plan for iterative refinement based on initial findings
|
|
502
|
-
==================== END: tasks
|
|
503
|
+
==================== END: .bmad-core/tasks/create-deep-research-prompt.md ====================
|
|
503
504
|
|
|
504
|
-
==================== START: tasks
|
|
505
|
+
==================== START: .bmad-core/tasks/document-project.md ====================
|
|
505
506
|
# Document an Existing Project
|
|
506
507
|
|
|
507
508
|
## Purpose
|
|
@@ -819,16 +820,16 @@ Apply the advanced elicitation task after major sections to refine based on user
|
|
|
819
820
|
- Documents technical debt, workarounds, and constraints honestly
|
|
820
821
|
- For brownfield projects with PRD: Provides clear enhancement impact analysis
|
|
821
822
|
- The goal is PRACTICAL documentation for AI agents doing real work
|
|
822
|
-
==================== END: tasks
|
|
823
|
+
==================== END: .bmad-core/tasks/document-project.md ====================
|
|
823
824
|
|
|
824
|
-
==================== START: tasks
|
|
825
|
+
==================== START: .bmad-core/tasks/execute-checklist.md ====================
|
|
825
826
|
# Checklist Validation Task
|
|
826
827
|
|
|
827
828
|
This task provides instructions for validating documentation against checklists. The agent MUST follow these instructions to ensure thorough and systematic validation of documents.
|
|
828
829
|
|
|
829
830
|
## Available Checklists
|
|
830
831
|
|
|
831
|
-
If the user asks or does not specify a specific checklist, list the checklists available to the agent persona. If the task is being run not with a specific agent, tell the user to check the
|
|
832
|
+
If the user asks or does not specify a specific checklist, list the checklists available to the agent persona. If the task is being run not with a specific agent, tell the user to check the .bmad-core/checklists folder to select the appropriate one to run.
|
|
832
833
|
|
|
833
834
|
## Instructions
|
|
834
835
|
|
|
@@ -837,7 +838,7 @@ If the user asks or does not specify a specific checklist, list the checklists a
|
|
|
837
838
|
- If user or the task being run provides a checklist name:
|
|
838
839
|
- Try fuzzy matching (e.g. "architecture checklist" -> "architect-checklist")
|
|
839
840
|
- If multiple matches found, ask user to clarify
|
|
840
|
-
- Load the appropriate checklist from
|
|
841
|
+
- Load the appropriate checklist from .bmad-core/checklists/
|
|
841
842
|
- If no checklist specified:
|
|
842
843
|
- Ask the user which checklist they want to use
|
|
843
844
|
- Present the available options from the files in the checklists folder
|
|
@@ -915,9 +916,9 @@ The LLM will:
|
|
|
915
916
|
- Execute the complete checklist validation
|
|
916
917
|
- Present a final report with pass/fail rates and key findings
|
|
917
918
|
- Offer to provide detailed analysis of any section, especially those with warnings or failures
|
|
918
|
-
==================== END: tasks
|
|
919
|
+
==================== END: .bmad-core/tasks/execute-checklist.md ====================
|
|
919
920
|
|
|
920
|
-
==================== START: templates
|
|
921
|
+
==================== START: .bmad-core/templates/architecture-tmpl.md ====================
|
|
921
922
|
# {{Project Name}} Architecture Document
|
|
922
923
|
|
|
923
924
|
[[LLM: If available, review any provided relevant documents to gather all relevant context before beginning. If at a minimum you cannot local `docs/prd.md` ask the user what docs will provide the basis for the architecture.]]
|
|
@@ -928,7 +929,7 @@ The LLM will:
|
|
|
928
929
|
|
|
929
930
|
[[LLM: This section establishes the document's purpose and scope. Keep the content below but ensure project name is properly substituted.
|
|
930
931
|
|
|
931
|
-
After presenting this section, apply
|
|
932
|
+
After presenting this section, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
932
933
|
|
|
933
934
|
This document outlines the overall project architecture for {{Project Name}}, including backend systems, shared services, and non-UI specific concerns. Its primary goal is to serve as the guiding architectural blueprint for AI-driven development, ensuring consistency and adherence to chosen patterns and technologies.
|
|
934
935
|
|
|
@@ -973,7 +974,7 @@ If the project includes a significant user interface, a separate Frontend Archit
|
|
|
973
974
|
|
|
974
975
|
Document the decision here before proceeding with the architecture design. In none, just say N/A
|
|
975
976
|
|
|
976
|
-
After presenting this starter template section, apply
|
|
977
|
+
After presenting this starter template section, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
977
978
|
|
|
978
979
|
### Change Log
|
|
979
980
|
|
|
@@ -984,7 +985,7 @@ After presenting this starter template section, apply `tasks#advanced-elicitatio
|
|
|
984
985
|
|
|
985
986
|
## High Level Architecture
|
|
986
987
|
|
|
987
|
-
[[LLM: This section contains multiple subsections that establish the foundation of the architecture. Present all subsections together (Introduction, Technical Summary, High Level Overview, Project Diagram, and Architectural Patterns), then apply
|
|
988
|
+
[[LLM: This section contains multiple subsections that establish the foundation of the architecture. Present all subsections together (Introduction, Technical Summary, High Level Overview, Project Diagram, and Architectural Patterns), then apply `.bmad-core/tasks/advanced-elicitation.md` protocol to the complete High Level Architecture section. The user can choose to refine the entire section or specific subsections.]]
|
|
988
989
|
|
|
989
990
|
### Technical Summary
|
|
990
991
|
|
|
@@ -1006,7 +1007,7 @@ After presenting this starter template section, apply `tasks#advanced-elicitatio
|
|
|
1006
1007
|
4. Primary user interaction flow or data flow at a conceptual level
|
|
1007
1008
|
5. Key architectural decisions and their rationale
|
|
1008
1009
|
|
|
1009
|
-
After presenting this section, apply
|
|
1010
|
+
After presenting this section, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1010
1011
|
|
|
1011
1012
|
### High Level Project Diagram
|
|
1012
1013
|
|
|
@@ -1020,7 +1021,7 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
|
|
|
1020
1021
|
|
|
1021
1022
|
Use appropriate Mermaid diagram type (graph TD, C4, sequence) based on what best represents the architecture
|
|
1022
1023
|
|
|
1023
|
-
After presenting the diagram, apply
|
|
1024
|
+
After presenting the diagram, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1024
1025
|
|
|
1025
1026
|
### Architectural and Design Patterns
|
|
1026
1027
|
|
|
@@ -1052,13 +1053,13 @@ Common patterns to consider:
|
|
|
1052
1053
|
|
|
1053
1054
|
@{/example}
|
|
1054
1055
|
|
|
1055
|
-
[[LLM: After presenting the patterns, apply
|
|
1056
|
+
[[LLM: After presenting the patterns, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1056
1057
|
|
|
1057
1058
|
## Tech Stack
|
|
1058
1059
|
|
|
1059
1060
|
[[LLM: This is the DEFINITIVE technology selection section. Work with the user to make specific choices:
|
|
1060
1061
|
|
|
1061
|
-
1. Review PRD technical assumptions and any preferences from
|
|
1062
|
+
1. Review PRD technical assumptions and any preferences from `.bmad-core/data/technical-preferences.yaml` or an attached `technical-preferences`
|
|
1062
1063
|
2. For each category, present 2-3 viable options with pros/cons
|
|
1063
1064
|
3. Make a clear recommendation based on project needs
|
|
1064
1065
|
4. Get explicit user approval for each selection
|
|
@@ -1074,7 +1075,7 @@ Key decisions to finalize - before displaying the table, ensure you are aware of
|
|
|
1074
1075
|
- Database and storage solutions - if unclear suggest sql or nosql or other types depending on the project and depending on cloud provider offer a suggestion
|
|
1075
1076
|
- Development tools
|
|
1076
1077
|
|
|
1077
|
-
Upon render of the table, ensure the user is aware of the importance of this sections choices, should also look for gaps or disagreements with anything, ask for any clarifications if something is unclear why its in the list, and also right away apply
|
|
1078
|
+
Upon render of the table, ensure the user is aware of the importance of this sections choices, should also look for gaps or disagreements with anything, ask for any clarifications if something is unclear why its in the list, and also right away apply `.bmad-core/tasks/advanced-elicitation.md` display - this statement and the options should be rendered and then prompt right all before allowing user input.]]
|
|
1078
1079
|
|
|
1079
1080
|
### Cloud Infrastructure
|
|
1080
1081
|
|
|
@@ -1118,7 +1119,7 @@ Upon render of the table, ensure the user is aware of the importance of this sec
|
|
|
1118
1119
|
|
|
1119
1120
|
Create a clear conceptual model before moving to database schema.
|
|
1120
1121
|
|
|
1121
|
-
After presenting all data models, apply
|
|
1122
|
+
After presenting all data models, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1122
1123
|
|
|
1123
1124
|
<<REPEAT: data_model>>
|
|
1124
1125
|
|
|
@@ -1152,7 +1153,7 @@ After presenting all data models, apply `tasks#advanced-elicitation` protocol]]
|
|
|
1152
1153
|
- Technology specifics based on tech stack choices
|
|
1153
1154
|
|
|
1154
1155
|
5. Create component diagrams where helpful
|
|
1155
|
-
6. After presenting all components, apply
|
|
1156
|
+
6. After presenting all components, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1156
1157
|
|
|
1157
1158
|
<<REPEAT: component>>
|
|
1158
1159
|
|
|
@@ -1179,7 +1180,7 @@ After presenting all data models, apply `tasks#advanced-elicitation` protocol]]
|
|
|
1179
1180
|
- Sequence diagrams for complex interactions
|
|
1180
1181
|
Choose the most appropriate for clarity
|
|
1181
1182
|
|
|
1182
|
-
After presenting the diagrams, apply
|
|
1183
|
+
After presenting the diagrams, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1183
1184
|
|
|
1184
1185
|
## External APIs
|
|
1185
1186
|
|
|
@@ -1233,7 +1234,7 @@ If no external APIs are needed, state this explicitly and skip to next section.]
|
|
|
1233
1234
|
|
|
1234
1235
|
^^/CONDITION: has_external_apis^^
|
|
1235
1236
|
|
|
1236
|
-
[[LLM: After presenting external APIs (or noting their absence), apply
|
|
1237
|
+
[[LLM: After presenting external APIs (or noting their absence), apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1237
1238
|
|
|
1238
1239
|
## Core Workflows
|
|
1239
1240
|
|
|
@@ -1247,7 +1248,7 @@ If no external APIs are needed, state this explicitly and skip to next section.]
|
|
|
1247
1248
|
|
|
1248
1249
|
Focus on workflows that clarify architecture decisions or complex interactions.
|
|
1249
1250
|
|
|
1250
|
-
After presenting the workflow diagrams, apply
|
|
1251
|
+
After presenting the workflow diagrams, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1251
1252
|
|
|
1252
1253
|
## REST API Spec
|
|
1253
1254
|
|
|
@@ -1281,7 +1282,7 @@ servers:
|
|
|
1281
1282
|
|
|
1282
1283
|
^^/CONDITION: has_rest_api^^
|
|
1283
1284
|
|
|
1284
|
-
[[LLM: After presenting the REST API spec (or noting its absence if not applicable), apply
|
|
1285
|
+
[[LLM: After presenting the REST API spec (or noting its absence if not applicable), apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1285
1286
|
|
|
1286
1287
|
## Database Schema
|
|
1287
1288
|
|
|
@@ -1295,7 +1296,7 @@ servers:
|
|
|
1295
1296
|
|
|
1296
1297
|
Present schema in format appropriate to database type (SQL DDL, JSON schema, etc.)
|
|
1297
1298
|
|
|
1298
|
-
After presenting the database schema, apply
|
|
1299
|
+
After presenting the database schema, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1299
1300
|
|
|
1300
1301
|
## Source Tree
|
|
1301
1302
|
|
|
@@ -1310,7 +1311,7 @@ After presenting the database schema, apply `tasks#advanced-elicitation` protoco
|
|
|
1310
1311
|
|
|
1311
1312
|
Adapt the structure based on project needs. For monorepos, show service separation. For serverless, show function organization. Include language-specific conventions.
|
|
1312
1313
|
|
|
1313
|
-
After presenting the structure, apply
|
|
1314
|
+
After presenting the structure, apply `.bmad-core/tasks/advanced-elicitation.md` protocol to refine based on user feedback.]]
|
|
1314
1315
|
|
|
1315
1316
|
```plaintext
|
|
1316
1317
|
{{project-root}}/
|
|
@@ -1353,7 +1354,7 @@ project-root/
|
|
|
1353
1354
|
@{/example}
|
|
1354
1355
|
```
|
|
1355
1356
|
|
|
1356
|
-
[[LLM: After presenting the source tree structure, apply
|
|
1357
|
+
[[LLM: After presenting the source tree structure, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1357
1358
|
|
|
1358
1359
|
## Infrastructure and Deployment
|
|
1359
1360
|
|
|
@@ -1398,7 +1399,7 @@ Get user input on deployment preferences and CI/CD tool choices.]]
|
|
|
1398
1399
|
- **Trigger Conditions:** {{rollback_triggers}}
|
|
1399
1400
|
- **Recovery Time Objective:** {{rto}}
|
|
1400
1401
|
|
|
1401
|
-
[[LLM: After presenting the infrastructure and deployment section, apply
|
|
1402
|
+
[[LLM: After presenting the infrastructure and deployment section, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1402
1403
|
|
|
1403
1404
|
## Error Handling Strategy
|
|
1404
1405
|
|
|
@@ -1449,7 +1450,7 @@ This section guides both AI and human developers in consistent error handling.]]
|
|
|
1449
1450
|
- **Compensation Logic:** {{compensation_patterns}}
|
|
1450
1451
|
- **Idempotency:** {{idempotency_approach}}
|
|
1451
1452
|
|
|
1452
|
-
[[LLM: After presenting the error handling strategy, apply
|
|
1453
|
+
[[LLM: After presenting the error handling strategy, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1453
1454
|
|
|
1454
1455
|
## Coding Standards
|
|
1455
1456
|
|
|
@@ -1510,7 +1511,7 @@ Avoid obvious rules like "use SOLID principles" or "write clean code"]]
|
|
|
1510
1511
|
|
|
1511
1512
|
^^/CONDITION: has_language_specifics^^
|
|
1512
1513
|
|
|
1513
|
-
[[LLM: After presenting the coding standards, apply
|
|
1514
|
+
[[LLM: After presenting the coding standards, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1514
1515
|
|
|
1515
1516
|
## Test Strategy and Standards
|
|
1516
1517
|
|
|
@@ -1523,7 +1524,7 @@ Avoid obvious rules like "use SOLID principles" or "write clean code"]]
|
|
|
1523
1524
|
5. Determine integration test infrastructure
|
|
1524
1525
|
6. Plan for test data and external dependencies
|
|
1525
1526
|
|
|
1526
|
-
Note: Basic info goes in Coding Standards for dev agent. This detailed section is for QA agent and team reference. Apply
|
|
1527
|
+
Note: Basic info goes in Coding Standards for dev agent. This detailed section is for QA agent and team reference. Apply `.bmad-core/tasks/advanced-elicitation.md` after initial draft.]]
|
|
1527
1528
|
|
|
1528
1529
|
### Testing Philosophy
|
|
1529
1530
|
|
|
@@ -1584,7 +1585,7 @@ Note: Basic info goes in Coding Standards for dev agent. This detailed section i
|
|
|
1584
1585
|
- **Performance Tests:** {{perf_test_approach}}
|
|
1585
1586
|
- **Security Tests:** {{security_test_approach}}
|
|
1586
1587
|
|
|
1587
|
-
[[LLM: After presenting the test strategy section, apply
|
|
1588
|
+
[[LLM: After presenting the test strategy section, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1588
1589
|
|
|
1589
1590
|
## Security
|
|
1590
1591
|
|
|
@@ -1648,7 +1649,7 @@ Note: Basic info goes in Coding Standards for dev agent. This detailed section i
|
|
|
1648
1649
|
- **DAST Tool:** {{dynamic_analysis}}
|
|
1649
1650
|
- **Penetration Testing:** {{pentest_schedule}}
|
|
1650
1651
|
|
|
1651
|
-
[[LLM: After presenting the security section, apply
|
|
1652
|
+
[[LLM: After presenting the security section, apply `.bmad-core/tasks/advanced-elicitation.md` protocol]]
|
|
1652
1653
|
|
|
1653
1654
|
## Checklist Results Report
|
|
1654
1655
|
|
|
@@ -1694,9 +1695,9 @@ Note: Basic info goes in Coding Standards for dev agent. This detailed section i
|
|
|
1694
1695
|
- Reference to this architecture and coding standards
|
|
1695
1696
|
- First epic/story to implement
|
|
1696
1697
|
- Key technical decisions to follow]]
|
|
1697
|
-
==================== END: templates
|
|
1698
|
+
==================== END: .bmad-core/templates/architecture-tmpl.md ====================
|
|
1698
1699
|
|
|
1699
|
-
==================== START: templates
|
|
1700
|
+
==================== START: .bmad-core/templates/front-end-architecture-tmpl.md ====================
|
|
1700
1701
|
# {{Project Name}} Frontend Architecture Document
|
|
1701
1702
|
|
|
1702
1703
|
[[LLM: The default path and filename unless specified is docs/ui-architecture.md]]
|
|
@@ -1872,9 +1873,9 @@ Document the starter template decision and any constraints it imposes before pro
|
|
|
1872
1873
|
- Key import patterns
|
|
1873
1874
|
- File naming conventions
|
|
1874
1875
|
- Project-specific patterns and utilities]]
|
|
1875
|
-
==================== END: templates
|
|
1876
|
+
==================== END: .bmad-core/templates/front-end-architecture-tmpl.md ====================
|
|
1876
1877
|
|
|
1877
|
-
==================== START: templates
|
|
1878
|
+
==================== START: .bmad-core/templates/fullstack-architecture-tmpl.md ====================
|
|
1878
1879
|
# {{Project Name}} Fullstack Architecture Document
|
|
1879
1880
|
|
|
1880
1881
|
[[LLM: The default path and filename unless specified is docs/architecture.md]]
|
|
@@ -2893,9 +2894,9 @@ After presenting this section, apply `tasks#advanced-elicitation` protocol]]
|
|
|
2893
2894
|
## Checklist Results Report
|
|
2894
2895
|
|
|
2895
2896
|
[[LLM: Before running the checklist, offer to output the full architecture document. Once user confirms, execute the `architect-checklist` and populate results here.]]
|
|
2896
|
-
==================== END: templates
|
|
2897
|
+
==================== END: .bmad-core/templates/fullstack-architecture-tmpl.md ====================
|
|
2897
2898
|
|
|
2898
|
-
==================== START: templates
|
|
2899
|
+
==================== START: .bmad-core/templates/brownfield-architecture-tmpl.md ====================
|
|
2899
2900
|
# {{Project Name}} Brownfield Enhancement Architecture
|
|
2900
2901
|
|
|
2901
2902
|
[[LLM: The default path and filename unless specified is docs/architecture.md]]
|
|
@@ -3440,9 +3441,9 @@ Present risk assessment and apply `tasks#advanced-elicitation` protocol]]
|
|
|
3440
3441
|
- Key technical decisions based on real project constraints
|
|
3441
3442
|
- Existing system compatibility requirements with specific verification steps
|
|
3442
3443
|
- Clear sequencing of implementation to minimize risk to existing functionality]]
|
|
3443
|
-
==================== END: templates
|
|
3444
|
+
==================== END: .bmad-core/templates/brownfield-architecture-tmpl.md ====================
|
|
3444
3445
|
|
|
3445
|
-
==================== START: checklists
|
|
3446
|
+
==================== START: .bmad-core/checklists/architect-checklist.md ====================
|
|
3446
3447
|
# Architect Solution Validation Checklist
|
|
3447
3448
|
|
|
3448
3449
|
This checklist serves as a comprehensive framework for the Architect to validate the technical design and architecture before development execution. The Architect should systematically work through each item, ensuring the architecture is robust, scalable, secure, and aligned with the product requirements.
|
|
@@ -3886,15 +3887,15 @@ Now that you've completed the checklist, generate a comprehensive validation rep
|
|
|
3886
3887
|
- Component design clarity
|
|
3887
3888
|
|
|
3888
3889
|
After presenting the report, ask the user if they would like detailed analysis of any specific section, especially those with warnings or failures.]]
|
|
3889
|
-
==================== END: checklists
|
|
3890
|
+
==================== END: .bmad-core/checklists/architect-checklist.md ====================
|
|
3890
3891
|
|
|
3891
|
-
==================== START: data
|
|
3892
|
+
==================== START: .bmad-core/data/technical-preferences.md ====================
|
|
3892
3893
|
# User-Defined Preferred Patterns and Preferences
|
|
3893
3894
|
|
|
3894
3895
|
None Listed
|
|
3895
|
-
==================== END: data
|
|
3896
|
+
==================== END: .bmad-core/data/technical-preferences.md ====================
|
|
3896
3897
|
|
|
3897
|
-
==================== START: utils
|
|
3898
|
+
==================== START: .bmad-core/utils/template-format.md ====================
|
|
3898
3899
|
# Template Format Conventions
|
|
3899
3900
|
|
|
3900
3901
|
Templates in the BMad method use standardized markup for AI processing. These conventions ensure consistent document generation.
|
|
@@ -3921,4 +3922,4 @@ Templates in the BMad method use standardized markup for AI processing. These co
|
|
|
3921
3922
|
- Template elements are for AI processing only
|
|
3922
3923
|
- Focus on faithful template execution and clean output
|
|
3923
3924
|
- All template-specific instructions are embedded within templates
|
|
3924
|
-
==================== END: utils
|
|
3925
|
+
==================== END: .bmad-core/utils/template-format.md ====================
|