Cautious Pattern Completion¶
Fill gaps in partial information while marking what is inferred and what remains unverified.
The Diagnostic Story¶
Symptom: The evidence is partial, but a coherent story fills in so naturally that the gap stops feeling like a gap. Inferred details get repeated later as facts; only one completion gets discussed even though the input supports several; people ask for confirmation but don't look for evidence that would break the story. Decisions get made from a reconstruction whose missing pieces are known but undocumented.
Pivot: The problem is that fluent completion hides its own uncertainty. The shift is to make the completion process explicit: separate what was observed from what was inferred, label missing evidence as missing rather than silently filling it in, and carry uncertainty forward when the completion is stored or acted on. Seek disconfirmation, not just confirmation.
Resolution: Teams can act under uncertainty without laundering assumptions into facts. Reconstructions, diagnoses, and generated outputs become auditable because the gap between evidence and inference is visible. Confidence tracks actual evidence rather than narrative coherence, and new information can revise the completion without reputational penalty.
Reach for this when you hear…¶
[incident commander] “We wrote the post-mortem as if we knew what happened at 2 AM but half of it is best-guess reconstruction and nobody said so.”
[diagnostic radiologist] “The scan is consistent with three things; I flagged the most likely but I should have noted the other two so the clinician knows to rule them out.”
[financial analyst] “The model looks confident because it filled in the missing quarter with a trend extrapolation and nobody labeled that cell as estimated.”
Mechanisms / Implementations¶
- Hypothesis List:
hypothesis_listis a template that implements the archetype by helping teams control completion from partial evidence. - Assumption Log: Makes the unstated premises a plan silently rests on into an explicit, revisable list — each with its confidence and a trigger to revisit it when reality drifts.
- Diagnostic Differential:
diagnostic_differentialis a method that implements the archetype by helping teams control completion from partial evidence. - Reconstruction Note:
reconstruction_noteis a document that implements the archetype by helping teams control completion from partial evidence. - Uncertainty Tagging:
uncertainty_taggingis a template that implements the archetype by helping teams control completion from partial evidence. - Hallucination Check:
hallucination_checkis a protocol that implements the archetype by helping teams control completion from partial evidence. - Disconfirming Evidence Search:
disconfirming_evidence_searchis a procedure that implements the archetype by helping teams control completion from partial evidence. - Source-Tracing Table:
source_tracing_tableis a artifact that implements the archetype by helping teams control completion from partial evidence. - Withhold-Conclusion Checkpoint:
withhold_conclusion_checkpointis a ritual that implements the archetype by helping teams control completion from partial evidence.
Related Abstractions¶
Abstractions this archetype builds on — directly (a source ingredient) or as a related pattern. Links follow the typed catalog namespace.
Built directly on (3)
- Pattern Completion (Filling the Incomplete): Infer missing structure.
- Representation: Model complex ideas.
- Uncertainty: Incomplete knowledge.
Also references 6 related abstractions
- Black Box Vs White Box
- Confirmation Bias: Favor confirming evidence.
- Hypothesis Testing (Null vs. Alternative): Null vs alternative evaluation.
- Missing Data Mechanisms (MCAR, MAR, MNAR): MCAR, MAR, MNAR.
- Observability: Infer internal state externally.
- Probability: Quantifies uncertainty and likelihoods.
Variants¶
Narrower or domain-specific specializations that share this archetype's core structure. Recognized variants are established; candidate variants are provisional.
Diagnostic Completion with Differential · domain variant · recognized
Completes a likely diagnosis, fault explanation, or cause from partial symptoms while keeping alternative explanations and exclusion evidence visible.
Source-Traced Reconstruction · subtype · recognized
Reconstructs a missing sequence, design, event history, or textual meaning while tracing every reconstructed element to evidence or assumption status.
AI Completion Hallucination Guard · risk or failure variant · recognized
Controls generated completions from AI or automated systems by requiring source checks, uncertainty labels, and explicit separation of generated detail from verified fact.
Missing-Data Completion with Review · implementation variant · candidate
Uses estimates, imputations, or proxy values to fill missing data while marking imputation status and checking whether conclusions depend on those fills.