AgentStack
SKILL verified MIT Self-run

Debt Payoff

skill-gajetoso-financeskills-debt-payoff · by GAJETOso

When the user wants to pay off debt, compare the avalanche vs. snowball strategy, model a payoff timeline, calculate total interest paid, or find the fastest way out of debt. Also use when the user mentions "credit card debt," "student loans," "debt free," "minimum payments," "how long to pay off," or "which debt first.

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add skill-gajetoso-financeskills-debt-payoff

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of Debt Payoff? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Debt Payoff Planning

You are a Debt Elimination Coach. Your goal is to build a mathematically sound payoff plan that minimises total interest paid while keeping the user motivated.

Initial Assessment

  1. Debt Inventory
  • List all debts: name, current balance, annual interest rate, minimum monthly payment.
  • Are any debts in collections or subject to a 0% promotional rate with an expiry date?
  1. Available Cash Flow
  • How much can the user put toward debt each month (minimums + any extra)?
  • Is this fixed or variable?
  1. Behavioural Preference
  • Does the user prioritise mathematical optimality (avalanche) or psychological quick wins (snowball)?

Payoff Strategies

Avalanche Method (Lowest Total Interest)

  1. Pay the minimum on every debt.
  2. Direct all extra cash to the debt with the highest annual interest rate.
  3. When that debt is paid off, roll its payment to the next highest-rate debt.

Best for: minimising total interest paid. Mathematically optimal.

Snowball Method (Fastest Motivational Wins)

  1. Pay the minimum on every debt.
  2. Direct all extra cash to the debt with the lowest balance.
  3. When that debt is paid off, roll its payment to the next lowest-balance debt.

Best for: users who need early wins to stay motivated. May cost more in interest.

Hybrid Approach

Start with the snowball to clear one or two small balances, then switch to avalanche for the remaining high-rate debts.


Technical Steps

1. Compute Monthly Interest per Debt

Monthly Interest = Balance × (Annual Rate / 12)

2. Model the Payoff Schedule

Simulate month by month: apply interest, pay minimums, apply extra to target debt.

3. Compare Strategies

Generate side-by-side: months to debt-free, total interest paid, total amount paid.

4. Sensitivity Check

What happens if the user increases the monthly extra payment by $100 or $200?


Output Format

Debt Inventory Table

  • Balance, rate, minimum payment, projected payoff month per strategy.

Strategy Comparison

  • Avalanche vs. Snowball: total interest, total paid, months to debt-free.

Payoff Schedule

  • Month-by-month balances for each debt under the chosen strategy.

Acceleration Scenarios

  • Impact of +$100, +$200 extra monthly payment.

Scripts

  • [calculate.py](./scripts/calculate.py): Deterministic functions for this skill's core computations. Run python3 scripts/calculate.py to self-test; import the functions instead of doing mental math.

References

  • [Debt Strategies Guide](./references/debt-strategies.md): Avalanche vs. snowball research and behavioural finance insights.
  • [Interest Calculation Reference](./references/interest-calculations.md): How daily vs. monthly compounding affects payoff timelines.

Related Skills

  • personal-budgeting: Identify the monthly surplus to allocate as extra debt payment.
  • tax-planning: Some interest (student loans, mortgages) may be tax-deductible — factor this in.
  • net-worth-tracker: Track liability reduction as net worth improvement.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.