Token导航 LogoToken导航TokenDH.com
效率执行命令clawhub未标认证来源可访问clear审计通过

financial-analyzer财务分析员

Agent Skill

financial-analyzer 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,018

周安装

207

GitHub Stars

公开资料未说明

下载量

1,639
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:financial-analyzer(财务分析员)
来源仓库:https://github.com/jason-aka-chen/financial-analyzer
安装命令:
openclaw skills install financial-analyzer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install financial-analyzer

简介

人工智能驱动的财务分析助手,涵盖报表解读、比率计算与投资健康度评估。

  • 适用于企业财报分析、现金流预测及投资风险识别等深度研究需求。
  • 输入原始财务数据后自动生成多维分析报告,含关键指标解读。
  • 建议结合真实业务背景使用,避免脱离上下文做出片面判断。
  • financial-analyzer 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
financial-analyzer
description
AI-powered financial analysis assistant for financial statement analysis, ratio analysis, cash flow analysis, investment evaluation, and financial health assessment. Supports Chinese and international accounting standards. Essential tool for investors and analysts.
tags
version
1.0.0
author
chenq

Financial Analyzer

AI-powered financial analysis and investment evaluation tool.

Features

1. Financial Statement Analysis

  • Balance Sheet: Assets, liabilities, equity analysis
  • Income Statement: Revenue, expenses, profit analysis
  • Cash Flow Statement: Operating, investing, financing
  • Statement of Changes: Equity changes tracking

2. Ratio Analysis

  • Liquidity Ratios: Current, quick, cash ratio
  • Solvency Ratios: Debt, interest coverage, D/E
  • Profitability Ratios: ROE, ROA, margins
  • Efficiency Ratios: Turnover, asset utilization
  • Market Ratios: P/E, P/B, PEG, dividend yield

3. Cash Flow Analysis

  • Operating Cash Flow: Quality of earnings
  • Free Cash Flow: Valuation and health
  • Cash Conversion: Efficiency metrics
  • Burn Rate: Startup sustainability

4. Investment Evaluation

  • DCF Valuation: Discounted cash flow
  • Relative Valuation: Peer comparison
  • Graham Number: Value investing
  • Intrinsic Value: Multiple methods

5. Risk Assessment

  • Altman Z-Score: Bankruptcy prediction
  • Piotroski F-Score: Financial health
  • Credit Risk: Default probability
  • Operational Risk: Business stability

Installation

pip install numpy pandas

Usage

Basic Analysis

from financial_analyzer import FinancialAnalyzer

analyzer = FinancialAnalyzer()

# Analyze a company
result = analyzer.analyze(
    company="茅台",
    statements={
        'balance_sheet': balance_data,
        'income_statement': income_data,
        'cash_flow': cash_flow_data
    }
)

print(result['summary'])

Ratio Analysis

# Calculate all ratios
ratios = analyzer.calculate_ratios(statements)

print(ratios['liquidity'])
# {
#     'current_ratio': 2.5,
#     'quick_ratio': 1.8,
#     'cash_ratio': 0.5
# }

print(ratios['profitability'])
# {
#     'roe': 0.28,
#     'roa': 0.18,
#     'gross_margin': 0.75,
#     'net_margin': 0.52
# }

Valuation

# DCF Valuation
dcf = analyzer.dcf_valuation(
    free_cash_flow=50e9,
    growth_rate=0.05,
    discount_rate=0.10,
    terminal_growth=0.03
)
print(f"Intrinsic Value: {dcf['enterprise_value']:,.0f}")

# Relative Valuation
relative = analyzer.relative_valuation(
    company="茅台",
    peers=["五粮液", "泸州老窖"],
    metrics={'pe': 35, 'pb': 8}
)

Risk Assessment

# Altman Z-Score (bankruptcy risk)
z_score = analyzer.altman_z_score(statements)
print(f"Z-Score: {z_score['score']:.2f}")
print(f"Risk Level: {z_score['risk_level']}")
# Z-Score: 5.2
# Risk Level: Safe (Z > 2.99)

# Piotroski F-Score (financial health)
f_score = analyzer.piotroski_f_score(statements)
print(f"F-Score: {f_score['score']}/9")

Financial Health Check

# Comprehensive health check
health = analyzer.health_check(statements)

print(health['overall_score'])  # 85/100
print(health['strengths'])
print(health['weaknesses'])
print(health['recommendations'])

API Reference

Statement Analysis

MethodDescription
analyze(company, statements)Full analysis
analyze_balance_sheet(data)Balance sheet analysis
analyze_income(data)Income statement analysis
analyze_cash_flow(data)Cash flow analysis

Ratios

MethodDescription
calculate_ratios(statements)All ratios
liquidity_ratios(data)Liquidity metrics
solvency_ratios(data)Solvency metrics
profitability_ratios(data)Profitability metrics
efficiency_ratios(data)Efficiency metrics

Valuation

MethodDescription
dcf_valuation(...)DCF model
relative_valuation(...)Peer comparison
graham_number(...)Graham's formula
earnings_power_value(...)EPV valuation

Risk

MethodDescription
altman_z_score(statements)Bankruptcy risk
piotroski_f_score(statements)Financial health
credit_risk_score(statements)Credit assessment
operational_risk(statements)Business risk

Reports

MethodDescription
generate_report(analysis)Full report
summary_report(analysis)Summary
peer_comparison(company, peers)Compare with peers

Key Ratios

Liquidity

RatioFormulaGood Range
Current RatioCurrent Assets / Current Liabilities1.5 - 3.0
Quick Ratio(CA - Inventory) / CL1.0 - 2.0
Cash RatioCash / CL0.2 - 0.5

Profitability

RatioFormulaInterpretation
ROENet Income / EquityHigher is better
ROANet Income / AssetsHigher is better
Gross MarginGross Profit / RevenueIndustry dependent
Net MarginNet Income / RevenueHigher is better

Leverage

RatioFormulaGood Range
Debt/EquityTotal Debt / Equity< 2.0
Interest CoverageEBIT / Interest> 3.0
Debt/AssetsTotal Debt / Assets< 0.6

Efficiency

RatioFormulaInterpretation
Asset TurnoverRevenue / AssetsHigher is better
Inventory TurnoverCOGS / InventoryIndustry dependent
Receivables TurnoverRevenue / ReceivablesHigher is better

Valuation Models

DCF Model

{
    'method': 'dcf',
    'steps': [
        'Project free cash flows',
        'Calculate terminal value',
        'Discount to present value',
        'Subtract debt, add cash'
    ],
    'inputs': {
        'fcf': 'Free cash flow',
        'growth_rate': 'Expected growth',
        'wacc': 'Weighted average cost of capital',
        'terminal_growth': 'Long-term growth'
    }
}

Graham Number

graham_number = sqrt(22.5 * EPS * Book_Value_Per_Share)

Risk Models

Altman Z-Score

Z = 1.2*X1 + 1.4*X2 + 3.3*X3 + 0.6*X4 + 1.0*X5

X1 = Working Capital / Total Assets
X2 = Retained Earnings / Total Assets
X3 = EBIT / Total Assets
X4 = Market Value Equity / Total Liabilities
X5 = Sales / Total Assets

Interpretation:
Z > 2.99: Safe Zone
1.81 < Z < 2.99: Grey Zone
Z < 1.81: Distress Zone

Piotroski F-Score

9 criteria, 1 point each:
1. Positive ROA
2. Positive Operating Cash Flow
3. ROA improving
4. OCF > Net Income
5. Lower debt ratio
6. Higher current ratio
7. No share dilution
8. Higher gross margin
9. Higher asset turnover

Score interpretation:
8-9: Strong
6-7: Good
4-5: Average
0-3: Weak

Example: Full Analysis

from financial_analyzer import FinancialAnalyzer

analyzer = FinancialAnalyzer()

# Company financial data
statements = {
    'balance_sheet': {
        'total_assets': 200e9,
        'total_liabilities': 50e9,
        'current_assets': 80e9,
        'current_liabilities': 30e9,
        'cash': 40e9,
        'inventory': 10e9,
        'equity': 150e9
    },
    'income_statement': {
        'revenue': 100e9,
        'cost_of_goods': 25e9,
        'operating_expenses': 10e9,
        'net_income': 50e9,
        'ebit': 60e9
    },
    'cash_flow': {
        'operating_cf': 55e9,
        'investing_cf': -15e9,
        'financing_cf': -10e9,
        'free_cash_flow': 40e9
    }
}

# Run full analysis
result = analyzer.analyze("Example Corp", statements)

print(f"ROE: {result['ratios']['profitability']['roe']:.1%}")
print(f"Z-Score: {result['risk']['z_score']:.2f}")
print(f"Health Score: {result['health_score']}/100")

Chinese Accounting Standards

Supports both:

  • CAS (Chinese Accounting Standards)
  • IFRS (International Financial Reporting Standards)
  • GAAP (US Generally Accepted Accounting Principles)

Use Cases

  • Investment Analysis: Evaluate investment opportunities
  • Credit Analysis: Assess creditworthiness
  • Due Diligence: M&A analysis
  • Performance Tracking: Monitor company health
  • Screening: Filter investment candidates

Best Practices

  1. Use multiple ratios together
  2. Compare with industry peers
  3. Analyze trends over time
  4. Consider qualitative factors
  5. Understand accounting policies

Future Capabilities

  • Real-time data integration
  • AI-powered insights
  • Automated report generation
  • Multi-company comparison
  • Industry benchmarking

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.24%
按下载量换算1,332

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install financial-analyzer 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills