بنقرة واحدة
lifestyle-creep
Detect spending increases across categories over 6-12 months.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Detect spending increases across categories over 6-12 months.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Calculate break-even revenue by separating fixed and variable costs.
Project future cash flow using historical trends and recurring patterns.
Analyze revenue and costs per client to find your most profitable accounts.
Monitor 1099 contractor payments and flag $600 threshold.
Track unpaid invoices by age bucket and flag overdue payments.
Run a monthly bookkeeping close checklist with reconciliation.
| 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.