siesa-agents 1.0.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/README.md +84 -0
- package/bin/install.js +155 -0
- package/bin/prepare-publish.js +27 -0
- package/bin/restore-folders.js +27 -0
- package/bmad-core/agent-teams/team-all.yaml +15 -0
- package/bmad-core/agent-teams/team-fullstack.yaml +19 -0
- package/bmad-core/agent-teams/team-ide-minimal.yaml +11 -0
- package/bmad-core/agent-teams/team-no-ui.yaml +14 -0
- package/bmad-core/agents/analyst.md +84 -0
- package/bmad-core/agents/architect.md +94 -0
- package/bmad-core/agents/backend-agent.md +190 -0
- package/bmad-core/agents/bmad-master.md +110 -0
- package/bmad-core/agents/bmad-orchestrator.md +147 -0
- package/bmad-core/agents/dev.md +81 -0
- package/bmad-core/agents/frontend-agent.md +169 -0
- package/bmad-core/agents/pm.md +84 -0
- package/bmad-core/agents/po.md +79 -0
- package/bmad-core/agents/qa.md +91 -0
- package/bmad-core/agents/sm.md +65 -0
- package/bmad-core/agents/ux-expert.md +69 -0
- package/bmad-core/checklists/architect-checklist.md +440 -0
- package/bmad-core/checklists/backend-checklist.md +143 -0
- package/bmad-core/checklists/change-checklist.md +184 -0
- package/bmad-core/checklists/frontend-checklist.md +106 -0
- package/bmad-core/checklists/pm-checklist.md +372 -0
- package/bmad-core/checklists/po-master-checklist.md +434 -0
- package/bmad-core/checklists/story-dod-checklist.md +96 -0
- package/bmad-core/checklists/story-draft-checklist.md +155 -0
- package/bmad-core/core-config.yaml +22 -0
- package/bmad-core/data/backend-standards.md +440 -0
- package/bmad-core/data/bmad-kb.md +809 -0
- package/bmad-core/data/brainstorming-techniques.md +38 -0
- package/bmad-core/data/elicitation-methods.md +156 -0
- package/bmad-core/data/frontend-standards.md +324 -0
- package/bmad-core/data/technical-preferences.md +5 -0
- package/bmad-core/data/test-levels-framework.md +148 -0
- package/bmad-core/data/test-priorities-matrix.md +174 -0
- package/bmad-core/enhanced-ide-development-workflow.md +248 -0
- package/bmad-core/install-manifest.yaml +230 -0
- package/bmad-core/tasks/advanced-elicitation.md +119 -0
- package/bmad-core/tasks/apply-qa-fixes.md +150 -0
- package/bmad-core/tasks/brownfield-create-epic.md +162 -0
- package/bmad-core/tasks/brownfield-create-story.md +149 -0
- package/bmad-core/tasks/correct-course.md +72 -0
- package/bmad-core/tasks/create-brownfield-story.md +314 -0
- package/bmad-core/tasks/create-component.md +103 -0
- package/bmad-core/tasks/create-deep-research-prompt.md +280 -0
- package/bmad-core/tasks/create-doc.md +103 -0
- package/bmad-core/tasks/create-entity.md +133 -0
- package/bmad-core/tasks/create-feature.md +91 -0
- package/bmad-core/tasks/create-next-story.md +114 -0
- package/bmad-core/tasks/create-service.md +118 -0
- package/bmad-core/tasks/create-use-case.md +141 -0
- package/bmad-core/tasks/document-project.md +345 -0
- package/bmad-core/tasks/execute-checklist.md +88 -0
- package/bmad-core/tasks/facilitate-brainstorming-session.md +138 -0
- package/bmad-core/tasks/generate-ai-frontend-prompt.md +53 -0
- package/bmad-core/tasks/index-docs.md +175 -0
- package/bmad-core/tasks/kb-mode-interaction.md +77 -0
- package/bmad-core/tasks/nfr-assess.md +345 -0
- package/bmad-core/tasks/qa-gate.md +163 -0
- package/bmad-core/tasks/review-story.md +316 -0
- package/bmad-core/tasks/risk-profile.md +355 -0
- package/bmad-core/tasks/scaffold-backend.md +111 -0
- package/bmad-core/tasks/scaffold-frontend.md +79 -0
- package/bmad-core/tasks/shard-doc.md +187 -0
- package/bmad-core/tasks/test-design.md +176 -0
- package/bmad-core/tasks/trace-requirements.md +266 -0
- package/bmad-core/tasks/validate-next-story.md +136 -0
- package/bmad-core/templates/architecture-tmpl.yaml +662 -0
- package/bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
- package/bmad-core/templates/brownfield-architecture-tmpl.yaml +477 -0
- package/bmad-core/templates/brownfield-prd-tmpl.yaml +281 -0
- package/bmad-core/templates/competitor-analysis-tmpl.yaml +307 -0
- package/bmad-core/templates/front-end-architecture-tmpl.yaml +258 -0
- package/bmad-core/templates/front-end-spec-tmpl.yaml +350 -0
- package/bmad-core/templates/fullstack-architecture-tmpl.yaml +824 -0
- package/bmad-core/templates/market-research-tmpl.yaml +253 -0
- package/bmad-core/templates/prd-tmpl.yaml +203 -0
- package/bmad-core/templates/project-brief-tmpl.yaml +222 -0
- package/bmad-core/templates/qa-gate-tmpl.yaml +103 -0
- package/bmad-core/templates/story-tmpl.yaml +138 -0
- package/bmad-core/user-guide.md +530 -0
- package/bmad-core/utils/bmad-doc-template.md +327 -0
- package/bmad-core/utils/workflow-management.md +71 -0
- package/bmad-core/workflows/brownfield-fullstack.yaml +298 -0
- package/bmad-core/workflows/brownfield-service.yaml +188 -0
- package/bmad-core/workflows/brownfield-ui.yaml +198 -0
- package/bmad-core/workflows/greenfield-fullstack.yaml +241 -0
- package/bmad-core/workflows/greenfield-service.yaml +207 -0
- package/bmad-core/workflows/greenfield-ui.yaml +236 -0
- package/bmad-core/working-in-the-brownfield.md +606 -0
- package/github/b-mad-expert.md +742 -0
- package/github/chatmodes/analyst.chatmode.md +89 -0
- package/github/chatmodes/architect.chatmode.md +97 -0
- package/github/chatmodes/backend.chatmode.md +195 -0
- package/github/chatmodes/bmad-master.chatmode.md +115 -0
- package/github/chatmodes/bmad-orchestrator.chatmode.md +152 -0
- package/github/chatmodes/dev.chatmode.md +86 -0
- package/github/chatmodes/frontend.chatmode.md +158 -0
- package/github/chatmodes/pm.chatmode.md +89 -0
- package/github/chatmodes/po.chatmode.md +84 -0
- package/github/chatmodes/qa.chatmode.md +96 -0
- package/github/chatmodes/sm.chatmode.md +70 -0
- package/github/chatmodes/ux-expert.chatmode.md +74 -0
- package/index.js +11 -0
- package/package.json +41 -0
- package/vscode/mcp.json +11 -0
- package/vscode/settings.json +13 -0
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
<!-- Powered by BMAD™ Core -->
|
|
2
|
+
|
|
3
|
+
# Test Priorities Matrix
|
|
4
|
+
|
|
5
|
+
Guide for prioritizing test scenarios based on risk, criticality, and business impact.
|
|
6
|
+
|
|
7
|
+
## Priority Levels
|
|
8
|
+
|
|
9
|
+
### P0 - Critical (Must Test)
|
|
10
|
+
|
|
11
|
+
**Criteria:**
|
|
12
|
+
|
|
13
|
+
- Revenue-impacting functionality
|
|
14
|
+
- Security-critical paths
|
|
15
|
+
- Data integrity operations
|
|
16
|
+
- Regulatory compliance requirements
|
|
17
|
+
- Previously broken functionality (regression prevention)
|
|
18
|
+
|
|
19
|
+
**Examples:**
|
|
20
|
+
|
|
21
|
+
- Payment processing
|
|
22
|
+
- Authentication/authorization
|
|
23
|
+
- User data creation/deletion
|
|
24
|
+
- Financial calculations
|
|
25
|
+
- GDPR/privacy compliance
|
|
26
|
+
|
|
27
|
+
**Testing Requirements:**
|
|
28
|
+
|
|
29
|
+
- Comprehensive coverage at all levels
|
|
30
|
+
- Both happy and unhappy paths
|
|
31
|
+
- Edge cases and error scenarios
|
|
32
|
+
- Performance under load
|
|
33
|
+
|
|
34
|
+
### P1 - High (Should Test)
|
|
35
|
+
|
|
36
|
+
**Criteria:**
|
|
37
|
+
|
|
38
|
+
- Core user journeys
|
|
39
|
+
- Frequently used features
|
|
40
|
+
- Features with complex logic
|
|
41
|
+
- Integration points between systems
|
|
42
|
+
- Features affecting user experience
|
|
43
|
+
|
|
44
|
+
**Examples:**
|
|
45
|
+
|
|
46
|
+
- User registration flow
|
|
47
|
+
- Search functionality
|
|
48
|
+
- Data import/export
|
|
49
|
+
- Notification systems
|
|
50
|
+
- Dashboard displays
|
|
51
|
+
|
|
52
|
+
**Testing Requirements:**
|
|
53
|
+
|
|
54
|
+
- Primary happy paths required
|
|
55
|
+
- Key error scenarios
|
|
56
|
+
- Critical edge cases
|
|
57
|
+
- Basic performance validation
|
|
58
|
+
|
|
59
|
+
### P2 - Medium (Nice to Test)
|
|
60
|
+
|
|
61
|
+
**Criteria:**
|
|
62
|
+
|
|
63
|
+
- Secondary features
|
|
64
|
+
- Admin functionality
|
|
65
|
+
- Reporting features
|
|
66
|
+
- Configuration options
|
|
67
|
+
- UI polish and aesthetics
|
|
68
|
+
|
|
69
|
+
**Examples:**
|
|
70
|
+
|
|
71
|
+
- Admin settings panels
|
|
72
|
+
- Report generation
|
|
73
|
+
- Theme customization
|
|
74
|
+
- Help documentation
|
|
75
|
+
- Analytics tracking
|
|
76
|
+
|
|
77
|
+
**Testing Requirements:**
|
|
78
|
+
|
|
79
|
+
- Happy path coverage
|
|
80
|
+
- Basic error handling
|
|
81
|
+
- Can defer edge cases
|
|
82
|
+
|
|
83
|
+
### P3 - Low (Test if Time Permits)
|
|
84
|
+
|
|
85
|
+
**Criteria:**
|
|
86
|
+
|
|
87
|
+
- Rarely used features
|
|
88
|
+
- Nice-to-have functionality
|
|
89
|
+
- Cosmetic issues
|
|
90
|
+
- Non-critical optimizations
|
|
91
|
+
|
|
92
|
+
**Examples:**
|
|
93
|
+
|
|
94
|
+
- Advanced preferences
|
|
95
|
+
- Legacy feature support
|
|
96
|
+
- Experimental features
|
|
97
|
+
- Debug utilities
|
|
98
|
+
|
|
99
|
+
**Testing Requirements:**
|
|
100
|
+
|
|
101
|
+
- Smoke tests only
|
|
102
|
+
- Can rely on manual testing
|
|
103
|
+
- Document known limitations
|
|
104
|
+
|
|
105
|
+
## Risk-Based Priority Adjustments
|
|
106
|
+
|
|
107
|
+
### Increase Priority When:
|
|
108
|
+
|
|
109
|
+
- High user impact (affects >50% of users)
|
|
110
|
+
- High financial impact (>$10K potential loss)
|
|
111
|
+
- Security vulnerability potential
|
|
112
|
+
- Compliance/legal requirements
|
|
113
|
+
- Customer-reported issues
|
|
114
|
+
- Complex implementation (>500 LOC)
|
|
115
|
+
- Multiple system dependencies
|
|
116
|
+
|
|
117
|
+
### Decrease Priority When:
|
|
118
|
+
|
|
119
|
+
- Feature flag protected
|
|
120
|
+
- Gradual rollout planned
|
|
121
|
+
- Strong monitoring in place
|
|
122
|
+
- Easy rollback capability
|
|
123
|
+
- Low usage metrics
|
|
124
|
+
- Simple implementation
|
|
125
|
+
- Well-isolated component
|
|
126
|
+
|
|
127
|
+
## Test Coverage by Priority
|
|
128
|
+
|
|
129
|
+
| Priority | Unit Coverage | Integration Coverage | E2E Coverage |
|
|
130
|
+
| -------- | ------------- | -------------------- | ------------------ |
|
|
131
|
+
| P0 | >90% | >80% | All critical paths |
|
|
132
|
+
| P1 | >80% | >60% | Main happy paths |
|
|
133
|
+
| P2 | >60% | >40% | Smoke tests |
|
|
134
|
+
| P3 | Best effort | Best effort | Manual only |
|
|
135
|
+
|
|
136
|
+
## Priority Assignment Rules
|
|
137
|
+
|
|
138
|
+
1. **Start with business impact** - What happens if this fails?
|
|
139
|
+
2. **Consider probability** - How likely is failure?
|
|
140
|
+
3. **Factor in detectability** - Would we know if it failed?
|
|
141
|
+
4. **Account for recoverability** - Can we fix it quickly?
|
|
142
|
+
|
|
143
|
+
## Priority Decision Tree
|
|
144
|
+
|
|
145
|
+
```
|
|
146
|
+
Is it revenue-critical?
|
|
147
|
+
├─ YES → P0
|
|
148
|
+
└─ NO → Does it affect core user journey?
|
|
149
|
+
├─ YES → Is it high-risk?
|
|
150
|
+
│ ├─ YES → P0
|
|
151
|
+
│ └─ NO → P1
|
|
152
|
+
└─ NO → Is it frequently used?
|
|
153
|
+
├─ YES → P1
|
|
154
|
+
└─ NO → Is it customer-facing?
|
|
155
|
+
├─ YES → P2
|
|
156
|
+
└─ NO → P3
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
## Test Execution Order
|
|
160
|
+
|
|
161
|
+
1. Execute P0 tests first (fail fast on critical issues)
|
|
162
|
+
2. Execute P1 tests second (core functionality)
|
|
163
|
+
3. Execute P2 tests if time permits
|
|
164
|
+
4. P3 tests only in full regression cycles
|
|
165
|
+
|
|
166
|
+
## Continuous Adjustment
|
|
167
|
+
|
|
168
|
+
Review and adjust priorities based on:
|
|
169
|
+
|
|
170
|
+
- Production incident patterns
|
|
171
|
+
- User feedback and complaints
|
|
172
|
+
- Usage analytics
|
|
173
|
+
- Test failure history
|
|
174
|
+
- Business priority changes
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
# Enhanced IDE Development Workflow
|
|
2
|
+
|
|
3
|
+
This is a simple step-by-step guide to help you efficiently manage your development workflow using the BMad Method. The workflow integrates the Test Architect (QA agent) throughout the development lifecycle to ensure quality, prevent regressions, and maintain high standards. Refer to the **[<ins>User Guide</ins>](user-guide.md)** for any scenario that is not covered here.
|
|
4
|
+
|
|
5
|
+
## Create New Branch
|
|
6
|
+
|
|
7
|
+
1. **Start new branch**
|
|
8
|
+
|
|
9
|
+
## Story Creation (Scrum Master)
|
|
10
|
+
|
|
11
|
+
1. **Start new chat/conversation**
|
|
12
|
+
2. **Load SM agent**
|
|
13
|
+
3. **Execute**: `*draft` (runs create-next-story task)
|
|
14
|
+
4. **Review generated story** in `docs/stories/`
|
|
15
|
+
5. **Update status**: Change from "Draft" to "Approved"
|
|
16
|
+
|
|
17
|
+
## Story Implementation (Developer)
|
|
18
|
+
|
|
19
|
+
1. **Start new chat/conversation**
|
|
20
|
+
2. **Load Dev agent**
|
|
21
|
+
3. **Execute**: `*develop-story {selected-story}` (runs execute-checklist task)
|
|
22
|
+
4. **Review generated report** in `{selected-story}`
|
|
23
|
+
|
|
24
|
+
## Test Architect Integration Throughout Workflow
|
|
25
|
+
|
|
26
|
+
The Test Architect (Quinn) provides comprehensive quality assurance throughout the development lifecycle. Here's how to leverage each capability at the right time.
|
|
27
|
+
|
|
28
|
+
**Command Aliases:** Documentation uses short forms (`*risk`, `*design`, `*nfr`, `*trace`) for the full commands (`*risk-profile`, `*test-design`, `*nfr-assess`, `*trace-requirements`).
|
|
29
|
+
|
|
30
|
+
### Quick Command Reference
|
|
31
|
+
|
|
32
|
+
| **Stage** | **Command** | **Purpose** | **Output** | **Priority** |
|
|
33
|
+
| ------------------------ | ----------- | --------------------------------------- | --------------------------------------------------------------- | --------------------------- |
|
|
34
|
+
| **After Story Approval** | `*risk` | Identify integration & regression risks | `docs/qa/assessments/{epic}.{story}-risk-{YYYYMMDD}.md` | High for complex/brownfield |
|
|
35
|
+
| | `*design` | Create test strategy for dev | `docs/qa/assessments/{epic}.{story}-test-design-{YYYYMMDD}.md` | High for new features |
|
|
36
|
+
| **During Development** | `*trace` | Verify test coverage | `docs/qa/assessments/{epic}.{story}-trace-{YYYYMMDD}.md` | Medium |
|
|
37
|
+
| | `*nfr` | Validate quality attributes | `docs/qa/assessments/{epic}.{story}-nfr-{YYYYMMDD}.md` | High for critical features |
|
|
38
|
+
| **After Development** | `*review` | Comprehensive assessment | QA Results in story + `docs/qa/gates/{epic}.{story}-{slug}.yml` | **Required** |
|
|
39
|
+
| **Post-Review** | `*gate` | Update quality decision | Updated `docs/qa/gates/{epic}.{story}-{slug}.yml` | As needed |
|
|
40
|
+
|
|
41
|
+
### Stage 1: After Story Creation (Before Dev Starts)
|
|
42
|
+
|
|
43
|
+
**RECOMMENDED - Set Developer Up for Success:**
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
# 1. RISK ASSESSMENT (Run FIRST for complex stories)
|
|
47
|
+
@qa *risk {approved-story}
|
|
48
|
+
# Identifies:
|
|
49
|
+
# - Technical debt impact
|
|
50
|
+
# - Integration complexity
|
|
51
|
+
# - Regression potential (1-9 scoring)
|
|
52
|
+
# - Mitigation strategies
|
|
53
|
+
# Critical for: Brownfield, API changes, data migrations
|
|
54
|
+
|
|
55
|
+
# 2. TEST DESIGN (Run SECOND to guide implementation)
|
|
56
|
+
@qa *design {approved-story}
|
|
57
|
+
# Provides:
|
|
58
|
+
# - Test scenarios per acceptance criterion
|
|
59
|
+
# - Test level recommendations (unit/integration/E2E)
|
|
60
|
+
# - Risk-based priorities (P0/P1/P2)
|
|
61
|
+
# - Test data requirements
|
|
62
|
+
# Share with Dev: Include in story comments or attach to ticket
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### Stage 2: During Development (Mid-Implementation Checkpoints)
|
|
66
|
+
|
|
67
|
+
**Developer Self-Service Quality Checks:**
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
# 3. REQUIREMENTS TRACING (Verify coverage mid-development)
|
|
71
|
+
@qa *trace {story-in-progress}
|
|
72
|
+
# Validates:
|
|
73
|
+
# - All acceptance criteria have tests
|
|
74
|
+
# - No missing test scenarios
|
|
75
|
+
# - Appropriate test levels
|
|
76
|
+
# - Given-When-Then documentation clarity
|
|
77
|
+
# Run when: After writing initial tests
|
|
78
|
+
|
|
79
|
+
# 4. NFR VALIDATION (Check quality attributes)
|
|
80
|
+
@qa *nfr {story-in-progress}
|
|
81
|
+
# Assesses:
|
|
82
|
+
# - Security: Authentication, authorization, data protection
|
|
83
|
+
# - Performance: Response times, resource usage
|
|
84
|
+
# - Reliability: Error handling, recovery
|
|
85
|
+
# - Maintainability: Code quality, documentation
|
|
86
|
+
# Run when: Before marking "Ready for Review"
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
### Stage 3: Story Review (Quality Gate Assessment)
|
|
90
|
+
|
|
91
|
+
**REQUIRED - Comprehensive Test Architecture Review:**
|
|
92
|
+
|
|
93
|
+
**Prerequisite:** All tests green locally; lint & type checks pass.
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
# 5. FULL REVIEW (Standard review process)
|
|
97
|
+
@qa *review {completed-story}
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
**What Happens During Review:**
|
|
101
|
+
|
|
102
|
+
1. **Deep Code Analysis**
|
|
103
|
+
- Architecture pattern compliance
|
|
104
|
+
- Code quality and maintainability
|
|
105
|
+
- Security vulnerability scanning
|
|
106
|
+
- Performance bottleneck detection
|
|
107
|
+
|
|
108
|
+
2. **Active Refactoring**
|
|
109
|
+
- Improves code directly when safe
|
|
110
|
+
- Fixes obvious issues immediately
|
|
111
|
+
- Suggests complex refactoring for dev
|
|
112
|
+
|
|
113
|
+
3. **Test Validation**
|
|
114
|
+
- Coverage at all levels (unit/integration/E2E)
|
|
115
|
+
- Test quality (no flaky tests, proper assertions)
|
|
116
|
+
- Regression test adequacy
|
|
117
|
+
|
|
118
|
+
4. **Gate Decision**
|
|
119
|
+
- Creates: `docs/qa/gates/{epic}.{story}-{slug}.yml`
|
|
120
|
+
- Adds: QA Results section to story file
|
|
121
|
+
- Status: PASS/CONCERNS/FAIL/WAIVED
|
|
122
|
+
|
|
123
|
+
### Stage 4: Post-Review (After Addressing Issues)
|
|
124
|
+
|
|
125
|
+
**Update Gate Status After Fixes:**
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
# 6. GATE UPDATE (Document final decision)
|
|
129
|
+
@qa *gate {reviewed-story}
|
|
130
|
+
# Updates: Quality gate with new status
|
|
131
|
+
# Use when: After addressing review feedback
|
|
132
|
+
# Documents: What was fixed, what was waived
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
### Understanding Gate Decisions
|
|
136
|
+
|
|
137
|
+
| **Status** | **Meaning** | **Action Required** | **Can Proceed?** |
|
|
138
|
+
| ------------ | -------------------------------------------- | ----------------------- | ---------------- |
|
|
139
|
+
| **PASS** | All critical requirements met | None | ✅ Yes |
|
|
140
|
+
| **CONCERNS** | Non-critical issues found | Team review recommended | ⚠️ With caution |
|
|
141
|
+
| **FAIL** | Critical issues (security, missing P0 tests) | Must fix | ❌ No |
|
|
142
|
+
| **WAIVED** | Issues acknowledged and accepted | Document reasoning | ✅ With approval |
|
|
143
|
+
|
|
144
|
+
### Risk-Based Testing Strategy
|
|
145
|
+
|
|
146
|
+
The Test Architect uses risk scoring to prioritize testing:
|
|
147
|
+
|
|
148
|
+
| **Risk Score** | **Calculation** | **Testing Priority** | **Gate Impact** |
|
|
149
|
+
| -------------- | ------------------------------ | ------------------------- | ------------------------ |
|
|
150
|
+
| **9** | High probability × High impact | P0 - Must test thoroughly | FAIL if untested |
|
|
151
|
+
| **6** | Medium-high combinations | P1 - Should test well | CONCERNS if gaps |
|
|
152
|
+
| **4** | Medium combinations | P1 - Should test | CONCERNS if notable gaps |
|
|
153
|
+
| **2-3** | Low-medium combinations | P2 - Nice to have | Note in review |
|
|
154
|
+
| **1** | Minimal risk | P2 - Minimal | Note in review |
|
|
155
|
+
|
|
156
|
+
### Special Situations & Best Practices
|
|
157
|
+
|
|
158
|
+
#### High-Risk or Brownfield Stories
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
# ALWAYS run this sequence:
|
|
162
|
+
@qa *risk {story} # First - identify dangers
|
|
163
|
+
@qa *design {story} # Second - plan defense
|
|
164
|
+
# Then during dev:
|
|
165
|
+
@qa *trace {story} # Verify regression coverage
|
|
166
|
+
@qa *nfr {story} # Check performance impact
|
|
167
|
+
# Finally:
|
|
168
|
+
@qa *review {story} # Deep integration analysis
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
#### Complex Integrations
|
|
172
|
+
|
|
173
|
+
- Run `*trace` multiple times during development
|
|
174
|
+
- Focus on integration test coverage
|
|
175
|
+
- Use `*nfr` to validate cross-system performance
|
|
176
|
+
- Review with extra attention to API contracts
|
|
177
|
+
|
|
178
|
+
#### Performance-Critical Features
|
|
179
|
+
|
|
180
|
+
- Run `*nfr` early and often (not just at review)
|
|
181
|
+
- Establish performance baselines before changes
|
|
182
|
+
- Document acceptable performance degradation
|
|
183
|
+
- Consider load testing requirements in `*design`
|
|
184
|
+
|
|
185
|
+
### Test Quality Standards Enforced
|
|
186
|
+
|
|
187
|
+
Quinn ensures all tests meet these standards:
|
|
188
|
+
|
|
189
|
+
- **No Flaky Tests**: Proper async handling, explicit waits
|
|
190
|
+
- **No Hard Waits**: Dynamic strategies only (polling, events)
|
|
191
|
+
- **Stateless**: Tests run independently and in parallel
|
|
192
|
+
- **Self-Cleaning**: Tests manage their own test data
|
|
193
|
+
- **Appropriate Levels**: Unit for logic, integration for interactions, E2E for journeys
|
|
194
|
+
- **Clear Assertions**: Keep assertions in tests, not buried in helpers
|
|
195
|
+
|
|
196
|
+
### Documentation & Audit Trail
|
|
197
|
+
|
|
198
|
+
All Test Architect activities create permanent records:
|
|
199
|
+
|
|
200
|
+
- **Assessment Reports**: Timestamped analysis in `docs/qa/assessments/`
|
|
201
|
+
- **Gate Files**: Decision records in `docs/qa/gates/`
|
|
202
|
+
- **Story Updates**: QA Results sections in story files
|
|
203
|
+
- **Traceability**: Requirements to test mapping maintained
|
|
204
|
+
|
|
205
|
+
## Commit Changes and Push
|
|
206
|
+
|
|
207
|
+
1. **Commit changes**
|
|
208
|
+
2. **Push to remote**
|
|
209
|
+
|
|
210
|
+
## Complete Development Cycle Flow
|
|
211
|
+
|
|
212
|
+
### The Full Workflow with Test Architect
|
|
213
|
+
|
|
214
|
+
1. **SM**: Create next story → Review → Approve
|
|
215
|
+
2. **QA (Optional)**: Risk assessment (`*risk`) → Test design (`*design`)
|
|
216
|
+
3. **Dev**: Implement story → Write tests → Complete
|
|
217
|
+
4. **QA (Optional)**: Mid-dev checks (`*trace`, `*nfr`)
|
|
218
|
+
5. **Dev**: Mark Ready for Review
|
|
219
|
+
6. **QA (Required)**: Review story (`*review`) → Gate decision
|
|
220
|
+
7. **Dev (If needed)**: Address issues
|
|
221
|
+
8. **QA (If needed)**: Update gate (`*gate`)
|
|
222
|
+
9. **Commit**: All changes
|
|
223
|
+
10. **Push**: To remote
|
|
224
|
+
11. **Continue**: Until all features implemented
|
|
225
|
+
|
|
226
|
+
### Quick Decision Guide
|
|
227
|
+
|
|
228
|
+
**Should I run Test Architect commands?**
|
|
229
|
+
|
|
230
|
+
| **Scenario** | **Before Dev** | **During Dev** | **After Dev** |
|
|
231
|
+
| ------------------------ | ------------------------------- | ---------------------------- | ---------------------------- |
|
|
232
|
+
| **Simple bug fix** | Optional | Optional | Required `*review` |
|
|
233
|
+
| **New feature** | Recommended `*risk`, `*design` | Optional `*trace` | Required `*review` |
|
|
234
|
+
| **Brownfield change** | **Required** `*risk`, `*design` | Recommended `*trace`, `*nfr` | Required `*review` |
|
|
235
|
+
| **API modification** | **Required** `*risk`, `*design` | **Required** `*trace` | Required `*review` |
|
|
236
|
+
| **Performance-critical** | Recommended `*design` | **Required** `*nfr` | Required `*review` |
|
|
237
|
+
| **Data migration** | **Required** `*risk`, `*design` | **Required** `*trace` | Required `*review` + `*gate` |
|
|
238
|
+
|
|
239
|
+
### Success Metrics
|
|
240
|
+
|
|
241
|
+
The Test Architect helps achieve:
|
|
242
|
+
|
|
243
|
+
- **Zero regression defects** in production
|
|
244
|
+
- **100% requirements coverage** with tests
|
|
245
|
+
- **Clear quality gates** for go/no-go decisions
|
|
246
|
+
- **Documented risk acceptance** for technical debt
|
|
247
|
+
- **Consistent test quality** across the team
|
|
248
|
+
- **Shift-left testing** with early risk identification
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
version: 4.43.1
|
|
2
|
+
installed_at: '2025-09-12T19:40:07.672Z'
|
|
3
|
+
install_type: full
|
|
4
|
+
agent: null
|
|
5
|
+
ides_setup:
|
|
6
|
+
- github-copilot
|
|
7
|
+
expansion_packs: []
|
|
8
|
+
files:
|
|
9
|
+
- path: .bmad-core/working-in-the-brownfield.md
|
|
10
|
+
hash: 07cc8eb6fc664bb8
|
|
11
|
+
modified: false
|
|
12
|
+
- path: .bmad-core/user-guide.md
|
|
13
|
+
hash: fa8776b4e0bfa3f7
|
|
14
|
+
modified: false
|
|
15
|
+
- path: .bmad-core/enhanced-ide-development-workflow.md
|
|
16
|
+
hash: 39beb3516c070e2b
|
|
17
|
+
modified: false
|
|
18
|
+
- path: .bmad-core/core-config.yaml
|
|
19
|
+
hash: 073cf6d2527c545d
|
|
20
|
+
modified: false
|
|
21
|
+
- path: .bmad-core/workflows/greenfield-ui.yaml
|
|
22
|
+
hash: 2b595f235c095790
|
|
23
|
+
modified: false
|
|
24
|
+
- path: .bmad-core/workflows/greenfield-service.yaml
|
|
25
|
+
hash: 1ea8b8d218f8caef
|
|
26
|
+
modified: false
|
|
27
|
+
- path: .bmad-core/workflows/greenfield-fullstack.yaml
|
|
28
|
+
hash: df34e60ccfac2624
|
|
29
|
+
modified: false
|
|
30
|
+
- path: .bmad-core/workflows/brownfield-ui.yaml
|
|
31
|
+
hash: 8a8068093272d00f
|
|
32
|
+
modified: false
|
|
33
|
+
- path: .bmad-core/workflows/brownfield-service.yaml
|
|
34
|
+
hash: a3cd68897852876e
|
|
35
|
+
modified: false
|
|
36
|
+
- path: .bmad-core/workflows/brownfield-fullstack.yaml
|
|
37
|
+
hash: 9716ad5956a37037
|
|
38
|
+
modified: false
|
|
39
|
+
- path: .bmad-core/utils/workflow-management.md
|
|
40
|
+
hash: c2196880f2281f84
|
|
41
|
+
modified: false
|
|
42
|
+
- path: .bmad-core/utils/bmad-doc-template.md
|
|
43
|
+
hash: 34df6ead8b91abfc
|
|
44
|
+
modified: false
|
|
45
|
+
- path: .bmad-core/templates/story-tmpl.yaml
|
|
46
|
+
hash: 11e79b87ff700c8f
|
|
47
|
+
modified: false
|
|
48
|
+
- path: .bmad-core/templates/qa-gate-tmpl.yaml
|
|
49
|
+
hash: 80bd060708208984
|
|
50
|
+
modified: false
|
|
51
|
+
- path: .bmad-core/templates/project-brief-tmpl.yaml
|
|
52
|
+
hash: 31ba176a6ea087ab
|
|
53
|
+
modified: false
|
|
54
|
+
- path: .bmad-core/templates/prd-tmpl.yaml
|
|
55
|
+
hash: 963116f9ab9f4b70
|
|
56
|
+
modified: false
|
|
57
|
+
- path: .bmad-core/templates/market-research-tmpl.yaml
|
|
58
|
+
hash: ad46d980371caeed
|
|
59
|
+
modified: false
|
|
60
|
+
- path: .bmad-core/templates/fullstack-architecture-tmpl.yaml
|
|
61
|
+
hash: cb00c49c284dc7cb
|
|
62
|
+
modified: false
|
|
63
|
+
- path: .bmad-core/templates/front-end-spec-tmpl.yaml
|
|
64
|
+
hash: b1513524db76eeda
|
|
65
|
+
modified: false
|
|
66
|
+
- path: .bmad-core/templates/front-end-architecture-tmpl.yaml
|
|
67
|
+
hash: 413a2d9541cb0645
|
|
68
|
+
modified: false
|
|
69
|
+
- path: .bmad-core/templates/competitor-analysis-tmpl.yaml
|
|
70
|
+
hash: d0b263b0f9de8221
|
|
71
|
+
modified: false
|
|
72
|
+
- path: .bmad-core/templates/brownfield-prd-tmpl.yaml
|
|
73
|
+
hash: 5b89b783cd2cacdb
|
|
74
|
+
modified: false
|
|
75
|
+
- path: .bmad-core/templates/brownfield-architecture-tmpl.yaml
|
|
76
|
+
hash: ce6e86071a204d43
|
|
77
|
+
modified: false
|
|
78
|
+
- path: .bmad-core/templates/brainstorming-output-tmpl.yaml
|
|
79
|
+
hash: ba806c97165c8178
|
|
80
|
+
modified: false
|
|
81
|
+
- path: .bmad-core/templates/architecture-tmpl.yaml
|
|
82
|
+
hash: e66f63be1af30585
|
|
83
|
+
modified: false
|
|
84
|
+
- path: .bmad-core/data/test-priorities-matrix.md
|
|
85
|
+
hash: 1dd5698a46ab054e
|
|
86
|
+
modified: false
|
|
87
|
+
- path: .bmad-core/data/test-levels-framework.md
|
|
88
|
+
hash: f814f8efed0e96e1
|
|
89
|
+
modified: false
|
|
90
|
+
- path: .bmad-core/data/technical-preferences.md
|
|
91
|
+
hash: a829f3172a10b396
|
|
92
|
+
modified: false
|
|
93
|
+
- path: .bmad-core/data/elicitation-methods.md
|
|
94
|
+
hash: 8c3ca9b84c8784c9
|
|
95
|
+
modified: false
|
|
96
|
+
- path: .bmad-core/data/brainstorming-techniques.md
|
|
97
|
+
hash: 62b0bf50648906b0
|
|
98
|
+
modified: false
|
|
99
|
+
- path: .bmad-core/data/bmad-kb.md
|
|
100
|
+
hash: 1d38eeee61c55bf9
|
|
101
|
+
modified: false
|
|
102
|
+
- path: .bmad-core/tasks/validate-next-story.md
|
|
103
|
+
hash: 75e84133d364d973
|
|
104
|
+
modified: false
|
|
105
|
+
- path: .bmad-core/tasks/trace-requirements.md
|
|
106
|
+
hash: cb3e06cc0b957948
|
|
107
|
+
modified: false
|
|
108
|
+
- path: .bmad-core/tasks/test-design.md
|
|
109
|
+
hash: bcd13a95d296ce22
|
|
110
|
+
modified: false
|
|
111
|
+
- path: .bmad-core/tasks/shard-doc.md
|
|
112
|
+
hash: a83c900f64ea3d4f
|
|
113
|
+
modified: false
|
|
114
|
+
- path: .bmad-core/tasks/risk-profile.md
|
|
115
|
+
hash: addf5d143cfe6f12
|
|
116
|
+
modified: false
|
|
117
|
+
- path: .bmad-core/tasks/review-story.md
|
|
118
|
+
hash: 5b981ff6f068ad21
|
|
119
|
+
modified: false
|
|
120
|
+
- path: .bmad-core/tasks/qa-gate.md
|
|
121
|
+
hash: 924f7bcc61306314
|
|
122
|
+
modified: false
|
|
123
|
+
- path: .bmad-core/tasks/nfr-assess.md
|
|
124
|
+
hash: 033dbd41bcb44eb4
|
|
125
|
+
modified: false
|
|
126
|
+
- path: .bmad-core/tasks/kb-mode-interaction.md
|
|
127
|
+
hash: 4d6b921c24ba4999
|
|
128
|
+
modified: false
|
|
129
|
+
- path: .bmad-core/tasks/index-docs.md
|
|
130
|
+
hash: 70b1d526b19d015e
|
|
131
|
+
modified: false
|
|
132
|
+
- path: .bmad-core/tasks/generate-ai-frontend-prompt.md
|
|
133
|
+
hash: ca4cabd824ea1b60
|
|
134
|
+
modified: false
|
|
135
|
+
- path: .bmad-core/tasks/facilitate-brainstorming-session.md
|
|
136
|
+
hash: 38594d876614e077
|
|
137
|
+
modified: false
|
|
138
|
+
- path: .bmad-core/tasks/execute-checklist.md
|
|
139
|
+
hash: 8a704b6f2bc52e12
|
|
140
|
+
modified: false
|
|
141
|
+
- path: .bmad-core/tasks/document-project.md
|
|
142
|
+
hash: 98f8790d20e83cf3
|
|
143
|
+
modified: false
|
|
144
|
+
- path: .bmad-core/tasks/create-next-story.md
|
|
145
|
+
hash: 99e5cc3237a9cffd
|
|
146
|
+
modified: false
|
|
147
|
+
- path: .bmad-core/tasks/create-doc.md
|
|
148
|
+
hash: 0a6aeba58cd7a3e4
|
|
149
|
+
modified: false
|
|
150
|
+
- path: .bmad-core/tasks/create-deep-research-prompt.md
|
|
151
|
+
hash: 6d05224a13df6047
|
|
152
|
+
modified: false
|
|
153
|
+
- path: .bmad-core/tasks/create-brownfield-story.md
|
|
154
|
+
hash: a70e435c8aafbf23
|
|
155
|
+
modified: false
|
|
156
|
+
- path: .bmad-core/tasks/correct-course.md
|
|
157
|
+
hash: 0e6d3227b1aac200
|
|
158
|
+
modified: false
|
|
159
|
+
- path: .bmad-core/tasks/brownfield-create-story.md
|
|
160
|
+
hash: 873dbf0760039028
|
|
161
|
+
modified: false
|
|
162
|
+
- path: .bmad-core/tasks/brownfield-create-epic.md
|
|
163
|
+
hash: 7b95c09793f16e1a
|
|
164
|
+
modified: false
|
|
165
|
+
- path: .bmad-core/tasks/apply-qa-fixes.md
|
|
166
|
+
hash: aa6fefc78e6d7f08
|
|
167
|
+
modified: false
|
|
168
|
+
- path: .bmad-core/tasks/advanced-elicitation.md
|
|
169
|
+
hash: d39118bf32237a21
|
|
170
|
+
modified: false
|
|
171
|
+
- path: .bmad-core/checklists/story-draft-checklist.md
|
|
172
|
+
hash: 0bc8a90678dba318
|
|
173
|
+
modified: false
|
|
174
|
+
- path: .bmad-core/checklists/story-dod-checklist.md
|
|
175
|
+
hash: df403478049b6958
|
|
176
|
+
modified: false
|
|
177
|
+
- path: .bmad-core/checklists/po-master-checklist.md
|
|
178
|
+
hash: c46c67e6bf61b70e
|
|
179
|
+
modified: false
|
|
180
|
+
- path: .bmad-core/checklists/pm-checklist.md
|
|
181
|
+
hash: b53f0270312713d2
|
|
182
|
+
modified: false
|
|
183
|
+
- path: .bmad-core/checklists/change-checklist.md
|
|
184
|
+
hash: fb2d071796c8f8b6
|
|
185
|
+
modified: false
|
|
186
|
+
- path: .bmad-core/checklists/architect-checklist.md
|
|
187
|
+
hash: 15ef7d01b0e31c3f
|
|
188
|
+
modified: false
|
|
189
|
+
- path: .bmad-core/agents/ux-expert.md
|
|
190
|
+
hash: a99c4d3c839db162
|
|
191
|
+
modified: false
|
|
192
|
+
- path: .bmad-core/agents/sm.md
|
|
193
|
+
hash: b72ae96e97959772
|
|
194
|
+
modified: false
|
|
195
|
+
- path: .bmad-core/agents/qa.md
|
|
196
|
+
hash: fac9822d33ced30b
|
|
197
|
+
modified: false
|
|
198
|
+
- path: .bmad-core/agents/po.md
|
|
199
|
+
hash: 49f7da900a12940d
|
|
200
|
+
modified: false
|
|
201
|
+
- path: .bmad-core/agents/pm.md
|
|
202
|
+
hash: f72074f1f1354871
|
|
203
|
+
modified: false
|
|
204
|
+
- path: .bmad-core/agents/dev.md
|
|
205
|
+
hash: 3e87f6291e5525ff
|
|
206
|
+
modified: false
|
|
207
|
+
- path: .bmad-core/agents/bmad-orchestrator.md
|
|
208
|
+
hash: 374701173ce61d73
|
|
209
|
+
modified: false
|
|
210
|
+
- path: .bmad-core/agents/bmad-master.md
|
|
211
|
+
hash: d344fb86fc65643c
|
|
212
|
+
modified: false
|
|
213
|
+
- path: .bmad-core/agents/architect.md
|
|
214
|
+
hash: 4e7b28055a522dea
|
|
215
|
+
modified: false
|
|
216
|
+
- path: .bmad-core/agents/analyst.md
|
|
217
|
+
hash: 4b50870da75956b0
|
|
218
|
+
modified: false
|
|
219
|
+
- path: .bmad-core/agent-teams/team-no-ui.yaml
|
|
220
|
+
hash: 00cbffc4106cbe1e
|
|
221
|
+
modified: false
|
|
222
|
+
- path: .bmad-core/agent-teams/team-ide-minimal.yaml
|
|
223
|
+
hash: 424972103dfde87d
|
|
224
|
+
modified: false
|
|
225
|
+
- path: .bmad-core/agent-teams/team-fullstack.yaml
|
|
226
|
+
hash: 14c7a2d8bc7ceb6f
|
|
227
|
+
modified: false
|
|
228
|
+
- path: .bmad-core/agent-teams/team-all.yaml
|
|
229
|
+
hash: db5b0ff0a9c9c2e8
|
|
230
|
+
modified: false
|