Skip to main content
risk-register-manager Risk register management skill for systematic risk identification, assessment, and tracking
설치로 이동 Skills Marketplace 커뮤니티가 만든 AI 스킬을 발견하고 탐색하세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/a5c-ai/babysitter --skill risk-register-manager명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Zip 다운로드 다운로드 중... 이 저장소의 다른 Skills Reference for querying the Atlas knowledge graph through its MCP tools — the SECONDARY enrichment/comparison layer that adds best-practice context to systems you have ALREADY scanned from your real sources (`az`, repos, dirs). Use when you need to look up nodes, edges, kinds, clusters, stats, or wiki pages in Atlas to compare against your real inventory. (atlas graph, query atlas, atlas mcp, search the graph, graph neighbors, atlas record, atlas kinds, enrichment layer)
Atlas turns your STATED NEED into a real systems atlas by SCANNING your actual sources (Azure via `az`, git repos, local dirs) and process/data mining them, THEN enriching against the Atlas knowledge graph. Use this skill when asked to inventory/map your real systems, scan your cloud + repos + directories, mine the real processes or data they contain, or collect their real constraints/gotchas. (atlas, scan my systems, inventory our azure account, map my repos, real systems atlas, process mining, data mining, collect nuances, system discovery)
assimilate-popular-workflows This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research external skills", "find workflow patterns", "survey the skill landscape", "what skills exist out there", or wants to investigate public repositories for extractable processes, babysitter plugins, and reusable procedural insights. Searches GitHub for SKILL.md files, classifies repos by archetype, and maintains structured research under docs/reference-repos/.
name risk-register-manager description Risk register management skill for systematic risk identification, assessment, and tracking allowed-tools ["Read","Write","Glob","Grep","Bash"] metadata {"specialization":"decision-intelligence","domain":"business","category":"risk","priority":"medium","tools-libraries":["pandas","numpy","jinja2"]} graph {"domains":["domain:business-intelligence"],"skillAreas":["skill-area:quantitative-modeling","skill-area:business-analysis","skill-area:strategic-analysis"],"roles":["role:risk-analyst","role:business-analyst","role:strategic-planner"]}
Risk Register Manager
Overview
The Risk Register Manager skill provides comprehensive capabilities for systematic risk identification, assessment, mitigation planning, and ongoing tracking. It supports the full risk management lifecycle from initial identification through monitoring and closure.
Capabilities
Risk identification and categorization
Probability and impact scoring
Risk matrix generation
Risk prioritization (P*I ranking)
Mitigation strategy tracking
Residual risk calculation
Risk trend analysis
Risk report generation
Used By Processes
Decision Quality Assessment
Monte Carlo Simulation for Decision Support
Strategic Scenario Development
Usage
Risk Identification
risk_entry = {
"id" : "RISK-001" ,
"title" : "Key Supplier Bankruptcy" ,
"description" : "Primary component supplier faces financial difficulties, risking supply continuity" ,
"category" : "Supply Chain" ,
"subcategory" : "Supplier Risk" ,
"identified_by" : "Procurement Manager" ,
"identification_date" : "2024-01-15" ,
"status" : "Open" ,
"triggers" : [
"Supplier credit rating downgrade" ,
"Delayed deliveries > 2 weeks" ,
"News of financial restructuring"
],
"affected_objectives" : ["Production Continuity" , "Cost Control" ]
}
Risk Assessment
risk_assessment = {
"risk_id" : "RISK-001" ,
"probability" : {
"score" : 3 ,
"rationale" : "Supplier shows signs of financial stress; industry downturn" ,
"confidence" : "medium"
},
"impact" : {
"financial" : {"score" : 4 , "estimate" : 2500000 },
"schedule" : {"score" : 3 , "estimate_days" : 45 },
"reputation" : {"score" : 2 },
"overall" : 4
},
"risk_score" : 12 ,
"risk_level" : "High" ,
"velocity" : "Medium" ,
"assessment_date" : "2024-01-20"
}
Mitigation Planning
mitigation_plan = {
"risk_id" : "RISK-001" ,
"response_strategy" : "Mitigate" ,
"actions" : [
{
"id" : "MIT-001-A" ,
"description" : "Qualify secondary supplier" ,
"owner" : "Procurement Director" ,
"due_date" : "2024-03-01" ,
"status" : "In Progress" ,
"cost" : 50000 ,
"effectiveness" : 0.6
},
{
"id" : "MIT-001-B" ,
"description" : "Increase safety stock to 8 weeks" ,
"owner" : "Supply Chain Manager" ,
"due_date" : "2024-02-15" ,
"status" : "Not Started" ,
"cost" : 200000 ,
"effectiveness" : 0.3
}
],
"residual_probability" : 2 ,
"residual_impact" : 3 ,
"residual_score" : 6
}
Risk Matrix Configuration
matrix_config = {
"probability_scale" : {
1 : {"label" : "Rare" , "range" : "< 10%" },
2 : {"label" : "Unlikely" , "range" : "10-25%" },
3 : {"label" : "Possible" , "range" : "25-50%" },
4 : {"label" : "Likely" , "range" : "50-75%" },
5 : {"label" : "Almost Certain" , "range" : "> 75%" }
},
"impact_scale" : {
1 : {"label" : "Negligible" , "financial" : "< $10K" },
2 : {"label" : "Minor" , "financial" : "$10K - $100K" },
3 : {"label" : "Moderate" , "financial" : "$100K - $1M" },
4 : {"label" : "Major" , "financial" : "$1M - $10M" },
5 : {"label" : "Severe" , "financial" : "> $10M" }
},
"risk_levels" : {
"Low" : {"range" : [1 , 4 ], "color" : "green" },
"Medium" : {"range" : [5 , 9 ], "color" : "yellow" },
"High" : {"range" : [10 , 16 ], "color" : "orange" },
"Critical" : {"range" : [17 , 25 ], "color" : "red" }
}
}
Input Schema {
"operation" : "create|update|assess|report" ,
"risk" : {
"id" : "string" ,
"title" : "string" ,
"description" : "string" ,
"category" : "string"
} ,
"assessment" : {
"probability" : "object" ,
"impact" : "object"
} ,
"mitigation" : {
"strategy" : "string" ,
"actions" : [ "object" ]
} ,
"report_options" : {
"format" : "matrix|list|dashboard" ,
"filters" : "object"
}
}
Output Schema {
"risk_register" : [
{
"id" : "string" ,
"title" : "string" ,
"category" : "string" ,
"inherent_score" : "number" ,
"residual_score" : "number" ,
"status" : "string" ,
"owner" : "string" ,
"next_review" : "string"
}
] ,
"summary_statistics" : {
"total_risks" : "number" ,
"by_level" : "object" ,
"by_category" : "object" ,
"trend" : "object"
} ,
"risk_matrix" : "object" ,
"top_risks" : [ "object" ] ,
"overdue_mitigations" : [ "object" ] ,
"report_path" : "string"
}
Best Practices
Review and update risk register regularly (monthly minimum)
Assign clear ownership for each risk
Document rationale for probability and impact scores
Track both inherent and residual risk
Include positive risks (opportunities)
Escalate critical risks promptly
Learn from risks that materialized
Risk Response Strategies Strategy When to Use Example Avoid High P, High I, feasible to eliminate Cancel risky project phase Mitigate Reduce P or I is cost-effective Add quality controls Transfer Impact can be shifted Insurance, contracts Accept Low priority or unavoidable Budget contingency
Integration Points
Feeds into Monte Carlo Engine for quantitative analysis
Connects with Value at Risk Calculator for financial risk
Supports Risk Analyst agent
Integrates with Decision Visualization for risk matrices