Install
openclaw skills install @voronindenis5/debt-blitz-plannerCompare debt payoff strategies with real amortization math: avalanche (highest APR first), snowball (smallest balance first), and minimum-only baseline. Shows exact debt-free dates, total interest paid, interest saved, and freed-minimum cascading. Use when the user has credit card debt, student loans, or multiple debts and asks which to pay first, how long until debt-free, or whether to pay off small balances or high rates first.
openclaw skills install @voronindenis5/debt-blitz-plannerCompute exactly when you will be debt-free and which payoff order saves the most money. Turns a pile of minimum payments into a concrete month-by-month battle plan using real amortization math — not hand-waving.
The average household with credit card debt carries over $7,000 at ~20%+ APR and pays thousands in interest by just submitting minimums. The two famous strategies are:
Everyone asks "which is right for me?" — the honest answer is run both and look at the numbers: how many months and how many dollars actually separate them for your debts. Usually the gap is smaller than people assume, and seeing that is genuinely decision-changing.
scripts/debt_payoff_planner.py implements a full month-by-month simulation:
balance × APR / 12)--extra 200) and total monthly budget modeDon't use for: mortgage refinancing decisions with tax implications, investment-vs-payoff analysis (needs expected-return assumptions), or business accounting. This is personal-consumer-debt math.
python3 scripts/debt_payoff_planner.py \
--debt "Visa,4200,22.9,105" \
--debt "Mastercard,1800,19.9,56" \
--debt "Car loan,9500,6.5,290" \
--extra 150
--extra and watch the debt-free date move — every extra $100/month at the start is worth several months at the end.--json or --csv for a spreadsheet; --schedule prints yearly milestones.--extra go to the target debt:
Debts: Visa $4,200 @ 22.9% (min $105)
MC $1,800 @ 19.9% (min $56)
Car $9,500 @ 6.5% (min $290)
Extra: $150/month
min-only : 77 months, $5,584 interest (baseline)
avalanche : 33 months, $2,425 interest (saves $3,159)
snowball : 34 months, $2,681 interest (saves $2,903)
Avalanche wins by ~$257 and 1 month here — small enough that snowball's psychological win may be worth it. That insight is the product.
Debt-free date on a fixed budget:
python3 scripts/debt_payoff_planner.py --debt "Card1,6100,24.99,182" \
--debt "Card2,2400,18.24,60" --budget 750
Is the consolidation loan worth it? Run baseline, then:
python3 scripts/debt_payoff_planner.py --debt "Consolidated,8500,11.9,283" --budget 750
Compare total interest + payoff date; add any loan fees manually.
Export for a spreadsheet:
python3 scripts/debt_payoff_planner.py --debt "Visa,4200,22.9,105" --csv plan.csv