Can AI replace Auritrack?

KINDA · weekend project
price $3/moyou'd save $36/yrbuild time weekendcategory 💰 personal financereplaced by 0 peoplebuild unverified

The core loop, logging expenses by typing a sentence into a chat box and having an LLM extract amount, payee, and category, is very buildable with an Anthropic API key. Budgets, categories, and spending reports are standard CRUD. The real gap is statement import: getting one clean CSV parsed by an LLM is a demo, but reliably parsing messy multi-page bank PDFs across many banks needs batching, fallbacks, and cross-checks that take far longer than a weekend.

the prompt
Build me an AI expense tracker to replace Auritrack. Requirements:

- Local web app: Node + Express + better-sqlite3, server-rendered, binds to
  localhost only.
- Chat box on the home page: I type "lunch 12.50 at Chipotle yesterday" and the
  app calls the Claude API (claude-sonnet-5) with a tool schema to extract
  amount, payee, category, and date, then saves the transaction. Show the parsed
  result inline with an edit button so I can correct mistakes.
- Categories are auto-created the first time the model uses one; also give me
  plain manual add/edit forms for transactions and categories as a fallback.
- Statement import: upload a CSV or a text-layer PDF (use pdf-parse). Send rows
  or pages to the model in batches with a strict JSON schema, show everything in
  a review table before committing, and dedupe on date + amount + payee.
- Budgets: monthly limit per category with a progress bar that turns red on
  overspend.
- Reports: spending by category per month and a 6-month trend line with
  Chart.js, plus an "ask about my spending" box where the model writes a SQL
  query, runs it against a read-only connection, and explains the answer.
- Nightly copy of the SQLite file to backups/, keep 30.
- ANTHROPIC_API_KEY lives in .env; send the model only the rows a request
  needs and never log transaction data.
- Out of scope: bank sync, scanned-image PDFs, mobile apps, Telegram bots, and
  multi-user. Note in the README that imports cost real API money and roughly
  how much per statement.
- README: how to map my bank's CSV columns on first import.

$ open in your agent (prompt prefilled, you press enter) or copy it raw

why people still pay

They pay because a hardened parsing pipeline, mobile apps, and chat-anywhere logging remove all friction, and $3/mo is cheaper than maintaining your own LLM plumbing.

what you lose

xbattle-tested statement parsing across many banks and layouts

xmobile apps and push notifications

xTelegram bot logging

xpredictive spending forecasts

xpolished AI-written financial reports

prior art · use these instead of building, if you'd ratherFirefly IIIMature self-hosted personal finance manager with a full API and CSV importer, a solid non-AI base to bolt an LLM onto.Actual BudgetOpen-source local-first budgeting app with strong transaction import tooling.
share on X ↗"I just replaced Auritrack ($3/mo) with one prompt"
questions
Can AI replace Auritrack?

Kinda. The core of Auritrack is buildable in a weekend with the prompt on this page, but there are real gaps: battle-tested statement parsing across many banks and layouts, mobile apps and push notifications. Read the honest list above before committing.

How much does Auritrack cost?

Auritrack costs about $3/month (Plus, checked 2026-08-01), which is $36 per year.

What do I lose by replacing Auritrack?

Honestly: battle-tested statement parsing across many banks and layouts; mobile apps and push notifications; Telegram bot logging; predictive spending forecasts; polished AI-written financial reports. If any of those are load-bearing for you, keep paying.

Is there an open-source alternative to Auritrack?

Yes — Firefly III (Mature self-hosted personal finance manager with a full API and CSV importer, a solid non-AI base to bolt an LLM onto.), Actual Budget (Open-source local-first budgeting app with strong transaction import tooling.). Using prior art is also a valid exit; the prompt is for when you want it exactly your way.