Detects lifestyle creep by comparing spending categories over 6-12 months using spending_summary tool or CSV/Google Sheets pivot tables and charts.
npx claudepluginhub openaccountant/skillsThis skill uses the workspace's default tool permissions.
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.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Explores codebases via GitNexus: discover repos, query execution flows, trace processes, inspect symbol callers/callees, and review architecture.
Share bugs, ideas, or general feedback.
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.