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 month
transaction_search — find largest transactions and income entries
anomaly_detect — flag unusual spending patterns or amounts
Workflow
- Determine the target month (default: previous calendar month).
- Use
spending_summary to get category totals for the month.
- Use
spending_summary for the prior month to calculate month-over-month changes.
- Use
transaction_search to find:
- Top 5 largest expenses
- All income transactions
- Any new vendors (first-time transactions)
- Use
anomaly_detect to 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,31))
Total Expenses: =ABS(SUMIFS(Amount, Amount, "<0", 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 * 100 for 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.
1---2name: monthly-digest3description: Generate a monthly financial summary with metrics, trends, and anomalies.4---5
6# Monthly Digest
7
8## Overview
9Produce 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.
10
11## Wilson Tools Used
12- `spending_summary` — category-level spending totals for the month
13- `transaction_search` — find largest transactions and income entries
14- `anomaly_detect` — flag unusual spending patterns or amounts
15
16## Workflow
171. Determine the target month (default: previous calendar month).
182. Use `spending_summary` to get category totals for the month.
193. Use `spending_summary` for the prior month to calculate month-over-month changes.
204. Use `transaction_search` to find:
21 - Top 5 largest expenses
22 - All income transactions
23 - Any new vendors (first-time transactions)
245. Use `anomaly_detect` to flag:
25 - Unusual amounts (significantly above category average)
26 - New recurring charges
27 - Missing expected recurring charges
286. Compile the digest using the template below.
297. Display the digest and optionally export as Markdown.
30
31## Digest Template
32```
33# Monthly Digest — [Month Year]
34
35## Key Numbers
36| Metric | Amount | vs. Last Month |
37|--------|--------|----------------|
38| Total Income | $X,XXX | +/-XX% |
39| Total Expenses | $X,XXX | +/-XX% |
40| Net (Income - Expenses) | $X,XXX | — |
41| Savings Rate | XX% | +/-X pts |
42
43## Spending by Category
44| Category | Amount | % of Total | vs. Last Month |
45|----------|--------|------------|----------------|
46| ... | ... | ... | ... |
47
48## Top 5 Expenses
491. [Description] — $XXX on [Date]
502. ...
51
52## Anomalies & Alerts
53- [flag icon] [Description of anomaly]
54
55## New This Month
56- First time seeing: [vendor name]
57```
58
59## Without Wilson
60To create a monthly digest manually:
61
621. **Export the month's transactions** from your bank as CSV.
632. **Open in Google Sheets** and add a Category column if missing.
643. **Key numbers**:
65 ```
66 Total Income: =SUMIFS(Amount, Amount, ">0", Date, ">="&DATE(2025,3,1), Date, "<="&DATE(2025,3,31))
67 Total Expenses: =ABS(SUMIFS(Amount, Amount, "<0", Date, ">="&DATE(2025,3,1), Date, "<="&DATE(2025,3,31)))
68 Savings Rate: =(Income - Expenses) / Income * 100
69 ```
704. **Category breakdown**: Create a pivot table grouped by Category, summing Amount.
715. **Top expenses**: Sort by Amount ascending, take the first 5 rows.
726. **Month-over-month**: Keep last month's totals in a separate tab and calculate `=(ThisMonth - LastMonth) / LastMonth * 100` for each category.
737. **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.
74
75## Important Notes
76- The digest defaults to the previous calendar month. Ask for a specific month if needed.
77- Savings rate is calculated as `(income - expenses) / income`. If income is zero, savings rate is shown as N/A.
78- Anomaly detection uses a rolling 6-month window. New users with less history will see fewer anomaly flags.
79- The digest does not include transfers between your own accounts (e.g., savings transfers) in the income/expense totals.