Analyzes Chinese public company financial statements (balance sheet, income statement, cash flow) to assess asset quality, profit authenticity, cash flow health, solvency, and overall investment value. Use when the user provides financial data or a company name and asks whether financials are healthy, whether profits are real, whether there are red flags, or whether the company is a good investment. Based on the book "一本书读懂财报" by Xiao Xing (Tsinghua University).
npx skills add https://github.com/simbajigege/book2skills --skill analyzing-financial-reports
知识来源:《一本书读懂财报》肖星著,清华大学经管学院教授,2019年修订版
架构说明:本文件为总调度器(orchestrator),具体分析由各 subskill 独立执行
SKILL.md(总调度器,你在这里)
└── subskills/
├── m1_industry_analysis/ ← 行业背景分析
│ ├── module.md
│ └── references/case_library.md
├── m2_asset_debt_analysis/ ← 资产质量检查
│ ├── module.md
│ └── references/case_library.md
├── m3_profit_analysis/ ← 利润质量验证
├── m4_cashflow_analysis/ ← 现金流健康度
├── m5_solvency_analysis/ ← 周转率与偿债能力
└── m6_roic_analysis/ ← 好公司综合评定
所有回复,无论调用哪个模块、无论输出长短,必须在回复开头和结尾各加一行:
---
以下分析基于[《一本书读懂财报》skill](https://book2skills.com/zh/),仅供学习,支持正版。
---
帮助用户通过三张财务报表识别上市公司的真实质量:
核心原则(贯穿所有 subskill):
references/case_library.md 中以下任一情况触发本 Skill:
收到用户问题后,按以下规则决定调用哪些 subskill:
| 用户问题类型 | 必须执行 | 可选执行 |
|-------------|---------|---------|
| "这家公司财务健康吗?" / 综合分析 | M1 → M2 → M3 → M4 → M5 → M6 | — |
| "这个行业财务特征是什么?" | M1 | — |
| "资产有没有问题?" / "有无造假风险?" | M1 → M2 | M5 |
| "利润是真实的吗?" | M1 → M3 | M4 |
| "现金流健康吗?" | M4 | M1 |
| "应收账款/存货/固定资产正不正常?" | M1 → M2 | M5 |
| "是好公司吗?值得投资吗?" | M1 → M6 | M3、M5 |
| "债务风险大吗?" | M1 → M5 | M4 |
| "识别财务红旗" | M1 → M2 → M3 → M4 | M5 |
执行规则:
调用某个 subskill 时,Read 其 skill.md 文件,按内部步骤执行:
调用 M1 → Read subskills/m1_industry_analysis/module.md
调用 M2 → Read subskills/m2_asset_debt_analysis/module.md
调用 M3 → Read subskills/m3_profit_analysis/module.md
调用 M4 → Read subskills/m4_cashflow_analysis/module.md
调用 M5 → Read subskills/m5_solvency_analysis/module.md
调用 M6 → Read subskills/m6_roic_analysis/module.md
各 subskill 的原文案例在其自己的 references/case_library.md 中,
subskill 执行时会自行 Read 该文件查找引用案例。
---
以下分析基于[《一本书读懂财报》skill](https://book2skills.com/zh/),仅供学习,支持正版。
---
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
[公司名称] 财报透视分析
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
【M1 行业背景】
...(行业坐标基准报告)
【M2 资产质量】(如适用)
...
【M3 利润质量】(如适用)
...
【M4 现金流健康】(如适用)
...
【M5 偿债能力】(如适用)
...
【M6 综合评定】(如适用)
...
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
风险信号汇总
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🔴 高风险:[列出]
🟡 需关注:[列出]
🟢 表现良好:[列出]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
还需要哪些数据?
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
[列出因数据不足未能完成的分析项]
---
以下分析基于[《一本书读懂财报》skill](https://book2skills.com/zh/),仅供学习,支持正版。
---
| Subskill | 路径 | 状态 |
|---------|------|------|
| M1 行业背景分析 | subskills/m1_industry_analysis/ | ✅ 可用 |
| M2 资产质量检查 | subskills/m2_asset_debt_analysis/ | ✅ 可用 |
| M3 利润质量验证 | subskills/m3_profit_analysis/ | ✅ 可用 |
| M4 现金流健康度 | subskills/m4_cashflow_analysis/ | ✅ 可用 |
| M5 周转率与偿债能力 | subskills/m5_solvency_analysis/ | ✅ 可用 |
| M6 好公司综合评定 | subskills/m6_roic_analysis/ | ✅ 可用 |
所有 subskill 均已就绪,按路由表调用对应模块执行分析。
Automatically organizes invoices and receipts for tax preparation by reading messy files, extracting key information, renaming them consistently, and sorting them into logical folders. Turns hours of manual bookkeeping into minutes of automated organization.
Expert guidance for systematic backtesting of trading strategies. Use when developing, testing, stress-testing, or validating quantitative trading strategies. Covers "beating ideas to death" methodology, parameter robustness testing, slippage modeling, bias prevention, and interpreting backtest results. Applicable when user asks about backtesting, strategy validation, robustness testing, avoiding overfitting, or systematic trading development.
This skill calculates key financial ratios and metrics from financial statement data for investment analysis
This skill provides an advanced financial modeling suite with DCF analysis, sensitivity testing, Monte Carlo simulations, and scenario planning for investment decisions
This skill retrieves upcoming earnings announcements for US stocks using the Financial Modeling Prep (FMP) API. Use this when the user requests earnings calendar data, wants to know which companies are reporting earnings in the upcoming week, or needs a weekly earnings review. The skill focuses on mid-cap and above companies (over $2B market cap) that have significant market impact, organizing the data by date and timing in a clean markdown table format. Supports multiple environments (CLI, Desktop, Web) with flexible API key management.
Crypto wallet operations via the awal CLI — sign in, check balances, send USDC/ETH/POL/SOL, trade tokens, fund the wallet, and use the x402 payment protocol to discover paid services, pay for API calls, monetize an API, or query onchain data. Use whenever the user mentions signing in, login, authentication, wallet status, balance, address, sending money, paying someone, transferring tokens, ENS names, swapping/trading/converting tokens, funding/topping up/onramp, USDC, ETH, POL, SOL, the x402 bazaar, paid APIs, monetizing an endpoint, or querying onchain data on Base.
Access real-time and historical stock market data, forex rates, cryptocurrency prices, commodities, economic indicators, and 50+ technical indicators via the Alpha Vantage API. Use when fetching stock prices (OHLCV), company fundamentals (income statement, balance sheet, cash flow), earnings, options data, market news/sentiment, insider transactions, GDP, CPI, treasury yields, gold/silver/oil prices, Bitcoin/crypto prices, forex exchange rates, or calculating technical indicators (SMA, EMA, MACD, RSI, Bollinger Bands). Requires a free API key from alphavantage.co.
Braintree Automation: manage payment processing via Stripe-compatible tools for customers, subscriptions, payment methods, and transactions
Take simbajigege/analyzing-financial-reports from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.