بنقرة واحدة
fact-checking
AI-generated content fact-checking patterns - verifying dates, numbers, and attribution claims
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
AI-generated content fact-checking patterns - verifying dates, numbers, and attribution claims
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | fact-checking |
| description | AI-generated content fact-checking patterns - verifying dates, numbers, and attribution claims |
This skill covers systematic verification of AI-generated content, with patterns learned from checking 10,000+ articles.
AI errors are dangerous because they're CLOSE to correct. "Died 1861" when the answer is 1860. "Won 14-7" when it was 7-14. Always verify the EXACT number, not just the ballpark.
| Pattern | Example | Frequency | Why It Happens |
|---|---|---|---|
| Off-by-one dates | "Died 1861" when actually 1860 | ~12% of biographies | Training data inconsistency |
| Score transposition | "Won 14-7" when actually 7-14 | ~8% of sports articles | AI recalls game but swaps winner |
| Wrong stat attribution | "Complete game" when reliever finished | ~15% of sports | Box score details fuzzy |
| Misattributed quotes | Quote from Person A given to Person B | ~5% of quote-heavy articles | Famous quotes float between figures |
| False superlatives | "First to achieve X" (actually second) | ~20% when claimed | AI defaults to dramatic framing |
| Article Type | Expected Error Rate | Primary Check | Secondary Check |
|---|---|---|---|
| Sports/Games | 8-10% | Wikipedia box scores | ESPN/official stats |
| Biographies | 5-7% | Wikipedia infobox dates | Multiple sources for death dates |
| Historical Events | 3-5% | Wikipedia article | Academic sources |
| Science/Tech | 2-4% | Wikipedia + official sources | Patent/discovery dates |
| Geography | 1-2% | Wikipedia infoboxes | Official measurements |
From most to least reliable:
# For death dates
web_search("Phineas Gage death date")
# For sports scores (be specific)
web_search("Super Bowl VII final score Dolphins Redskins 1973")
# For records/achievements
web_search("first person to climb K2 winter")
# Prefer Wikipedia fetch when you know the topic
web_fetch url="https://en.wikipedia.org/wiki/Phineas_Gage"
AI errors are insidious because they:
Key insight: If something "sounds right," that's when you MUST verify. Obvious errors are easy to catch; subtle ones require discipline.
Important: If something seems wrong but you can't verify it, DON'T mark it as an error. False positives erode trust more than missed errors.
When checking multiple articles:
When documenting errors:
CLAIM: "Phineas Gage died in 1861"
SOURCE: https://en.wikipedia.org/wiki/Phineas_Gage
FACT: Gage died May 21, 1860
ERROR TYPE: Off-by-one date
CONFIDENCE: High (Wikipedia infobox)