Help us improve
Share bugs, ideas, or general feedback.
From financial-analysis
Audit a spreadsheet for formula accuracy, errors, and common mistakes. Scopes to a selected range, a single sheet, or the entire model (including financial-model integrity checks like BS balance, cash tie-out, and logic sanity). Triggers on "audit this sheet", "check my formulas", "find formula errors", "QA this spreadsheet", "sanity check this", "debug model", "model check", "model won't balance", "something's off in my model", "model review".
npx claudepluginhub rodaquino-omni/crowtech-healthcare-finance --plugin financial-analysisHow this skill is triggered — by the user, by Claude, or both
Slash command
/financial-analysis:audit-xlsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Audit formulas and data for accuracy. Scope determines depth.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Audit formulas and data for accuracy. Scope determines depth.
If not given, ask:
Scope?
- selection — currently selected range
- sheet — current active sheet
- model — whole workbook + financial-model integrity checks (BS balance, cash tie-out, roll-forwards, logic sanity)
Use model for DCF, LBO, 3-statement, merger, comps before IC or client delivery.
| Check | What to look for |
|---|---|
| Formula errors | #REF!, #VALUE!, #N/A, #DIV/0!, #NAME? |
| Hardcodes inside formulas | =A1*1.05 — 1.05 should be a cell reference |
| Inconsistent formulas | Breaks the pattern of its row/column neighbors |
| Off-by-one ranges | SUM/AVERAGE that misses first or last row |
| Pasted-over formulas | Looks like a formula but is hardcoded |
| Circular references | Intentional or accidental |
| Broken cross-sheet links | References to cells that moved or were deleted |
| Unit/scale mismatches | Thousands mixed with millions, % stored as whole numbers |
| Hidden rows/tabs | Could contain overrides or stale calcs |
Identify the model type (DCF / LBO / 3-statement / merger / comps / custom) and run the appropriate checks.
| Check | What to look for |
|---|---|
| Input/formula separation | Inputs clearly separated from calculations |
| Color convention | Blue=input, black=formula, green=link, applied consistently |
| Tab flow | Logical order (Assumptions -> IS -> BS -> CF -> Valuation) |
| Date headers | Consistent across all tabs |
| Units | Consistent (thousands vs millions vs actuals) |
| Check | Test |
|---|---|
| BS balances | Total Assets = Total Liabilities + Equity (every period) |
| RE rollforward | Prior RE + Net Income - Dividends = Current RE |
| Goodwill/intangibles | Flow from acquisition assumptions (if M&A) |
If BS doesn't balance, quantify the gap per period and trace where it breaks first.
| Check | Test |
|---|---|
| Cash tie-out | CF Ending Cash = BS Cash (every period) |
| CF sums | CFO + CFI + CFF = delta Cash |
| D&A match | D&A on CF = D&A on IS |
| CapEx match | CapEx on CF matches PP&E rollforward |
| WC changes | Signs match BS movements (delta AR, delta AP, delta Inv) |
| Check | Test |
|---|---|
| Revenue build | Ties to segment/product detail (for healthcare services: same-store / de novo / M&A reconciles to total) |
| Tax | Tax expense = Pre-tax income x tax rate (allow for deferred tax adj) |
| Share count | Ties to dilution schedule (options, converts, buybacks) |
| Check | Flag if |
|---|---|
| Growth rates | >100% revenue growth without explanation |
| Margins | Outside industry norms |
| Terminal value dominance | TV > ~75% of DCF EV (yellow flag) |
| Hockey-stick | Projections ramp unrealistically in out-years |
| Compounding | EBITDA compounds to absurd $ by Year 10 |
| Edge cases | Model breaks at 0% growth, negative EBITDA, negative leverage |
DCF:
LBO:
Merger:
3-statement:
Output a findings table:
| # | Sheet | Cell/Range | Severity | Category | Issue | Suggested Fix |
|---|
Severity:
For model scope, prepend a summary:
Model type: [DCF/LBO/3-stmt/...] — Overall: [Clean / Minor Issues / Major Issues] — [N] critical, [N] warnings, [N] info
Don't change anything without asking — report first, fix on request.