Install
$ agentstack add skill-openaccountant-skills-subscription-audit ✓ 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
Subscription Audit
Overview
Scans your transaction history for recurring subscription charges, totals your monthly and annual subscription spend, identifies subscriptions with no recent usage pattern changes, and recommends cancellation candidates.
Wilson Tools Used
anomaly_detect— detect unused or forgotten subscriptions via typeunused_subscriptionstransaction_search— find all recurring charges and verify subscription patterns
Workflow
- Run
anomaly_detectwithtypes: ["unused_subscriptions"]to surface subscriptions that appear to be unused or redundant. - Run
transaction_searchwithquery: "subscription OR recurring OR monthly"andmonths: 6to pull all subscription-like transactions over the past 6 months. - Group results by merchant name and calculate the monthly charge amount for each subscription.
- Sum all recurring charges to produce a total monthly subscription spend and annualized cost.
- Cross-reference the anomaly detection results with the transaction list. Flag any subscription that appeared in the unused list.
- Present a table with columns: Merchant, Monthly Cost, Annual Cost, Months Active, Status (Active / Flagged for Review).
- Recommend cancellation candidates — prioritize subscriptions flagged as unused, then sort remaining by cost descending.
- Calculate potential annual savings if all flagged subscriptions were cancelled.
Without Wilson
- Export transactions from your bank as a CSV file (Chase: Statements & Documents > Download Account Activity > CSV; Bank of America: Statements & Documents > Download Transactions).
- Open the CSV in a spreadsheet (Google Sheets or Excel).
- Sort by the Description column and look for repeating merchant names with consistent amounts.
- Use a filter: in Google Sheets, add a helper column with
=IF(COUNTIF(B:B, B2) > 1, "Recurring", "One-time")where column B is the merchant/description column. - Create a pivot table grouping by merchant name, summing the amounts, and counting occurrences.
- Any merchant appearing monthly with a consistent amount is likely a subscription.
- Multiply each monthly charge by 12 to get annual cost.
- Review each subscription and ask: "Did I use this in the last 30 days?" Cancel anything you answer "no" to.
- Common subscription merchants to search for: Netflix, Spotify, Hulu, Disney+, Amazon Prime, Adobe, Dropbox, iCloud, Google One, YouTube Premium, gym memberships, news subscriptions.
Important Notes
- Subscription detection relies on pattern matching in transaction descriptions. Some merchants use varying names across charges.
- Annual subscriptions (charged once per year) may not appear in a 6-month window. Extend the search range to 12-18 months to catch these.
- Free trials that convert to paid subscriptions are easy to miss — look for small initial charges from unfamiliar merchants.
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.