General
dingo-verify - Claude MCP Skill
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.
SEO Guide: Enhance your AI agent with the dingo-verify tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to use when the user wants to fact-check an article or verify factual claims in a document. triggers on... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md# Dingo Article Fact-Checker
Verify factual claims in articles using Dingo's ArticleFactChecker agent.
## Prerequisites
Before running, verify:
1. Dingo is installed: `python3 -c "from dingo.config import InputArgs; print('OK')"`
2. `OPENAI_API_KEY` is set (required)
3. `TAVILY_API_KEY` is set (optional, enables web search verification)
If prerequisites fail, help the user fix them:
- Missing dingo: `pip install dingo-python` or `pip install -e .` (from project root)
- Missing LangChain: `pip install -r requirements/agent.txt`
- Missing API key: `export OPENAI_API_KEY='your-key'`
## Usage
Run the fact-check script with the article path:
```bash
python3 {baseDir}/scripts/fact_check.py $ARGUMENTS
```
### Optional 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)
### Supported file formats
- `.md`, `.txt`: Markdown/plaintext articles (auto-wrapped for Dingo)
- `.jsonl`: JSONL with `{"content": "..."}` per line
- `.json`: JSON array format
## Presenting Results
The script outputs JSON to stdout. Parse it and present to the user:
### Success output
Present a formatted report with these sections:
1. **Summary**: total claims, accuracy score, false/unverifiable counts
2. **False Claims Table**: if any false claims found, show claim vs truth vs evidence
3. **All Claims Overview**: list all claims with their verdicts (TRUE/FALSE/UNVERIFIABLE)
4. **Output Path**: where the full Dingo report is saved
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/
```
### Error output
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.
## Performance Notes
- Single article: typically 2-5 minutes depending on claim count and model speed
- Progress is printed to stderr during execution
- For faster runs: use `--max-claims 10 --model gpt-5.4-mini`
## Advanced Configuration
For model selection, claim types, and tuning options, see:
[references/advanced-config.md](references/advanced-config.md)Signals
Information
- Repository
- MigoXLab/dingo
- Author
- MigoXLab
- Last Sync
- 5/10/2026
- Repo Updated
- 5/10/2026
- Created
- 3/24/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
upgrade-nodejs
Upgrading Bun's Self-Reported Node.js Version
cursorrules
CrewAI Development Rules
cn-check
Install and run the Continue CLI (`cn`) to execute AI agent checks on local code changes. Use when asked to "run checks", "lint with AI", "review my changes with cn", or set up Continue CI locally.
CLAUDE
CLAUDE.md
Related Guides
Bear Notes Claude Skill: Your AI-Powered Note-Taking Assistant
Learn how to use the bear-notes Claude skill. Complete guide with installation instructions and examples.
Mastering tmux with Claude: A Complete Guide to the tmux Claude Skill
Learn how to use the tmux Claude skill. Complete guide with installation instructions and examples.
OpenAI Whisper API Claude Skill: Complete Guide to AI-Powered Audio Transcription
Learn how to use the openai-whisper-api Claude skill. Complete guide with installation instructions and examples.