"Never overwrite what the machine said. Freeze it, and lay your correction on top where you can always peel it back off."
Freeze What the Machine Said
When a detector proposes a fit, Loomis stores that raw output frozen — an immutable record of exactly what the machine saw. It is never edited in place. Whatever happens later, the original detection remains as a faithful account of the proposal, because the moment you overwrite it you lose the one thing that made it a record: its unchanged-ness.
Corrections Are a Layer, Not an Overwrite
When a human nudges a landmark the detector misplaced, that adjustment does not reach in and change the frozen fit. It is stored as a separate correction layer — recoverable, reversible, and sitting on top. The fit the geometry actually uses is computed from the two: the frozen detection with the corrections applied over it. The original stays intact underneath, so a correction can be undone, re-examined, or thrown away without any risk to the record it modifies.
Provenance Stays Honest
Because the machine's proposal and the human's edits live in separate layers, the engine can always answer three distinct questions: what did the detector propose, what did a person change, and what did the geometry ultimately use? That is provenance, and it is only possible because nothing was destructively merged. Overwrite the detection with the correction and all three questions collapse into one lossy blob that can no longer tell you who was responsible for what. Keeping the layers apart is what keeps the story auditable.
The Same Shape, Everywhere
This is one instance of a pattern that repeats across the whole engine and the whole family: freeze the source of truth, layer edits on top, recompute the view. The grader in Track 6 preserves your drawing attempts append-only, never mutating a past attempt. Collections in Track 7 organize sessions through a meta-overlay while the session files on disk stay untouched. Pippa's own conversation logs are an append-only ground truth with rebuildable derived mirrors. Once you see the shape here — frozen fit, correction layer, computed effective view — you'll recognize it as the family's default answer to 'how do we allow edits without losing the truth?'