01 · Hook
RAG tip: don't dump whole documents into context.
Adjacent signal — worth a scan.
02 · Core
The mechanism
Strip HTML, chunk semantically, and index with FTS5 for a fast local first-pass retrieval before you hit any embedding model.
03 · Edge
Why it's leverage
From @thorstenball (established). Python sqlite3 ships with FTS5 built in.
04 · Your turn
Do this now
In the next 10 min: strip HTML, chunk semantically, and index with FTS5 for a fast local first-pass retrieval before you hit any embedding model.