Install
$ agentstack add skill-openaccountant-skills-spending-review ✓ 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
Spending Review
Overview
Produces a categorized breakdown of your spending for a given period, compares it against prior months to show trends, and highlights categories where spending increased or decreased significantly.
Wilson Tools Used
spending_summary— get total spending grouped by category for any date rangetransaction_search— drill into specific categories for transaction-level detail
Workflow
- Run
spending_summaryfor the current month to get category-level totals. - Run
spending_summaryfor the previous month to establish a comparison baseline. - Calculate the dollar change and percentage change for each category between the two months.
- Flag any category where spending increased by more than 20% or more than $100.
- For each flagged category, run
transaction_searchwithcategory: ""andmonths: 1to pull the individual transactions driving the increase. - Present results as a summary table with columns: Category, This Month, Last Month, Change ($), Change (%), Trend Arrow.
- Below the table, list the top 3 categories by absolute spending and the top 3 by percentage increase.
- Provide a one-paragraph narrative summary describing the overall spending pattern and notable changes.
Without Wilson
- Export your last two months of transactions as CSV files from your bank (most banks: Account > Statements > Download > CSV format).
- Open both CSVs in Google Sheets. Combine them into one sheet with a "Month" column added.
- If your bank doesn't categorize transactions, manually add a "Category" column. Common categories: Groceries, Dining, Transportation, Utilities, Entertainment, Shopping, Health, Subscriptions.
- Create a pivot table: Rows = Category, Columns = Month, Values = SUM of Amount.
- Add a calculated column for change:
=B2-C2(this month minus last month). - Add a percentage change column:
=IF(C2<>0, (B2-C2)/ABS(C2)*100, "New"). - Conditional format the change column: red for increases, green for decreases (since spending is negative, reverse the logic or use absolute values).
- Sort by absolute change descending to see your biggest movers.
- For a quick visual, insert a bar chart from the pivot table showing this month vs. last month by category.
Important Notes
- Category accuracy depends on your bank's auto-categorization or Wilson's categorization rules. Run the
categorizetool first if many transactions are uncategorized. - One-time large purchases (appliances, travel, medical) can skew month-over-month comparisons. Consider whether a spike is a true trend or an outlier.
- For a more meaningful view, compare against a 3-month rolling average rather than just the prior month.
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.