Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问许可证需确认审计提醒

cash-flow-analysis现金流量分析

Agent Skill

cash-flow-analysis 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

264

周安装

11

GitHub Stars

4

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:cash-flow-analysis(现金流量分析)
来源仓库:https://github.com/tradeinsight-info/investment-analysis-skills
仓库路径:skills/cash-flow-analysis
安装命令:
npx skills add https://github.com/tradeinsight-info/investment-analysis-skills --skill cash-flow-analysis
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tradeinsight-info/investment-analysis-skills --skill cash-flow-analysis

简介

cash-flow-analysis 分析企业现金流量表,区分经营、投资与融资活动现金流质量。

  • 计算自由现金流、FCF 利润率等衍生指标,揭示盈利是否转化为实际现金流入。
  • 辅助判断资本分配优先级与长期财务可持续性,适用于投资决策与风险评估场景。
  • 依赖共享引用模块获取财务数据,需确保 API 密钥有效且目标公司财报可访问。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Cash Flow Analysis

Purpose

Analyze a company's cash flow statement to evaluate the quality and sustainability of its cash generation. Distinguish between cash earned from operations, cash deployed in investing activities, and cash raised or returned through financing activities. Compute derived metrics including free cash flow, FCF margin, and cash conversion ratios to assess whether reported earnings translate into actual cash. Surface trends that reveal capital allocation priorities and long-term financial sustainability.

Data Fetching Process

Consult ${CLAUDE_PLUGIN_ROOT}/skills/_shared/references/data-sources.md for full source details and fallback behavior.

  1. Resolve the ticker. Fetch https://www.sec.gov/files/company_tickers.json using the sec-fetch skill (see data-sources.md), locate the company's CIK, and pad it to 10 digits. Cache the CIK and official company name.
  2. Fetch structured financial data (primary). Request the SEC EDGAR XBRL company facts endpoint: https://data.sec.gov/api/xbrl/companyfacts/CIK{10-digit-CIK}.json Extract the following XBRL concepts under facts > us-gaap >... > units > USD: Filter for fp == "FY" entries. Sort by end date descending. Collect at least the last five fiscal years when available.

- Operating Activities: NetCashProvidedByUsedInOperatingActivities, DepreciationDepletionAndAmortization, ShareBasedCompensation, IncreaseDecreaseInAccountsReceivable, IncreaseDecreaseInInventories, IncreaseDecreaseInAccountsPayable - Investing Activities: PaymentsToAcquirePropertyPlantAndEquipment (CapEx), PaymentsToAcquireBusinessesNetOfCashAcquired, NetCashProvidedByUsedInInvestingActivities - Financing Activities: RepaymentsOfDebt, ProceedsFromIssuanceOfDebt, PaymentsForRepurchaseOfCommonStock, PaymentsOfDividends, NetCashProvidedByUsedInFinancingActivities - Supplemental: NetIncomeLoss (for quality-of-earnings ratio), CommonStockSharesOutstanding (for per-share calculations)

  1. Fetch pre-computed tables (secondary). If EDGAR data is incomplete or unavailable, fetch:

- https://stockanalysis.com/stocks/{ticker}/financials/cash-flow-statement/ — annual cash flow statement

  1. Fetch ratio data (supplementary). For pre-computed cash flow ratios:

- https://stockanalysis.com/stocks/{ticker}/financials/ratios/

Analysis Steps

Operating Cash Flow (OCF)

Extract and analyze the operating activities section:

  • Net cash from operations (OCF). The headline figure. Compare to net income to assess earnings quality.
  • Depreciation and Amortization (D&A). A non-cash add-back. Large D&A relative to CapEx suggests aging assets or an asset-light transition.
  • Stock-Based Compensation (SBC). A non-cash add-back that inflates OCF relative to true cash economics. Compute SBC as a percentage of OCF — a high ratio (above 20 percent) indicates that OCF overstates cash available to shareholders.
  • Working Capital Changes. Analyze changes in receivables, inventory, payables, and deferred revenue. Growing receivables faster than revenue suggests collection issues. Growing deferred revenue is a positive signal for subscription businesses.

Compute derived operating metrics:

  • OCF Margin = OCF / Revenue
  • OCF-to-Net-Income Ratio = OCF / Net Income (quality of earnings indicator; a ratio consistently above 1.0 indicates high-quality earnings backed by cash)

Investing Activities

Analyze capital deployment:

  • Capital Expenditures (CapEx). Cash spent on property, plant, and equipment. Distinguish between maintenance CapEx (sustaining existing operations) and growth CapEx (expanding capacity) when disclosures permit.
  • Acquisitions. Cash spent on business combinations. Large or frequent acquisitions may distort organic growth metrics.
  • CapEx Intensity = CapEx / Revenue. A high ratio indicates a capital-intensive business. Track the trend — rising CapEx intensity may indicate a growth investment phase or deteriorating capital efficiency.
  • CapEx vs D&A. When CapEx consistently exceeds D&A, the company is investing in growth. When CapEx falls below D&A, the company may be underinvesting in its asset base.

Financing Activities

Analyze how the company funds itself and returns capital:

  • Debt Activity. Net debt issuance minus repayments. Persistent net issuance increases leverage. Aggressive repayment may signal deleveraging.
  • Share Buybacks. Cash spent repurchasing common stock. Compare to SBC to assess whether buybacks are net accretive or merely offsetting dilution.
  • Dividends. Cash dividends paid. Compute the dividend payout ratio relative to both net income and FCF.
  • Net Shareholder Return = Buybacks + Dividends. Compare to FCF to assess sustainability of capital returns.

Free Cash Flow Metrics

Compute and present the following derived metrics for each period:

MetricFormulaInterpretation
Free Cash Flow (FCF)OCF − CapExCash available after maintaining/growing the asset base
FCF MarginFCF / RevenueEfficiency of converting revenue to free cash
FCF per ShareFCF / Diluted Shares OutstandingPer-share cash generation
FCF Growth(FCF current − FCF prior) / abs(FCF prior)Year-over-year FCF trajectory
Levered FCFOCF − CapEx (after interest payments already in OCF)Cash flow to equity holders
Unlevered FCFEBIT × (1 − tax rate) + D&A − CapEx − Change in Working CapitalCash flow to all capital providers; useful for EV-based valuation
FCF-to-Net-IncomeFCF / Net IncomeEarnings quality adjusted for CapEx

Present FCF metrics in a multi-year table. Persistent positive FCF indicates the company generates more cash than it consumes. Declining FCF despite rising net income is a red flag — it may indicate aggressive accounting, rising CapEx needs, or working capital deterioration.

Cash Flow Reconciliation

Walk from net income to OCF to FCF in a waterfall-style table:

Net Income → + D&A → + SBC → +/- Working Capital Changes → = OCF → - CapEx → = FCF

This reconciliation highlights which non-cash adjustments and working capital movements are most material.

Depth Handling

Consult ${CLAUDE_PLUGIN_ROOT}/skills/_shared/references/output-format.md for standard formatting rules.

  • Summary depth (default). Present three years of OCF, CapEx, FCF, FCF margin, and FCF per share in a single table. Include the OCF-to-net-income ratio. Add two to three sentences interpreting trends and quality of earnings.
  • Detailed depth. Expand to five years. Include the full cash flow reconciliation waterfall, a working capital changes breakdown, a financing activities summary showing buybacks vs dividends vs debt activity, and an unlevered FCF calculation. Provide extended commentary on capital allocation strategy, SBC impact, and sustainability of shareholder returns relative to FCF.

Sector-Specific Adjustments

  • REITs (Real Estate Investment Trusts). Standard FCF is not the appropriate measure. Compute:

- Funds From Operations (FFO) = Net Income + D&A on real estate assets − Gains on property sales - Adjusted FFO (AFFO) = FFO − Maintenance CapEx (recurring capital expenditures) - AFFO is the REIT equivalent of FCF and is the basis for REIT valuation and dividend sustainability analysis.

  • Capital-intensive industries (Utilities, Energy, Industrials). CapEx intensity is structurally high. Focus on the trend in CapEx relative to D&A and the maintenance vs growth CapEx split. Regulatory CapEx (mandated by regulators) should be distinguished from discretionary growth CapEx.
  • Technology / SaaS. SBC is often a significant component of OCF. Always compute FCF both including and excluding SBC. Capitalized software development costs may reduce reported CapEx — check for PaymentsForSoftware or similar concepts.
  • Financial services. Traditional OCF analysis may not apply cleanly due to the nature of banking cash flows. Focus on net interest income, provision for loan losses, and cash returns to shareholders rather than the standard OCF-CapEx framework.

Output

Follow the output structure defined in ${CLAUDE_PLUGIN_ROOT}/skills/_shared/references/output-format.md. Begin with the standard header, present data in markdown tables with right-aligned numbers and units, include source links after each data section, and close with the standard disclaimer.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.32%
按下载量换算31

Claude

30.65%
按下载量换算27

Cursor

18.6%
按下载量换算16

Gemini CLI

9.71%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills