Financial Report Automator
/install financial-report-automator
Financial Report Automator
Workflow
- Gather data — Use finance skill tools (
yfinance_get_stock_price,yfinance_get_historical_data,yfinance_get_dividends,financial_datasets_get_financials) to fetch prices and dividends for the target ticker and period. - Calculate returns — Use
scripts/generate_report.pyfor dividend-adjusted total return. The script expects a CSV with columnsdate,close,open,high,low,volume(case-insensitive, dollar signs OK). - Publish — If Feishu Wiki integration is needed, use
references/feishu_publish.mdfor the publishing workflow.
Return Calculation
The core fix in v1.0.1: quarterly_return now includes dividends (total shareholder return), not just price change.
price_return = (end_price - start_price) / start_pricequarterly_return = (end_price - start_price + dividends_total) / start_price
Scripts
scripts/generate_report.py
Standalone report generator. Reads a price CSV + optional dividend JSON.
python3 scripts/generate_report.py --csv \x3Cpath> --ticker AAPL --quarter 2 --year 2026 [--dividends dividends.json]
Dividend JSON format:
[{"date": "2026-05-15", "amount": 0.25}]
References
references/feishu_publish.md— Feishu Wiki publishing integration details.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install financial-report-automator - After installation, invoke the skill by name or use
/financial-report-automator - Provide required inputs per the skill's parameter spec and get structured output
What is Financial Report Automator?
Automate quarterly financial report generation for stocks. Use when generating, scheduling, or publishing stock performance reports (quarterly, annual, or cu... It is an AI Agent Skill for Claude Code / OpenClaw, with 47 downloads so far.
How do I install Financial Report Automator?
Run "/install financial-report-automator" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Financial Report Automator free?
Yes, Financial Report Automator is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Financial Report Automator support?
Financial Report Automator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Financial Report Automator?
It is built and maintained by terrycarter1985 (@terrycarter1985); the current version is v1.0.1.