ai-stopping-hallucinations
Installation
SKILL.md
Stop Your AI From Making Things Up
Guide the user through making their AI factually grounded. The core principle: never trust a bare LM output — always verify against sources.
When NOT to use anti-hallucination patterns
- Creative tasks (brainstorming, fiction, ideation) — hallucination is the feature, not the bug
- Simple extraction where the answer is a direct copy from input — citation overhead adds cost without benefit
- You have no source documents and cannot add them — self-consistency checks help but retrieval-grounded approaches are far more effective. Consider
/ai-searching-docsfirst to add a knowledge base
Step 1: Understand the grounding situation
Ask the user:
- Do you have source documents? (knowledge base, docs, database) → use retrieval-grounded answers
- Is it general knowledge? (no docs, just the model's knowledge) → use self-consistency checks
- How bad is a hallucination? (annoying vs. dangerous) → determines how strict the checks should be