- Integrate saas-metrics-coach into cs-financial-analyst agent with SaaS health and unit economics workflows - Add /financial-health and /saas-health slash commands - Add /update-docs repo command for post-creation sync pipeline - Remove seek-and-analyze-video skill (requires paid external API) - Update all documentation (CLAUDE.md, README.md, docs site, marketplace) - Sync Codex CLI (150 skills), Gemini CLI (207 items), fix count consistency - Regenerate 206 MkDocs pages, fix docs/index.md meta 170→171, getting-started.md finance bundle 1→2 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
39 lines
1.5 KiB
Markdown
39 lines
1.5 KiB
Markdown
---
|
|
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>
|
|
---
|
|
|
|
# /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/financial-analyst/scripts/ratio_calculator.py` — Profitability, liquidity, leverage, efficiency, valuation ratios
|
|
- `finance/financial-analyst/scripts/dcf_valuation.py` — DCF enterprise and equity valuation with sensitivity analysis
|
|
- `finance/financial-analyst/scripts/budget_variance_analyzer.py` — Actual vs budget vs prior year variance analysis
|
|
- `finance/financial-analyst/scripts/forecast_builder.py` — Driver-based revenue forecasting with scenario modeling
|
|
|
|
## Skill Reference
|
|
→ `finance/financial-analyst/SKILL.md`
|
|
|
|
## Related Commands
|
|
- `/saas-health` — SaaS-specific metrics (ARR, MRR, churn, CAC, LTV, Quick Ratio)
|