agentsclimarketplace

Debt payoff

Skill GAJETOso/financeskills/skills/debt-payoff

AI-powered skills for financial professionals. Comprehensive collection of finance, accounting, audit, and compliance skills for AI agents. IFRS/GAAP compliant with industry-specific applications.

Install
npx -y skills add GAJETOso/financeskills --skill debt-payoff

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

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

SKILL.md

3.4 KB, as published. Nobody here has run it

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?
  2. Available Cash Flow

    • How much can the user put toward debt each month (minimums + any extra)?
    • Is this fixed or variable?
  3. 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: 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


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.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.