How this skill is triggered — by the user, by Claude, or both
Slash command
/content-ops:fact-checkThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fact-check content by verifying claims against trusted sources.
Fact-check content by verifying claims against trusted sources.
File: $ARGUMENTS
Pass the path to an article or glossary file (e.g., src/content/articles/en/my-article.md).
Read the target file. Extract every factual claim:
List each claim clearly.
Delegate verification to the content-researcher agent. The agent uses a research cache (MCP) to avoid re-verifying known facts — it checks cached findings before doing web searches.
Use the content-researcher agent to verify these claims from the article "[title]":
1. [claim 1]
2. [claim 2]
...
For each claim: confirm, flag as unconfirmed, or mark incorrect with the correct information and source URL.
Check the research cache first; only search the web for uncached or stale topics.
Present the agent's findings in this format:
## Fact-Check Report: <article title>
### Summary
- Total claims checked: N
- Confirmed: N
- Unconfirmed: N
- Incorrect: N
### Details
| Claim | Status | Source | Notes |
|-------|--------|--------|-------|
| "X was created in 2009" | Confirmed | source-url/... | — |
| "reward is Y per cycle" | Incorrect | source-url/... | Corrected: Z per cycle |
After presenting the report, ask the user if they want you to fix incorrect claims directly. If yes:
content: fact-check corrections in "<title>"npx claudepluginhub pcamarajr/content-stack --plugin content-opsVerifies factual claims in text against authoritative sources using a cheapest-first cascade (project memory, codebase, web) and rewrites with footnote citations, hedging unverified claims.
Verifies statistical claims in blog posts by fetching cited source URLs and scoring match confidence.
Extracts and verifies factual claims from PR copy or journalistic drafts, providing citations and warning on low certainty. Use before sending pitches or press releases.