Guides · intermediate · Reading path · 5 parts
Build an AI work memory
Your email, meetings, and documents wired into one plain-text folder an AI can actually read. The full build, from getting data out of a mailbox with no API access, to transcribing meetings without uploading the audio anywhere, to the handful of commands that run the whole thing each morning.
Start with the overview, then take the pieces in order. Each one stands on its own if you only want that part.
-
01
My AI was smart. It just couldn't see my job. My work context was scattered across email, meetings, documents, and notes. So I wired it into a private Obsidian vault Claude Code can read.
-
02
Capturing email and calendar without a mailbox API Microsoft Graph and IMAP were off the table, so I used Power Automate, OneDrive sync, and one 15-minute scheduled task to pull email and calendar into a local inbox.
-
03Transcribing Meetings Locally Turning meeting audio into text on your own machine, so the recordings never leave it.
-
04
Most of my AI pipeline isn't AI By volume, most of my AI pipeline is plain Python. The model is a small, expensive part I call as little as possible. The script-first split, and why it wins.
-
05
Claude Code skills: building a workflow that runs itself The control layer of my work system is markdown and small scripts. How a workflow combines Claude Code skills, rules, model routing, and parallel sub-agents.