risk-skill
by @wen-si
Assesses market, credit, and operational risks; evaluates financial, reputational, and operational impacts; and provides targeted risk management recommendat...
clawhub install risk-skillπ About This Skill
Chief Risk Officer Agent Skill
Skill Overview
This is an AI Agent skill designed for Chief Risk Officers, helping enterprises identify, assess, and manage various types of risks.
Features
Core Functions
1. Risk Assessment - Supports multiple risk types: market risk, credit risk, operational risk, etc. - Conducts comprehensive assessment based on company information and risk factors - Generates risk levels and risk scores
2. Impact Analysis - Evaluates the impact of risks on finance, reputation, and operations - Provides quantitative risk impact scope
3. Recommendation Generation - Generates targeted response recommendations based on risk levels - Supports handling plans for high, medium, and low risk levels
Usage
Input Parameters
{
"risk_type": "market risk", # Risk type
"company_info": {
"name": "Test Company",
"industry": "Finance",
"size": "Large"
},
"risk_factors": ["Interest rate fluctuations", "Exchange rate risk", "Competitor actions"]
}
Output Results
{
"status": "success",
"risk_type": "market risk",
"assessment": {
"risk_level": "high",
"risk_score": 85,
"identified_risks": ["Interest rate fluctuations", "Exchange rate risk", "Competitor actions"],
"impact_analysis": {
"financial": "May cause 10-20% revenue loss",
"reputational": "May affect corporate brand image",
"operational": "May cause business interruption"
}
},
"recommendations": [
"Immediately activate emergency response plan",
"Establish risk monitoring indicators",
"Conduct regular stress tests",
"Seek professional consulting services"
]
}
Technical Specifications
Deployment
Local Usage
from cro_skill import ChiefRiskOfficerSkillCreate skill instance
cro_skill = ChiefRiskOfficerSkill()Execute risk assessment
result = cro_skill.execute({
"risk_type": "market risk",
"company_info": {
"name": "Test Company",
"industry": "Finance",
"size": "Large"
},
"risk_factors": ["Interest rate fluctuations", "Exchange rate risk", "Competitor actions"]
})print(result)
ClawHub Publishing
# Login to ClawHub
npx clawhub loginPublish skill
npx clawhub publish . --name "Chief Risk Officer" --version "1.0.0" --tags "risk,management,compliance,monitoring"
Application Scenarios
Version History
π‘ Examples
Input Parameters
{
"risk_type": "market risk", # Risk type
"company_info": {
"name": "Test Company",
"industry": "Finance",
"size": "Large"
},
"risk_factors": ["Interest rate fluctuations", "Exchange rate risk", "Competitor actions"]
}
Output Results
{
"status": "success",
"risk_type": "market risk",
"assessment": {
"risk_level": "high",
"risk_score": 85,
"identified_risks": ["Interest rate fluctuations", "Exchange rate risk", "Competitor actions"],
"impact_analysis": {
"financial": "May cause 10-20% revenue loss",
"reputational": "May affect corporate brand image",
"operational": "May cause business interruption"
}
},
"recommendations": [
"Immediately activate emergency response plan",
"Establish risk monitoring indicators",
"Conduct regular stress tests",
"Seek professional consulting services"
]
}