Command
/financial-health
Run financial ratio analysis, DCF valuation, budget variance analysis, and rolling forecasts. Usage: /financial-health <ratios|dcf|budget|forecast> <data.json>
One command from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeShips with claude-skills. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/financial-health
Context preview
What this command does when you run it.
Run financial ratio analysis, DCF valuation, budget variance analysis, and rolling forecasts. Usage: /financial-health <ratios|dcf|budget|forecast> <data.json>
Stats
Stars23,060
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
Command definition
financial-health.md
--- name: financial-health description: "Run financial ratio analysis, DCF valuation, budget variance analysis, and rolling forecasts. Usage: /financial-health <ratios|dcf|budget|forecast> <data.json>" argument-hint: "<ratios|dcf|budget|forecast> <data.json>" --- # /financial-health Analyze financial statements, build valuation models, assess budget variances, and construct forecasts. ## Usage ``` /financial-health ratios <financial_data.json> [--format json|text] /financial-health dcf <valuation_data.json> [--format json|text] /financial-health budget <budget_data.json> [--format json|text] /financial-health forecast <forecast_data.json> [--format json|text] ``` ## Examples ``` /financial-health ratios quarterly_financials.json --format json /financial-health dcf acme_valuation.json /financial-health budget q1_budget.json --format json /financial-health forecast revenue_history.json ``` ## Scripts - `finance/skills/financial-analyst/scripts/ratio_calculator.py` — Profitability, liquidity, leverage, efficiency, valuation ratios - `finance/skills/financial-analyst/scripts/dcf_valuation.py` — DCF enterprise and equity valuation with sensitivity analysis - `finance/skills/financial-analyst/scripts/budget_variance_analyzer.py` — Actual vs budget vs prior year variance analysis
