Generates 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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openaccountant-skills:year-end-summaryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Comprehensive annual financial review covering full-year income and expenses, monthly trends, category breakdowns, year-over-year comparisons, and financial highlights. Useful for tax preparation, goal setting, and understanding your overall financial picture.
Comprehensive annual financial review covering full-year income and expenses, monthly trends, category breakdowns, year-over-year comparisons, and financial highlights. Useful for tax preparation, goal setting, and understanding your overall financial picture.
spending_summary — monthly and category-level aggregates for the full yeartransaction_search — find notable transactions, income sources, largest expensesanomaly_detect — identify year-level anomalies and trend shiftsexport_transactions — export the full report as Markdown or CSVspending_summary for each month of the year to build a monthly trend table.spending_summary for the full year grouped by category.transaction_search to identify:
anomaly_detect across the full year to find:
# Year-End Summary — [Year]
## Annual Overview
| Metric | [Year] | [Prior Year] | Change |
|--------|--------|--------------|--------|
| Total Income | $XX,XXX | $XX,XXX | +/-XX% |
| Total Expenses | $XX,XXX | $XX,XXX | +/-XX% |
| Net Savings | $XX,XXX | $XX,XXX | +/-XX% |
| Savings Rate | XX% | XX% | +/-X pts |
## Monthly Trend
| Month | Income | Expenses | Net |
|-------|--------|----------|-----|
| Jan | ... | ... | ... |
| ... | ... | ... | ... |
## Spending by Category (Full Year)
| Category | Amount | % of Total | vs. Prior Year |
|----------|--------|------------|----------------|
| ... | ... | ... | ... |
## Top 10 Expenses
1. ...
## Income Sources
| Source | Total | Frequency |
|--------|-------|-----------|
| ... | ... | ... |
## Year Highlights
- Highest spending month: [Month] ($X,XXX)
- Lowest spending month: [Month] ($X,XXX)
- Biggest single expense: [Description] ($X,XXX)
- Most frequent vendor: [Vendor] (XX transactions)
To build a year-end summary in a spreadsheet:
=TEXT(A2,"YYYY-MM") to extract)=IF(C2>0,"Income","Expense"))=VLOOKUP to pull prior year category totals next to current year=(Current - Prior) / ABS(Prior) * 100Annual Income: =SUMPRODUCT((YEAR(A:A)=2025)*(C:C>0)*C:C)
Annual Expenses: =ABS(SUMPRODUCT((YEAR(A:A)=2025)*(C:C<0)*C:C))
Savings Rate: =(Income-Expenses)/Income*100
Highest Month: Use MAX on monthly totals pivot
Most Frequent: =INDEX(B:B,MATCH(MAX(COUNTIF(B:B,B:B)),COUNTIF(B:B,B:B),0))
tax-deduction-tracker skill for tax season preparation.npx claudepluginhub openaccountant/skillsGenerates monthly financial digests with income/expenses, savings rate, category breakdowns, top expenses, anomalies, trends, and MoM changes using spending_summary, transaction_search, and anomaly_detect.
Analyzes bank transactions from CSV exports, categorizes spending, tracks budgets, detects overspending, and generates interactive HTML reports. Useful for personal finance management.
Generates detailed expense reports with category breakdowns, top vendors, trends, insights, and period comparisons from Norman Finance transactions.