Install
$ agentstack add skill-openaccountant-skills-monthly-digest ✓ 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
Monthly Digest
Overview
Produce a concise monthly financial digest covering income, expenses, savings rate, notable transactions, spending anomalies, and month-over-month trends. Designed to be a quick "state of your finances" snapshot.
Wilson Tools Used
spending_summary— category-level spending totals for the monthtransaction_search— find largest transactions and income entriesanomaly_detect— flag unusual spending patterns or amounts
Workflow
- Determine the target month (default: previous calendar month).
- Use
spending_summaryto get category totals for the month. - Use
spending_summaryfor the prior month to calculate month-over-month changes. - Use
transaction_searchto find:
- Top 5 largest expenses
- All income transactions
- Any new vendors (first-time transactions)
- Use
anomaly_detectto flag:
- Unusual amounts (significantly above category average)
- New recurring charges
- Missing expected recurring charges
- Compile the digest using the template below.
- Display the digest and optionally export as Markdown.
Digest Template
# Monthly Digest — [Month Year]
## Key Numbers
| Metric | Amount | vs. Last Month |
|--------|--------|----------------|
| Total Income | $X,XXX | +/-XX% |
| Total Expenses | $X,XXX | +/-XX% |
| Net (Income - Expenses) | $X,XXX | — |
| Savings Rate | XX% | +/-X pts |
## Spending by Category
| Category | Amount | % of Total | vs. Last Month |
|----------|--------|------------|----------------|
| ... | ... | ... | ... |
## Top 5 Expenses
1. [Description] — $XXX on [Date]
2. ...
## Anomalies & Alerts
- [flag icon] [Description of anomaly]
## New This Month
- First time seeing: [vendor name]
Without Wilson
To create a monthly digest manually:
- Export the month's transactions from your bank as CSV.
- Open in Google Sheets and add a Category column if missing.
- Key numbers:
`` Total Income: =SUMIFS(Amount, Amount, ">0", Date, ">="&DATE(2025,3,1), Date, "="&DATE(2025,3,1), Date, "<="&DATE(2025,3,31))) Savings Rate: =(Income - Expenses) / Income * 100 ``
- Category breakdown: Create a pivot table grouped by Category, summing Amount.
- Top expenses: Sort by Amount ascending, take the first 5 rows.
- Month-over-month: Keep last month's totals in a separate tab and calculate
=(ThisMonth - LastMonth) / LastMonth * 100for each category. - Anomaly detection (manual): Calculate the average and standard deviation per category over the last 6 months. Flag any category where this month's spending exceeds the average + 2 standard deviations.
Important Notes
- The digest defaults to the previous calendar month. Ask for a specific month if needed.
- Savings rate is calculated as
(income - expenses) / income. If income is zero, savings rate is shown as N/A. - Anomaly detection uses a rolling 6-month window. New users with less history will see fewer anomaly flags.
- The digest does not include transfers between your own accounts (e.g., savings transfers) in the income/expense totals.
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.