SkillHub

risk-skill

v1.0.1

评估市场、信用及运营风险,分析财务、声誉与运营影响,提供针对性风险管理建议。

Sourced from ClawHub, Authored by Wen-Si

Installation

Please help me install the skill `risk-skill` from SkillHub official store. npx skills add Wen-Si/risk-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
  2. Supports multiple risk types: market risk, credit risk, operational risk, etc.
  3. Conducts comprehensive assessment based on company information and risk factors
  4. Generates risk levels and risk scores

  5. Impact Analysis

  6. Evaluates the impact of risks on finance, reputation, and operations
  7. Provides quantitative risk impact scope

  8. Recommendation Generation

  9. Generates targeted response recommendations based on risk levels
  10. 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