用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/openaccountant/skills --skill lifestyle-creep命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Project future cash flow using historical trends and recurring patterns.
基于 SOC 职业分类
| name | lifestyle-creep |
| description | Detect spending increases across categories over 6-12 months. |
Compares your spending categories over a 6-12 month period to identify gradual, often unnoticed increases in spending — the classic "lifestyle creep" that erodes savings as income grows. Highlights which categories have drifted upward and by how much.
spending_summary — pull category-level spending for multiple months to compare periodsRun spending_summary for the most recent 3 months to get current average spending by category.
Run spending_summary for the 3-month period from 6 months ago (e.g., if now is April 2026, pull October-December 2025) to get the baseline.
For each category, calculate:
(current - baseline) / baseline * 100Flag any category where spending increased by more than 15% AND more than $50/month. These are lifestyle creep candidates.
Sort flagged categories by dollar increase descending.
Present results:
LIFESTYLE CREEP ANALYSIS (6-month comparison)
══════════════════════════════════════════════════════
Category 6mo Ago Now Change %
────────────── ──────── ──────── ─────── ────
Dining Out $280 $420 +$140 +50% !!
Shopping $350 $480 +$130 +37% !!
Groceries $520 $580 +$60 +12%
Entertainment $120 $165 +$45 +38% !
Transportation $200 $195 -$5 -3%
══════════════════════════════════════════════════════
Total Creep: +$370/mo | Annual Impact: +$4,440/yr
Calculate the total annual impact of all flagged increases.
For optional deeper analysis, repeat with a 12-month lookback to separate seasonal patterns from true creep.
Suggest a target: "If you returned Dining Out and Shopping to 6-month-ago levels, you would save $3,240/year."
=TEXT(A2, "YYYY-MM") where A2 is the transaction date.=AVERAGE(last 3 months) - AVERAGE(first 3 months).=Change / ABS(AVERAGE(first 3 months)) * 100.