Concept
RAG vs Compiled Knowledge
Traditional RAG retrieves raw chunks at query time and asks the model to synthesize an answer from scratch. Compiled knowledge uses an intermediate, persistent wiki that has already integrated sources into summaries, concept pages, entity pages, contradictions, and cross-links.
RAG pattern
- Sources are indexed as chunks.
- Retrieval happens at query time.
- Synthesis is re-created for each question.
- Cross-document insights may be rediscovered repeatedly.
- Little knowledge accumulates between queries unless added manually.
Compiled knowledge pattern
- Sources are first ingested into a structured wiki.
- Synthesis persists as markdown pages.
- Cross-links, contradictions, and summaries accumulate.
- Queries read the compiled layer first.
- Good query answers can become new wiki pages.
Practical implication
For Jay's use cases, compiled knowledge is better for themes that recur over weeks or months: companies, sectors, product patterns, founder/operator ideas, and career positioning. RAG is still useful for large-scale search, but it should augment the wiki later rather than replace it at the start.