subscription-audit
Installation
SKILL.md
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.
Related skills