The risk-based testing (RBT) umbrella: risk matrix and risk register authoring, likelihood x impact scoring, risk storming, calibration, and risk-to-test coverage mapping. Produces the per-feature / per-release matrix artifact (structured intake: feature, category, impact 1-5 by likelihood 1-5, score; heatmap; mitigations with owners and due dates), supporting lightweight and heavyweight (FMEA / Cost of Exposure) methods per RBT canon, plus a risk coverage mapping workflow that proves which tests, cases, or monitors back each registered risk. references/ carries the product-risk and project-risk register variants, the risk-storming facilitation guide, matrix calibration against observed defect data, and a register review checklist. Use for any risk-based-testing artifact: building a matrix or register, running a risk-storming session, calibrating ratings against defects, or mapping risks onto test coverage.
69
87%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Deep reference for the risk-matrix SKILL.md. How to plan and facilitate the risk-storming session that fills the matrix: meeting structure, participant roster, per-category brainstorm prompts, affinity grouping, impact × likelihood scoring, and mitigation assignment.
Risk-storming is a collaborative exercise where the team brainstorms what could go wrong with a feature or release. The output feeds directly into the risk matrix (per SKILL.md Step 2). The format originates from threat modeling exercises (notably Adam Shostack's Threat Modeling: Designing for Security) and Gojko Adzic's risk-driven testing community, adapted as a general QA technique.
Schedule 60-90 min. Invite:
Pre-distribute:
00:00-00:05 Kickoff: facilitator presents the feature scope; reads ACs aloud
00:05-00:25 Silent brainstorm: each participant lists 5-10 risks (post-its or shared doc)
00:25-00:40 Affinity grouping: cluster risks by category
00:40-00:55 Score each risk: impact (1-5) × likelihood (1-5)
00:55-01:15 Mitigation discussion + owner assignment
01:15-01:30 Review + close: confirm action itemsThe silent-brainstorm phase is critical - without it, the loudest voice dominates and group-think hides real risks.
The facilitator brings prompts to drive the brainstorm, one set per risk category (categories align with SKILL.md Step 3). The prompts are starters; the participants extend per the feature.
After the silent brainstorm, cluster:
Cluster: "Payment failures"
- Stripe webhook delivery failure
- Stripe API rate limit
- Customer card declined mid-checkout
- Customer cancels mid-checkout (browser back button)
Cluster: "Promo math"
- Off-by-cent rounding
- Stack two promos
- Apply expired promo
- Apply promo to free-shipping order
Cluster: "EU compliance"
- VAT calculation
- GDPR data export
- Cookie consent
Cluster: "..."Clusters reveal that some risks are different facets of one underlying issue (e.g., "payment failures" is one architectural concern; mitigations may apply across the cluster).
Per cluster (or per-row if the cluster has heterogeneous risks):
| Risk | Impact (1-5) | Likelihood (1-5) | Score |
|---|---|---|---|
| Off-by-cent rounding | 5 | 3 | 15 |
| Stack two promos | 4 | 4 | 16 |
| ... (one row per risk) |
The team agrees on each score via brief discussion (5 min cap per risk). When discussion exceeds the cap, the facilitator notes the disagreement and moves on; revisit after the session.
For each Critical (>=15) and High (9-14) risk:
| Risk | Mitigation | Owner | Due |
|---|---|---|---|
| Off-by-cent rounding | Property-based tests on rounding | Alice | 2026-05-15 |
| Stack two promos | Add validation + integration test | Bob | 2026-05-12 |
| Stripe webhook delivery failure | Retry + DLQ + chaos test | Carol | 2026-05-12 |
Lower-priority risks (Medium / Low) get logged but may not get immediate mitigations.
The session output flows directly into the matrix per SKILL.md Step 2. The matrix file becomes the canonical record; the session notes (silent brainstorm results, discussion points) get attached as appendix.
Within 1 day:
A risk-storming session without follow-up is wasted.
A team is about to build checkout promo codes. In the kickoff session:
The session ends with a scored, owned Critical risk and a matrix row - not a vague "we should test rounding" note.
| Anti-pattern | Why it fails | Fix |
|---|---|---|
| Skipping the silent-brainstorm phase | Loudest voice dominates; quiet engineers' risks invisible. | 20-min silent brainstorm (Step 2). |
| Single-person facilitator + scribe + participant | Facilitator can't focus; participants distracted. | Separate facilitator + note-taker. |
| Open-ended "what could go wrong?" without prompts | Participants stare blankly; brainstorm thin. | Use category prompts (Step 3). |
| Skipping mitigation step | Risks identified; no action. | Mitigation + owner per Critical/High (Step 6). |
| Scoring debates that exceed time cap | Session runs long; later risks get less time. | 5-min cap per risk; flag disagreements (Step 5). |
| Single-team session | Misses cross-team risks (security, compliance, infrastructure). | Invite across functions (Step 1). |
| Risks logged but not in the matrix | Lost; same risks re-discovered next quarter. | Update the matrix (Step 7). |
| No post-session follow-up | Mitigations don't ship; team distrusts the process. | Sprint check-in (Step 8). |
gojko.net.