Photo: Unsplash
Apple Notes + AI — The Knowledge System Hiding in Plain Sight
I’ve cycled through the entire personal-knowledge-management canon — Obsidian with 30+ plugins, Notion with relational databases, Logseq, Roam back when it was a religion. And for the last year, the system that has actually held my knowledge is the app I’d dismissed as a grocery-list tool: Apple Notes. Not because Notes got dramatically better at being a PKM app (though it quietly did), but because AI changed what a knowledge system needs to be good at. When a model can summarize, structure, and retrieve, the app’s job shrinks to: capture instantly, search reliably, sync everywhere. Notes does those three things better than anything I’ve used. Here’s the case, the AI layer, and the exact 4-folder/3-shortcut system I run.
What Notes quietly became while nobody watched
The grocery-list reputation is a decade stale. Current Apple Notes ships with capabilities people pay subscription money for elsewhere:
- OCR search of attachments. Every image, screenshot, and scanned document in Notes is text-searchable, on-device, automatically. Photograph a whiteboard, a wine label, a paragraph in a printed book — months later, searching a phrase from it finds the note. This is the single most underrated feature; it makes Notes a visual inbox, not just a text one. It handles my Czech documents too, diacritics and all.
- Tags and Smart Folders.
#project-xanywhere in a note, plus Smart Folders that filter by tag, creation date, attachments, checklists, or combinations. Saved searches as folders — that’s 80% of what people build elaborate Obsidian dataview queries for. - Note linking.
>>while typing creates a wiki-style link to another note. Not a graph view, but real bidirectional knowledge structure. - Audio transcription. Record audio directly in a note and Notes transcribes it on-device. A meeting, a voice memo while walking, a lecture — you get searchable text without sending audio anywhere.
Add system-wide capture (the Quick Note hot corner, share sheet from every app, instant sync across iPhone/iPad/Mac) and you have a genuinely strong substrate. What it lacks is a brain. That’s the part you bolt on.
The AI layer: three shortcuts that do the heavy lifting
Apple Shortcuts has first-class Notes actions — find, create, append — which means an LLM can read from and write into your notes without any plugin ecosystem. I run a local model (Ollama, Qwen2.5 14B on the Mac Studio; an 8B works fine) so note content never leaves my machines, called from Shortcuts via “Run Shell Script” or a request to localhost:11434. These are the three shortcuts that make the system:
1. “Clip + Distill” (share sheet). Takes whatever I’m sharing — a webpage’s Reader text, a copied passage, a forwarded email — sends it to the model with “Create a structured note: 3-sentence summary, key claims as bullets, one line on why I might have saved this”, then creates a new note tagged #inbox with the AI structure on top and the raw text below. Capture cost: two taps. Every clipping arrives pre-digested.
2. “Meeting Digest” (run after recording). Grabs the transcription text from my most recent audio note and asks the model for “decisions made, action items with owners, open questions”, then appends that block to the top of the same note. A 40-minute meeting becomes a scannable half-page sitting directly above its full searchable transcript. This shortcut alone replaced a paid transcription app.
3. “Weekly Synthesis” (scheduled, Sunday). Pulls every note tagged #inbox from the past week, concatenates them, and asks: “Group by theme. Flag connections between items. List the 3 things most worth acting on.” The output becomes a new note tagged #review, and it’s genuinely the closest thing to an automated Zettelkasten maintenance pass I’ve found — connections between a podcast quote and an article clipped four days apart surface without me doing the linking.
On Apple Intelligence-capable Macs, the built-in Writing Tools (proofread, rewrite, summarize, table-ify) work inside Notes natively — handy for quick cleanup, and the right tool for people who’ll never install Ollama. The Shortcuts layer is for everything Writing Tools can’t do: custom prompts, structure, scheduled synthesis.
Getting your notes out: the RAG escape hatch
The standard objection to Notes is lock-in, and it’s half-right — there’s no folder of Markdown files. But Notes is scriptable. An AppleScript/osascript loop can export every note’s body to text files:
osascript -e 'tell application "Notes"
repeat with n in notes of folder "Inbox"
set noteName to name of n
set noteBody to plaintext of n
-- write each to ~/NotesExport via do shell script
end repeat
end tell'
(Exporter apps on the App Store wrap this same mechanism with nicer handling of attachments.) I run an export weekly into ~/NotesExport/, and that folder is indexed into a local RAG setup — meaning I can ask a local model questions across my entire notes corpus: “what did I conclude about heat pump suppliers in March?” pulls the right note and answers from it. The export also doubles as plain-text backup, which neutralizes most of the lock-in argument: your notes are one script away from Markdown at all times.
When Notes + AI beats Obsidian — and when it honestly doesn’t
Here’s the comparison without tribal loyalty. Notes + AI wins for most people and most use cases because the binding constraint in personal knowledge management was never features — it was capture friction and maintenance burden. Every system dies the week you stop putting things in it. Notes has the lowest capture friction of anything on Apple platforms (hot corner, share sheet, lock-screen, watch dictation), zero maintenance surface (no plugin updates, no sync conflicts, no vault config), and the AI layer now supplies the synthesis and structure that used to be Obsidian’s selling point. If your PKM history is a graveyard of abandoned vaults, this is the system that survives, precisely because it’s boring.
Obsidian/Notion still win, clearly, for specific profiles: heavy manual linkers who think in the graph, not just retrieve from it; anyone needing plugins as a platform (spaced repetition, Zotero integration, custom dataview dashboards); people who require version control — Notes has no history, and a mangled note is simply mangled, whereas an Obsidian vault in git is bulletproof; and collaborative or published knowledge bases, where Notion’s databases and sharing have no Notes equivalent. I keep technical documentation in a git-backed vault for exactly the version-control reason. Everything else — 90% by volume — lives in Notes.
The complete system: 4 smart folders + 3 shortcuts
The whole setup, buildable in under an hour:
Smart Folders:
- 📥 Inbox — tag
#inbox: everything new lands here; the Weekly Synthesis shortcut feeds on it, after which items get retagged or left to age out. - 🔄 Review — tag
#review: the synthesis notes themselves. Reading this folder Sunday evening is my knowledge maintenance, total time ~15 minutes. - 🎯 Active — tag matching current projects (
#blog,#house,#talk-prep): one tag per live project, retag when projects change. - 📎 Attachments, last 30 days — filter: contains attachments + created in last month: my visual inbox of screenshots, whiteboards, and scans that OCR makes searchable but that I’d otherwise never revisit.
Shortcuts: Clip + Distill, Meeting Digest, Weekly Synthesis — as described above.
That’s it. No graph, no plugins, no vault anxiety. The honest pitch isn’t that Apple Notes is the best knowledge tool — it’s that capture friction plus an AI synthesis layer matters more than every advanced feature you’re currently not using in the fancier app. The system hiding in plain sight was hiding because it looks too simple to be one. Add the brain, and simple is exactly what you want.

