Loading...
Loading...
Launch the Fava web UI for visual exploration of your Beancount ledger. Interactive charts, account views, queries, and reports in the browser. Use when you want to visually explore your financial data. CLEAR step: R (Report)
npx skill4agent add mikechongcan/cfo-stack cfo-favabean-check# Prefer explicit path when you know it
fava ./ledger/main.beancount --port 5000 --read-only
# Or use the helper script with auto-discovery
./bin/cfo-fava
# Or pass the ledger explicitly
./bin/cfo-fava ./ledger/main.beancount 5000./bin/cfo-fava./main.beancount./ledger/main.beancountmain.beancount-- Top expenses this month
SELECT account, sum(position) as total
WHERE account ~ "Expenses" AND date >= 2026-03-01
GROUP BY account ORDER BY total DESC
-- Unclassified transactions
SELECT date, payee, narration, position
WHERE account = "Expenses:Uncategorized"
-- GST/HST collected this quarter
SELECT date, payee, position
WHERE account = "Liabilities:GST-HST-Payable"
AND date >= 2026-01-01 AND date <= 2026-03-31--read-only