How I use AI, live asset data, and a daily audio journal to make smarter financial decisions — in minutes a day.
I lost over $2 million learning these lessons — paid family offices $60K a year, bought every course and mastermind I could find, and made nearly every mistake in the book. I am not a financial advisor. This is not financial advice. This is simply the system I use for myself, shared in the hope that you can learn from my mistakes without repeating them. Speak to a qualified advisor before making any financial decisions.
The foundation. Every income stream flows into one system, then gets distributed with intention — taxes, life, and long-term wealth.
← Scroll to view diagram →
The rule: Keep a max 3 months of expenses in business checking at all times. Everything above that threshold gets distributed. Review on the 4th of each month — by then, payroll and prior-month expenses have cleared.
Six layers — from a morning voice note to a complete financial picture, queryable in seconds.
Each morning I record a voice note — thoughts on spending, financial questions, things I'm considering buying, goals on my mind. Zero friction. Just talk into the app. Day One is the easy start; I've since moved mine into a journal I built inside my own app (encrypted end-to-end) so the sync never breaks.
The journal transcribes the audio automatically (Day One does this on its subscription plan; mine uses Deepgram). No extra tools, no manual steps — the journal listens, converts, and the text is ready to use.
A scheduled job runs automatically, saving each transcript into a dedicated finance folder on my machine. Always current, always organized, always ready for the AI to read.
Live net worth data from Kubera is just the starting point. I've also downloaded the actual documents — mortgage, boat registration, investment statements — so the AI has the full picture, not just dashboard numbers.
Built-in instructions tell the AI how to evaluate decisions against my values — not just "can you afford it" but whether a purchase actually aligns with what I care about and where I'm going.
With my full financial picture loaded, I can ask anything and get an honest, context-aware response — not generic advice.
Generic financial AI gives generic advice. This system loads your actual numbers, your actual values, and your actual words — so answers are specific to you.
Your unfiltered morning thoughts reveal what you actually want to spend money on — before rationalizations kick in. That honesty makes the AI's answers far more useful.
The cron job, transcription, and API sync happen without you. By the time you open the system, everything is already there.
Open Claude Code, paste this into the terminal, and run it. It creates the folder, writes the instruction file, and drops the sync script in place — all at once.
#!/bin/bash # ── Financial OS Setup ────────────────────────────────── # Paste into your Claude Code terminal and run. # Creates the folder, writes CLAUDE.md, drops the sync script. # ──────────────────────────────────────────────────────── BASE="$HOME/Financial OS" # 1. Folder structure mkdir -p "$BASE/journals" "$BASE/documents" "$BASE/kubera" # 2. Write the instruction file Claude reads on every session cat > "$BASE/CLAUDE.md" << 'EOF' # Financial OS — Instructions for Claude ## What's in This Folder # journals/ → Daily transcripts from your morning audio journal # documents/ → Asset documents (mortgage, vehicles, statements, insurance) # kubera/ → Net worth snapshots from Kubera ## When I Ask a Financial Question 1. Check my current liquid position first — cash and accessible funds only 2. Search recent journal entries for any mention of this topic 3. Pull the relevant document from /documents/ if it applies 4. Give me a direct yes/no recommendation, then the reasoning ## Affordability Rule "Can I afford this?" means: can I pay from liquid funds without touching investments or going into debt? Answer on that basis — not on total net worth. ## Values Check (for any discretionary purchase) Before recommending, review my recent journals: - Have I mentioned this before? Considered decision or impulse? - Does it fit the lifestyle I've described wanting? - Would I feel good about this in 30 days? ## Monthly Review (run on the 4th of the month) 1. Compare net worth to last month — what moved, and why? 2. What were the biggest spending themes in this month's journals? 3. Flag anything unusual or out of pattern 4. Note progress on any goals I've mentioned 5. Close with one paragraph I can actually act on ## Standing Rules - Always separate business and personal finances in your analysis - Never recommend liquidating long-term investments for lifestyle purchases - Distinguish "you can afford this" from "this is a good idea" — give me both - If I seem excited about something, slow me down and make me think it through - Flag any single purchase over $[YOUR THRESHOLD] for a 24-hour review window EOF # 3. Drop the Day One sync script (update paths before using) mkdir -p "$HOME/scripts" cat > "$HOME/scripts/sync-journal.sh" << 'EOF' #!/bin/bash # Update the two paths below, then: # chmod +x ~/scripts/sync-journal.sh # crontab -e → paste: 0 7 * * * ~/scripts/sync-journal.sh EXPORT="$HOME/path/to/DayOne/exports" # ← update this DEST="$HOME/Financial OS/journals" mkdir -p "$DEST" cp -r "$EXPORT"/. "$DEST/" echo "Synced: $(date)" >> "$DEST/sync.log" EOF echo "" echo "✓ Financial OS created at: $BASE" echo " ├── CLAUDE.md" echo " ├── journals/" echo " ├── documents/" echo " └── kubera/" echo "" echo "Next:" echo " 1. Drop your documents into $BASE/documents/" echo " 2. Export Kubera net worth to $BASE/kubera/" echo " 3. Update paths in ~/scripts/sync-journal.sh" echo " 4. Open $BASE in Claude Code and start asking"
After it runs: add your documents to documents/ (mortgage, titles, statements), drop a Kubera export into kubera/, update the two paths in the sync script, and open the folder in Claude Code. That's it.