Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use when the user wants to fact-check an article or verify factual claims in a document. Triggers on: "fact-check", "verify article", "check facts", "文章事实核查", "验证文章". Runs Dingo's ArticleFactChecker via SDK to extract and verify all factual claims with web search evidence. Requires OPENAI_API_KEY. TAVILY_API_KEY is optional but recommended for web search.
.claude/skills/migoxlab-dingo-verify/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-11 | ✗→✓ | ▲ Improved | -22% | 0% |
| case-14 | ✗→✓ | ▲ Improved | -7% | 0% |
| case-15 | ✗→✓ | ▲ Improved | -11% | 0% |
| case-16 | ✗→✓ | ▲ Improved | -24% | 0% |
| case-17 | ✗→✓ | ▲ Improved | -21% | 0% |
Verify factual claims in articles using Dingo's ArticleFactChecker agent.
Before running, verify:
python -c "from dingo.config import InputArgs; print('OK')"OPENAI_API_KEY is set (required)TAVILY_API_KEY is set (optional, enables web search verification)If prerequisites fail, help the user fix them:
pip install -e . (from project root) or pip install dingo-pythonpip install -r requirements/agent.txtexport OPENAI_API_KEY='your-key'Run the fact-check script with the article path:
bashpython ${CLAUDE_SKILL_DIR}/scripts/fact_check.py $ARGUMENTS
--model MODEL: Override LLM model (default: env OPENAI_MODEL or gpt-5.4-mini)--max-claims N: Max claims to extract (default: 50, reduce for faster runs)--max-concurrent N: Parallel verification slots (default: 5).md, .txt: Markdown/plaintext articles (auto-wrapped for Dingo).jsonl: JSONL with {"content": "..."} per line.json: JSON array formatThe script outputs JSON to stdout. Parse it and present to the user:
Present a formatted report with these sections:
Example presentation:
## Article Fact-Check Report
**Accuracy**: 73.3% (11/15 claims verified true)
- Verified True: 11
- Verified False: 2
- Unverifiable: 2
### False Claims Found
| # | Article Claimed | Actual Truth | Evidence |
|---|----------------|-------------|----------|
| 1 | "released in Nov 2024" | Released Dec 5, 2024 | Official announcement |
### Full Report
Saved to: outputs/20260318_143022_abc123/If the script exits with code 1, it prints error JSON to stderr. Read the error and hint fields and help the user resolve the issue.
--max-claims 10 --model gpt-5.4-miniFor model selection, claim types, and tuning options, see: references/advanced-config.md
Other measured skills in the registry, with their headline benchmark lift.