소스 정보
- 저장소
- openaccountant/skills
- 최근 소스 활동
- 2026년 4월 9일 01:52
- 감지된 SKILL.md 언어
- 영어
- 스타
- 60
- 포크
- 13
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/openaccountant/skills --skill debt-payoff명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Project future cash flow using historical trends and recurring patterns.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | debt-payoff |
| description | Build avalanche or snowball debt payoff plans with payment schedules. |
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.
transaction_search — find recurring debt payments (loans, credit cards, lines of credit)spending_summary — calculate total income vs. expenses to find extra payment capacityRun transaction_search with query: "payment OR loan OR credit card OR interest OR minimum" and months: 3 to 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_summary for 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:
Month | Debt Name | Payment | Principal | Interest | Remaining Balance
------+---------------+---------+-----------+----------+------------------
1 | Credit Card A | $350 | $320.83 | $29.17 | $1,679.17
1 | Student Loan | $150 | $112.50 | $37.50 | $14,887.50
Calculate and display: total months to payoff, total interest paid, and total cost for each method.
Compare the two methods side by side and recommend the one that saves more in interest (avalanche) or provides faster psychological wins (snowball).
Balance * (APR / 12)=B2*(C2/12) where B2 is balance, C2 is APR as decimal=D2-E2 where D2 is payment, E2 is interest=B2-F2