Generates custom financial reports with user-defined date ranges, categories, transaction types, minimum amounts, and output formats using spending_summary, transaction_search, and export_transactions tools.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openaccountant-skills:custom-reportThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate tailored financial reports by specifying date ranges, category filters, transaction types, and output format. Combine spending summaries with transaction-level detail in a single report.
Generate tailored financial reports by specifying date ranges, category filters, transaction types, and output format. Combine spending summaries with transaction-level detail in a single report.
spending_summary — aggregate spending by category for the specified periodtransaction_search — pull detailed transactions matching filtersexport_transactions — export report data to CSV or Markdownspending_summary to generate category-level aggregates for the date range.transaction_search to pull individual transactions matching the filters.export_transactions to write the file.You can build custom reports in a spreadsheet:
Date, Description, Amount, Category.=FILTER(A:D, A:A >= DATE(2025,1,1), A:A <= DATE(2025,3,31)) for Q1 2025.Total Expenses: =SUMIFS(C:C, C:C, "<0", A:A, ">="&DATE(2025,1,1), A:A, "<="&DATE(2025,3,31))
Total Income: =SUMIFS(C:C, C:C, ">0", A:A, ">="&DATE(2025,1,1), A:A, "<="&DATE(2025,3,31))
Category Total: =SUMIFS(C:C, D:D, "Groceries", A:A, ">="&DATE(2025,1,1), A:A, "<="&DATE(2025,3,31))
# Filter by date range
csvgrep -c Date -r "2025-0[1-3]" transactions.csv | csvsort -c Amount | head -20
# Summary by category
csvstat -c Amount --group Category transactions.csv
npx claudepluginhub openaccountant/skillsGenerates annual financial reviews with income/expense totals, monthly trends, category breakdowns, YoY comparisons, top expenses, income sources, anomalies, and Markdown/CSV exports from transaction data. Useful for tax prep and planning.
Generates detailed expense reports with category breakdowns, top vendors, trends, insights, and period comparisons from Norman Finance transactions.
Aggregates expense receipts from email by time period, categorizes by project or client, and outputs structured JSON schema for expense tools or accountants. Use for building reports from email receipts like 'what did I spend this month'.