plugins/business-analysis/skills/risk-register/SKILL.md
Create or update a risk register with identification, assessment, and mitigation planning. Supports project, business, and technical risks.
npx skillsauth add melodic-software/claude-code-plugins risk-registerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Systematically identify, assess, and plan responses for risks using risk registers, probability/impact matrices, and mitigation strategies. Supports threats and opportunities.
<context-or-file>: Project/initiative context or existing risk register file
--mode: Operation mode (default: create)
create: Create new risk register (~6K tokens)update: Add risks to existing register (~4K tokens)review: Review and re-assess existing risks (~5K tokens)--output: Output format (default: both)
yaml: Structured YAML for downstream processingmarkdown: Formatted markdown tablesboth: Both formats--dir: Output directory (default: docs/analysis/)
Extract context/file, mode, and output format from arguments.
If no context provided, ask the user: "What project, initiative, or area would you like to assess for risks?"
Default mode is create. Default output is both.
Invoke the business-analysis:risk-analysis skill to access:
## Risk Register Context
**Project/Initiative:** [Name]
**Owner:** [Risk register owner]
**Review Cycle:** [Weekly/Bi-weekly/Monthly]
**Risk Appetite:** [Conservative/Moderate/Aggressive]
**Date Created:** [ISO Date]
Use multiple techniques to identify risks:
Checklist Review: Standard risk categories
Assumption Analysis: List and challenge assumptions
Expert Input: Domain-specific risks
SWOT Threats: From strategic analysis
For each risk, capture:
Apply probability/impact scoring:
Probability Scale (1-5):
| Level | Score | Likelihood | |-------|-------|------------| | Very Low | 1 | < 10% | | Low | 2 | 10-30% | | Medium | 3 | 30-50% | | High | 4 | 50-70% | | Very High | 5 | > 70% |
Impact Scale (1-5):
| Level | Score | Schedule | Cost | Quality | |-------|-------|----------|------|---------| | Very Low | 1 | < 1 week | < 5% | Minor | | Low | 2 | 1-2 weeks | 5-10% | Noticeable | | Medium | 3 | 2-4 weeks | 10-20% | Significant | | High | 4 | 1-3 months | 20-40% | Major | | Very High | 5 | > 3 months | > 40% | Critical |
Risk Score: Probability × Impact (1-25)
Priority Zones:
| Score | Priority | Action | |-------|----------|--------| | 1-4 | Low | Accept or monitor | | 5-9 | Medium | Active management | | 10-14 | High | Priority attention | | 15-25 | Critical | Immediate action |
For each significant risk, define response strategy:
For Threats:
For Opportunities:
For each response, define:
quadrantChart
title Risk Assessment Matrix
x-axis Low Impact --> High Impact
y-axis Low Probability --> High Probability
quadrant-1 Critical - Immediate Action
quadrant-2 High - Priority Attention
quadrant-3 Low - Monitor
quadrant-4 Medium - Active Management
"R-001 Key resource": [0.9, 0.8]
"R-002 Vendor delay": [0.7, 0.6]
"R-003 Scope creep": [0.6, 0.5]
"R-004 Tech debt": [0.4, 0.3]
risk_register:
version: "1.0"
name: "[Project/Initiative]"
date: "[ISO Date]"
owner: "[Name]"
review_cycle: "bi-weekly"
risk_appetite:
overall: "moderate"
schedule: "low"
cost: "moderate"
quality: "low"
scales:
probability:
1: "Rare (<10%)"
2: "Unlikely (10-30%)"
3: "Possible (30-50%)"
4: "Likely (50-70%)"
5: "Almost Certain (>70%)"
impact:
1: "Very Low"
2: "Low"
3: "Medium"
4: "High"
5: "Very High"
risks:
- id: "R-001"
description: "Key developer may leave during critical phase"
category: "Resource"
type: "threat"
probability: 4
impact: 5
score: 20
priority: "critical"
owner: "[Name]"
response_strategy: "mitigate"
response_actions:
prevention:
- action: "Cross-train team member"
owner: "[Name]"
due_date: "[Date]"
status: "in_progress"
contingency:
- trigger: "Developer gives notice"
action: "Engage contractor immediately"
residual_risk:
probability: 3
impact: 3
score: 9
status: "open"
created_date: "[Date]"
last_reviewed: "[Date]"
notes: "[Additional context]"
summary:
total: 10
by_priority:
critical: 1
high: 2
medium: 4
low: 3
by_status:
open: 8
mitigated: 1
closed: 1
occurred: 0
by_category:
technical: 3
resource: 2
schedule: 2
external: 2
cost: 1
review_log:
- date: "[Date]"
reviewer: "[Name]"
changes: "[Summary of changes]"
## Risk Register: [Project/Initiative]
**Owner:** [Name]
**Last Updated:** [ISO Date]
**Review Cycle:** [Frequency]
**Next Review:** [Date]
### Risk Summary
| Priority | Count | Top Risk |
|----------|-------|----------|
| Critical | [#] | [Risk name] |
| High | [#] | [Risk name] |
| Medium | [#] | [Risk name] |
| Low | [#] | [Risk name] |
### Active Risks
| ID | Risk Description | Cat | P | I | Score | Owner | Response | Status |
|----|-----------------|-----|---|---|-------|-------|----------|--------|
| R-001 | Key developer departure | Resource | 4 | 5 | 20 | PM | Mitigate | Open |
| R-002 | Vendor API changes | Technical | 3 | 4 | 12 | Tech Lead | Mitigate | Open |
| R-003 | Scope creep | Schedule | 3 | 3 | 9 | PM | Accept | Open |
### Critical Risks (Score 15+)
#### R-001: Key Developer Departure
**Description:** Key developer may leave during critical phase
**Assessment:**
- Probability: 4 (Likely)
- Impact: 5 (Critical)
- Score: 20 (Critical Priority)
**Response Strategy:** Mitigate
**Prevention Actions:**
| Action | Owner | Due Date | Status |
|--------|-------|----------|--------|
| Cross-train team member | Tech Lead | [Date] | In Progress |
| Document critical knowledge | Developer | [Date] | Not Started |
**Contingency Plan:**
- Trigger: Developer gives notice
- Actions: Engage contractor, accelerate knowledge transfer
**Residual Risk:** Score 9 (Medium) after mitigation
### Response Tracking
| Risk | Action | Owner | Due | Status |
|------|--------|-------|-----|--------|
| R-001 | Cross-training | Tech Lead | [Date] | In Progress |
| R-001 | Documentation | Developer | [Date] | Not Started |
| R-002 | Abstraction layer | Dev | [Date] | Complete |
### Risk Trends
| Metric | This Period | Last Period | Trend |
|--------|-------------|-------------|-------|
| Total Risks | 10 | 8 | ↑ |
| Critical | 1 | 0 | ↑ |
| Mitigated | 1 | 2 | ↓ |
| Closed | 1 | 1 | → |
## Risk Assessment Summary
**Project:** [Name]
**Date:** [ISO Date]
**Analyst:** ba-orchestrator
### Risk Profile
Overall risk exposure is [Low/Medium/High/Critical] based on:
- [#] critical risks requiring immediate attention
- [#] high-priority risks under active management
- Risk appetite alignment: [Aligned/Exceeded]
### Top 3 Risks
1. **R-001**: [Description] (Score: 20)
- Response: [Strategy]
- Status: [Current status]
2. **R-002**: [Description] (Score: 12)
- Response: [Strategy]
- Status: [Current status]
3. **R-003**: [Description] (Score: 9)
- Response: [Strategy]
- Status: [Current status]
### Recommendations
1. **Immediate**: Address R-001 mitigation actions
2. **This Week**: Complete R-002 abstraction layer
3. **Monitor**: Watch for new external risks
4. **Review**: Schedule stakeholder risk review
Save outputs based on format flag:
YAML file:
docs/analysis/risk-register.yamlMarkdown file:
docs/analysis/risk-register.mdUse --dir to specify a custom output directory.
After completing risk assessment:
## Suggested Next Steps
1. **Stakeholder Review**: Present risk register to stakeholders
2. **Mitigation Tracking**: Set up action tracking for response plans
3. **Root Cause Analysis**: Use `/ba:root-cause` for risks that occurred
4. **Decision Analysis**: Use decision-analysis skill for risk response options
5. **Schedule Reviews**: Set calendar reminders for risk reviews
6. **Integration**: Link to project management tool for tracking
development
Search Milan Jovanovic's .NET blog for Clean Architecture, DDD, CQRS, EF Core, and ASP.NET Core patterns. Use for finding applicable patterns, code examples, and architecture guidance. Invoke when working with .NET projects that could benefit from proven architectural patterns.
tools
Install and configure Data API Builder (DAB) for production SQL Server MCP access with RBAC
tools
Manage MssqlMcp servers - status, rebuild, and upstream updates
tools
Developer environment setup guides for Windows, macOS, Linux, and WSL. Use when setting up development machines, installing tools, configuring environments, or following platform-specific setup guides. Covers package management, shell/terminal, code editors, AI tooling, containerization, databases, and more.