🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

risk-skill

by @wen-si

Assesses market, credit, and operational risks; evaluates financial, reputational, and operational impacts; and provides targeted risk management recommendat...

Versionv1.0.1
Downloads484
Stars⭐ 1
Comments1
TERMINAL
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

  • Language: Python 3.8+
  • Dependencies: No external dependencies
  • Version: 1.0.0
  • Author: AI Agent
  • Deployment

    Local Usage

    from cro_skill import ChiefRiskOfficerSkill

    Create 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 login

    Publish skill

    npx clawhub publish . --name "Chief Risk Officer" --version "1.0.0" --tags "risk,management,compliance,monitoring"

    Application Scenarios

  • Daily risk assessment for enterprise risk management departments
  • Risk analysis before investment decisions
  • Risk identification during compliance audits
  • Business continuity planning
  • Version History

  • 1.0.0 (2026-03-13): Initial version, implementing core risk assessment functionality
  • πŸ’‘ 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"
        ]
    }