Skip to content
Marketing
Skill

/cfo-skill

Read-only CFO data dashboard for bootstrapped startups. Two modes, CSV templates (works with any stack: Attio/HubSpot/Salesforce + Qonto/Mercury/Brex + Stripe + Moss/Ramp/Pleo) or live API pull from Attio + Qonto + Stripe + Moss. Computes runway, burn rate, MRR/ARR, NRR,

From plugin
5050-gtm
38 skills
Install
$ npx -y skills add NachoLafuente/5050-gtm --skill cfo-skill --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/cfo-skill

Context preview

The summary Claude sees to decide when to auto-load this skill.

Read-only CFO data dashboard for bootstrapped startups. Two modes, CSV templates (works with any stack: Attio/HubSpot/Salesforce + Qonto/Mercury/Brex + Stripe + Moss/Ramp/Pleo) or live API pull from Attio + Qonto + Stripe + Moss. Computes runway, burn rate, MRR/ARR, NRR,

SKILL.md

cfo-skill.SKILL.md
name: cfo-skill
description: Read-only CFO data dashboard for bootstrapped startups. Two modes, CSV templates (works with any stack: Attio/HubSpot/Salesforce + Qonto/Mercury/Brex + Stripe + Moss/Ramp/Pleo) or live API pull from Attio + Qonto + Stripe + Moss. Computes runway, burn rate, MRR/ARR, NRR, customer concentration, AR aging, DSO, vendor spend, departmental burn. Outputs an Excel workbook with 8 sheets. Use when the user asks "what's our runway?", "how much cash do we have?", "what's our burn?", "who are our biggest customers?", "where is spend going?", "what's our MRR?", "AR aging?". Read-only by design. NOT financial, legal, tax, or investment advice.

CFO Skill

> ## ⚠️ DISCLAIMER > > **This skill displays data. It is NOT financial, legal, tax, accounting, or investment advice.** > > Numbers may be stale, miscategorized, or reflect bugs in upstream systems. Frameworks below (LTV:CAC, runway, burn multiple, Rule of 40) are heuristics, not guarantees. Decisions about hiring, fundraising, distributions, taxes, or solvency must be made by you in consultation with a qualified CFO, accountant, lawyer, or tax advisor. The author and contributors accept no liability for decisions made based on this skill's output.

---

Two ways to use it

Mode 1: CSV templates (works with any stack)

Drop four CSVs into a folder, run one command, get an Excel workbook. Works with **any** CRM/bank/billing stack, Attio, HubSpot, Salesforce, Pipedrive, Mercury, Brex, Stripe, Chargebee, Ramp, Pleo, whatever.

Templates live in [`templates/`](templates/). Realistic example data lives in [`examples/`](examples/) so you can try the pipeline before plugging in real data.

python skills/cfo-skill/run.py --source csv --csv-dir ./my-data --output cfo.xlsx

CSV schemas (column headers in `templates/`):

| File | Columns | |------|---------| | `customers.csv` | `customer_id, customer_name, status, signed_up_at, churned_at, mrr, plan` | | `cash_movements.csv` | `date, account, direction, amount, currency, counterparty, category, department, note` | | `invoices.csv` | `invoice_id, customer, issued_at, due_at, amount, currency, status` | | `balances.csv` | `account, currency, balance, as_of` |

`status` values: `active`, `churned`, `lead` (only `active` counts toward MRR). `direction` values: `in`, `out`. Invoice `status` values: `paid`, `unpaid`, `draft`.

Mode 2: Live API pull (Attio + Qonto + Stripe + Moss)

Set credentials in your environment, run the puller, get the same Excel workbook from live data.

python skills/cfo-skill/run.py --source api --providers all --output cfo.xlsx

Or pick specific providers, they run in the order you list, and **later writers win** on `customers.csv` / `invoices.csv`:

python skills/cfo-skill/run.py --source api --providers qonto,stripe,moss      # Stripe-billed SaaS
python skills/cfo-skill/run.py --source api --providers qonto,attio,moss        # CRM-driven (no Stripe)
python skills/cfo-skill/run.py --source api --providers qonto,attio,stripe,moss # both, Stripe wins on MRR

Provider-by-provider:

| Provider | Writes | Best at | Reference | |----------|--------|---------|-----------| | **Stripe** | `customers.csv` (with real MRR), `invoices.csv` | Authoritative SaaS revenue. **Use this if you bill via Stripe.** | [references/stripe.md](references/stripe.md) | | **Attio** | `customers.csv` | CRM-driven customer state, plan, lifecycle | [references/attio.md](references/attio.md) | | **Qonto** | `balances.csv`, `cash_movements.csv`, `invoices.csv` | Bank truth, cash position, transactions, AR | [references/qonto.md](references/qonto.md) | | **Moss** | appends to `cash_movements.csv` | Categorized card spend, vendors, departments | [references/moss.md](references/moss.md) |

Each puller writes its slice to a temp folder; the same compute layer then generates the Excel workbook. **You don't have to use all four.** A Stripe + Mercury founder can run `--providers stripe` and use CSV templates for the bank side. A HubSpot + Brex founder skips API mode entirely and uses CSV for everything.

---

Required environment variables

Only set the ones for providers you actually use.

| Provider | Variables | |----------|-----------| | Stripe | `STRIPE_SECRET_KEY` (use a restricted key with read on customers, subscriptions, invoices, payouts) | | Attio | `ATTIO_API_KEY`. Optional: `ATTIO_MRR_ATTR`, `ATTIO_STATUS_ATTR`, `ATTIO_ACTIVE_VAL`, `ATTIO_CHURNED_ATTR`, `ATTIO_PLAN_ATTR`, `ATTIO_NAME_ATTR` | | Qonto | `QONTO_API_KEY` + `QONTO_SECRET_KEY` (the "secret key" is your Qonto org slug) | | Moss | `MOSS_KEY_ID` + `MOSS_SECRET_KEY` (OAuth client credentials, scope `read`) |

Skill is read-only, never request `write` scopes. Never log or echo a secret.

---

What the workbook contains

Eight sheets:

1. **Summary**: headline metrics with heuristic flags (runway, concentration, DSO, burn multiple) 2. **Cash Flow**: monthly inflows / outflows / net for the trailing 3 months 3. **Customers**: full customer table from your input data 4. **Concentration**: top 1 / 5 / 10% of MRR + top-10 customer table 5. **AR Aging**: unpaid invoices bucketed (current, 1-30, 31-60, 61-90, 90+) + per-invoice detail 6. **Spend**: by category, by vendor, by department 7. **Recurring Vendors**: heuristic detection (3+ similar transactions) 8. **Disclaimer**: full disclaimer in-workbook

---

Computed metrics

| Metric | Formula | Heuristic flags | |--------|---------|-----------------| | Cash balance | sum of bank account balances | - | | Runway | cash ÷ trailing 3-month avg net burn | <12 mo red, 12-24 mo yellow | | Burn multiple | net burn ÷ MRR | >2× red | | MRR / ARR | sum of active customer MRR × 12 | - | | Customer concentration | top-N MRR ÷ total MRR | >25% top-1 red | | AR aging | unpaid invoices bucketed by days past due | 60+ days red | | DSO | (AR ÷ 90d issued sales) × 90 days | <30 green, >60 red | | Spend by category | sum of outflows grouped b

Read more
Ships with5050-gtm

A growing collection of GTM skills for Claude Code, built by 5050Growth. Skills you can drop into Claude Code (or run as plain Python) to handle the GTM work that doesn't justify a SaaS subscription.

Get the whole plugin
Stats
3
Stars
0
Forks
Maintained
Maintenance
Python
Language
MIT
License
2mo ago
Last commit
4mo ago
Created

Repo: NachoLafuente/5050-gtm

Other skills on 5050-gtm.