Factcheck Skill
Hard rule: before any factual claim about a real-world entity lands in user-facing content, it must be verified or marked unverified. Never fabricate plausible-sounding details to fill gaps.
When to Use
Invoke BEFORE writing to any of:
- Travel sites (restaurants, hotels, business hours, prices)
- Advocacy pages (bill numbers, committee members, vote records, legal claims)
- Recipe/guide pages (ingredient prices, product specs, game facts like TotK/PO-33)
- Emails with factual claims (prices, dates, quotes from real people)
- Diary/log entries that reference external events
Also use this when the user says: "fact check this", "verify", "is this right?", "audit the page".
Steps
1. Extract claims
Scan the proposed content and list every factual claim. A claim is anything that could be wrong:
- Named entities (restaurants, businesses, people, products)
- Numbers (prices, hours, distances, dates, bill numbers)
- Quotes attributed to real people
- Status claims ("closed", "open", "pending", "passed")
- Citations (academic, legal, news)
2. Verify each claim
For each claim, run a verification:
WebSearch("<claim as a factual query>")
Or for a specific known URL (e.g. a bill tracker page, a restaurant's own website):
WebFetch("<url>", "Does this page confirm <claim>?")
Mark each claim as:
- CONFIRMED: source clearly supports the claim
- CONTRADICTED: source says something different → must be fixed before writing
- UNVERIFIED: couldn't find an authoritative source → must be omitted or hedged
3. Rewrite
For each claim:
- CONFIRMED: keep as-is, optionally cite the source in a comment if it's high-stakes.
- CONTRADICTED: replace with the correct fact from the source.
- UNVERIFIED: either (a) omit entirely, (b) hedge ("reportedly", "as of last known update"), or (c) ask the user to confirm before writing.
NEVER invent a substitute to make the content feel complete. Empty is better than wrong.
4. Report
Tell the user:
- How many claims were checked
- How many were confirmed / contradicted / unverified
- What was changed as a result
- Which claims the user needs to confirm manually (if any)
Common fabrication traps
Patterns that have produced made-up content in past sessions:
- Restaurant recommendations: Invented "Bodega Underground" for a travel site. Always check restaurant names against Google Maps or the business's own site.
- Business hours / closure status: Claimed businesses were closed without checking. Always fetch the business's current site or a recent review.
- Game/product facts: Got TotK and PO-33 details wrong from memory. Always search official sources or wikis.
- Diary embellishment: Added emotional/narrative details the user didn't provide. Only write what the user actually said.
- Date swaps: Got Apr 4/5 trip dates reversed. Double-check dates against the source (email, message, calendar).
- Legal/bill claims: Claimed bills had certain statuses without checking malegislature.gov. Always fetch the bill's own page.
Example
User: "write a Boston restaurant section for the travel site with 3 good dinner spots near Back Bay"
WRONG approach: list 3 restaurants from memory.
RIGHT approach:
- WebSearch("best dinner restaurants Back Bay Boston 2026")
- For each candidate, WebFetch the restaurant's site to confirm it exists, is open, and is near Back Bay.
- Write only the confirmed ones. If only 2 verified, write 2 — don't pad to 3 with a guess.
- Report: "Verified 2 of 3 candidates. Dropped one that couldn't be confirmed as currently operating."
1---2name: factcheck3description: Use before writing factual claims (businesses, restaurants, prices, hours, quotes, citations, laws, bill numbers, dates) into deployed content — travel sites, advocacy pages, recipe guides, emails. Verifies every factual claim via WebSearch/WebFetch and flags unverified ones as "unverified" rather than guessing. Built because fabricated details (invented restaurants, wrong business hours, made-up quotes) have been the4---56# Factcheck Skill78Hard rule: before any factual claim about a real-world entity lands in user-facing content, it must be verified or marked unverified. Never fabricate plausible-sounding details to fill gaps.910## When to Use1112Invoke BEFORE writing to any of:13- Travel sites (restaurants, hotels, business hours, prices)14- Advocacy pages (bill numbers, committee members, vote records, legal claims)15- Recipe/guide pages (ingredient prices, product specs, game facts like TotK/PO-33)16- Emails with factual claims (prices, dates, quotes from real people)17- Diary/log entries that reference external events1819Also use this when the user says: "fact check this", "verify", "is this right?", "audit the page".2021## Steps2223### 1. Extract claims2425Scan the proposed content and list every factual claim. A claim is anything that could be wrong:26- Named entities (restaurants, businesses, people, products)27- Numbers (prices, hours, distances, dates, bill numbers)28- Quotes attributed to real people29- Status claims ("closed", "open", "pending", "passed")30- Citations (academic, legal, news)3132### 2. Verify each claim3334For each claim, run a verification:3536```37WebSearch("<claim as a factual query>")38```3940Or for a specific known URL (e.g. a bill tracker page, a restaurant's own website):4142```43WebFetch("<url>", "Does this page confirm <claim>?")44```4546Mark each claim as:47- **CONFIRMED**: source clearly supports the claim48- **CONTRADICTED**: source says something different → must be fixed before writing49- **UNVERIFIED**: couldn't find an authoritative source → must be omitted or hedged5051### 3. Rewrite5253For each claim:54- **CONFIRMED**: keep as-is, optionally cite the source in a comment if it's high-stakes.55- **CONTRADICTED**: replace with the correct fact from the source.56- **UNVERIFIED**: either (a) omit entirely, (b) hedge ("reportedly", "as of last known update"), or (c) ask the user to confirm before writing.5758NEVER invent a substitute to make the content feel complete. Empty is better than wrong.5960### 4. Report6162Tell the user:63- How many claims were checked64- How many were confirmed / contradicted / unverified65- What was changed as a result66- Which claims the user needs to confirm manually (if any)6768## Common fabrication traps6970Patterns that have produced made-up content in past sessions:71- **Restaurant recommendations**: Invented "Bodega Underground" for a travel site. Always check restaurant names against Google Maps or the business's own site.72- **Business hours / closure status**: Claimed businesses were closed without checking. Always fetch the business's current site or a recent review.73- **Game/product facts**: Got TotK and PO-33 details wrong from memory. Always search official sources or wikis.74- **Diary embellishment**: Added emotional/narrative details the user didn't provide. Only write what the user actually said.75- **Date swaps**: Got Apr 4/5 trip dates reversed. Double-check dates against the source (email, message, calendar).76- **Legal/bill claims**: Claimed bills had certain statuses without checking malegislature.gov. Always fetch the bill's own page.7778## Example7980User: "write a Boston restaurant section for the travel site with 3 good dinner spots near Back Bay"8182WRONG approach: list 3 restaurants from memory.8384RIGHT approach:851. WebSearch("best dinner restaurants Back Bay Boston 2026")862. For each candidate, WebFetch the restaurant's site to confirm it exists, is open, and is near Back Bay.873. Write only the confirmed ones. If only 2 verified, write 2 — don't pad to 3 with a guess.884. Report: "Verified 2 of 3 candidates. Dropped one that couldn't be confirmed as currently operating."