Install
$ agentstack add skill-openaccountant-skills-expense-optimizer ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Expense Optimizer
Overview
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.
Wilson Tools Used
transaction_search— detect recurring charges by pattern and frequencyanomaly_detect— flag subscriptions with price increases or irregular chargesspending_summary— identify highest-spend recurring categories
Workflow
- Use
transaction_searchto find all transactions from the last 6 months. - Identify recurring charges by grouping transactions with similar descriptions and regular intervals (weekly, monthly, annual).
- Build a recurring expense inventory:
| Service | Monthly Cost | Frequency | Last Charged | Category | |---------|-------------|-----------|--------------|----------|
- Use
anomaly_detectto flag:
- Subscriptions with recent price increases
- Charges that stopped (possible cancellation or card expiry)
- Services charged but not seen in a while (potential unused subscriptions)
- Classify each recurring expense into optimization categories (see table below).
- Present findings with estimated annual savings for each recommendation.
- Summarize total potential savings.
Optimization Categories
| 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 |
Without Wilson
To find recurring expenses manually:
Step-by-Step in a Spreadsheet
- Export 6 months of transactions from your bank as CSV.
- Sort by Description alphabetically to group similar charges.
- Identify recurring charges:
- Filter for common subscription amounts: $4.99, $9.99, $12.99, $14.99, $15.99, $19.99
- Search for keywords:
SUBSCRIPTION,RECURRING,MONTHLY,ANNUAL,RENEWAL - Look for identical amounts from the same vendor appearing monthly
- Build your subscription inventory in a new sheet:
`` =SUMIFS(Amount, Description, "*NETFLIX*", Date, ">="&TODAY()-180) / 6 `` This gives the average monthly cost for Netflix over the last 6 months.
- Detect price increases: Compare the most recent charge to the oldest charge for each vendor:
`` 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)) ``
- Calculate annual cost:
=MonthlyCost * 12 - Sum potential savings: Add up the annual cost of services you'd cancel, downgrade, or switch.
Free Tools
- Rocket Money (formerly Truebill): Automatically detects and helps cancel subscriptions
- Trim: Negotiates bills on your behalf (takes a percentage of savings)
- Bobby (iOS app): Manual subscription tracker with renewal reminders
Important Notes
- Recurring detection works best with 3+ months of transaction history. With less data, some annual charges may be missed.
- Annual charges (e.g., Amazon Prime, domain renewals) only appear once — Wilson looks back 12 months for these if data is available.
- Some services use different billing descriptors than their brand name (e.g., "GOOGLE *YouTube" for YouTube Premium). Wilson groups these by learning common aliases.
- This skill identifies candidates for optimization but does not cancel or modify any services on your behalf.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: openaccountant
- Source: openaccountant/skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.