From Octagon
Retrieve year-over-year growth in cash flow metrics including Operating Cash Flow, Free Cash Flow, and Net Cash Flow. Use when analyzing company cash generation trends, capital allocation efficiency, or liquidity trajectory.
How this skill is triggered — by the user, by Claude, or both
Slash command
/octagon-claude-plugin:cash-flow-growthThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Retrieve and analyze year-over-year growth in cash flow metrics for public companies using the Octagon Claude plugin.
Retrieve and analyze year-over-year growth in cash flow metrics for public companies using the Octagon Claude plugin.
Ensure the Octagon Claude plugin is installed and configured in Claude Code before invoking this skill.
Retrieve cash-flow growth metrics for <TICKER>, limited to <N> records and filtered by period <FY|Q>.
MCP Call:
{
"server": "octagon-claude-plugin",
"toolName": "octagon-agent",
"arguments": {
"prompt": "Retrieve cash-flow growth metrics for AAPL, limited to 5 records and filtered by period FY"
}
}
The agent returns a table with YoY growth percentages:
| Fiscal Year | Operating Cash Flow Growth (%) | Free Cash Flow Growth (%) | Net Cash Flow Growth (%) |
|---|---|---|---|
| 2025 | -5.73 | -9.23 | 8.55 |
| 2024 | 6.98 | 9.26 | -1.14 |
| 2023 | -9.50 | -10.64 | 1.53 |
| 2022 | 17.41 | 19.89 | -1.84 |
| 2021 | 28.96 | 26.70 | 0.63 |
Data Source: octagon-financials-agent
After receiving data, generate observations:
| Metric | Definition |
|---|---|
| Operating Cash Flow Growth | YoY change in cash from core business operations |
| Free Cash Flow Growth | YoY change in OCF minus Capital Expenditures |
| Net Cash Flow Growth | YoY change in total cash position (OCF + Investing + Financing) |
When Operating Cash Flow Growth > Revenue Growth:
When FCF Growth differs significantly from OCF Growth:
Net Cash Flow often volatile due to:
Significant OCF swings often driven by:
Compare to income statement:
Based on results, suggest deeper analysis:
npx claudepluginhub octagonai/octagon-claude-plugin --plugin octagon-claude-pluginGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.