debt-payoff
Installation
SKILL.md
Debt Payoff Plan
Overview
Helps you create a structured debt payoff plan using either the avalanche method (highest interest rate first) or snowball method (smallest balance first). Identifies your current debt payments, calculates extra payment capacity from your budget, and generates a month-by-month payoff schedule.
Wilson Tools Used
transaction_search— find recurring debt payments (loans, credit cards, lines of credit)spending_summary— calculate total income vs. expenses to find extra payment capacity
Workflow
- Run
transaction_searchwithquery: "payment OR loan OR credit card OR interest OR minimum"andmonths: 3to identify recurring debt payments. - Group the results by creditor/lender to determine your current monthly payment for each debt.
- Ask the user to provide for each debt: current balance, interest rate (APR), and minimum payment. Wilson cannot determine balances from transactions alone.
- Run
spending_summaryfor the last 3 months to calculate average monthly income and average monthly expenses. - Compute extra payment capacity:
(average monthly income) - (average monthly expenses) - (sum of minimum payments already in expenses). If this is negative, flag that the user is overspending. - Generate an Avalanche Plan — order debts by interest rate descending. Apply all extra payment capacity to the highest-rate debt while paying minimums on all others.
- Generate a Snowball Plan — order debts by balance ascending. Apply all extra payment capacity to the smallest balance while paying minimums on all others.
- For each plan, produce a month-by-month schedule in this format:
Related skills