Analyzes transaction history to identify recurring expenses, unused subscriptions, duplicates, and optimization opportunities like cancellations or downgrades with estimated annual savings.
npx claudepluginhub openaccountant/skillsThis skill uses the workspace's default tool permissions.
Analyze your transaction history to identify recurring expenses, unused subscriptions, duplicate services, and optimization opportunities. Surfaces actionable savings by detecting charges you may have forgotten about or services you could downgrade.
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.
Analyze your transaction history to identify recurring expenses, unused subscriptions, duplicate services, and optimization opportunities. Surfaces actionable savings by detecting charges you may have forgotten about or services you could downgrade.
transaction_search — detect recurring charges by pattern and frequencyanomaly_detect — flag subscriptions with price increases or irregular chargesspending_summary — identify highest-spend recurring categoriestransaction_search to find all transactions from the last 6 months.| Service | Monthly Cost | Frequency | Last Charged | Category |
|---|
anomaly_detect to flag:
| Category | Description | Examples |
|---|---|---|
| Cancel | Services you likely don't use | Gym memberships with no related spending nearby, streaming services you haven't watched |
| Downgrade | Premium tiers you could reduce | Phone plan with unused data, cloud storage over 50% empty |
| Negotiate | Services with competitive alternatives | Internet, insurance, cell phone |
| Consolidate | Overlapping services | Multiple streaming, multiple cloud storage, multiple music services |
| Switch | Cheaper alternatives exist | Bank fees (switch to no-fee), high-interest debt (refinance) |
| Keep | Good value, actively used | No action needed |
To find recurring expenses manually:
SUBSCRIPTION, RECURRING, MONTHLY, ANNUAL, RENEWAL=SUMIFS(Amount, Description, "*NETFLIX*", Date, ">="&TODAY()-180) / 6
This gives the average monthly cost for Netflix over the last 6 months.Current: =INDEX(Amount, MATCH(1, (Description="*NETFLIX*")*(Date=MAX(IF(Description="*NETFLIX*",Date))), 0))
Original: =INDEX(Amount, MATCH(1, (Description="*NETFLIX*")*(Date=MIN(IF(Description="*NETFLIX*",Date))), 0))
=MonthlyCost * 12