---
id: "concept-write-time-synthesis"
type: "concept"
source_timestamps: ["00:08:27", "00:15:58"]
tags: ["data-processing", "llm-agents"]
related: ["concept-ai-wiki", "concept-query-time-synthesis", "concept-error-baking"]
definition: "The process of an AI analyzing, summarizing, and integrating new information into a knowledge base at the moment of ingestion, rather than waiting for a user query."
sources: ["s11-wiki-vs-open-brain"]
sourceVaultSlug: "s11-wiki-vs-open-brain"
originDay: 11
---
# Write-Time Synthesis

# Write-Time Synthesis

> The process of an AI analyzing, summarizing, and integrating new information into a knowledge base at the moment of ingestion, rather than waiting for a user query.

## Definition

**Write-Time Synthesis** is the architectural decision to have an AI process, connect, and summarize information at the exact moment it is added to a knowledge base. The AI reads the raw source, makes editorial judgments about what matters, updates existing topic pages, and creates cross-references *before* any user query is ever made.

This is the foundational mechanic of the [[concept-ai-wiki]] (and is operationalized in [[framework-ai-wiki-workflow]]).

## Advantage

Retrieval is incredibly fast and cheap — the user is simply reading a pre-compiled study guide ([[concept-tutor-metaphor]]). The AI's reasoning is amortized across all future reads.

## Severe Downside

The AI's editorial decisions are permanently baked into the text. If the AI drops a nuance, misinterprets a fact, or hallucinates a connection during ingest, that error becomes the new foundational truth of the wiki — see [[concept-error-baking]]. Because the raw source has been replaced by the synthesis, future queries cannot recover the original context.

## Contrast

Compare with [[concept-query-time-synthesis]], which preserves raw provenance at the cost of per-query compute.


## Related across days
- [[concept-ai-wiki]]
- [[concept-error-baking]]
- [[concept-query-time-synthesis]]
- [[arc-context-architecture-evolution]]
