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.
npx claudepluginhub openaccountant/skillsThis skill uses the workspace's default tool permissions.
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.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Explores codebases via GitNexus: discover repos, query execution flows, trace processes, inspect symbol callers/callees, and review architecture.
Share bugs, ideas, or general feedback.
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.